iReusable

LANGUAGES

TAGS

Only 30 most popular tags are shown
term A search term is a single word. Search terms will be searched for using the inflectional search option.
term* The trailing asterisk wildcard character on a term will perform a prefix search.
"phrase" A phrase is one or more words enclosed in quotes.
+ A term or phrase prefixed with the plus operator performs an exact search; no inflectional or thesaurus forms will be found.
- A term or phrase prefixed with the minus operator excludes the term or phrase from the search.
~ A term prefixed with the tilde operator performs a thesaurus synonym search.
<...> Multiple terms or phrases can be included in angle brackets. The query engine will generate proximity searches.
and The and keyword, or the symbol &, can be used between terms and phrases to indicate a logical AND operation.
or The or keyword, or the symbol |, can be used between terms and phrases to indi-cate a logical OR operation.
(...) Parentheses can be used to group expressions and to change the order of prece-dence of operators.
  • TCPDUMP Capture For WireShark

    Tcpdump is a separate program from wireshark, however it can be used to gather network packets for later viewing in wireshark. By default tcpdump captures only the first 64 or 96 bytes of each network packet. Hence it is important to use -s parameter to capture whole packat. ...

  • Find Zombie Process In Linux

    On Unix operating systems, a zombie process or defunct process is a process that has completed execution but still has an entry in the process table, allowing the process that started it to read its exit status. To be able to kill a zombie process we need to find it. The easiest way to do it is using ps command. ...

  • Linux Using Find To Change File Ownership

    We can use fidn command in linux to change file ownership, using exec switch in find command does the trick. Below command will change ownership of the files owned by johndoe to www-data user. ...

  • Linux Find Files Owned By User

    find command in linux is pretty&nbsp;powerful&nbsp;one. To find files owned by particular user we can use -user switch in find command. ...

  • Exchange Delete Emails From Mailbox Using PowerShell

    Sometimes we would like to remove old items from Exchange Mailbox using PowerShell instead of using Outlook. Starting from Excahgne 2007 we can do it using Export-Mailbox PowerShell cmdlet with -DeleteContent parameter. To use this cmdlet one has to be an Exchange Administrator and must have Full Access rights to the mailbox. ...

  • MySQL Create Table Size Report

    To create report with table sizes from mysql database we either need to use SHOW TABLE STATUS command or query INFORMATION_SCHEMA.TABLES. If we do not need all the columns returned by SHOW TABLE STATUS, querying INFORMATION_SCHEMA.TABLES is a better idea. ...

    • Rating: Not yet rated
    • Language: SQL
    • Added by: krystian.zieja on 04/03/2013 02:53 PM
  • MySQL dump only database structure

    Sometimes we want to dump only database structures without the table data. The easiest way to do it is to use -d switch in mysqldump program ...

    • Rating: Not yet rated
    • Language: SQL
    • Added by: krystian.zieja on 04/03/2013 12:35 PM
  • List Privileges For MySQL User

    To check the privileges granted to MySQL user, we can simple use the command show grants. Such information is is useful for security audits or to duplicate the permissions to another user.The syntax is simpleshow grants for 'username'@'hostname' ...

    • Rating: Not yet rated
    • Language: SQL
    • Added by: krystian.zieja on 01/03/2013 08:52 AM
  • Convert Base 10 Integer To Hex In Linux Command Line

    Linux contains very handy command line tool called printf. It is a function that enables you to format the output. Below code snippet shows how to format integer of base 10 as hexadecimal number. ...

  • C# Convert Hexadecimal String To Integer

    Below snippet shows how to convert hexadecimal string to integer. We are using the method TryParse of int class. As one of the arguments we can supply the NumberFormat. In the case of hexadecimal string we provide NumberStyles.HexNumber. ...



Please feel free to get in touch, we value your feedback