Skip to content
View jonashdown's full-sized avatar
⛷️
⛷️
Block or Report

Block or report jonashdown

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
jonashdown/README.md

Jon Ashdown

About Me

Senior Software Engineer/Software Team lead, specialising in big data.

Pinned

  1. cd into a project folder and set the... cd into a project folder and set the node version
    1
    // put this snippet in .bashrc or .zshrc
    2
    // change workspace to wherever you put your projects
    3
    // if you have project called helloWorld - simply type helloWorld in the console
    4
    
    
    5
    for f in `ls $HOME/workspace`
  2. add pull requests to a project (bash) add pull requests to a project (bash)
    1
    for f in $(gh pr list | awk '{print $1}')
    2
    do
    3
      gh pr edit $f --add-project "my project"
    4
    done
  3. Lock a 3rd party lib across multiple... Lock a 3rd party lib across multiple repos
    1
    #! /bin/bash
    2
    # Assumptions: jq, and github cli are installed. One version of node/npm used across all repos 
    3
    
    
    4
    set -ex
    5