This file contains hidden or 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
| ok test/tap/404-parent.js ............................... 4/4 | |
| ok test/tap/circular-dep.js ............................. 2/2 | |
| ok test/tap/config-meta.js .......................... 767/767 | |
| ok test/tap/dedupe.js ................................... 3/3 | |
| ok test/tap/false_name.js ............................... 2/2 | |
| ok test/tap/git-cache-locking.js ........................ 2/2 | |
| not ok test/tap/ignore-install-link.js .................. 1/2 | |
| Command: "/usr/local/bin/node ignore-install-link.js" | |
| TAP version 13 | |
| not ok 1 Failed to link /home/patrick/tmp/npm-link-issue globally |
This file contains hidden or 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
| { | |
| "name": "issue-browserify-glsl-parser", | |
| "version": "0.0.0", | |
| "description": "", | |
| "main": "index.js", | |
| "scripts": { | |
| "test": "browserify test.js > bundle.js" | |
| }, | |
| "author": "", | |
| "license": "ISC", |
This file contains hidden or 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 ndarray = require('ndarray') | |
| var cwise = require('cwise') | |
| var s = 4 | |
| var arr0 = new ndarray(new Uint8Array(s*s*s),[s,s,s]) | |
| var arr1 = new ndarray(new Uint8Array(s*s*s/2*2*2),[s/2,s/2,s/2]) | |
| arr0.set(1,1,1,1) | |
| var lod = cwise |
i want to do var hello = require('git://gist.github.com/6871950.git')() in requirebin
This file contains hidden or 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 Context = typeof webkitAudioContext == 'undefined' | |
| ? AudioContext | |
| : webkitAudioContext | |
| var master = new Context | |
| var jsynth = require('jsynth') | |
| var tune = require('tune') | |
| var ff = []; | |
| [ | |
| 'C D E G', |
- Sintel ("Sintel" is an independently produced short film, initiated by the Blender Foundation as a means to further improve and validate the free/open source 3D creation suite Blender.)
- The Reward (A nine-minute fantasy student film created at The Animation Workshop in Viborg, Denmark)
- Paperman (Disney)
- Little Quentin (Anikey Studios)
- THE EAGLEMAN STAG (Mikey Please)
- Shave it (3dar Studios)
- Please Say Something (David OReilly)
- The Present (Jacob Frey)
This file contains hidden or 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 EE2 = require('eventemitter2').EventEmitter2 | |
| , _ = require('lodash') | |
| exports = module.exports = input | |
| exports.keyTable = keyTable | |
| function input(opts) { | |
| if (!(this instanceof input)) return new input(opts) | |
| EE2.call(this,{wildcard:true,delimiter:'::',maxListeners: 20}) | |
| var self = this |
This file contains hidden or 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
| $ jitsu databases create mongo escape01 | |
| info: Welcome to Nodejitsu nko3-brainpain | |
| info: jitsu v0.10.5, node v0.8.14 | |
| info: It worked if it ends with Nodejitsu ok | |
| info: Executing command databases create mongo escape01 | |
| info: A new mongo has been created | |
| data: Database Type: mongo | |
| data: Database Name: escape01 | |
| /usr/local/lib/node_modules/jitsu/lib/jitsu/commands/databases.js:314 |
This file contains hidden or 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
| ################################################################################ | |
| # colors | |
| ################################################################################ | |
| C_0="\e[0;0m" # no-color | |
| C_R="\e[31;40m" # red | |
| C_Y="\e[33;40m" # yellow | |
| C_G="\e[1;30m" # gray | |
| C_C="\e[0;36m" # cyan | |
| C_LG="\e[0;37m" # light-gray | |
| C_LC="\e[1;36m" # light-cyan |