Skip to content

Instantly share code, notes, and snippets.

View betweenbrain's full-sized avatar
🎯
Focusing

Matt Thomas betweenbrain

🎯
Focusing
View GitHub Profile
@betweenbrain
betweenbrain / recurse.js
Created February 1, 2017 20:37
Recursively parse JSON object
var str = '';
function traverse(o) {
if (typeof o == "object") {
for (var key in o) {
str += '<dt>' + key + '</dt>';
traverse(o[key])
}
} else {
str += '<dd>' + o + '</dd>';
@betweenbrain
betweenbrain / simple-promise-retry.js
Created January 27, 2017 21:12 — forked from briancavalier/simple-promise-retry.js
A few general patterns for retries using promises
function keepTrying(otherArgs, promise) {
promise = promise||new Promise();
// try doing the important thing
if(success) {
promise.resolve(result);
} else {
setTimeout(function() {
keepTrying(otherArgs, promise);
@betweenbrain
betweenbrain / read-files.js
Created December 5, 2016 22:35
Node.js read multiple files, write into one
var fs = require('fs');
var Promise = require('promise');
var promises = [];
var readline = require('readline');
var readFile = function (file) {
return new Promise(function (resolve, reject) {
var lines = [];
var rl = readline.createInterface({
input: fs.createReadStream('./logs/' + file)
  • 1 can garbanzo beans
  • 1/2 cup Tahini
  • 1/4 cup olive oil
  • 3 tbs lemon juice
  • 1 Tbs Tamarindo
  • 2 cloves garlic
@betweenbrain
betweenbrain / insanity.js
Created August 2, 2016 15:50
Insanity, in code
var doNothing = true;
If(doNothing){
for(var i = 0, i <> sane, i++){
doNothingAgainAndExpectADifferentResult(i);
}
}

Ingedients

  • 4 Tbsp (1/4 cup) oil
  • 4 Tbsp white sugar
  • 8 Tbsp (1/2 cup) popcorn kernels
  • 2 Tbsp melted butter
  • Salt to taste

Instructions

Heat the oil in a 3-quart saucepan on medium high heat. If you are using coconut oil, allow all of the solid oil to melt.

@betweenbrain
betweenbrain / lower-case-first-letter-regex.md
Created July 7, 2016 20:56
Lowercase first letter of word regex

Find ([A-Z])([a-zA-Z]*) replace \L$1$2

Introduction

This style guide documents guidelines and recommendations for building JSON APIs at Google. In general, JSON APIs should follow the spec found at JSON.org. This style guide clarifies and standardizes specific cases so that JSON APIs from Google have a standard look and feel. These guidelines are applicable to JSON requests and responses in both RPC-based and REST-based APIs.

Definitions

For the purposes of this style guide, we define the following terms:

  • property - a name/value pair inside a JSON object.
  • property name - the name (or key) portion of the property.
  • property value - the value portion of the property.

{
  // The name/value pair together is a "property".
  "propertyName": "propertyValue"
}
@betweenbrain
betweenbrain / Nodejs-Callback.md
Created April 5, 2016 18:15
Node.js Callback
function foo(a, b, callback) {
    if (a > b) {
        callback(a + ' is greater then ' + b);
    }

    if (a < b) {
        callback(a + ' is less then ' + b);
    }
};