Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223
<script> | |
let password = '' | |
const hash = s => | |
s.split('').reduce((a, b) => { | |
a = (a << 5) - a + b.charCodeAt(0) | |
return a & a | |
}, 0) | |
$: console.log(password, hash(password)) |
Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223