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 'wirble' | |
require 'hirb' | |
Wirble.init | |
Wirble.colorize | |
if ENV.include?('RAILS_ENV') && !Object.const_defined?('RAILS_DEFAULT_LOGGER') | |
require 'logger' | |
RAILS_DEFAULT_LOGGER = Logger.new(STDOUT) |
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
# Yes, I'm still using database session, and for good reason. | |
class SessionCleaner | |
def self.remove_stale_sessions | |
ActiveRecord::SessionStore::Session. | |
delete_all( ['updated_at < ?', 1.week.ago] ) | |
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
before(:each) do | |
@fanout = mock("fanout") | |
@binding = mock("binding", :subscribe => true) | |
@queue = mock("queue", :bind => @binding, :publish => true) | |
@amq = mock("AMPQueue", :queue => @queue, :fanout => @fanout) | |
@serializer = mock("Serializer", :dump => "dumped_value") | |
@target = mock("Target of Request") | |
@reaper = mock("Reaper") | |
Nanite::Reaper.stub!(:new).and_return(@reaper) | |
@request_without_target = mock("Request", :target => nil, :token => "Token", |
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
# Passes any other method calls on directly to the underlying Logger object created with init. If | |
# this method gets hit before a call to Nanite::Logger.init has been made, it will call | |
# Nanite::Logger.init() with no arguments. | |
def method_missing(method_symbol, *args) | |
init(identity) unless @logger | |
if args.length > 0 | |
@logger.send(method_symbol, *args) | |
else | |
@logger.send(method_symbol) | |
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
for i in `find . -name \*.jpg` | |
do | |
thumb=`echo $i | sed 's/\.jpg/_thumb.jpg/'` | |
small=`echo $i | sed 's/\.jpg/_small.jpg/'` | |
convert -resize 640x480 $i $small | |
convert -resize x75 $i $thumb | |
convert -crop '75x75!+12' $thumb $thumb | |
done |
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 'eventmachine' | |
require 'mq' | |
require 'amqp' | |
AMQP.logging = true | |
AMQP.start(:user => 'nanite', :pass => 'testng', :vhost => '/nanite', :host => 'localhost', :port => ::AMQP::PORT, :insist => false, :retry => 5) { | |
clock = MQ.new.fanout("clock", :durable => true) | |
EM.add_periodic_timer(1) { | |
puts 'tick!' | |
clock.publish(Marshal.dump(Time.now)) |
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 M1 | |
def self.included(base) | |
base.class_eval do | |
def self.hello | |
p 'hello' | |
end | |
end | |
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
def test | |
puts "run test" | |
yield | |
end | |
def test1 | |
test do | |
puts 'run test1' | |
yield | |
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
# Ubuntu 9.04 | |
./configure | |
make | |
checkinstall -y -D --pkgname=apache-couchdb --pkgversion=0.9.1 [email protected] --pakdir=/mnt --pkglicense=Apache --requires='libc6, libcurl3, libicu38, libicu-dev, libmozjs0d, erlang-base' |