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
POST /v1/tokens | |
2017/12/19 15:52:00 | |
Summary | |
ID | |
req_oXkw1iMAbnVZE4 | |
Time | |
2017/12/19 15:52:00 | |
Method | |
POST | |
URL |
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
// Run in dev tools https://<yourteam>.slack.com/customize/emoji | |
// Scroll to the bottom of the page to get all the emojis in the leaderboard | |
var out = "CUSTOM EMOJI LEADERS\n"; | |
var usersCount = {}; | |
$('.p-customize_emoji_list__author').each((i, el) => { | |
let user = el.textContent.trim(); | |
let u = usersCount[user] ? usersCount[user] : {user: user, count: 0}; | |
u.count += 1 | |
usersCount[user] = u; | |
}); |