Skip to content

Instantly share code, notes, and snippets.

@x1a0
x1a0 / pre-commit.sh
Last active December 25, 2015 04:19
Git pre-commit script for checking debug codes
# If there are debug codes, print the offending file names and fail.
FILES_PATTERN='\.scala$'
FORBIDDEN='println'
git diff --cached --name-only | \
grep -E $FILES_PATTERN | \
GREP_COLOR='4;5;37;41' xargs grep --color --with-filename -n $FORBIDDEN && echo 'COMMIT REJECTED Found "$FORBIDDEN" references. Please remove them before commiting' && exit 1
@x1a0
x1a0 / current_window_whois.pl
Created April 26, 2013 15:49
Irssi script: display /WHO and /WHOIS reply in current channel window.
sub level {
Irssi::window_find_name("(status)")->command("^window level $_[0]crap");
}
# https://www.alien.net.au/irc/irc2numerics.html
# /WHOIS
Irssi::signal_add_first("event 311", sub { level("-") } );
Irssi::signal_add_last("event 369", sub { level("+") } );
Irssi::signal_add_last("event 318", sub { level("+") } );
@x1a0
x1a0 / Cakefile
Created April 10, 2013 11:22
Cakefile for Sencha Touch development
{spawn} = require 'child_process'
dev = ->
cmd = "coffee"
args = ["-c", "-b", "-w", "-o", "app", "coffee"]
coffee = spawn cmd, args
coffee.stdout.pipe process.stdout
coffee.stderr.pipe process.stderr
coffee.on "exit", (status) ->
console.log "coffee exit with #{status}"
@x1a0
x1a0 / zerofree.sh
Last active January 18, 2017 16:40
Zero out space on a virtual machine
init 1
for i in `mount | grep sda | grep ext | cut -b 9` ; do mount -o remount,ro /dev/sda$i && zerofree -v /dev/sda$i && mount -o remount,rw /dev/sda$i ; done ;