Skip to content

Instantly share code, notes, and snippets.

View holderbaum's full-sized avatar

Jakob Holderbaum holderbaum

View GitHub Profile
@holderbaum
holderbaum / smooth-2.html
Created April 4, 2011 08:25
full scaling!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>FL0A7</title>>
<script src="http://cdn.jquerytools.org/1.2.5/jquery.tools.min.js"></script>
<style type="text/css" media="screen">
body{
background-color: black;
@holderbaum
holderbaum / neverletdie.sh
Created November 21, 2010 10:35
just call for Example "./neverletdie ssh_bridge.log ssh -vND 1337 my-server.com".. Your SSH-Bridge will stay forever :) (and log failures in ssh_bridge.log)
#!/bin/sh
LOGFILE=$1
shift
CMD=$*
until $CMD ; do
echo "$(date): exited with $?" >> $LOGFILE
sleep 2