This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{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}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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("+") } ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# Set the default policies to allow everything while we set up new rules. | |
# Prevents cutting yourself off when running from remote SSH. | |
iptables -P INPUT ACCEPT | |
iptables -P FORWARD ACCEPT | |
iptables -P OUTPUT ACCEPT | |
# Flush any existing rules, leaving just the defaults | |
iptables -F |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import string | |
if len(sys.argv) < 2: | |
print "Usage: %s infile [outfile] [delimiter_char]" % sys.argv[0] | |
sys.exit(1) | |
filename_in = sys.argv[1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
CMD="sbt test" | |
# Check if we actually have commits to push | |
commits=`git log @{u}..` | |
if [ -z "$commits" ]; then | |
exit 0 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
insert_sudo () { zle beginning-of-line; zle -U "sudo " } | |
zle -N insert-sudo insert_sudo | |
bindkey "^[s" insert-sudo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; TEMP !!!! | |
/def -t'Nagle porywa cie nurt i niesie na wschod!' oxen_kanaly_event = \ | |
/_map_go exit:e | |
;------------------------------------------------------------------------ | |
; ... LISTY ... | | |
;------------------------------------------------------------------------ | |
/set _map_standard_exits=\ | |
n|polnoc|\ | |
s|poludnie|\ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var runFrom = function(step, lastStep, callback) { | |
var cb = step >= lastStep ? callback : function() { | |
runFrom(step + 1, lastStep, callback); | |
}; | |
this['step' + step].call(this, cb); | |
}; | |
runFrom(1, 17, function() { | |
console.log('finally done...'); | |
}); |
OlderNewer