Skip to content

Instantly share code, notes, and snippets.

View georgi's full-sized avatar

Matthias Georgi georgi

  • Meta
View GitHub Profile
@WAUthethird
WAUthethird / Interacting_with_Jukebox_VastAI.ipynb
Last active February 13, 2024 07:10
Using vast.ai with OpenAI Jukebox
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@staltz
staltz / introrx.md
Last active July 22, 2024 09:31
The introduction to Reactive Programming you've been missing
@pbailis
pbailis / list.md
Last active April 15, 2018 08:54
Quick and dirty (incomplete) list of interesting, mostly recent data warehousing/"big data" papers

A friend asked me for a few pointers to interesting, mostly recent papers on data warehousing and "big data" database systems, with an eye towards real-world deployments. I figured I'd share the list. It's biased and rather incomplete but maybe of interest to someone. While many are obvious choices (I've omitted several, like MapReduce), I think there are a few underappreciated gems.

###Dataflow Engines:

Dryad--general-purpose distributed parallel dataflow engine
http://research.microsoft.com/en-us/projects/dryad/eurosys07.pdf

Spark--in memory dataflow
http://www.cs.berkeley.edu/~matei/papers/2012/nsdi_spark.pdf

(defun lisp-reinsert-as-pp ()
"Read sexp at point, delete it and pretty print it back in."
(interactive)
(let* ((buf (current-buffer))
(pp-sexp
(replace-regexp-in-string
"\\(\n\\)$"
""
(with-temp-buffer
(let ((bufname (buffer-name)))
@pcalcado
pcalcado / gist:2500286
Created April 26, 2012 15:14
pre checkin for legacy/slow rails apps
#!/bin/bash
function specs_to_run(){
git status | grep rb$ | awk '{print $3}' | sed -e "s/^[a-z][a-z]*/spec/g" | sed -e "s/[a-z_]*.rb$/\*/g" | sort | uniq
}
echo "Need to run these before checking-in:"
specs_to_run
bundle exec spec `specs_to_run | xargs -L 1000 echo`
@koshigoe
koshigoe / mount-ram.sh
Created February 11, 2011 14:57
Like tmpfs in Mac OSX
#!/bin/sh
# This program has two feature.
#
# 1. Create a disk image on RAM.
# 2. Mount that disk image.
#
# Usage:
# $0 <dir> <size>
#