Dissidence Toolkit – Music Blackhole – HDD Detonator – Internet Famous – Dubnet – Metawiki – ATM Traffic Analysis (edit this)
The Music Blackhole is a music collection that so massive that it has collapsed under its own weight. Run wormhole.app to tune in & join the fun.
TODO – email jamie @ this domain name to beta test
Requirements:
wormhole.sh
#!/usr/bin/env bash # # wormhole.sh # by Jamie Wilkinson <jamie@tramchase.com> # # simple frontend for connecting to a remote daap share and sharing it with your LAN # more: Music Blackhole <http://tramchase.com/projects/music-blackhole> # config SERVER=colossus.eyebeam.org USER=blackhole SHARE="-g" # set to blank to keep the connection to yourself, set to "-g" to share with your LAN # config you probably do not need to change LOCALPORT=3690 REMOTEPORT=3689 LOGFILE="$0.log" # change to /dev/null to disable logging # work echo "Establishing ssh tunnel..." ssh -v -N -f $SHARE $USER@$SERVER -L 3690:$SERVER:3689 > $LOGFILE 2&>1 echo "Broadcasting mDNS service..." # avahi-publish-service -v blackhole-`hostname` _daap._tcp. 3690 > $LOGFILE 2&>1 & dns-sd -P "blackhole-jdubtop" _daap._tcp. local 3690 localhost localhost > $LOGFILE 2&>1 & # mDNSProxyResponderPosix 127.0.0.1 blackhole "BLACKHOLE Music Server" _daap._tcp 3690 > $LOGFILE 2&>1 & echo "done." echo "Kill the associated ssh & avahi-publish-servive processes to turn it off; this is a TODO item." exit