Public Gists by luke0x

Gravatar
Fri Jun 26 08:55:20 -0700 2009
1
2
3
drefile: an automatic, chronological file organizer
---------------------------------------------------
Every few minutes drefile copies all files on your Desktop to a folder
Gravatar
Thu May 21 15:43:39 -0700 2009
1
2
3
Deploying a Rails App with EC2 + S3 + Ubuntu
============================================
 
Gravatar
Tue Feb 17 13:54:34 -0800 2009
1
2
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
Gravatar
Mon Jan 26 09:43:17 -0800 2009
1
2
3
def conditional_block(do_block, method, *args, &block)
  do_block ? send(method, args, &block) : block.call
end