Skip to content

Instantly share code, notes, and snippets.

@jraregris
Created March 19, 2012 12:07
Show Gist options
  • Save jraregris/2109503 to your computer and use it in GitHub Desktop.
Save jraregris/2109503 to your computer and use it in GitHub Desktop.
Penger til overs per dag
#!/usr/bin/env ruby
require 'chronic'
saldo = STDIN.gets.to_i
today = Date.today
p saldo / (Chronic.parse("12th day of #{today.day < 12 ? 'this' : 'next'} month").to_date - today).to_i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment