Skip to content

Instantly share code, notes, and snippets.

@nictrix
Last active June 17, 2021 16:46
Show Gist options
  • Save nictrix/29926ae2985c90954427 to your computer and use it in GitHub Desktop.
Save nictrix/29926ae2985c90954427 to your computer and use it in GitHub Desktop.
hipchat_emoticons.to_slack
require 'csv'
require 'open-uri'
team_name = ARGV[0]
#source.csv instructions
#download from: https://www.hipchat.com/emoticons (you'll need to get the URLs manually)
#
#csv format (example file):
#allthethings,https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/allthethings-1414024836@2x.png
emoticons = CSV.read('source.csv')
general_script =<<EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head profile="http://selenium-ide.openqa.org/profiles/test-case">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="selenium.base" href="http://localhost:9292" />
<title>__NAME__</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">__NAME__</td></tr>
</thead><tbody>
<tr>
<td>open</td>
<td>https://__TEAM__.slack.com/customize/emoji</td>
<td></td>
</tr>
<tr>
<td>type</td>
<td>id=emojiname</td>
<td>__NAME__</td>
</tr>
<tr>
<td>click</td>
<td>id=modedata</td>
<td></td>
</tr>
<tr>
<td>type</td>
<td>id=emojiimg</td>
<td>__FILE__</td>
</tr>
<tr>
<td>clickAndWait</td>
<td>css=input.btn.btn_primary</td>
<td></td>
</tr>
</tbody></table>
</body>
</html>
EOF
test_cases = ''
emoticons.each do |emoticon|
emoticon_basename = File.basename(emoticon.last)
File.open("/tmp/#{emoticon_basename}", "wb") do |saved_file|
open(emoticon.last, "rb") do |read_file|
saved_file.write(read_file.read)
end
end
output = general_script
output = output.gsub('__NAME__',emoticon.first)
output = output.gsub('__FILE__',"/tmp/#{emoticon_basename}")
output = output.gsub('__TEAM__',team_name)
File.open("#{emoticon.first}.html", 'w') {|f| f.write(output) }
test_cases+="\n<tr><td rowspan='1' colspan='3'>#{emoticon.first}</td></tr>"
test_cases+="\n<tr><td><a href='#{emoticon.first}.html'>#{emoticon.first}</a></td></tr>"
end
test_case =<<EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />
<title>Test Suite</title>
</head>
<body>
<table id="suiteTable" cellpadding="1" cellspacing="1" border="1" class="selenium"><tbody>
<tr><td><b>Test Suite</b></td></tr>
__TEST_CASES__
</tbody></table>
</body>
</html>
EOF
test_case = test_case.gsub('__TEST_CASES__',test_cases)
File.open('hipchat_test_suite.html', 'w') {|f| f.write(test_case) }
#open hipchat_test_suite.html from SeleniumIDE (Firefox Plugin will work) and run the entire test suite with a browser already logged into slack
allthethings https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/allthethings-1414024836@2x.png
android https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/android-1414024011@2x.png
areyoukiddingme https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/areyoukiddingme-1414024355@2x.png
arrington https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/arrington-1414023805@2x.png
arya https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/arya-1414028821@2x.png
ashton https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/ashton-1414025136@2x.png
atlassian https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/atlassian-1414025304@2x.png
awesome https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/awesome-1417754492@2x.png
awthanks https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/awthanks-1414025485@2x.png
aww https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/aww-1417754503@2x.png
awwyiss https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/awwyiss-1417754513@2x.png
awyeah https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/awyeah-1417750835@2x.png
badass https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/badass-1417750950@2x.png
badjokeeel https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/badjokeeel-1417751014@2x.png
badpokerface https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/badpokerface-1414089953@2x.png
badtime https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/badtime-1417754523@2x.png
bamboo https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/bamboo-1431522312@2x.png
basket https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/basket-1414023854@2x.png
beer https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/beer-1414022661@2x.png
bicepleft https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/bicepleft-1417754567@2x.png
bicepright https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/bicepright-1417754576@2x.png
bitbucket https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/bitbucket-1431522339@2x.png
boom https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/boom-1414103101@2x.gif
borat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/borat-1417754598@2x.png
branch https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/branch-1414026601@2x.png
bumble https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/bumble-1417751030@2x.png
bunny https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/bunny-1414023876@2x.png
cadbury https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/cadbury-1414023926@2x.png
cake https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/cake-1414024030@2x.png
candycorn https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/candycorn-1414024689@2x.png
carl https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/carl-1417754606@2x.png
caruso https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/caruso-1417751051@2x.png
catchemall https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/catchemall-1417754614@2x.png
ceilingcat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/ceilingcat-1414025417@2x.png
celeryman https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/celeryman-1418247558@2x.gif
cereal https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/cereal-1414023343@2x.png
cerealspit https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/cerealspit-1414026180@2x.png
challengeaccepted https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/challengeaccepted-1417751095@2x.png
chef https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/chef-1417754621@2x.png
chewie https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/chewie-1417751139@2x.png
chocobunny https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/chocobunny-1414023949@2x.png
chompy https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/chompy-1414025208@2x.gif
chucknorris https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/chucknorris-1417751159@2x.png
clarence https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/clarence-1417751942@2x.png
coffee https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/coffee-1414375635@2x.png
confluence https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/confluence-1431522360@2x.png
content https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/content-1414023392@2x.png
continue https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/continue-1414026510@2x.png
cookie https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/cookie-1417754631@2x.png
cornelius https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/cornelius-1414022924@2x.png
corpsethumb https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/corpsethumb-1417754640@2x.png
crucible https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/crucible-1431522372@2x.png
daenerys https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/daenerys-1414028947@2x.png
dance https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/dance-1414025267@2x.gif
dealwithit https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/dealwithit-1414024955@2x.gif
derp https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/derp-1417751963@2x.png
disappear https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/disappear-1417754650@2x.gif
disapproval https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/disapproval-1414024448@2x.png
doge https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/doge-1414029048@2x.png
doh https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/doh-1417755734@2x.png
donotwant https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/donotwant-1417755746@2x.png
dosequis https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/dosequis-1414024105@2x.png
downvote https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/downvote-1417755753@2x.png
drevil https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/drevil-1414025327@2x.png
drool https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/drool-1417755763@2x.png
ducreux https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/ducreux-1414023991@2x.png
dumb https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/dumb-1417751988@2x.png
evilburns https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/evilburns-1417755772@2x.png
excellent https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/excellent-1417755785@2x.png
facepalm https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/facepalm-1417752010@2x.png
failed https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/failed-1414026532@2x.png
feelsbadman https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/feelsbadman-1417755795@2x.png
feelsgoodman https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/feelsgoodman-1417755815@2x.png
finn https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/finn-1417755835@2x.png
fireworks https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/fireworks-1420575887@2x.gif
firstworldproblems https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/firstworldproblems-1414025630@2x.png
fisheye https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/fisheye-1431522386@2x.png
fonzie https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/fonzie-1417752102@2x.png
foreveralone https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/foreveralone-1414023140@2x.png
forscale https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/forscale-1428536097@2x.png
freddie https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/freddie-1417752152@2x.png
fry https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/fry-1414025241@2x.png
ftfy https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/ftfy-1417755844@2x.png
fu https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/fu-1414023026@2x.png
fuckyeah https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/fuckyeah-1414023828@2x.png
fwp https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/fwp-1414025600@2x.png
gangnamstyle https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/gangnamstyle-1417752182@2x.gif
gates https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/gates-1417752311@2x.png
ghost https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/ghost-1414024665@2x.png
giggity https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/giggity-1417755851@2x.png
goldstar https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/goldstar-1417755861@2x.png
goodnews https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/goodnews-1417752451@2x.png
greenbeer https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/greenbeer-1414023735@2x.png
grumpycat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/grumpycat-1414026366@2x.png
gtfo https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/gtfo-1414026923@2x.png
haha https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/haha-1417755876@2x.png
haveaseat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/haveaseat-1417752572@2x.png
heart https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/heart-1417752586@2x.png
heygirl https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/heygirl-1413684451@2x.png
hipchat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/hipchat-1431522405@2x.png
hipster https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/hipster-1414025113@2x.png
hodor https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/hodor-1414028801@2x.png
huehue https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/huehue-1417755882@2x.png
hugefan https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/hugefan-1417755893@2x.png
huh https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/huh-1414026942@2x.png
ilied https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/ilied-1417752608@2x.png
indeed https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/indeed-1417752694@2x.png
iseewhatyoudidthere https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/iseewhatyoudidthere-1414026019@2x.png
itsatrap https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/itsatrap-1417752711@2x.png
jackie https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/jackie-1417752827@2x.png
jaime https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/jaime-1414028872@2x.png
jake https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/jake-1417807978@2x.png
jira https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/jira-1431522426@2x.png
jobs https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/jobs-1417752336@2x.png
joffrey https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/joffrey-1417760026@2x.png
jonsnow https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/jonsnow-1414028921@2x.png
kennypowers https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/kennypowers-1417752920@2x.png
krang https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/krang-1417752938@2x.png
kwanzaa https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/kwanzaa-1414022870@2x.png
lincoln https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/lincoln-1417752959@2x.png
lol https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/lol-1414023491@2x.png
lolwut https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/lolwut-1417753079@2x.png
megusta https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/megusta-1414023519@2x.png
meh https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/meh-1417755922@2x.png
menorah https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/menorah-1414022898@2x.png
mindblown https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/mindblown-1414029295@2x.gif
motherofgod https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/motherofgod-1417755937@2x.gif
ned https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/ned-1414028897@2x.png
nextgendev https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/nextgendev-1414028778@2x.png
nice https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/nice-1417756761@2x.png
ninja https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/ninja-1414025554@2x.png
noidea https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/noidea-1417756770@2x.png
notbad https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/notbad-1417754112@2x.png
nothingtodohere https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/nothingtodohere-1414025069@2x.png
notit https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/notit-1417756777@2x.png
notsureif https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/notsureif-1417754143@2x.png
notsureifgusta https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/notsureifgusta-1414025677@2x.png
obama https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/obama-1414026271@2x.png
ohcrap https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/ohcrap-1414023779@2x.png
ohgodwhy https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/ohgodwhy-1414025393@2x.png
ohmy https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/ohmy-1417756786@2x.png
okay https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/okay-1414023544@2x.png
omg https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/omg-1414023574@2x.png
orly https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/orly-1414025090@2x.png
paddlin https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/paddlin-1417756794@2x.png
pbr https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/pbr-1414024081@2x.png
philosoraptor https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/philosoraptor-1417754200@2x.png
pingpong https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/pingpong-1414025441@2x.png
pirate https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/pirate-1413932391@2x.png
pokerface https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/pokerface-1414090721@2x.png
poo https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/poo-1413932426@2x.png
present https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/present-1417754218@2x.png
pumpkin https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/pumpkin-1414024641@2x.png
rageguy https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/rageguy-1414022976@2x.png
rainicorn https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/rainicorn-1417807924@2x.png
rebeccablack https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/rebeccablack-1414024054@2x.png
reddit https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/reddit-1417754241@2x.png
rockon https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/rockon-1417756812@2x.gif
romney https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/romney-1417754260@2x.png
rudolph https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/rudolph-1414022810@2x.png
sadpanda https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/sadpanda-1417754292@2x.png
sadtroll https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/sadtroll-1414023623@2x.png
salute https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/salute-1417756826@2x.png
samuel https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/samuel-1417754316@2x.png
santa https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/santa-1414022839@2x.png
sap https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/sap-1417756835@2x.png
scumbag https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/scumbag-1413684123@2x.png
seomoz https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/seomoz-1414023675@2x.png
shamrock https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/shamrock-1414023710@2x.png
shrug https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/shrug-1414032234@2x.png
skyrim https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/skyrim-1417754336@2x.png
sourcetree https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/sourcetree-1431522444@2x.png
standup https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/standup-1417756844@2x.gif
stare https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/stare-1414024815@2x.png
stash https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/stash-1431522460@2x.png
success https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/success-1414025948@2x.png
successful https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/successful-1414026553@2x.png
sweetjesus https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/sweetjesus-1417754353@2x.png
tableflip https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/tableflip-1414031937@2x.png
taco https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/taco-1417756862@2x.png
taft https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/taft-1417754373@2x.png
tea https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/tea-1414025463@2x.png
thatthing https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/thatthing-1417756953@2x.png
theyregreat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/theyregreat-1417756964@2x.png
toodamnhigh https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/toodamnhigh-1417756973@2x.png
tree https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/tree-1414022753@2x.png
troll https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/troll-1414023002@2x.png
truestory https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/truestory-1413920318@2x.png
trump https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/trump-1414026327@2x.png
turkey https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/turkey-1414028694@2x.png
twss https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/twss-1417754388@2x.png
tyrion https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/tyrion-1414028850@2x.png
tywin https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/tywin-1414028997@2x.png
unacceptable https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/unacceptable-1417756981@2x.png
unknown https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/unknown-1414026584@2x.png
upvote https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/upvote-1417756989@2x.png
vote https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/vote-1415153517@2x.png
waiting https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/waiting-1417756997@2x.gif
washington https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/washington-1414023164@2x.png
wat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/wat-1414024905@2x.png
whoa https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/whoa-1417757013@2x.png
whynotboth https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/whynotboth-1414029073@2x.gif
wtf https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/wtf-1417754405@2x.png
yey https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/yey-1414023049@2x.png
yodawg https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/yodawg-1417754419@2x.png
youdontsay https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/youdontsay-1417757028@2x.png
yougotitdude https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/yougotitdude-1414026430@2x.gif
yuno https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/yuno-1417754433@2x.png
zoidberg https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/zoidberg-1417754444@2x.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment