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
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
'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
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} |
NewerOlder