Sommer Vaki 23

...
Read post

cs system start

getting going assuming VSC and Azure else: for just vim lets get started Homebrew /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" VSC python, vim, git, azure extensions Python brew install python3 Notes ...
Read post

cs vim

cs vim essentials (normal mode) i insert here a append here A append at eol . repeat last command 0 to beginning of line $ to end of line dd = delete line dw = delete current word d$ delete to end of line d0 delete to begining of line daw delete a word ;) H = high of page M = middle of page L = bottom of page G to bottom of file gg to top of file >G increase indentation until eof ctrl-u scrolls up ctrl-d scrolls down w beginning of next word b beginning of current word e end of current...
Read post

cs git

set up ssh keys on local machine ssh-keygen -m PEM -t rsa -b 4096 add public key (id_rsa.pub) to repo access online git clone git@github.com:deliverordie/moonbase.git ~/repos/moonbase/ if you ever need to set the remote repo git remote set-url origin git@github.com:deliverordie/moonbase.git after you have made changes locally (in order) git status git commit git push git status for when you add new files or directories locally git add /boring ...
Read post