Skip to content

Instantly share code, notes, and snippets.

View hex2f's full-sized avatar
๐Ÿณ๏ธโ€๐ŸŒˆ
Be crime, do girls

Leah Lundqvist hex2f

๐Ÿณ๏ธโ€๐ŸŒˆ
Be crime, do girls
View GitHub Profile
import csv
import matplotlib.pyplot as plt
import pandas as pd
from tqdm import tqdm
import glob
from dateutil.parser import parse
# Read messages.csv in all data/messages/* directories
message_files = glob.glob('data/messages/*/messages.csv')
@hex2f
hex2f / sharding-router.go
Created May 3, 2021 17:30
Sharding router for Discord slash command webhooks
package main
import (
"crypto/ed25519"
"encoding/hex"
"encoding/json"
"flag"
"fmt"
"log"
"os"
{"100":"๐Ÿ’ฏ","1234":"๐Ÿ”ข","grinning":"๐Ÿ˜€","smiley":"๐Ÿ˜ƒ","smile":"๐Ÿ˜„","grin":"๐Ÿ˜","laughing":"๐Ÿ˜†","sweat_smile":"๐Ÿ˜…","joy":"๐Ÿ˜‚","rofl":"๐Ÿคฃ","relaxed":"โ˜บ๏ธ","blush":"๐Ÿ˜Š","innocent":"๐Ÿ˜‡","slightly_smiling_face":"๐Ÿ™‚","upside_down_face":"๐Ÿ™ƒ","wink":"๐Ÿ˜‰","relieved":"๐Ÿ˜Œ","heart_eyes":"๐Ÿ˜","kissing_heart":"๐Ÿ˜˜","kissing":"๐Ÿ˜—","kissing_smiling_eyes":"๐Ÿ˜™","kissing_closed_eyes":"๐Ÿ˜š","yum":"๐Ÿ˜‹","stuck_out_tongue_winking_eye":"๐Ÿ˜œ","stuck_out_tongue_closed_eyes":"๐Ÿ˜","stuck_out_tongue":"๐Ÿ˜›","money_mouth_face":"๐Ÿค‘","hugs":"๐Ÿค—","nerd_face":"๐Ÿค“","sunglasses":"๐Ÿ˜Ž","clown_face":"๐Ÿคก","cowboy_hat_face":"๐Ÿค ","smirk":"๐Ÿ˜","unamused":"๐Ÿ˜’","disappointed":"๐Ÿ˜ž","pensive":"๐Ÿ˜”","worried":"๐Ÿ˜Ÿ","confused":"๐Ÿ˜•","slightly_frowning_face":"๐Ÿ™","frowning_face":"โ˜น๏ธ","persevere":"๐Ÿ˜ฃ","confounded":"๐Ÿ˜–","tired_face":"๐Ÿ˜ซ","weary":"๐Ÿ˜ฉ","triumph":"๐Ÿ˜ค","angry":"๐Ÿ˜ ","rage":"๐Ÿ˜ก","no_mouth":"๐Ÿ˜ถ","neutral_face":"๐Ÿ˜","expressionless":"๐Ÿ˜‘","hushed":"๐Ÿ˜ฏ","frowning":"๐Ÿ˜ฆ","anguished":"๐Ÿ˜ง","open_mouth":"๐Ÿ˜ฎ","astonished":"๐Ÿ˜ฒ","dizzy_face":"๐Ÿ˜ต","flushed":"๐Ÿ˜ณ","scream":"๐Ÿ˜ฑ","fearful":"๐Ÿ˜จ","cold_sweat":"๐Ÿ˜ฐ","cry":"๐Ÿ˜ข","disappoi
@hex2f
hex2f / emojis.json
Created July 26, 2017 13:18
A list of categorized emojis in JSON
{
"People":[
{
"icon":"๐Ÿ˜€",
"name":"grinning"
},
{
"icon":"๐Ÿ˜ƒ",
"name":"smiley"
},