Skip to content

Instantly share code, notes, and snippets.

View melriffe's full-sized avatar
🦍
I may be slow to respond.

Mel Riffe melriffe

🦍
I may be slow to respond.
View GitHub Profile
@jcasimir
jcasimir / build_developers.markdown
Created February 9, 2012 15:27
Build Developers

Build Developers

Brief

You cannot do it on your own. Whether you're buildings products or a consultancy, you need developers. You can't afford to outbid everyone else and, even if you do, another company will up the ante in six months. You can't rely on your network or universities to deliver fully ready Rails devs. Professional recruiters are no answer.

Your only real option is to build them. That's the situation LivingSocial faced, and in this session, we'll share lessons learned from the design, recruitment, and beginning months of Hungry Academy. Let's discuss:

  • Recruiting applicants
  • Evaluating aptitude
@jasonrudolph
jasonrudolph / about.md
Last active May 14, 2024 16:36
Programming Achievements: How to Level Up as a Developer
@metaskills
metaskills / which_is_easier_to_read.rb
Created December 16, 2010 14:44
which_is_easier_to_read.rb
%w(id foo under_score bar batz_score)
["id", "foo", "under_score", "bar", "batz_score"]
[:id, :foo, :under_score, :bar, :batz_score]
# put this method definition in your .irbrc
def log_to(stream = STDOUT)
ActiveRecord::Base.logger = Logger.new(stream)
ActiveRecord::Base.clear_active_connections!
end
# My new git commit shortcut, thanks to http://whatthecommit.com/ :-)
alias commit='git commit -m "$(curl -s http://whatthecommit.com/ |grep '<p>' |cut -c 4-)"'
# Make gems available
require 'rubygems'
# http://drnicutilities.rubyforge.org/map_by_method/
begin
require 'map_by_method'
rescue LoadError
puts "map_by_method is not installed. To enable, run: gem install map_by_method"
end