Skip to content

Instantly share code, notes, and snippets.

Jake's Chili

It's not a particularly complicated recipe, but instead it's about the ingredients (e.g. solid rather than ground beef), and taking the time to do little things that will give huge flavor rewards (e.g. roasting your own chiles and convection browning the sauce). The majority of the cook time is fairly hands-off, and the early investment pays dividends in the simmer.

Remember: Chili is a stew, not a soup. It's ok if it's thick.

Prep time: ~30-40 minutes

Cook time: 3-6 hours (depending on preference and dedication)

Ingredients

@liamgriffiths
liamgriffiths / traceroute.js
Last active December 19, 2024 21:27
traceroute clone in javascript
// sloppy traceroute clone
// inpired by https://blogs.oracle.com/ksplice/entry/learning_by_doing_writing_your
// and made possible by https://www.npmjs.org/package/raw-socket
var raw = require('raw-socket');
var dns = require('dns');
var target = process.argv[2] || '173.230.146.29';
var MAX_HOPS = 64;
var TIME_LIMIT = 5000;
@cqfd
cqfd / gist:1689599
Created January 27, 2012 16:24
Async Backbone templates
$(function() {
var Template = Backbone.Model.extend({
url: function() {
return 'templates/' + this.get('name');
},
isReady: function() {
return this.get('src');
},
@kusor
kusor / .gitmodules
Created May 16, 2010 08:20
NodeJS AMQP Exchanges
[submodule "amqp"]
path = amqp
url = http://github.com/ry/node-amqp.git