Skip to content

Instantly share code, notes, and snippets.

View othiym23's full-sized avatar
💭
what is this thing you call, "architecture"

Forrest L Norvell othiym23

💭
what is this thing you call, "architecture"
  • Ellation / Crunchyroll / VRV
  • San Francisco
View GitHub Profile
@othiym23
othiym23 / Experiment.scala
Created June 26, 2011 06:44 — forked from hjast/Experiment.scala
Test.scala
package com.sportaneous.snippet
import java.util.Calendar
import java.text.SimpleDateFormat
import net.liftweb.http.js.JsCmds.ReplaceOptions._
import com.sportaneous.snippet.SelectValue._
import net.liftweb.http.js.{JE, JsCmd}
import net.liftweb.http.js.JsCmds.After._
import xml.{Null, PrefixedAttribute, NodeSeq}
import net.liftweb.http.{StatefulSnippet, SHtml, S}
@othiym23
othiym23 / gist:4075562
Created November 14, 2012 23:23 — forked from CrabBot/gist:4075399
node.js domain fail
'use strict';
var domain = require('domain')
, fs = require('fs')
, trycatch = require('trycatch')
;
function thirdPartyFoo(callback) {
var d1 = domain.create();
d1.on('error', function(err) {
@othiym23
othiym23 / wrap.js
Last active December 10, 2015 14:28 — forked from beaugunderson/wrap.js
var original = cb;
cb = function wrapper() {
var args = arguments;
process.nextTick(original.apply.bind(this, this, args));
};
@othiym23
othiym23 / bnb.js
Last active December 10, 2015 15:29 — forked from anonymous/bnb.js
function BadNewsBears() {
var a = 0;
Object.defineProperty(this, 'inc',
{get : function () { return a++; },
enumerable : true});
Object.defineProperty(this, 'wtf',
{get : function () {
var b = (this.inc, this.inc, this.inc);
return b;
},
@othiym23
othiym23 / promised.js
Last active December 12, 2015 07:38 — forked from medikoo/promised.js
MultiInstaller.prototype.forEach = function (visitor, callback) {
var qVisitor = Q.nfbind(visitor, null)
, qInstall = Q.nfbind(install)
;
var target = this.target;
var prefix = this.prefix;
function process(versions, index, result) {
if (!versions[index]) return result;
'use strict';
(function () {
var myfile;
function readFileCallback(err, val) {
if (err) throw err;
myfile=val;
var slice = [].slice;
function exportscope() {
var args = slice.call(arguments);
for (var i = 0; i < args.length; i++) this.exports[args[i]] = eval(args[i]);
}
var a = 1, b = 2, c = 3;
// super-ugly
@othiym23
othiym23 / index.js
Last active December 22, 2015 17:18 — forked from dazld/index.js
var Router = require('./router');
var ns = require('./namespace-module');
var router = new Router();
router.initialize();
var NUM_TESTS = 10;
var spawnAsync = function (i) {
var domain = require('domain');
var key = process.addAsyncListener(domain.____xXx__secret___asyncListener);
var d = domain.create();
d.on('error', ...);
d.run(function () {
var server = net.createServer(...);
});
var net = require('net');
var domain = require('domain');
var expected = 0, caught = 0;
process.on('exit', function () {
assert(expected === caught);
console.log('ok expected', expected, 'caught', caught);
});
var d = domain.create();