Skip to content

Instantly share code, notes, and snippets.

[0, -30, 30, 0, -30, 30, 0, -30, 30, 0]
[0, -30, 30, 0, -30, 30, 0, -30, 30, 0]
[0, -30, 30, 0, -30, 30, 0, -30, 30, 0]
user system total real
eager_map 0.400000 0.010000 0.410000 ( 0.413597)
lazy_map 1.640000 0.000000 1.640000 ( 1.642215)
composed 0.610000 0.000000 0.610000 ( 0.610857)
m_composed 0.140000 0.000000 0.140000 ( 0.136136)
# OSX for Hackers (Mavericks/Yosemite)
#
# Source: https://gist.github.com/brandonb927/3195465
#!/bin/sh
# Some things taken from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Ask for the administrator password upfront
@jbrechtel
jbrechtel / 0_reuse_code.js
Created June 9, 2014 13:16
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@jbrechtel
jbrechtel / hack.sh
Last active December 20, 2015 14:39 — forked from erikh/hack.sh
#!/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/6148219/hack.sh | sh
#
@jbrechtel
jbrechtel / hack.sh
Created March 31, 2012 19:17 — 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/2267660/hack.sh | sh
#
@jbrechtel
jbrechtel / gist_tag.rb
Created August 21, 2011 01:49 — forked from BinaryMuse/gist_tag.rb
A Liquid tag for Jekyll sites that allows embedding Gists and showing code for non-JavaScript enabled browsers and readers.
require 'cgi'
require 'digest/md5'
require 'net/https'
require 'uri'
module Jekyll
class GistTag < Liquid::Tag
def initialize(tag_name, text, token)
super
@text = text