This little script will take in a raw password string, hash it, then search PwnedPasswords.com API using only the first 5 characters of the password hash.
-
- Used as the basis for all remote DEVELOPMENT servers.
- Force pushes are allowed.
-
- The current version of
release
should reflect what all PRODUCTION servers should be running (or updating to). - This is the branch from which all version tags are created.
- Force pushes are NEVER ALLOWED. The history is immutable. If something must change, it must be reflected in its history, and not overwritten.
- The current version of
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
// Reference: http://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository | |
$ git ls-files | xargs wc -l |
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
<script> | |
$(function() { | |
$( "#autocomplete-input" ).autocomplete({ | |
source: function( request, response ) { | |
$.ajax({ | |
url: "https://graph.facebook.com/me/friends?access_token=AAAAAAITEghMBAMDBQ94HP7mX7JoDeCS6JVhN19bC4mXSvGdAglokKNC2hUYcc1uOHTZBXtWvxhxIYU7ZCVCXKxnw46nISYSFfTO26QRQZDZD&callback=?", | |
dataType: "jsonp", | |
data: { | |
featureClass: "P", | |
style: "full", |