Skip to content

Instantly share code, notes, and snippets.

View garyzava's full-sized avatar

garyzava

View GitHub Profile
@nicolasdao
nicolasdao / open_source_licenses.md
Last active June 15, 2024 13:04
What you need to know to choose an open source license.
@maxant
maxant / market.js
Last active May 20, 2024 21:31
Files for creating a trading engine with Node.js.
// /////////////////////////////////////////////////
// this file contains all the classes related to a
// market.
// /////////////////////////////////////////////////
var log4js = require('log4js');
var logger = log4js.getLogger(require('path').basename(__filename, '.js'));
require('es6-collections');
var _ = require('underscore');
/**