Skip to content
View Anoesj's full-sized avatar
🐧
Whatever
🐧
Whatever

Organizations

@studio-fonkel
Block or Report

Block or report Anoesj

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

  1. mediamonks/spotify-audio-features mediamonks/spotify-audio-features Public

    Quickly get an overview of the type of music in a Spotify playlist/album and find recommendations by audio features

    JavaScript 8 2

  2. Run `repo` in the CLI to go to the r... Run `repo` in the CLI to go to the repository on GitHub/Bitbucket on the active branch
    1
    # Add in .bashrc/.zshrc etc.
    2
    
                  
    3
    # Print/open link to repository, preferably to currently active branch
    4
    function repo () {
    5
      if [ "$(git rev-parse --is-inside-work-tree)" = "true" ]; then
  3. Get value by object path Get value by object path
    1
    // LONG VERSION WITH ERROR LOGGING
    2
    function getValueByObjectPath (obj, path) {
    3
      const pathSplit = path.split('.');
    4
      return pathSplit.reduce((value, pathPart, depth) => {
    5
        try {