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 \
I hereby claim:
To claim this, I am signing this object:
(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); | |
}()); |
// https://github.com/zendesk/ember.js | |
// version 0.9.9-zendesk | |
// SHA b68e5cbec4d95fe2004f5a6dc176c1eadd06e5a1 | |
(function() { | |
/*global __fail__*/ | |
if ('undefined' === typeof Ember) { | |
Ember = {}; |
var el = document.activeElement; | |
function bubbleCheck(element) { | |
var checking = element; | |
checking.addEventListener('click', function(e) { console.log(checking); }, false); | |
} | |
while (el = el.parentNode) { bubbleCheck(el); } |
#!/usr/bin/env node | |
var limit = process.argv[2] | |
, palindromes = []; | |
if (!limit) { | |
console.error('Provide a limit!'); | |
process.exit(1); | |
} |
var outdatedDiffs = document.getElementsByClassName('outdated-diff-comment-container'); | |
Array.prototype.forEach.call(outdatedDiffs, function (diff) { | |
diff.classList.add('open'); | |
}); |
diff --git a/app.js b/app.js | |
index cd2fd3c..89fa861 100644 | |
--- a/app.js | |
+++ b/app.js | |
@@ -1,8 +1,12 @@ | |
- | |
var express = require('express'), | |
jade = require('jade'), | |
app = module.exports = express.createServer(); | |