-
A programmers dricking song
-
An introduction to how to write a commit message
-
Unit testing your WordPress themes and plugins
WP tuts has created an interesting three part tutorial on how to use test driven development when writing themes and plugins for WordPress. The first part introduces the concept of unit testing and it explains what is needed to be able to write unit tests for WordPress. The second part continues by introducing how to write a testable plugin…
-
The pig and chicken video
-
The solid principles as one liners
SOLID is an acronym which stands for Single responsibility principle – every software entity (object, module etc) should have only a single responsibility and one reason to change. Open/closed principle – every software entity should be open for extension, but closed for modification. Liskov substitution principle – closely related to design by contract and it…
-
Which features to add or bugs to fix?
In 1906, the Italian economist Vilfredo Pareto created a mathematical formula to describe the unequal distribution of wealth in Italy. He observed that 20% of the people owned 80% of the wealth. This is what has come to be know as the Pareto Principle (a.k.a 80/20 rule or the law of the vital few). The…
-
How to manage your source code with Git, Gerrit and Jenkins
Are you managing a piece of code? Are there several contributors to that code? Maybe some are less know to you which provides questionable quality? How do you control of the incoming changes to the code? If you are in an code environment which uses Git as a version control system then using Gerrit can…
-
Creating a well designed user interface
Being a technical programming geek that knows more or less everything there is to know about programming does not automatically make you a good user interface create. RepeatGeek has collected 10 resource for design-challenged programmers which are worth reading to increase you knowledge on the subject of creating well designed user interfaces.
-
Introduction to bash programming