Skip to content
View tjklemz's full-sized avatar
Block or Report

Block or report tjklemz

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. 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.
  2. hackmap.js hackmap.js
    1
    // http://www.cse.yorku.ca/~oz/hash.html
    2
    const hash = str => {
    3
      let h = 0
    4
      for (let i = 0; i < str.length; ++i) {
    5
        h = (33 * h) ^ str.charCodeAt(i) // seems no one knows why 33
  3. 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,
  4. setup-certs.sh setup-certs.sh
    1
    # Certs https://stackoverflow.com/a/55249339/958007
    2
    function setup-certs() {
    3
      local cert_path="$HOME/.certs/all.pem"
    4
      local cert_dir=$(dirname "${cert_path}")
    5
      [[ -d "${cert_dir}" ]] || mkdir -p "${cert_dir}"