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 / 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 / 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 / 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 / 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}