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.prototype.compel = function(scope, args, scope_args) { | |
| var code = ''; | |
| // Every scope_args entry will be added to this code | |
| for (var name in scope_args) { | |
| code += 'var ' + name + ' = scope_args["' + name + '"];'; | |
| } | |
| // eval the code, so these variables are available in this scope |
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
| #!/usr/bin/env node | |
| var fs = require('fs'); | |
| var sys = require('sys'); | |
| var bin = require('binary'); | |
| function bytesize(n) { | |
| // JavaScript can't handle 64-bit ints natively. | |
| // TODO: hack it up anyway. | |
| // (n & 0xFFFFFFFF00000000) ? 8 : ... |
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
| /** | |
| * Sending a TCP SYN packet properly using the raw-socket package. | |
| */ | |
| var raw = require('raw-socket'); | |
| var crypto = require('crypto'); | |
| // create a raw socket using TCP | |
| var s = raw.createSocket({ | |
| protocol: raw.Protocol.TCP | |
| }); |
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
| const PatchApplyError = Error, | |
| InvalidPatch = Error; | |
| /** | |
| * The JSONPatch class: | |
| * Used to generate a JSON patch between two objects | |
| * | |
| * @constructor | |
| * | |
| * @author Jelle De Loecker <jelle@elevenways.be> |