- 1 can garbanzo beans
- 1/2 cup Tahini
- 1/4 cup olive oil
- 3 tbs lemon juice
- 1 Tbs Tamarindo
- 2 cloves garlic
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 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>'; |
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
function keepTrying(otherArgs, promise) { | |
promise = promise||new Promise(); | |
// try doing the important thing | |
if(success) { | |
promise.resolve(result); | |
} else { | |
setTimeout(function() { | |
keepTrying(otherArgs, 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
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) |
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 doNothing = true; | |
If(doNothing){ | |
for(var i = 0, i <> sane, i++){ | |
doNothingAgainAndExpectADifferentResult(i); | |
} | |
} |
Find ([A-Z])([a-zA-Z]*)
replace \L$1$2
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.
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"
}
function foo(a, b, callback) {
if (a > b) {
callback(a + ' is greater then ' + b);
}
if (a < b) {
callback(a + ' is less then ' + b);
}
};