Skip to content

Instantly share code, notes, and snippets.

View duncanbeevers's full-sized avatar
🔊


Duncan Beevers duncanbeevers

🔊

View GitHub Profile
@duncanbeevers
duncanbeevers / sortByScores.ts
Last active December 30, 2021 12:46
Sort collection with ranked scoring functions, minimal executions
const ReversedSymbol = Symbol('reversed');
type ScoreScalar = string | number | boolean;
type Score = ScoreScalar | [ScoreScalar, typeof ReversedSymbol];
export type ScoreFunction<T> = (item: T) => Score;
function getResult<T>(
scoreFns: readonly ScoreFunction<T>[],
itemResults: Map<T, [Score, boolean][]>,
item: T,
function proxyPromise(promise) {
const acc = [];
function createFnProxy(prop) {
return function(...args) {
acc.push([prop, args]);
return proxy;
};
}
@duncanbeevers
duncanbeevers / AliasVose.js
Last active May 22, 2020 18:08
JavaScript implementation of Michael Vose's constant-time weighted random outcome generator.
// Based on Darts, Dice, and Coins: Sampling from a Discrete Distribution
// http://www.keithschwarz.com/darts-dice-coins/
export default class AliasVose {
constructor(list) {
// Determine relative probabilities.
const scalar = list.length /
list.reduce((acc, item) => { return acc + item.weight; }, 0);
// Partition outcomes into tiny and big work queues.

Keybase proof

I hereby claim:

  • I am duncanbeevers on github.
  • I am duncanbeevers (https://keybase.io/duncanbeevers) on keybase.
  • I have a public key whose fingerprint is 3DC2 C013 05E7 E510 3F75 A78C BE1A 0744 BEC4 A007

To claim this, I am signing this object:

.col-md-12
hr
div
ab-checkbox(shadow-model="project.sendErrorEmail") Send email when an error occurred
ab-checkbox(shadow-model="project.sendCommentEmail") Send email when someone commented
ab-checkbox(shadow-model="project.sendOnlyProductionEmail")
| Send Notify for
.label.production
i.burk.burk-environment
| Production
@duncanbeevers
duncanbeevers / keybase.md
Created March 21, 2014 17:30
Keybase Proof

Keybase proof

I hereby claim:

  • I am duncanbeevers on github.
  • I am duncanbeevers (https://keybase.io/duncanbeevers) on keybase.
  • I have a public key whose fingerprint is F03C 58AC 2B3E 019E 3F3D CCA5 2543 E9A0 A5D8 984D

To claim this, I am signing this object:

@duncanbeevers
duncanbeevers / Compiler.coffee
Created January 26, 2014 01:58
Jade to React.DOM compiler
isConstant = require('constantinople')
toConstant = require('constantinople').toConstant
Compiler = (node, options) ->
compile: ->
visitTag = (tag) ->
buffer('React.DOM.' + tag.name + '(')
visitAttributes(tag.attrs, tag.attributeBlocks)
visitArgs(tag)
buffer(')')
@duncanbeevers
duncanbeevers / to_query_string.js
Created July 16, 2013 23:34
Query string from JS object
function toQueryString(obj) {
var ret = [];
function add(dest, key, val) {
var type = Object.prototype.toString.call(val), i, len;
if ("[object Array]" === type) {
// Array
for (i = 0, len = val.length; i < len; i++) { add(dest, key + "[]", val[i]); }
} else if ("[object Object]" === type) {
App.setupWithOptions
orange: "very"
fragrant: "barely"
@duncanbeevers
duncanbeevers / flac2mp3.rb
Created February 19, 2013 18:42
Convert .flac files to VBR mp3
#!/Users/duncanbeevers/.rvm/rubies/ruby-1.9.3-p0/bin/ruby
filenames = ARGV
abort "Usage: flac2mp3 FLACFILE, ( FLACFILE, ... )" if filenames.length < 1
require 'open3'
FIELD_NAMES = %w(TITLE ARTIST ALBUM TRACKNUMBER GENRE)
FIELDS = FIELD_NAMES.map { |f| "(?:#{Regexp.quote(f)})" }.join("|")
MATCHER = /^(#{FIELDS})=([^\n]+)\n$/