Links
Articles I like
- ssh config setup for multiple github accounts
- luke smith server hosting guide
- cleanly install node and npm with nvm
- run express server
- website password authentication
- aliases on Linux
- mastering tmux basics
- tmux cheat sheet
- install openssl
- setting up mTLS
- SO testing openssl mtls
- how to install mysql on debian 12
- authoring manpages in markdown with pandoc
- using ctags with vim
- bash scripts flags
- install godot on ubuntu
Typing
Proto Articles
Linguistics Resources:
- Korean UTF-8
- Interactive American IPA chart
- English Phonology Onset / Coda
- English Approximate Phoneme Frequency
- English Word Family Frequency
- Hangul Combinations Chart
- Hangul Combinations Audio
Git Squash last N commits
git reset --soft HEAD~$N
git commit
Sign into MySQL
mysql -u root -p
Unzipping Files on Linux
tar -xvzf stuff.tar.gz
Get IP of Host
nslookup hostname
Add a user on Linux
sudo useradd [username]
Change user login shell Linux
sudo chsh -s /bin/bash username
sudo chsh -s $(which my-shell) username
echo $SHELL
Tmux
- create window 
ctrl+b c
- create split 
ctrl+b %
- break pane into window 
ctrl+b !
- destroy window/pane 
ctrl+b x