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
//scribbles.js | |
var fs = require('fs'), | |
pth = require('path'), | |
cueMngr = {}; | |
function Scribbles(fileNm) { | |
this.handle = fileNm; | |
this.canWrite = false; |
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 worker() { | |
setInterval(function() { | |
postMessage({foo: "bar"}); | |
}, 1000); | |
} | |
var code = worker.toString(); | |
code = code.substring(code.indexOf("{")+1, code.lastIndexOf("}")); |
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
///////// VIEW ////////////////////////// | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>MY MVC</title> | |
<meta charset="utf-8" /> | |
<link rel="stylesheet" href="stylz.css" /> | |
<script src="signals.js"></script> |
OlderNewer