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
for(j=8;j++<88;)eval('a=patch_'+(j%4+1)+'_'+(j>>2)).parentNode.appendChild(a) |
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
// Boilerplate | |
function objectUnion(definer) { | |
var defined = 0, length = 0, isDefined = false, definitions, key; | |
definitions = definer(function() { | |
var names = arguments, fold; | |
if(isDefined) { | |
throw new TypeError('This objectUnion has already been defined'); | |
} | |
function Ctor() {} |
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
// You can generate the privatekey.pem and certificate.pem files using the following commands: | |
// | |
// openssl genrsa -out privatekey.pem 1024 | |
// openssl req -new -key privatekey.pem -out certrequest.csr | |
// openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem | |
const crypto = require('crypto'), | |
fs = require("fs"), | |
http = require("http"); |