Use the + to indicate in which line number you want to open your file, e.g. $ vim file.js +40

Recently I found this simple one liner which can save your time & can be efficient to check if number […]

<?php function array_searchstring( $needle, $haystack, $valueAsNeedle = FALSE ){ foreach( $haystack as $key => $value ){ $needleValue = $needle; if($valueAsNeedle){ […]

If you need an array that starts its key from 1 instead of default zero, this tip can be helpful: […]

Nested hashes in ruby are a PITA. if in somewhere along the way one of your keys are missing / […]

To use more than one Skype account on the same computer at the same time you need to start a […]

Pro Tip Don’t use HTML tables as the layout for your site. Just don’t.

Tired of doing <?php echo $foo; ?> ?<br> Just do <?= $foo; ?> and it will echo the $foo variable! […]

  • 1
  • 2