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
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} |
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
'use strict'; | |
var domain = require('domain') | |
, fs = require('fs') | |
, trycatch = require('trycatch') | |
; | |
function thirdPartyFoo(callback) { | |
var d1 = domain.create(); | |
d1.on('error', function(err) { |
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 original = cb; | |
cb = function wrapper() { | |
var args = arguments; | |
process.nextTick(original.apply.bind(this, this, args)); | |
}; |
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 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; | |
}, |
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
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; |
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
'use strict'; | |
(function () { | |
var myfile; | |
function readFileCallback(err, val) { | |
if (err) throw err; | |
myfile=val; |
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 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 |
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 Router = require('./router'); | |
var ns = require('./namespace-module'); | |
var router = new Router(); | |
router.initialize(); | |
var NUM_TESTS = 10; | |
var spawnAsync = function (i) { |
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 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(...); | |
}); |
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 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(); |
OlderNewer