Skip to content

Instantly share code, notes, and snippets.

@Lp-Francois
Last active February 23, 2020 21:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lp-Francois/301bc9c2056615192a6aaf9d4394a816 to your computer and use it in GitHub Desktop.
Save Lp-Francois/301bc9c2056615192a6aaf9d4394a816 to your computer and use it in GitHub Desktop.
# Fancy welcome message
emojis=("🎯" "🏹" "🚀")
expressions=(
"Arguing that you don't care about the right to privacy because you have nothing to hide is no different than saying you don't care about free speech because you have nothing to say."
"Step by step."
"Keep it simple."
"It doesn't work? Come back to a working state."
"Communication is the key.")
RANDOM1=$$$(date +%s)
RANDOM2=$$$(date +%s)
selectedexpression=${expressions[$RANDOM1 % ${#expressions[@]} +1]}
selectedemoji=${emojis[$RANDOM2 % ${#emojis[@]} +1]}
echo "\n ${selectedemoji} \"${selectedexpression}\"\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment