This file contains 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
# Inspired by: http://kk.org/ct2/2007/09/my-life-countdown-1.php | |
# Life expectancy data: | |
# http://www.health.state.ny.us/health_care/medicaid/publications/docs/adm/06adm-5att8.pdf | |
$ python | |
>>> from datetime import date, timedelta | |
>>> birth_year = 1976 | |
>>> birth_date = date(1976,3,2) | |
>>> life_expectancy = 76.09 |
This file contains 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 | |
/** | |
* Dowload image file from tumblr. | |
* | |
* @author sotarok | |
* @copyright 2009 sotarok | |
* @lisence The MIT License | |
*/ | |
define("BASE_DIR", dirname(__FILE__) . "/"); |
This file contains 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
class CanonicalHost | |
def initialize(app, host=nil, &block) | |
@app = app | |
@host = (block_given? && block.call) || host | |
end | |
def call(env) | |
if url = url(env) | |
[301, { 'Location' => url }, ['Redirecting...']] | |
else |
This file contains 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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'xmlsimple' | |
require 'flotr' | |
log = XmlSimple.xml_in('blah.log') | |
f = Flotr::Data.new(:label => "Total Response", :color => "red") |
This file contains 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
@ec2 = RightAws::Ec2.new(AWS_KEY, AWS_PWD) | |
@couch_instances = @ec2.describe_instances.select do |instance| | |
instance[:aws_groups].include?('couch') | |
end |
This file contains 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
class ImageSqueeze | |
class OptiPNGProcessor < Processor | |
def self.input_type | |
PNG | |
end | |
def self.squeeze(filename, output_filename) | |
system("optipng -i1 -o7 #{filename} -out=#{output_filename} > /dev/null") | |
end | |
end |
This file contains 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
require 'rubygems' | |
require 'net/telnet' | |
require 'memcache' | |
require 'action_view' | |
include ActionView::Helpers::TextHelper | |
cache = MemCache.new 'localhost:11211' | |
raw = Net::Telnet.new("Host" => "localhost", "Port" => 11211, "Prompt" => /END/) |
This file contains 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
### | |
Module dependencies | |
### | |
require.paths.unshift "#{__dirname}/lib/support/express-csrf/" | |
require.paths.unshift "#{__dirname}/lib/support/node_hash/lib/" | |
express = require 'express' | |
app = module.exports = express.createServer() | |
RedisStore = require 'connect-redis' |
This file contains 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
require 'fileutils' | |
start_time = Time.now | |
SOURCE_DB = { | |
:name => 'db_name', | |
:user => 'db_user', | |
:password => 'db_pass', | |
:host => 'localhost' |
This file contains 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
# ~/.tmux.conf | |
# | |
# See the following files: | |
# | |
# /opt/local/share/doc/tmux/t-williams.conf | |
# /opt/local/share/doc/tmux/screen-keys.conf | |
# /opt/local/share/doc/tmux/vim-keys.conf | |
# | |
# URLs to read: | |
# |
OlderNewer