Skip to content

Instantly share code, notes, and snippets.

View jaybxyz's full-sized avatar
🌕
Researching. Building. Shipping.

JayB jaybxyz

🌕
Researching. Building. Shipping.
View GitHub Profile
@jaybxyz
jaybxyz / jq-cheetsheet.md
Created May 5, 2021 01:40 — forked from olih/jq-cheetsheet.md
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@jaybxyz
jaybxyz / Update git fork with tags.sh
Created October 16, 2019 05:45 — forked from Saissaken/Update git fork with tags.sh
Update git fork with tags
# Repo: someuser/myframework
# Fork: superteam/myframework
# Track:
git clone https://github.com/superteam/myframework.git
cd myframework
git remote add upstream https://github.com/someuser/myframework.git
# Update:
git fetch upstream