- Southern Oregon
Pinned Loading
-
asyncAll example
asyncAll example 1/*
2* A simple asyncAll example.
3*
4* Ignores any error handling and only returns the results to the done callback.
5* Each task is expected to take a callback for its first parameter.
-
hackmap.js
hackmap.js 1// http://www.cse.yorku.ca/~oz/hash.html
2const hash = str => {
3let h = 0
4for (let i = 0; i < str.length; ++i) {
5h = (33 * h) ^ str.charCodeAt(i) // seems no one knows why 33
-
VS Code Settings
VS Code Settings 1{
2"breadcrumbs.enabled": false,
3"city-lights-icons-vsc.hidesExplorerArrows": true,
4"files.autoSave": "afterDelay",
5"files.autoSaveDelay": 5000,
-
setup-certs.sh
setup-certs.sh 1# Certs https://stackoverflow.com/a/55249339/958007
2function setup-certs() {
3local cert_path="$HOME/.certs/all.pem"
4local cert_dir=$(dirname "${cert_path}")
5[[ -d "${cert_dir}" ]] || mkdir -p "${cert_dir}"
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.