Skip to content

Instantly share code, notes, and snippets.

View homelinen's full-sized avatar

Calum Gilchrist homelinen

View GitHub Profile
@godwhoa
godwhoa / flip.py
Created March 7, 2015 05:52
table flip kill linux
#!/usr/bin/python
# -*- coding: utf-8 -*-
import upsidedown
import sys
import os
updown = upsidedown.transform(sys.argv[1])
print u"(ノಠ益ಠ)ノ彡 "+updown
os.system("pkill "+sys.argv[1])
@haasn
haasn / about:config.md
Last active September 25, 2025 20:46
Firefox bullshit removal via about:config

Firefox bullshit removal

Updated: Just use qutebrowser (and disable javascript). The web is done for.

@martiell
martiell / plugins.py
Created November 19, 2018 17:07
Find transitive dependencies of a set of Jenkins plugins using update centre metadata
#!/usr/bin/env python3
# Finds the transitive closure of dependencies for a set of jenkins plugins.
# The jenkins puppet module does not resolve transitive dependencies, so all
# the transitive dependencies need to be listed in the yaml of plugins to
# install.
#
# This script reads JSON from the update centre for the relevant version of
# Jenkins. For Jenkins 2.60, run the following before this script:
# curl -sLO http://updates.jenkins-ci.org/2.60/update-center.actual.json
#