If you want to be taken seriously as a developer, stop using these phrases:
🧸 “Playing around with” 🔩 “Tinker” 🤷 “Some stuff” Setting up a new remote branch? Use git push -u origin HEAD to automatically push the current branch to a new remote branch with the same name.
Annoyingly, git push doesn’t automatically set the upstream branch.
https://git-scm.com/docs/git-push#Documentation/git-push.txt–u
fatal: The current branch <branch name> has no upstream branch. To push the current branch and set the remote as upstream, use git push –set-upstream origin <branch name> I can’t tell you how happy I am about this setting! Automatic format on save in Visual Studio Code, but ONLY for the lines you modified. Heaven-sent change for PR reviewers 🙏
https://code.visualstudio.com/updates/v1_49#_only-format-modified-text Tried to come up with a way to remember the sudo tee hack for when I forget to start Vim with sudo:
Save with the ! shell command using sudo to tee-split to the % current file name.
:w !sudo tee % Use shell parameter expansion to replace all the newlines in a text file with %0A URL encoding of a newline:
OUTPUT=$(cat output.txt) FORMATTED=${OUTPUT//$'\n'/%0A} I like deadlines and living documents. Let’s rename “soft skills” to “basic skills” and see if that helps. Do not fail silent into that good night. Rage, rage, against the passing of –quiet.