Skip to content

Instantly share code, notes, and snippets.

View webshooter's full-sized avatar

Randall Nickerson webshooter

View GitHub Profile
@webshooter
webshooter / NodeJSCreateCryptoKey.sh
Created December 15, 2023 21:02
Nodejs cli create crypto key
node -p "require('crypto').randomBytes(256).toString('hex');"
@webshooter
webshooter / class_def.js
Last active October 9, 2018 03:58
Javascript class definition template
var Thing = (function() {
this.public_property = "Public property";
var private_property = "Private property";
function Thing(data) {
this.datum1 = data.datum1;
this.datum3 = data.datum2;
}
@webshooter
webshooter / 0_reuse_code.js
Last active August 29, 2015 14:24
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console