This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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 ""; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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 }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sample | |
version: 0.1.0.0 | |
-- synopsis: | |
-- description: | |
-- homepage: | |
-- license: | |
-- license-file: | |
-- author: | |
-- maintainer: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |