Skip to content

Instantly share code, notes, and snippets.

View evan-walter's full-sized avatar
🎧
Working remotely

Evan Walter evan-walter

🎧
Working remotely
View GitHub Profile
@itod
itod / split_keyboards.md
Last active June 12, 2024 12:08
Every "split" mechanical keyboard currently being sold that I know of
@bradtraversy
bradtraversy / sample.md
Created March 23, 2018 18:17
Markdown Cheat Sheet

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

This text is italic

@johnnypea
johnnypea / useful-one-liners.sh
Last active July 16, 2024 02:05
Useful one liners
# Run the last command as root
sudo !!
# Serve current directory tree at http://$HOSTNAME:8000/
python -m SimpleHTTPServer
# Save a file you edited in vim without the needed permissions
:w !sudo tee %
# change to the previous working directory
cd -
# Runs previous command but replacing
^foo^bar