Skip to content

Instantly share code, notes, and snippets.

@Mitame
Mitame / MALrandom.user.js
Last active April 21, 2017 13:59 — forked from IA21/MALrandom.js
Add random button to MAL animelist
// ==UserScript==
// @name MAL random
// @version 1
// @description adds random button on MAL animelist
// @author IA21
// @match https://myanimelist.net/animelist/*
// @grant none
// ==/UserScript==
function getRandomInt(min, max) {
@Mitame
Mitame / ircd.py
Created December 1, 2015 07:56 — forked from Taiiwo/ircd.py
A library for creating IRC interfaces to messaging services, allowing them to be used via IRC clients.
import socket
import thread
import re
class IRCd:
debug = True
servername = socket.getfqdn("")[:140]
events = []
handlers = {}
def __init__(self, host="127.0.0.1", port=6667):