Skip to content

Instantly share code, notes, and snippets.

View 7onn's full-sized avatar
🛠️

tom 7onn

🛠️
View GitHub Profile
@cbrgm
cbrgm / .skhdrc
Created June 16, 2021 16:32
yabai + skhd + spacebar dotfiles
####### Shortcut Hotkeys #############
# open terminal
alt - return : open -n /Applications/Alacritty.app
# restart Yabi, SpaceBar, and SKHD
alt + shift - r : \
launchctl kickstart -k "gui/${UID}/homebrew.mxcl.yabai"; \
skhd --reload
@mgahan
mgahan / OpenVpn.sh
Created November 10, 2017 22:51
OpenVPN Creation with Google Cloud
# Create Ubuntu 16.04 instance to host openvpn
gcloud compute instances create openvpn-pritunl \
--image-family ubuntu-1604-lts --image-project ubuntu-os-cloud \
--zone us-west1-a \
--network default \
--tags https-server,http-server \
--address vpn-static \
--service-account [email protected] \
@olih
olih / jq-cheetsheet.md
Last active May 7, 2025 12:17
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