Skip to main content

Latest Dev Tweaks, Tips & How-To Articles


Whether you write code professionally or just as a hobby, static code analysis is an important tool for any developer to find bugs, security vulnerabilities, and opportunities to improve the quality of your code. The most popular tool is called Sonarqube which offers a free open-source community edition that can be installed locally and supports most of the popular languages. While it does not have...

Read More

Software packages on Linux or Unix are typically distributed and installed from repositories using a special utility called a package manager. This utility simplifies the installation of a package and makes sure all the dependencies of the software are also met and installed. In addition, the package manager makes it easy to install updates or remove the software package. While macOS is a descendant...

Read More

There are many situations when you need to view hidden files on Mac. Especially if you are doing software development as there are a lot of files that start with a . (dot), such as the .gitignore file, as any file that starts with a dot is hidden automatically. This was especially annoying for me when I realized my Eleventy configuration file .eleventy.js was missing because Finder does not...

Read More

All Dev Tweaks, Tips & How-To Articles