I hereby claim:
- I am sylvinus on github.
- I am sylvinus (https://keybase.io/sylvinus) on keybase.
- I have a public key whose fingerprint is 0693 C4BE D838 E81E 36E9 1836 79C8 120B FB5C 3DBA
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
node_modules |
var requirejs = require("requirejs"); | |
requirejs.config({ | |
nodeRequire: require, | |
baseUrl: "./" | |
}); | |
requirejs(["./app/path2"],function(p2) { |
exports.getCode = function(db,col,options,cb) { | |
mktemp("optimizedbuild",function(err,tmpfile) { | |
if (err) return cb(err); | |
var config = { | |
baseUrl: path.resolve(__dirname,'../../'), | |
name: "./databases/"+db+'/'+col, | |
out: tmpfile, |
In my main file: | |
requirejs.config({ | |
nodeRequire: require, | |
paths:{ | |
"datajslib":path.resolve("./datajslib.js") | |
} | |
}); | |
requirejs(["./databases/"+req.params.db+"/"+req.params.collection],function(DB) { |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
from fabric.api import * | |
import os,shutil,re,sys | |
def test_all(): | |
with show('everything'): | |
local("echo 'a'") |