Skip to content

Instantly share code, notes, and snippets.

@sudara
Created February 11, 2018 23:39
Show Gist options
  • Save sudara/3e99e61478b496106d5f51ede521c1aa to your computer and use it in GitHub Desktop.
Save sudara/3e99e61478b496106d5f51ede521c1aa to your computer and use it in GitHub Desktop.
def bloat
num_days = 50000000
start = Time.now
range = start.utc.to_date...(start.utc.to_date + num_days.days)
range.select{|t| [6, 0].include?(t.wday)}.size
render text: "have a bloaty good day!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment