When coding node, I like this setup: Tools: NVM to manage node installations and versions Packages Nodemon – Listens for file changes and automatically reloads the node server Socket.io – For anything WebSocket When working with Angular: Angular-CLI Angular Material
Month: August 2017
Atom not visible in “Open with…” context menu
After installing Atom I wasn’t able to see it in the “Right click -> Open with…” context menue on text files. This post can fix that: Atom not visible under “Other programs” in order to “open with” or set as default in Ubuntu
Creating a global .gitignore file
Follow this link: https://stackoverflow.com/questions/7335420/global-git-ignore
Git rebase –onto and the in detached HEAD
Sometimes I branch off of the wrong branch. So I need to rebase my branch onto the correct branch. > git checkout myCurrentBranch > git rebase -i –onto <targetBranch> <fromCommit> <toCommit> Meaning: “git rebase myCurrentBranch onto targetBranch, moving moving all commits since myCurrentBranch diverged from fromCommit until toCommit to targetBranch.” More information: More-interesting-rebases This often times results… Continue Reading Git rebase –onto and the in detached HEAD