strpos(haystack, needle)
$leadingZero = sprintf("%02d", $string);
$currency = sprintf("%01.2f", $n);
error_reporting(E_ALL | E_STRICT); ini_set('display_errors', 1);
$(function() { ... }); // on pageload (jQuery)
| #!/bin/bash | |
| if [ -z "$1" -o -z "$2" ]; then | |
| echo "usage: $0 <repository> <username>" | |
| exit | |
| fi | |
| REPO=$1 | |
| USER=$2 |
| #!/bin/bash | |
| # author: Duane Johnson <[email protected]> | |
| # contributor: Jansen Price <[email protected]> | |
| # date: 2008 Jun 12 | |
| # license: MIT | |
| # | |
| # Based on discussion at http://kerneltrap.org/mailarchive/git/2007/11/12/406496 | |
| function main() { |
| #!/bin/bash | |
| # istidy will use the tidy program to fetch and parse a URL and provide a | |
| # report on errors and warnings found. | |
| # | |
| # Usage: istidy <URL> | |
| # Example: istidy http://google.com/ | |
| # | |
| # This script requires wget and tidy | |
| # (apt-get install wget tidy) |
| #!/bin/bash | |
| message="Resuming Normal Mode" | |
| width=`tput cols` | |
| height=`tput lines` | |
| len=${#message} | |
| tput clear |
| http://fantasticcontraption.com/game/Contraption.swf | |
| http://static.learn4good.com/cms/upload/games/board/swf/battleships.swf | |
| http://multiplayerchess.com/ | |
| http://www.sheppardsoftware.com/braingames/mousetrap/mousetrapAS2.swf | |
| http://www.sheppardsoftware.com/braingames/castledefensejr/castledefensejr.swf | |
| http://www.gamechit.com/content/games/the-incredibles-save-the-day.swf | |
| http://mapdive.weareinstrument.com/ | |
| http://mammoth-quantalideas.rhcloud.com/ | |
| http://games.mochiads.com/c/g/ice-breaker_v1/Icebreaker_mochi.swf | |
| http://www.chromeplay.com/games/game2333.swf |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Version: 1.1.0 | |
| # Settings for this VM | |
| VM_HOSTNAME = "php55.dev" | |
| VM_IPADDRESS = "192.168.100.5" | |
| MYSQL_ROOT_PW = "1111" | |
| TIMEZONE = "America/Chicago" |
| #!/bin/bash | |
| # This script will update the cache and logs dirs to be owned by apache user | |
| rm -rfv app/cache/* | |
| rm -rfv app/logs/* | |
| APACHEUSER=`ps aux | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data' | grep -v root | head -1 | cut -d\ -f1` | |
| echo Apache user is $APACHEUSER |
| Amend commit (only can amend the latest commit) | |
| git commit --amend -m "Message" | |
| Note that this will add anything you have staged to the commit | |
| Retrieving old versions of a file | |
| git checkout 4b4a5c48 -- filename.txt | |
| Reverting a commit | |
| git revert 4b4a5c48 | |
| This will bring up an editor to edit the commit message |