Skip to content

Instantly share code, notes, and snippets.

View nthj's full-sized avatar

Nathaniel Jones nthj

  • Orlando, FL
View GitHub Profile
@nthj
nthj / expirable.rb
Created October 24, 2013 06:03
Expirable Concern for Rails
# Expirable is a module that lets you easily cache
# groups of records, either across an entire record:
# cache(Snippet) => cache(Snippet.cache_key)
# or, across a scope:
# cache(page.blocks) => cache(page.blocks.cache_key)
#
# Why not just use `maximum(:updated_at)`?
# Because it requires 2 queries: the total count,
# and the updated_at timestamp
@nthj
nthj / Procfile
Created October 24, 2013 07:56
Running background workers on Heroku without paying for extra dynos
console: bundle exec rails console
rake: bundle exec rake
web: daemonized-worker & web
worker: worker
@nthj
nthj / javascript_generator.rb
Created October 25, 2013 20:16
Add this to `lib/generators/javascript_generator.rb`
class JavascriptGenerator < Rails::Generators::NamedBase
def create_javascript_files
create_file "app/assets/javascripts/#{file_name}.coffee", "# New JavaScript File"
create_file "spec/javascripts/#{file_name}_spec.coffee", <<-SPEC
describe "test for #{file_name}", ->
def ask_for_age(name)
# We have to ask for this person's age
print "What is #{name}'s age? "
rand(100) # gets.chomp.to_i
end
# Roomful of People
@nthj
nthj / car.rb
Created December 4, 2013 17:41
Class vs Instance
class Car
class << self
def advertise(model)
puts "BUY IT NOW! #{model}"
end
def manufacture(make)
# Quiz Exercise, Part One
#
# Quiz for a name and birthday,
# then display the age
#
# For example:
#
# Hey there! Please enter your name:
# > John
#
@nthj
nthj / exercise-2.rb
Last active December 30, 2015 19:39
# Quiz Exercise, Part One
#
# Quiz for a list of names & birthdays,
# then list out their ages
#
# For example:
#
# Hey there! Please enter a list of names:
# > John, Sam, Bob, Alisha, Henry
#
# Quiz Exercise, Part One
#
# Quiz for a name and birthday,
# then display the age
#
# For example:
#
# Hey there! Please enter your name:
# > John
#
# Quiz Exercise, Part One
#
# Quiz for a list of names & birthdays,
# then list out their ages
#
# For example:
#
# Hey there! Please enter a list of names:
# > John, Sam, Bob, Alisha, Henry
#
def bouncer(name, age = 18)
if age < 21
puts "Go away, #{name}"
else
puts "OK"
end
end