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

Block or report nagawaka

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. Shortcuts to Improve Your Bash & Zsh... Shortcuts to Improve Your Bash & Zsh Productivity
    1
    ### Shortcut — Action
    2
    
    
    3
    - [x] `CTRL + A` — Move to the beginning of the line
    4
    - [x] `CTRL + E` — Move to the end of the line
    5
    - [ ] `CTRL + [left arrow]` — Move one word backward (on some systems this is ALT + B)
  2. gohub gohub Public

    Go

  3. little-scraper little-scraper Public

    Python

  4. python-spotify-scraper python-spotify-scraper Public

    Python

  5. r3 r3 Public

    TypeScript

  6. Few code snippets (JS) Few code snippets (JS)
    1
    # Processing map
    2
    ```javascript
    3
    const normalize = (value, start1, stop1, start2, stop2, stopAtStop2) => {
    4
      const retVal = (start2 + (stop2 - start2) * ((value - start1) / (stop1 - start1)))
    5
      return (stopAtStop2 ? (retVal < stop2 ? stop2 : retVal) : retVal);