Skip to content

Instantly share code, notes, and snippets.

@phildarnowsky
phildarnowsky / about.md
Created August 30, 2011 16:42 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
@phildarnowsky
phildarnowsky / about.md
Created August 30, 2011 16:40 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
def summer_monthly_usage
return @summer_monthly_usage if @summer_monthly_usage
monthly_usages = rates.summer_months_nbr.map{|month| monthly_usage[month - 1]}
@summer_monthly_usage = monthly_usages.inject(0){|sum, v| sum += v}
end