Skip to content

Instantly share code, notes, and snippets.

View arvidkahl's full-sized avatar
🏠
Working from home

Arvid Kahl arvidkahl

🏠
Working from home
View GitHub Profile
@arvidkahl
arvidkahl / keybase.md
Created October 27, 2014 23:20
keybase.md

Keybase proof

I hereby claim:

  • I am arvidkahl on github.
  • I am arvidkahl (https://keybase.io/arvidkahl) on keybase.
  • I have a public key whose fingerprint is 604D 3303 39F0 A698 DD9E F967 FA8C 255B B842 0E88

To claim this, I am signing this object:

chroot_runner
chroot_runner
Running node v-0.6.12
App in audit mode by Watcher...
Spark running on port 14904
undefined
(function(){return process.env})(true,false)
(function(){return process.env.port})(true,false)
@arvidkahl
arvidkahl / recunrar.sh
Created February 21, 2012 13:50
recursive unrar script (with rm) that keeps directory structure intact
#!/bin/bash
for f in `find . -type f -name "*.rar"`
do
echo "Unpacking " $f " into " `dirname $f`
unrar x -y $f `dirname $f`
rm $f
done