Skip to content

Instantly share code, notes, and snippets.

@andrewheiss
Created August 21, 2009 11:32
Show Gist options
  • Save andrewheiss/171884 to your computer and use it in GitHub Desktop.
Save andrewheiss/171884 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
quotes = [
'Do your work.',
'Get to work, doofus.',
'Quit goofing off.',
'Focus.',
'Are you studying?',
'How many words?',
"Confront the difficult\nwhile it is still easy.", # Tao Te Ching 63
"Accomplish the great task\nby a series of small acts.", # Tao Te Ching 63
"Lasciate ogne speranza,\nvoi ch'intrate.", # Inferno III:9
"See that ye refrain from idleness.", # Alma 38:12
"Thou shalt not idle away thy time.", # D&C 60:13
"Write when inspired;\nrest when tired.",
]
print quotes[rand(quotes.size)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment