Skip to content

Instantly share code, notes, and snippets.

View jurre's full-sized avatar

Jurre jurre

View GitHub Profile
@jurre
jurre / gist:7155759
Created October 25, 2013 14:42
.zshrc
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="agnoster"
# Example aliases
@jurre
jurre / set-local-ip.sh
Created October 19, 2013 15:39
An easy way to set a macro with your local IP address, just add it as a build phase in Xcode.
#!/bin/sh
set -e
HEADER="${SRCROOT}/LearningSpaces-iPad/ip_address.h"
echo "// This file is generated by a build script." > $HEADER
echo "// Updated on "`date` >> $HEADER
echo "" >> $HEADER
ip_address="`ifconfig en0 | grep "inet " | cut -d: -f2 | awk '{print $2}'`"
@jurre
jurre / gist:6810338
Last active December 24, 2015 14:09
sublime settings
{
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/Base16/base16-default.dark.tmTheme",
"ensure_newline_at_eof_on_save": true,
"font_size": 12.0,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
#import <Foundation/Foundation.h>
#import "sqlite3.h"
typedef int64_t timestamp;
NSUInteger randomNumberInRange(NSUInteger start, NSUInteger end);
// Create a sample date using the ISO-8601 format.
// 2013-04-23T16:29:05Z
NSString* generateSampleDate();
@jurre
jurre / nl.yml
Last active December 21, 2015 18:49 — forked from soffes/en.yml
nl:
viewer:
comment_on_twitter: 'Reageer op Twitter'
older: 'Ouder'
newer: 'Nieuwer'
feed: 'Feed'
share: 'Deel'
close: 'Sluit'
next_post: 'Next Post'
previous_post: 'Volgende Post'
@jurre
jurre / application.css
Created December 30, 2011 19:40 — forked from lucapette/application.css
twitter bootstrap rails 3.1 notes
/*
*= require_self
*/
html, body {
background-color: #eee;
}
body {
padding-top: 40px; /* 40px to make the container go all the way to the bottom of the topbar */
}