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
__loading__ = [] | |
__loadDelay__ = 500 | |
readFile = function(path, callback) { | |
__loading__.push(path) | |
var promise = node.fs.cat(path, "utf8") | |
promise.addErrback(function(){ throw "failed to read file `" + path + "'" }) | |
promise.addCallback(function(contents){ | |
setTimeout(function(){ |
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 console = console || { | |
log : function(args){ | |
this.print('black', arguments) | |
}, | |
error : function(args) { | |
this.print('red', arguments) | |
}, | |
// ... etc |
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
obj = { | |
a : function(){ | |
print('im a') | |
}, | |
b : function(){ | |
var self = this | |
print('im b') | |
function c(){ | |
self.a() |
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
describe 'jQuery' | |
before_each | |
users = elements(fixture('users')) | |
items = users.find('li') | |
end | |
describe '.search()' | |
describe '.version' | |
it 'should be a triple' |
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
// | |
// array.h - CKit | |
// | |
// (c) 2009 TJ Holowaychuk <[email protected]> (MIT Licensed) | |
// | |
#ifndef __CKIT_ARRAY__ | |
#define __CKIT_ARRAY__ |
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
%{ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdarg.h> | |
#include <string.h> | |
#define YYSTYPE char * | |
#define LLP_VERSION "0.0.1" | |
#define DUP yy = strdup(yytext); | |
#define LPAREN '{' | |
#define RPAREN '}' |
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() { | |
$('#tabs').tabs() | |
$('.tab-body').each(function(i) { | |
$('#tabs').tabs('add', '#tabs-' + i, $('.title', this).text()) | |
}) | |
}) |
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
http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.emo-corner.com%2Fforums%2Findex.php%3Fautocom%3Dgallery%26req%3Dsi%26img%3D16164&h=8bc5634e338bb580e46ad9f6dbab9db1 | |
http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.emo-corner.com%2Fforums%2Findex.php%3Fautocom%3Dgallery%26req%3Dsi%26img%3D15841&h=8bc5634e338bb580e46ad9f6dbab9db1 | |
http://www.emo-corner.com/forums/index.php?autocom=gallery&req=si&img=23833 | |
http://www.emo-corner.com/forums/index.php?autocom=gallery&req=si&img=25552 | |
http://www.emo-corner.com/forums/index.php?autocom=gallery&req=si&img=25843 |
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(){ | |
JSpec.include({ | |
name: 'JUnit', | |
formatters : { | |
JUnitXML : function(results, options){ | |
each(results.allSuites, function(suite){ | |
... | |
}) | |
} |
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
History | |
Readme | |
lib/ | |
yourlib.js | |
spec/ | |
fixtures/ | |
environments/ | |
rhino.js | |
dom.html | |
server.html |