Skip to content

Instantly share code, notes, and snippets.

View douglasjarquin's full-sized avatar

Douglas Jarquin douglasjarquin

View GitHub Profile
@hugs
hugs / the_day_i_will_die.py
Created July 3, 2009 18:53
Inspired by Kevin Kelly's "My Life Countdown" - in Python
# 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
@sotarok
sotarok / TumblrDownload.php
Created September 9, 2009 17:14
Download image from Tumblr
<?php
/**
* Dowload image file from tumblr.
*
* @author sotarok
* @copyright 2009 sotarok
* @lisence The MIT License
*/
define("BASE_DIR", dirname(__FILE__) . "/");
@tylerhunt
tylerhunt / gist:206213
Created October 9, 2009 18:03
Rack middleware that redirects requests to a canonical host.
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
#!/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")
@ec2 = RightAws::Ec2.new(AWS_KEY, AWS_PWD)
@couch_instances = @ec2.describe_instances.select do |instance|
instance[:aws_groups].include?('couch')
end
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
@fcoury
fcoury / gist:547851
Created August 24, 2010 16:36 — forked from bryanl/gist:547726
Memcache contents
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/)
@shripadk
shripadk / gist:652819
Created October 29, 2010 03:10
Express authentication using Redis for session store and Couchdb for database (in coffeescript!)
###
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'
@guenter
guenter / move_to_rds.rb
Created November 11, 2010 02:14
A quick and dirty script to move a database into Amazon RDS (or any other database). Can transfer part of the data beforehand.
require 'fileutils'
start_time = Time.now
SOURCE_DB = {
:name => 'db_name',
:user => 'db_user',
:password => 'db_pass',
:host => 'localhost'
@bryanl
bryanl / tmux.conf
Created November 30, 2010 05:17
I copied this from somewhere. It is a good start, though
# ~/.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:
#