Skip to content

Instantly share code, notes, and snippets.

View roidrage's full-sized avatar
🌱
Planting seeds

Mathias Meyer roidrage

🌱
Planting seeds
View GitHub Profile
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)
# 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
Breadcrumb.configure do
crumb :your_account, "Your Account", :edit_account_url
crumb :directory, "Directory", :search_url
trail :accounts, :edit, [:profile, :your_account]
trail :searches, :new, [:directory]
end
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",
# 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
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
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))
module M1
def self.included(base)
base.class_eval do
def self.hello
p 'hello'
end
end
end
end
def test
puts "run test"
yield
end
def test1
test do
puts 'run test1'
yield
end
# 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'