Skip to content

Instantly share code, notes, and snippets.

View sarahclintonbaker's full-sized avatar

Sarah Clinton sarahclintonbaker

  • Vancouver, BC
View GitHub Profile
gem 'pg'

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@sarahclintonbaker
sarahclintonbaker / max-reviewed.rb
Last active August 29, 2015 14:16
Maximum Value
# Find the maximum
def maximum(arr)
max = arr[0]
arr.each do |x|
max = x if x > max
end
max
end
# expect it to return 42 below