├── .gitignore ├── Main.coffee ├── Makefile ├── README.md ├── Scrape.coffee ├── emoji_to_upload ├── README.md ├── allthethings.png ├── android.png ├── angry.png ├── areyoukiddingme.png ├── arya.png ├── ashton.png ├── awthanks.png ├── awyea.png ├── badass.png ├── badjokeeel.png ├── badpokerface.png ├── basket.png ├── beer.png ├── bigsmile.png ├── boom.gif ├── branch.png ├── bumble.png ├── bunny.png ├── cadbury.png ├── cake.png ├── candycorn.png ├── caruso.png ├── ceilingcat.png ├── cerealguy.png ├── cerealspit.png ├── challengeaccepted.png ├── chewy.png ├── chocobunny.png ├── chompy.gif ├── chris.png ├── chucknorris.png ├── clarence.png ├── codebuffet.png ├── coffee.png ├── content.png ├── continue.png ├── cool.png ├── cornelius.png ├── cry.png ├── daenerys.png ├── dance.gif ├── dealwithit.gif ├── derp.png ├── dino.png ├── disapproval.png ├── doge.png ├── dosequis.png ├── drevil.png ├── ducreux.png ├── dumbbitch.png ├── embarrassed.png ├── facepalm.png ├── failed.png ├── fap.png ├── farnsworth.png ├── firstworldproblem.png ├── fonzie.png ├── footinmouth.png ├── foreveralone.png ├── freddie.png ├── frown.png ├── fry.png ├── fuckyeah.png ├── fwp.png ├── gangnamstyle.gif ├── garret.png ├── gasp.png ├── gates.png ├── gaytroll.gif ├── ghost.png ├── greenbeer.png ├── grumpycat.png ├── gtfo.png ├── happytear.gif ├── haveaseat.png ├── heart.png ├── hipster.png ├── hodor.png ├── huh.png ├── ilied.png ├── indeed.png ├── innocent.png ├── iseewhatyoudidthere.png ├── itsatrap.png ├── jackie.png ├── jaime.png ├── jira.png ├── jobs.png ├── joffrey.png ├── jonsnow.png ├── kennypowers.png ├── kiss.png ├── krang.gif ├── kwanzaa.png ├── lincoln.png ├── lol.png ├── lolwut.png ├── megusta.png ├── menorah.png ├── mike.png ├── mindblown.gif ├── moneymouth.png ├── ned.png ├── nextgendev.png ├── ninja.png ├── notbad.png ├── nothingtodohere.png ├── notsureif.png ├── notsureifgusta.png ├── obama.png ├── ohcrap.png ├── ohgodwhy.jpeg ├── okay.png ├── omg.png ├── oops.png ├── orly.png ├── pbr.png ├── pete.png ├── philosoraptor.png ├── pingpong.png ├── pirate.gif ├── pokerface.png ├── poo.png ├── present.png ├── pumpkin.png ├── rageguy.png ├── rebeccablack.png ├── reddit.png ├── romney.png ├── rudolph.png ├── sadpanda.png ├── sadtroll.png ├── samuel.png ├── santa.png ├── scumbag.png ├── sealed.png ├── seomoz.png ├── shamrock.png ├── shrug.png ├── skyrim.png ├── slant.png ├── smile.png ├── stare.png ├── stash.png ├── straightface.png ├── success.png ├── successful.png ├── sweetjesus.png ├── tableflip.png ├── taft.png ├── tea.png ├── thumbs_down.png ├── thumbs_up.png ├── timeforthat.gif ├── tongue.png ├── tree.png ├── troll.png ├── truestory.png ├── trump.png ├── turkey.png ├── twss.png ├── tyrion.png ├── tywin.png ├── unknown.png ├── washington.png ├── wat.png ├── whynotboth.gif ├── wink.png ├── winktongue.gif ├── wtf.png ├── yey.png ├── yodawg.png ├── yougotitdude.gif ├── yuno.png ├── zoidberg.png └── zzz.gif └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Main.coffee: -------------------------------------------------------------------------------- 1 | path = require("path") 2 | childProcess = require("child_process") 3 | prompt = require("prompt") 4 | walk = require("walk") 5 | path = require("path") 6 | 7 | String::endsWith = (suffix) -> 8 | @indexOf(suffix, @length - suffix.length) isnt -1 9 | 10 | onErr = (err) -> 11 | console.log err 12 | 1 13 | console.log "Please enter your slack details:" 14 | properties = [ 15 | { 16 | message: "Enter your slack domain or company name" 17 | name: "domain" 18 | } 19 | { 20 | name: "email" 21 | validator: /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/ 22 | warning: "Email is invalid" 23 | } 24 | { 25 | message: "Enter your password (will be hidden)" 26 | name: "password" 27 | hidden: true 28 | } 29 | ] 30 | 31 | listEmoji = (cb) -> 32 | files = [] 33 | 34 | # Walker options 35 | walker = walk.walk("./emoji_to_upload", 36 | followLinks: false 37 | ) 38 | walker.on "file", (root, stat, next) -> 39 | 40 | # Add this file to the list of files 41 | if stat.name.endsWith(".png") or stat.name.endsWith(".gif") 42 | files.push path.resolve(root + "/" + stat.name) 43 | 44 | next() 45 | 46 | walker.on "end", -> 47 | cb(files) 48 | 49 | prompt.start() 50 | prompt.get properties, (err, result) -> 51 | if err 52 | console.log err 53 | return null 54 | 55 | listEmoji (files) -> 56 | 57 | binPath = "./node_modules/casperjs/bin/casperjs" 58 | childArgs = [ 59 | "--ssl-protocol=any" 60 | "--engine=slimerjs", 61 | path.join(__dirname, "Scrape.coffee"), 62 | result.domain, 63 | result.email, 64 | result.password, 65 | files.join("...") 66 | ] 67 | 68 | #console.log "Running with args: ", childArgs 69 | 70 | childProcess.execFile binPath, childArgs, (err, stdout, stderr) -> 71 | console.log "Result:\n#{stdout}\nerror: #{err} #{stderr}" 72 | 73 | return null 74 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | run: 2 | ./node_modules/coffee-script/bin/coffee Main.coffee 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #Slekkel 2 | 3 | A batch emoji uploader for Slack! 4 | Want to upload more emoji? Now you can! 5 | 6 | ## Installation 7 | 8 | - Clone this repo 9 | - cd to the repo folder 10 | - Run `sudo npm install -g slimerjs` to install the slimerjs binary if you haven't done already 11 | - Run `npm install` 12 | - We already have put some demo emoji in the upload folder, if you want to upload your own, see [here](https://github.com/CodeBuffet/Slekkel/blob/master/emoji_to_upload/README.md) 13 | - Run `make run` and follow the instructions 14 | -------------------------------------------------------------------------------- /Scrape.coffee: -------------------------------------------------------------------------------- 1 | casper = require("casper").create( 2 | viewportSize: { width: 1024, height: 768 } 3 | ) 4 | args = casper.cli.args 5 | #require("utils").dump(casper.cli.args); 6 | 7 | email = password = null 8 | files = [] 9 | 10 | if args.length < 3 11 | console.log "Try to pass some arguments when invoking this script!" 12 | casper.exit() 13 | else 14 | domain = args[0] 15 | email = args[1] 16 | password = args[2] 17 | files = args[3].split("...") 18 | 19 | casper.start "https://slack.com/signin", -> 20 | 21 | @fill "form[action=\"/signin\"]", 22 | domain: domain 23 | , true 24 | 25 | return 26 | 27 | casper.then -> 28 | @evaluate -> 29 | # Submit the form (Google account not supported) 30 | document.getElementsByTagName("form")[0].submit() 31 | 32 | casper.then -> 33 | @fill "form[id=\"signin_form\"]", 34 | email: email 35 | password: password 36 | , true 37 | 38 | return 39 | 40 | casper.then -> 41 | @evaluate -> 42 | # Load the admin page to later upload emoticons to 43 | window.location.href = "/admin/emoji" 44 | 45 | casper.then -> 46 | @evaluate -> 47 | TS.web.toggleSection 'add_emoji_section' 48 | 49 | getEmojiName = (a) -> 50 | a = a.replace(/^.*[\\\/]/, '') 51 | output = a.substr(0, a.lastIndexOf(".")) or a 52 | return output 53 | 54 | for file in files 55 | ((f) -> 56 | casper.then -> 57 | @fill "form[action=\"/customize/emoji\"]", 58 | img: f 59 | name: getEmojiName f 60 | , true 61 | 62 | )(file) 63 | 64 | casper.run -> 65 | casper.exit() 66 | -------------------------------------------------------------------------------- /emoji_to_upload/README.md: -------------------------------------------------------------------------------- 1 | #Emoji to Upload 2 | 3 | This is this the upload queue to upload emoji to Slack. 4 | 5 | ## How it works 6 | 7 | - Put a .png file in here 8 | - The name of the png file minus the extension will be used for the emoji alias. 9 | e.g cb.png will become :cb: 10 | 11 | **Have fun!** 12 | -------------------------------------------------------------------------------- /emoji_to_upload/allthethings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/allthethings.png -------------------------------------------------------------------------------- /emoji_to_upload/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/android.png -------------------------------------------------------------------------------- /emoji_to_upload/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/angry.png -------------------------------------------------------------------------------- /emoji_to_upload/areyoukiddingme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/areyoukiddingme.png -------------------------------------------------------------------------------- /emoji_to_upload/arya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/arya.png -------------------------------------------------------------------------------- /emoji_to_upload/ashton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/ashton.png -------------------------------------------------------------------------------- /emoji_to_upload/awthanks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/awthanks.png -------------------------------------------------------------------------------- /emoji_to_upload/awyea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/awyea.png -------------------------------------------------------------------------------- /emoji_to_upload/badass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/badass.png -------------------------------------------------------------------------------- /emoji_to_upload/badjokeeel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/badjokeeel.png -------------------------------------------------------------------------------- /emoji_to_upload/badpokerface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/badpokerface.png -------------------------------------------------------------------------------- /emoji_to_upload/basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/basket.png -------------------------------------------------------------------------------- /emoji_to_upload/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/beer.png -------------------------------------------------------------------------------- /emoji_to_upload/bigsmile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/bigsmile.png -------------------------------------------------------------------------------- /emoji_to_upload/boom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/boom.gif -------------------------------------------------------------------------------- /emoji_to_upload/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/branch.png -------------------------------------------------------------------------------- /emoji_to_upload/bumble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/bumble.png -------------------------------------------------------------------------------- /emoji_to_upload/bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/bunny.png -------------------------------------------------------------------------------- /emoji_to_upload/cadbury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/cadbury.png -------------------------------------------------------------------------------- /emoji_to_upload/cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/cake.png -------------------------------------------------------------------------------- /emoji_to_upload/candycorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/candycorn.png -------------------------------------------------------------------------------- /emoji_to_upload/caruso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/caruso.png -------------------------------------------------------------------------------- /emoji_to_upload/ceilingcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/ceilingcat.png -------------------------------------------------------------------------------- /emoji_to_upload/cerealguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/cerealguy.png -------------------------------------------------------------------------------- /emoji_to_upload/cerealspit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/cerealspit.png -------------------------------------------------------------------------------- /emoji_to_upload/challengeaccepted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/challengeaccepted.png -------------------------------------------------------------------------------- /emoji_to_upload/chewy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/chewy.png -------------------------------------------------------------------------------- /emoji_to_upload/chocobunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/chocobunny.png -------------------------------------------------------------------------------- /emoji_to_upload/chompy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/chompy.gif -------------------------------------------------------------------------------- /emoji_to_upload/chris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/chris.png -------------------------------------------------------------------------------- /emoji_to_upload/chucknorris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/chucknorris.png -------------------------------------------------------------------------------- /emoji_to_upload/clarence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/clarence.png -------------------------------------------------------------------------------- /emoji_to_upload/codebuffet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/codebuffet.png -------------------------------------------------------------------------------- /emoji_to_upload/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/coffee.png -------------------------------------------------------------------------------- /emoji_to_upload/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/content.png -------------------------------------------------------------------------------- /emoji_to_upload/continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/continue.png -------------------------------------------------------------------------------- /emoji_to_upload/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/cool.png -------------------------------------------------------------------------------- /emoji_to_upload/cornelius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/cornelius.png -------------------------------------------------------------------------------- /emoji_to_upload/cry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/cry.png -------------------------------------------------------------------------------- /emoji_to_upload/daenerys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/daenerys.png -------------------------------------------------------------------------------- /emoji_to_upload/dance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/dance.gif -------------------------------------------------------------------------------- /emoji_to_upload/dealwithit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/dealwithit.gif -------------------------------------------------------------------------------- /emoji_to_upload/derp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/derp.png -------------------------------------------------------------------------------- /emoji_to_upload/dino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/dino.png -------------------------------------------------------------------------------- /emoji_to_upload/disapproval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/disapproval.png -------------------------------------------------------------------------------- /emoji_to_upload/doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/doge.png -------------------------------------------------------------------------------- /emoji_to_upload/dosequis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/dosequis.png -------------------------------------------------------------------------------- /emoji_to_upload/drevil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/drevil.png -------------------------------------------------------------------------------- /emoji_to_upload/ducreux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/ducreux.png -------------------------------------------------------------------------------- /emoji_to_upload/dumbbitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/dumbbitch.png -------------------------------------------------------------------------------- /emoji_to_upload/embarrassed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/embarrassed.png -------------------------------------------------------------------------------- /emoji_to_upload/facepalm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/facepalm.png -------------------------------------------------------------------------------- /emoji_to_upload/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/failed.png -------------------------------------------------------------------------------- /emoji_to_upload/fap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/fap.png -------------------------------------------------------------------------------- /emoji_to_upload/farnsworth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/farnsworth.png -------------------------------------------------------------------------------- /emoji_to_upload/firstworldproblem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/firstworldproblem.png -------------------------------------------------------------------------------- /emoji_to_upload/fonzie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/fonzie.png -------------------------------------------------------------------------------- /emoji_to_upload/footinmouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/footinmouth.png -------------------------------------------------------------------------------- /emoji_to_upload/foreveralone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/foreveralone.png -------------------------------------------------------------------------------- /emoji_to_upload/freddie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/freddie.png -------------------------------------------------------------------------------- /emoji_to_upload/frown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/frown.png -------------------------------------------------------------------------------- /emoji_to_upload/fry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/fry.png -------------------------------------------------------------------------------- /emoji_to_upload/fuckyeah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/fuckyeah.png -------------------------------------------------------------------------------- /emoji_to_upload/fwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/fwp.png -------------------------------------------------------------------------------- /emoji_to_upload/gangnamstyle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/gangnamstyle.gif -------------------------------------------------------------------------------- /emoji_to_upload/garret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/garret.png -------------------------------------------------------------------------------- /emoji_to_upload/gasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/gasp.png -------------------------------------------------------------------------------- /emoji_to_upload/gates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/gates.png -------------------------------------------------------------------------------- /emoji_to_upload/gaytroll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/gaytroll.gif -------------------------------------------------------------------------------- /emoji_to_upload/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/ghost.png -------------------------------------------------------------------------------- /emoji_to_upload/greenbeer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/greenbeer.png -------------------------------------------------------------------------------- /emoji_to_upload/grumpycat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/grumpycat.png -------------------------------------------------------------------------------- /emoji_to_upload/gtfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/gtfo.png -------------------------------------------------------------------------------- /emoji_to_upload/happytear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/happytear.gif -------------------------------------------------------------------------------- /emoji_to_upload/haveaseat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/haveaseat.png -------------------------------------------------------------------------------- /emoji_to_upload/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/heart.png -------------------------------------------------------------------------------- /emoji_to_upload/hipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/hipster.png -------------------------------------------------------------------------------- /emoji_to_upload/hodor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/hodor.png -------------------------------------------------------------------------------- /emoji_to_upload/huh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/huh.png -------------------------------------------------------------------------------- /emoji_to_upload/ilied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/ilied.png -------------------------------------------------------------------------------- /emoji_to_upload/indeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/indeed.png -------------------------------------------------------------------------------- /emoji_to_upload/innocent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/innocent.png -------------------------------------------------------------------------------- /emoji_to_upload/iseewhatyoudidthere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/iseewhatyoudidthere.png -------------------------------------------------------------------------------- /emoji_to_upload/itsatrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/itsatrap.png -------------------------------------------------------------------------------- /emoji_to_upload/jackie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/jackie.png -------------------------------------------------------------------------------- /emoji_to_upload/jaime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/jaime.png -------------------------------------------------------------------------------- /emoji_to_upload/jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/jira.png -------------------------------------------------------------------------------- /emoji_to_upload/jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/jobs.png -------------------------------------------------------------------------------- /emoji_to_upload/joffrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/joffrey.png -------------------------------------------------------------------------------- /emoji_to_upload/jonsnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/jonsnow.png -------------------------------------------------------------------------------- /emoji_to_upload/kennypowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/kennypowers.png -------------------------------------------------------------------------------- /emoji_to_upload/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/kiss.png -------------------------------------------------------------------------------- /emoji_to_upload/krang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/krang.gif -------------------------------------------------------------------------------- /emoji_to_upload/kwanzaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/kwanzaa.png -------------------------------------------------------------------------------- /emoji_to_upload/lincoln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/lincoln.png -------------------------------------------------------------------------------- /emoji_to_upload/lol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/lol.png -------------------------------------------------------------------------------- /emoji_to_upload/lolwut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/lolwut.png -------------------------------------------------------------------------------- /emoji_to_upload/megusta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/megusta.png -------------------------------------------------------------------------------- /emoji_to_upload/menorah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/menorah.png -------------------------------------------------------------------------------- /emoji_to_upload/mike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/mike.png -------------------------------------------------------------------------------- /emoji_to_upload/mindblown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/mindblown.gif -------------------------------------------------------------------------------- /emoji_to_upload/moneymouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/moneymouth.png -------------------------------------------------------------------------------- /emoji_to_upload/ned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/ned.png -------------------------------------------------------------------------------- /emoji_to_upload/nextgendev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/nextgendev.png -------------------------------------------------------------------------------- /emoji_to_upload/ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/ninja.png -------------------------------------------------------------------------------- /emoji_to_upload/notbad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/notbad.png -------------------------------------------------------------------------------- /emoji_to_upload/nothingtodohere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/nothingtodohere.png -------------------------------------------------------------------------------- /emoji_to_upload/notsureif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/notsureif.png -------------------------------------------------------------------------------- /emoji_to_upload/notsureifgusta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/notsureifgusta.png -------------------------------------------------------------------------------- /emoji_to_upload/obama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/obama.png -------------------------------------------------------------------------------- /emoji_to_upload/ohcrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/ohcrap.png -------------------------------------------------------------------------------- /emoji_to_upload/ohgodwhy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/ohgodwhy.jpeg -------------------------------------------------------------------------------- /emoji_to_upload/okay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/okay.png -------------------------------------------------------------------------------- /emoji_to_upload/omg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/omg.png -------------------------------------------------------------------------------- /emoji_to_upload/oops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/oops.png -------------------------------------------------------------------------------- /emoji_to_upload/orly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/orly.png -------------------------------------------------------------------------------- /emoji_to_upload/pbr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/pbr.png -------------------------------------------------------------------------------- /emoji_to_upload/pete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/pete.png -------------------------------------------------------------------------------- /emoji_to_upload/philosoraptor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/philosoraptor.png -------------------------------------------------------------------------------- /emoji_to_upload/pingpong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/pingpong.png -------------------------------------------------------------------------------- /emoji_to_upload/pirate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/pirate.gif -------------------------------------------------------------------------------- /emoji_to_upload/pokerface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/pokerface.png -------------------------------------------------------------------------------- /emoji_to_upload/poo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/poo.png -------------------------------------------------------------------------------- /emoji_to_upload/present.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/present.png -------------------------------------------------------------------------------- /emoji_to_upload/pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/pumpkin.png -------------------------------------------------------------------------------- /emoji_to_upload/rageguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/rageguy.png -------------------------------------------------------------------------------- /emoji_to_upload/rebeccablack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/rebeccablack.png -------------------------------------------------------------------------------- /emoji_to_upload/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/reddit.png -------------------------------------------------------------------------------- /emoji_to_upload/romney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/romney.png -------------------------------------------------------------------------------- /emoji_to_upload/rudolph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/rudolph.png -------------------------------------------------------------------------------- /emoji_to_upload/sadpanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/sadpanda.png -------------------------------------------------------------------------------- /emoji_to_upload/sadtroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/sadtroll.png -------------------------------------------------------------------------------- /emoji_to_upload/samuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/samuel.png -------------------------------------------------------------------------------- /emoji_to_upload/santa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/santa.png -------------------------------------------------------------------------------- /emoji_to_upload/scumbag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/scumbag.png -------------------------------------------------------------------------------- /emoji_to_upload/sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/sealed.png -------------------------------------------------------------------------------- /emoji_to_upload/seomoz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/seomoz.png -------------------------------------------------------------------------------- /emoji_to_upload/shamrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/shamrock.png -------------------------------------------------------------------------------- /emoji_to_upload/shrug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/shrug.png -------------------------------------------------------------------------------- /emoji_to_upload/skyrim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/skyrim.png -------------------------------------------------------------------------------- /emoji_to_upload/slant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/slant.png -------------------------------------------------------------------------------- /emoji_to_upload/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/smile.png -------------------------------------------------------------------------------- /emoji_to_upload/stare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/stare.png -------------------------------------------------------------------------------- /emoji_to_upload/stash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/stash.png -------------------------------------------------------------------------------- /emoji_to_upload/straightface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/straightface.png -------------------------------------------------------------------------------- /emoji_to_upload/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/success.png -------------------------------------------------------------------------------- /emoji_to_upload/successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/successful.png -------------------------------------------------------------------------------- /emoji_to_upload/sweetjesus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/sweetjesus.png -------------------------------------------------------------------------------- /emoji_to_upload/tableflip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/tableflip.png -------------------------------------------------------------------------------- /emoji_to_upload/taft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/taft.png -------------------------------------------------------------------------------- /emoji_to_upload/tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/tea.png -------------------------------------------------------------------------------- /emoji_to_upload/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/thumbs_down.png -------------------------------------------------------------------------------- /emoji_to_upload/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/thumbs_up.png -------------------------------------------------------------------------------- /emoji_to_upload/timeforthat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/timeforthat.gif -------------------------------------------------------------------------------- /emoji_to_upload/tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/tongue.png -------------------------------------------------------------------------------- /emoji_to_upload/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/tree.png -------------------------------------------------------------------------------- /emoji_to_upload/troll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/troll.png -------------------------------------------------------------------------------- /emoji_to_upload/truestory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/truestory.png -------------------------------------------------------------------------------- /emoji_to_upload/trump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/trump.png -------------------------------------------------------------------------------- /emoji_to_upload/turkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/turkey.png -------------------------------------------------------------------------------- /emoji_to_upload/twss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/twss.png -------------------------------------------------------------------------------- /emoji_to_upload/tyrion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/tyrion.png -------------------------------------------------------------------------------- /emoji_to_upload/tywin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/tywin.png -------------------------------------------------------------------------------- /emoji_to_upload/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/unknown.png -------------------------------------------------------------------------------- /emoji_to_upload/washington.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/washington.png -------------------------------------------------------------------------------- /emoji_to_upload/wat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/wat.png -------------------------------------------------------------------------------- /emoji_to_upload/whynotboth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/whynotboth.gif -------------------------------------------------------------------------------- /emoji_to_upload/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/wink.png -------------------------------------------------------------------------------- /emoji_to_upload/winktongue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/winktongue.gif -------------------------------------------------------------------------------- /emoji_to_upload/wtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/wtf.png -------------------------------------------------------------------------------- /emoji_to_upload/yey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/yey.png -------------------------------------------------------------------------------- /emoji_to_upload/yodawg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/yodawg.png -------------------------------------------------------------------------------- /emoji_to_upload/yougotitdude.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/yougotitdude.gif -------------------------------------------------------------------------------- /emoji_to_upload/yuno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/yuno.png -------------------------------------------------------------------------------- /emoji_to_upload/zoidberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/zoidberg.png -------------------------------------------------------------------------------- /emoji_to_upload/zzz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeBuffet/Slekkel/24f9e724cb621003392afeba2ce1af88a62bc5d1/emoji_to_upload/zzz.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Slekkel", 3 | "version": "0.1.0", 4 | "description": "Import a bunch of (meme) emoticons to Slack!", 5 | "main": "Main.coffee", 6 | "dependencies": { 7 | "prompt": "~0.2.13", 8 | "casperjs": "~1.1.0-beta3", 9 | "coffee-script": "~1.10.0", 10 | "walk": "~2.3.3" 11 | }, 12 | "devDependencies": {}, 13 | "scripts": { 14 | "test": "echo \"Error: no test specified\" && exit 1" 15 | }, 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/CodeBuffet/Slekkel.git" 19 | }, 20 | "author": "Peter Willemsen", 21 | "license": "BSD-2-Clause", 22 | "bugs": { 23 | "url": "https://github.com/CodeBuffet/Slekkel/issues" 24 | }, 25 | "homepage": "https://github.com/CodeBuffet/Slekkel" 26 | } 27 | --------------------------------------------------------------------------------