Today’s lesson: Make use of package managers

I needed to distribute, backup and install some files to a large number of servers today. I had wrote most of a small script when I was reminded of a maxim that I often forget: Make use of package managers. Everything my script did a package manager would do much better. The quickest way to …

The simplest way to create a pull-request and contribute code to open source projects on Github

Make a github account Go to the project you want to contribute to Press the “fork” button Check out your forked copy of the project Create a new branch and check it out (change “branch-name” to something descriptive of your work) Make your changes Add each new or modified file to your commit : Commit …