This file contains 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 testString="0123456789"; | |
setInterval(function (){ | |
console.log("Mem:", Math.round(process.memoryUsage().rss/1000000), " Mb ", process.memoryUsage(), "Len:",testString.length); | |
}, 1 * 1000); | |
for (i=0;i<20;i++){ | |
testString=testString+testString; //Double: 10 * 10 ^ | |
} | |
//Now testString=10.000.000 characters, which is roughly 20 Mb. |
This file contains 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
-----BEGIN PGP SIGNED MESSAGE----- | |
Hash: SHA1 | |
CryptoSeal Privacy Consumer VPN service terminated with immediate effect | |
With immediate effect as of this notice, CryptoSeal Privacy, our consumer VPN service, is terminated. All cryptographic keys used in the operation of the service have been zerofilled, and while no logs were produced (by design) during operation of the service, all records created incidental to the operation of the service have been deleted to the best of our ability. | |
Essentially, the service was created and operated under a certain understanding of current US law, and that understanding may not currently be valid. As we are a US company and comply fully with US law, but wish to protect the privacy of our users, it is impossible for us to continue offering the CryptoSeal Privacy consumer VPN product. |
This file contains 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
# Fork as symlink is changed to create_symlink - took a bit to find out | |
# After running cap deploy:cold, You'll need to remove all files from the | |
# domains/yourdomain.com/html directory and turn the html directory into a | |
# symlink that links to ./current which is also a symlink setup by capistrano. | |
# | |
# Configure these | |
set :site, "12345" # this is your site number, for example if your access domain is s12345.gridserver.com | |
set :application, "example.com" # typically the same as the domain |