Skip to content

Instantly share code, notes, and snippets.

View yanatan16's full-sized avatar

Jon Eisen yanatan16

View GitHub Profile
@yanatan16
yanatan16 / load-balancer.conf
Created April 11, 2014 22:54
Example nginx load balancer
## Global parameters
## StatsD Plugin: https://github.com/zebrafishlabs/nginx-statsd
statsd_server statsd.domain.tld;
# Stop proxying to an upstream if any of these happen
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
# Setup standard forwarding headers
proxy_set_header Accept-Encoding "";
@yanatan16
yanatan16 / me.joneisen.playmusiconstartup.plist
Created March 5, 2014 18:28
me.joneisen.playmusiconstartup.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>RunAtLoad</key>
<true/>
<key>Label</key>
<string>me.joneisen.playmusiconstartup</string>
<key>ProgramArguments</key>
<array>
@yanatan16
yanatan16 / pebble-discs.c
Last active August 29, 2015 13:56
Pebble Discs Walkthrough
#include <pebble.h>
#include <time.h>
static const int FACE_DISC_RADIUS = 70;
static const int CENTER_DISC_RADIUS = 20;
static const int HOUR_DISC_RADIUS = 10;
static const int MINUTE_DISC_RADIUS = 5;
static const int HOUR_ROT_RADIUS = 40;
static const int MINUTE_ROT_RADIUS = 60;
@yanatan16
yanatan16 / level0.rb
Created January 28, 2014 20:13
Stripe CTF 3 blog post
#!/usr/bin/env ruby
# Our test cases will always use the same dictionary file (with SHA1
# 6b898d7c48630be05b72b3ae07c5be6617f90d8e). Running `test/harness`
# will automatically download this dictionary for you if you don't
# have it already.
path = ARGV.length > 0 ? ARGV[0] : '/usr/share/dict/words'
entries = File.read(path).split("\n")
@yanatan16
yanatan16 / impl.hs
Last active January 4, 2016 03:19
Rewriting haskell-spsa
-- The primary monadic type to be passed around
type StateSPSA = State SPSA
-- | Set the loss function
setLoss :: LossFn -> StateSPSA ()
setLoss loss = modify (\spsa -> spsa { lossFn = loss })
-- | Push a stopping criteria onto SPSA
pushStopCrit :: StoppingCriteria -> StateSPSA ()
pushStopCrit sc = modify (\spsa -> spsa { stoppingCrits = sc : stoppingCrits spsa })
@yanatan16
yanatan16 / simplegame.js
Last active January 4, 2016 03:09
tethr.io example
// simplegame.js
// Glue code to add in tethr.io as a multiplayer communication layer for web games
// tethr.io is the nice socket.io-like wrapper around WebRTC
var tethr = require('tethr.io')
// Game is our game!
var Game = require('./game')
// A node module for checking deepEqual
@yanatan16
yanatan16 / Optimize.hs
Last active January 2, 2016 18:49
Walkthrough of haskell-spsa
optimize :: SPSA -> Int -> Vector Double -> Vector Double
optimize spsa rounds t0 = foldl opt t0 (take rounds $ zip3 (ak spsa) (ck spsa) (delta spsa))
where
constrainF = constraint spsa
lossF = loss spsa
opt t (a,c,d) = constrainF (t - a * g)
where
cd = c * d
ya = lossF (t + cd)
yb = lossF (t - cd)
@yanatan16
yanatan16 / sample.cabal
Created January 7, 2014 21:31
A cabal-dev workflow
name: sample
version: 0.1.0.0
-- synopsis:
-- description:
-- homepage:
-- license:
-- license-file:
-- author:
-- maintainer:
@yanatan16
yanatan16 / generator_wrapper.js
Last active September 23, 2018 22:08
Wrapping a callback-based function into an ES6 Generator (requires node 0.11+)
var q = require('q')
function generatorify(fn, context) {
return function() {
var deferred = q.defer(),
callback = makeCallback(deferred),
args = Array.prototype.slice.call(arguments).concat(callback);
fn.apply(context, args);
return deferred.promise;
};
@yanatan16
yanatan16 / bower install angular
Last active January 1, 2016 08:29
Bower install log for installing angular with a resolution to angular 1.2.6 with bower 1.2.8
bower modernizr#~2.7.1 cached git://github.com/Modernizr/Modernizr.git#2.7.1
bower modernizr#~2.7.1 validate 2.7.1 against git://github.com/Modernizr/Modernizr.git#~2.7.1
bower angular#* cached git://github.com/angular/bower-angular.git#1.2.6
bower angular#* validate 1.2.6 against git://github.com/angular/bower-angular.git#*
bower angular-bootstrap#~0.7.0 cached git://github.com/angular-ui/bootstrap-bower.git#0.7.0
bower angular-bootstrap#~0.7.0 validate 0.7.0 against git://github.com/angular-ui/bootstrap-bower.git#~0.7.0
bower angular-animate#1.2.6 cached git://github.com/angular/bower-angular-animate.git#1.2.6
bower angular-animate#1.2.6 validate 1.2.6 against git://github.com/angular/bower-angular-animate.git#1.2.6
bower angular-ui-router#~0.2.7 cached git://github.com/angular-ui/ui-router.git#0.2.7
bower angular-ui-router#~0.2.7 validate 0.2.7 against git://github.com/angular-ui/ui-router.git#~0.2.7