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 gist = "just a test,2"; |
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 gist = "just a test, update"; |
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
/* | |
XChng v0.1 | |
Morgan "ARR!" Allen <[email protected]> | |
</[email protected]> | |
MIT License | |
usage: node xchng.node.js [ value || 1 ] | |
*/ | |
var http = require("http"), |
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
(function(global) { | |
var config = false, | |
modules = []; | |
// setup single public namespace | |
var skel = global.skel = { | |
init: function(c) { | |
// put initial config in the public scope | |
config = c; |
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
(function(glob) { | |
/* | |
stpl | |
Morgan "ARR!" Allen | |
[email protected] | |
supports simple replacements | |
<li>${var}</li> + { var: "val" } = <li>val</li> | |
simple replacement with default value |
NewerOlder