Skip to content

Instantly share code, notes, and snippets.

View alkemist's full-sized avatar

Jaden alkemist

View GitHub Profile
@dbuteau
dbuteau / betterpiaf
Created November 17, 2022 08:26
UserScript(TamperMonkey) to toggle display of pouet column for framapiaf mastodon instance
// ==UserScript==
// @name Toggle Framapiaf column
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Daniel Buteau
// @match https://framapiaf.org/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=framapiaf.org
// @require https://code.jquery.com/jquery-3.6.1.slim.min.js
// @grant none
@francoismartin
francoismartin / mpdcontroller.py
Created August 4, 2016 05:44
MPD Controller
import argparse
import re
import logging
import difflib
import mpd
import logging
parser = argparse.ArgumentParser()
logging.basicConfig()
@imjasonh
imjasonh / markdown.css
Last active May 17, 2024 07:30
Render Markdown as unrendered Markdown (see http://jsbin.com/huwosomawo)
* {
font-size: 12pt;
font-family: monospace;
font-weight: normal;
font-style: normal;
text-decoration: none;
color: black;
cursor: default;
}