I use this in my terminal prompt: itg.zsh-theme
Last active
August 29, 2015 14:05
-
-
Save itsthatguy/9ee54ffc988725ef7af8 to your computer and use it in GitHub Desktop.
Random Giggle
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
| alias random_giggle="ruby random_giggle.rb" |
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 ruby | |
| require 'json' | |
| words_list_file = File.join File.dirname(__FILE__), 'words.json' | |
| words = JSON.parse(IO.read(words_list_file))['words'] | |
| puts words.sample |
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
| { | |
| "words": [ | |
| "bunny farts", | |
| "make awesome", | |
| "totally dude", | |
| "puppy kisses", | |
| "pow pow", | |
| "good feels", | |
| "kangaroo pockets", | |
| "happy meal", | |
| "mighty nice", | |
| "lemon squeeze", | |
| "utopic unicorn", | |
| "rainbow dash", | |
| "beautiful milk moustache", | |
| "lopp", | |
| "hammer time", | |
| "hi", | |
| "need for speed", | |
| "over 9000", | |
| "bubbles", | |
| "giant snowball", | |
| "in da face", | |
| "drop the bass", | |
| "good news everyone", | |
| "soggy chopsticks", | |
| "the plays", | |
| "chaaaaaaaarge", | |
| "shield masta", | |
| "T-Rex pushups", | |
| "Anonymous Dinosaur", | |
| "leeeerooooooooooooooooy jeeeenkins", | |
| "time’s up", | |
| "let’s do this", | |
| "volatile farts", | |
| "scared the bejesus out", | |
| "spongebob squarepants", | |
| "sweet moves bro", | |
| "aw yiss", | |
| "fuzzy dolphin cereal", | |
| "10 points", | |
| "forget IE6", | |
| "cattidude", | |
| "Watermelon", | |
| "Waterlemon", | |
| "coypu", | |
| "zombie tummy", | |
| "teehee", | |
| "⊙﹏⊙", | |
| "you’re a big dill!", | |
| "Kittie pur", | |
| "Snuggle", | |
| "Cosy Pillow", | |
| "Snuggle Fight", | |
| "Kitten Belly", | |
| "Huzzah", | |
| "Puffin", | |
| "Gouda", | |
| "LALALA", | |
| "Kiwi", | |
| "Manchengo", | |
| "Schweet", | |
| "yeah, son", | |
| "Lint-sniffer", | |
| "popple Dreams", | |
| "Puppy breath", | |
| "Cuddle Whispers", | |
| "Scooter Mouse", | |
| "Weasel Job", | |
| "Twitterpated", | |
| "Wienerschnitzel", | |
| "Mayor Maynot", | |
| "Doughnutastrophe", | |
| "Crumpetville", | |
| "Hip-hop Pooh-ray!", | |
| "Foo foo fits", | |
| "lil’duck!", | |
| "quack quack", | |
| "beep boop", | |
| "full benefits", | |
| "free dental", | |
| "[Puppy Town]", | |
| "TOOT!", | |
| "honey bear", | |
| "hug me", | |
| "pug bee", | |
| "fruit medic", | |
| "rainbow delirium", | |
| "concrete smoothie", | |
| "executive pajamas", | |
| "Tony Danza", | |
| "tapdance extravaganza", | |
| "banana phone", | |
| "pony race", | |
| "pee-pee pants", | |
| "whatchamadoodle", | |
| "thingamajig", | |
| "wiggle butt", | |
| "meep", | |
| "woodpecker lips", | |
| "Ewok parade", | |
| "twinkle toes", | |
| "BOB SAGET!!!!", | |
| "boa constrictor snuggles", | |
| "cactus hugs", | |
| "slippery seagull", | |
| "swingdance’n manatee", | |
| "caaaaaaaaaaaarl", | |
| "zombie alpaca lips", | |
| "C'est la vie ", | |
| "mon petit chou", | |
| "squirrel sass", | |
| "snickerdoodle", | |
| "ice cream dinner", | |
| "sal ta tlay ka siti", | |
| "hakuna matata", | |
| "maeeshed potaters", | |
| "zenvelope", | |
| "Mr.Sissippi", | |
| "dingleberry", | |
| "Thundercats! Assemble!", | |
| "liver deliver" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
