Skip to content

Instantly share code, notes, and snippets.

View jharjono's full-sized avatar

Johan Harjono jharjono

  • San Francisco
View GitHub Profile
@jharjono
jharjono / sinatra_sass_coffee.rb
Created March 7, 2011 19:12
a setup of Sinatra using Slim for HTML, Sass for CSS, and CoffeeScript for JavaScript
#!/usr/bin/env ruby
# Libraries:::::::::::::::::::::::::::::::::::::::::::::::::::::::
require 'rubygems'
require 'sinatra/base'
require 'slim'
require 'sass'
require 'coffee-script'
# Application:::::::::::::::::::::::::::::::::::::::::::::::::::
@jharjono
jharjono / watched-repos.py
Created August 20, 2011 15:31
Python script to clone all watched repos that a user is watching on Github
#!/usr/bin/env python
# Script to clone all the github repos that a user is watching
import requests
import json
import subprocess
# Grab all the URLs of the watched repo
user = 'jharjono'
r = requests.get("http://github.com/api/v2/json/repos/watched/%s" % (user))
repos = json.loads(r.content)
@jharjono
jharjono / array.c
Created March 22, 2013 03:47
simple illustration of why C is awesome once you understand it
#include <stdio.h>
int main() {
int a[10];
int i;
for (i=0; i < 10; i++) {
a[i] = i;
}
@jharjono
jharjono / tserializer.java
Created November 6, 2012 07:30
Snippet from Thrift's TSerializer.java
/**
* Serialize the Thrift object into a byte array. The process is simple,
* just clear the byte array output, write the object into it, and grab the
* raw bytes.
*
* @param base The object to serialize
* @return Serialized object in byte[] format
*/
public byte[] serialize(TBase base) throws TException {
baos_.reset();
@jharjono
jharjono / cdf_screen_distribute.sh
Created April 5, 2012 01:09
Script to distribute training jobs to multiple nodes in a system and create a screen for each job
#!/bin/bash
# Script to distribute MATLAB training jobs to multiple nodes in a system and create a screen for each job
# some helpers, stolen shamelessly from internet forums
rand() {
printf $(( $1 * RANDOM / 32767 ))
}
rand_element () {
local -a th=("$@")
# Quick hack - really hacky, untested, and probably breaks a lot
require 'rubygems'
require 'mechanize'
module TumblrScraper
class TumblrPost
attr_accessor :url, :post_id, :tumblr_id
@jharjono
jharjono / eol-bootstrap.sh
Created October 15, 2011 14:43
EOL Fresh install script for a fresh Ubuntu machine
# make sure all packages and sources are up-to-date
sudo apt-get update
# update system and kernel files as well
sudo apt-get dist-upgrade
# install compiler packages
sudo apt-get install build-essential
# Git
@jharjono
jharjono / git-cdf.sh
Created September 27, 2011 01:52
Create git servers on CDF
#!/bin/bash
# This script creates a git repository on your local machine and your CDF account and links them together
# Set up env
REPO_NAME=myproj # or $1 if you want to run this script often
CDF_NAME=g1someone
SERVER=redwolf.cdf.toronto.edu
# Creating the project
mkdir $REPO_NAME
@jharjono
jharjono / constant_viewer.rb
Created July 12, 2011 14:52
Show all constants, classes, modules, etc that are recognized in this namespace
puts self.class.constants.inspect
@jharjono
jharjono / resume_structure.tex
Created March 27, 2011 03:15
Sample main file for a LaTeX resume; being able to structure resumes like this is one of the reasons why I like LaTeX for resumes
\documentclass{article}
% Custom Macros and Packages---------------------------
\input{macros}
% Header and Footer------------------------------------
\input{header_footer}
\begin{document}