Skip to content

Instantly share code, notes, and snippets.

@pselle
Created May 25, 2016 13:06
Show Gist options
  • Save pselle/1ecbc1e27211446f003f927c8975a921 to your computer and use it in GitHub Desktop.
Save pselle/1ecbc1e27211446f003f927c8975a921 to your computer and use it in GitHub Desktop.
#!/usr/bin/env node
var encouragements = [
"You look swell today",
"It's all going to be okay",
"You are so smart and capable!",
"Programming is hard sometimes, and you're pretty great at it",
"You can do this!",
"Have a snack after you fix this bug",
"You're an inspiration",
"This bug ain't got nothing on you",
"It's not just you, this is hard!",
"YOU GOT THIS",
"You're doing great!",
"( ᐛ )و",
"In the middle of every difficulty lies opportunity. - Einstein",
"Go fight win!",
"Fight win prevail!"
]
var encouragement = encouragements[Math.floor(Math.random()*encouragements.length)]
console.log(encouragement);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment