Skip to content

Instantly share code, notes, and snippets.

View lun-4's full-sized avatar
📟
👗 synthetic

luna lun-4

📟
👗 synthetic
View GitHub Profile
CHECK OUT THIS GUY HE'S IN THE GIST
⣠⣦⣤⣀
⠀⠀⠀⠀⢡⣤⣿⣿
⠀⠀⠀⠀⠠⠜⢾⡟
⠀⠀⠀⠀⠀⠹⠿⠃⠄
⠀⠀⠈⠀⠉⠉⠑⠀⠀⠠⢈⣆
⠀⠀⣄⠀⠀⠀⠀⠀⢶⣷⠃⢵
⠐⠰⣷⠀⠀⠀⠀⢀⢟⣽⣆⠀⢃
⠰⣾⣶⣤⡼⢳⣦⣤⣴⣾⣿⣿⠞
⠀⠈⠉⠉⠛⠛⠉⠉⠉⠙⠁
@lun-4
lun-4 / discord-ipc.py
Created November 27, 2017 02:40
things discord ipc am i righte
import socket
import logging
import json
import struct
logging.basicConfig(level=logging.DEBUG)
log = logging.getLogger(__name__)
class RPC:
@lun-4
lun-4 / raw-bot.py
Created June 20, 2017 23:46
Raw bot that works with python 3.5, requires aiohttp and websockets. Made with <3 by Memework™
#!/usr/bin/env python3.5
# vi suck my dick vim is better
import websockets
import asyncio
import aiohttp
import logging
import json
logging.basicConfig(level=logging.DEBUG)
log = logging.getLogger(__name__)