Created
May 25, 2016 13:06
-
-
Save pselle/1ecbc1e27211446f003f927c8975a921 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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