Skip to content

Instantly share code, notes, and snippets.

View ivangonekrazy's full-sized avatar

Ivan Tam ivangonekrazy

View GitHub Profile
@ivangonekrazy
ivangonekrazy / hack.sh
Created April 1, 2012 01: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/2108403/hack.sh | sh
#
@ivangonekrazy
ivangonekrazy / gist:1135416
Created August 9, 2011 22:53 — forked from anonymous/gist:1135410
Draw pie charts
// Draw pie charts
var charts = [];
function createPie(statsjson, type, div, title) {
if(document.getElementById(div)){
data = createDataArray(statsjson, type, title, 'reg');
if(data.getNumberOfRows() > maxResults){
data.removeRows(maxResults, 999999)
}