This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/media/movies/downloading | |
~/media/movies/movies | |
~/media/tv/downloading | |
~/media/tv/tv | |
~/media/tv/full seasons | |
~/media/tv/full seasons/the office/season 2/1x02.avi | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruby - use the one on leopard | |
gems - sudo gem update --system | |
rails - sudo gem install rails | |
mongrel - sudo gem install mongrel | |
subversion - use the one on leopard | |
git - http://git-osx-installer.googlecode.com/files/git-1.5.6.4-intel-leopard.dmg (http://code.google.com/p/git-osx-installer/) | |
mysql - http://dev.mysql.com/get/Downloads/MySQL-5.0/mysql-5.0.51b-osx10.5-x86.dmg/from/http://mysql.osuosl.org/ | |
postgres - on your own but i'm sure theres an installer, avoid macports at all costs, use google! | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## php | |
function number_of_items(){ | |
$count = 0; | |
foreach ($this->queries as $query) { | |
$count += sizeof($query->items); | |
} | |
return $count; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## php | |
function number_of_items(){ | |
$count = 0; | |
foreach ($this->queries as $query) { | |
$count += sizeof($query->items); | |
} | |
return $count; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ar = [1, 4, 3, 10] | |
puts ar.inject(0) {|i, count| count += i } | |
=> 18 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## php | |
function remove_item($item_id){ | |
foreach ($this->items as $index => $item) { | |
if ($item->id == $item_id){ | |
unset($this->items[$index]); | |
} | |
} | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deployer@tappit:/home/dev/apps/newzcache$ nmap home.claudenix.com -p 1480 | |
Starting Nmap 4.20 ( http://insecure.org ) at 2008-07-27 05:17 UTC | |
Warning: Hostname home.claudenix.com resolves to 8 IPs. Using 68.142.212.117. | |
Interesting ports on p10w1.geo.mud.yahoo.com (68.142.212.117): | |
PORT STATE SERVICE | |
1480/tcp filtered pacerforum | |
Nmap finished: 1 IP address (1 host up) scanned in 10.349 seconds | |
deployer@tappit:/home/dev/apps/newzcache$ nmap home.claudenix.com -p 80 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ======================================================================== | |
Flip | |
======================================================================== */ | |
.dashcode-transition-flip-container { | |
-webkit-perspective: 800; /* subviews should have the same perspective during flip */ | |
-webkit-animation-name: "dashcode-transition-flip-container"; | |
} | |
/* This works great for ease-in-out but not for other timing. */ | |
@-webkit-keyframes dashcode-transition-flip-container { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.................... | |
.................... | |
.................... | |
.................... | |
.................... | |
.................... | |
.................... | |
.............:~I7777777777+. .,I7777777777I:. | |
.............778OOOOOOOOO88= ..IOOOOOOOOOOOO++ | |
.............77OOOOOOOOOOOOO,, ~=8OOOOOOOOOOO8++ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def what_is_gist | |
"A bad ass version-able pastebin" | |
end |