Skip to content

Instantly share code, notes, and snippets.

View scott-joe's full-sized avatar
🛠️
Tinkering

Scott Williams scott-joe

🛠️
Tinkering
View GitHub Profile
> kill all ssh-agent entries
ssh-add -D
> kill all ssh-agent running processes
ssh-agent -k
> Create new token(s)
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa

Gather the Top 500 Albums from Rolling Stone

A TamperMonkey Script

About

I'm trying to listen to a new album every day, or at least 365 by the end of a year. To help figure out what to listen to, I thought I could use this list as a source. But their site is slow and riddled with riddled with ad-bloat.

Format

Screenshot 2023-03-20 at 10 54 59

Using

# `ls` for other things
################################################################################
### Directories
# Tree ignore patterns for noisy directories
IGNORE_NOISY="node_modules|.git|__pycache__|.venv|venv|vendor"
# Aliases using the variable
alias lsd2="tree -dL 2 -I '$IGNORE_NOISY'"
alias lsd3="tree -dL 3 -I '$IGNORE_NOISY'"