Skip to content

Instantly share code, notes, and snippets.

View afranken's full-sized avatar
👨‍💻

Arne Franken afranken

👨‍💻
  • Hamburg, Germany
  • 23:26 (UTC +02:00)
View GitHub Profile
@afranken
afranken / hack.sh
Created March 31, 2012 22:53 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@afranken
afranken / gist:1167468
Created August 24, 2011 07:18 — forked from alexschwartz/gist:912787
Ask Jenkins via json using jquery
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Seitenr?nder - marginwidth, marginheight, topmargin, leftmargin</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
var baseUrl;
@afranken
afranken / .gitconfig
Created June 9, 2011 08:00 — forked from orj/.gitconfig
Using p4merge as Git mergetool on Mac OS X. Do not use TABs for indentation.
[merge]
keepBackup = false
tool = custom
[mergetool "custom"]
cmd = /Applications/development/p4merge.app/Contents/Resources/launchp4merge "$PWD/$REMOTE" "$PWD/$BASE" "$PWD/$LOCAL" "$PWD/$MERGED"
keepTemporaries = false
trustExitCode = false
keepBackup = false