Skip to content

Instantly share code, notes, and snippets.

@kruppel
kruppel / globals.js
Created April 16, 2015 21:07
Globals?
(function() {
var isNative = function(obj) { return obj.toString().indexOf('[native code]') !== -1; };
var nonNative = Object.keys(window).filter(function(k) {
return !isNative(k);
}).sort();
console.log(nonNative);
}());

Keybase proof

I hereby claim:

  • I am kruppel on github.
  • I am kruppel (https://keybase.io/kruppel) on keybase.
  • I have a public key whose fingerprint is 4EB7 C455 62A4 73EC C9CD D68C 712B 4D70 BE00 AB6E

To claim this, I am signing this object:

@kruppel
kruppel / README.md
Last active June 10, 2018 18:43
Managing wildcard SSL certificates

Managing wildcard SSL certificates

Create a certificate

Start the verification process...

⫸  brew install certbot
⫸  sudo certbot certonly --manual -d '*.example.com' \
 --agree-tos --manual-public-ip-logging-ok --preferred-challenges dns-01 \