Skip to content

Instantly share code, notes, and snippets.

View fdovila's full-sized avatar

Fdo. Avila fdovila

View GitHub Profile
@fdovila
fdovila / ghetto_blaster.rb
Created November 2, 2011 23:48 — forked from audy/ghetto_blaster.rb
ghetto_blaster
LEVEL = 9
database = ARGV[0]
query = ARGV[1]
require 'zlib'
# Compression function.
def deflate(string)
z = Zlib::Deflate.new(LEVEL)
@fdovila
fdovila / illuminaobscura.py
Created November 2, 2011 23:52 — forked from audy/illuminaobscura.py
illuminaobscura.py
#!/usr/bin/env python
from glob import glob
from PIL import Image, ImageDraw
from itertools import defaultdict
# Create matrix
matrix = defaultdict(dict)
lanes = [1, 2, 3, 4, 5, 6, 7]
@fdovila
fdovila / getGitInfo.m
Created March 8, 2012 03:00 — forked from aleifer/getGitInfo.m
MATLAB getGitInfo: Get git repository hash, branch, and remote url in MATLAB
function gitInfo=getGitInfo()
% Matlab script to get information about the Git repository in the current directory, including:
% - branch name of the current Git Repo
% -Git SHA1 HASH of the most recent commit
% -url of corresponding remote repository, if one exists
%
% The function first checks to see if a .git/ directory is present. If so it
% reads the .git/HEAD file to identify the branch name and then it looks up
% the corresponding commit.
%