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
# Based on http://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/1812-default_scope-cant-take-procs | |
ActiveRecord::Base.class_eval do | |
class << self | |
private | |
def find_last(options) | |
order = options[:order] | |
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
''=~( '(?{' .('`' |'%') .('[' ^'-') | |
.('`' |'!') .('`' |',') .'"'. '\\$' | |
.'==' .('[' ^'+') .('`' |'/') .('[' | |
^'+') .'||' .(';' &'=') .(';' &'=') | |
.';-' .'-'. '\\$' .'=;' .('[' ^'(') | |
.('[' ^'.') .('`' |'"') .('!' ^'+') | |
.'_\\{' .'(\\$' .';=('. '\\$=|' ."\|".( '`'^'.' | |
).(('`')| '/').').' .'\\"'.+( '{'^'['). ('`'|'"') .('`'|'/' | |
).('['^'/') .('['^'/'). ('`'|',').( '`'|('%')). '\\".\\"'.( '['^('(')). | |
'\\"'.('['^ '#').'!!--' .'\\$=.\\"' .('{'^'['). ('`'|'/').( '`'|"\&").( |
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 'socket' | |
require 'tmpdir' | |
module Enumerable | |
def pmap(&block) | |
sockname = Dir::tmpdir + "ruby_pmap_#{$$}_#{self.object_id}" | |
aggregator = [] | |
size = entries.size | |
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/local/bin/ruby | |
require 'sinatra' | |
require 'nokogiri' | |
XMLFILEPATH = 'database.xml' | |
# Put the XML database | |
get '/' do | |
[200, {"Content-Type" => 'text/xml'}, File.open(XMLFILEPATH, 'r')] | |
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 Email::Base < ActiveRecord::Base | |
self.abstract_class = true | |
establish_connection 'drip_email_marketing' | |
end | |
# Ensure that config/database.yml has connection information for drip_email_marketing | |
# | |
# Make all other classes using this DB connection use this base class as their ancestor |
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
radius_options = %w{3 5 10 25 50}.map{|x| [x, x+" mi"]} | |
select_tag('search_radius[in_miles]', options_for_select(radius_options, params[:search_radius][:in_miles]) |
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 ActiveRecord::Base | |
def self.find_by_id(id) | |
find(id) | |
rescue ActiveRecord::RecordNotFound | |
nil | |
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
scope :search do |*keywords| | |
where("FIND_IN_SET(search_column, '#{keywords.join(',')}')") | |
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 LazyLoadHelper | |
def lazy_load(&block) | |
content_id = ActiveSupport::SecureRandom.hex | |
EM.add_timer 2 do | |
javascript = %{$('##{content_id}').replaceWith('#{ | |
escape_javascript(capture(&block)) | |
}')} | |
Juggernaut.send_to_channels(javascript, [content_id]) |
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
Install some aptitude packages: | |
sudo apt-get install nginx libssl-dev libmysqlclient-dev git-core libxslt-dev libxml2-dev | |
Grab some ruby, install that muh | |
wget ftp://ftp.ruby-lang.org//pub/ruby/1.9/ruby-1.9.2-p0.tar.gz | |
cd ruby-1.9.2-p0 | |
./configure ; make ; sudo make install | |
OlderNewer