Skip to content

Instantly share code, notes, and snippets.

View jeremywrowe's full-sized avatar
❤️
Coding

Jeremy W. Rowe jeremywrowe

❤️
Coding
View GitHub Profile
@jeremywrowe
jeremywrowe / superbowl.rb
Created February 4, 2011 02:06
number generator for super bowl :)
@amount = 9
@amount = ARGV[0].to_i if ARGV[0]
@randomize = rand(1000)
x_array = []
y_array = []
@amount.times do |i|
x_array << i+1
y_array << i+1
@jeremywrowe
jeremywrowe / flot
Created January 24, 2011 04:36
flot + ruby
<h1 style="text-align:center;"> Page Statistics </h1>
<div style="clear:both">
<div style="float:left" id="stats">
loading...
</div>
<div style="float:left; height:300px; width:10%" id="stats_legend">
loading...
</div>
</div>
@jeremywrowe
jeremywrowe / gist:771776
Created January 9, 2011 16:00
grabbing object info from a bucket s3
require "aws/s3"
AWS::S3::Base.establish_connection!(
:access_key_id => 'KEY_GOES_HERE',
:secret_access_key => 'KEY_SECRET_GOES_HERE'
)
object = AWS::S3::S3Object.find 'OBJECT_NAME_GOES_HERE','BUCKET_NAME_GOES_HERE'
puts object.etag # MD5 SUM
@jeremywrowe
jeremywrowe / autotest.rake
Created December 19, 2010 18:11
autotest ruby script runner for rails (script/autotest), with matching autotest.rake file (lib/tasks/autotest.rake)
$here = File.expand_path(File.dirname(__FILE__))
$rails_root = "#{$here}/../.."
$logs = "#{$rails_root}/logs/"
$script = "#{$rails_root}/script/autotest"
namespace :autotest do
desc "start autotest background task"
task :start do