Skip to content

Instantly share code, notes, and snippets.

View TechnoTone's full-sized avatar
🖖

Tony Hunt TechnoTone

🖖
View GitHub Profile
@TechnoTone
TechnoTone / Bob.elm
Last active October 1, 2020 22:54
Exercism Bob.elm
module Bob exposing (hey)
import Parser as P exposing (..)
type Remark
= Question
| Shouting
| ShoutingQuestion
| Empty
@TechnoTone
TechnoTone / gitalias
Last active October 26, 2022 11:08
git aliases
[alias]
st = status
s = status -s
f = !git fetch -a --tags && git status ;:
fp = !git fetch -a --tags && git pull
p = pull
ch = checkout
co = checkout
cm = checkout master
cb = checkout -b
@TechnoTone
TechnoTone / user.js
Created October 29, 2017 13:03
TamperMonkey script for SpamGourmet.com
// ==UserScript==
// @name SpamGourmet Hack
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Custom JavaScript to make it easy to manage email addresses on SpamGourmet.
// @author Tony Hunt
// @match https://www.spamgourmet.com/*
// @grant none
// @require http://code.jquery.com/jquery-2.2.4.min.js
// ==/UserScript==