-
6 ways to reduce disk usage on Window 7
Are you lacking valuable disk space? Don’t want to, or maybe you cannot, buy more? There are some magic tricks that you can pull out of your magic memory hat to reduce the disk usage. Here are some of these tricks that you can do… Uninstalling applications Reducing the size of the winsxs folder Reducing…
-
The single responsibility principle
”A class should have one, and only one, reason to change.” – Robert C Martin If I had to choose one design principle that has been most useful to practice over time it surely is the single responsibility principle (SRP). What is this principle about? The idea is that a module (or class) should only…
-
6 dancing algorithms
After my last post on the dancing bubble-sort algorithm I found a whole series of different dancing algorithms, 6 in total, all created at Sapientia University, Tirgu Mures (Marosvásárhely), Romania. Very educational videos worth watching if you want to learn more about these sorting algorithms! Enjoy! Quick-sort Merge-sort Shell-sort Select-sort Bubble-sort Insert-sort
-
Dancing the bubble-sort algorithm
Have you wondered how the bubble-sort algorithm works? Or maybe you already know but what a new way to explain it? Have a look at this great video Created at Sapientia University, Tirgu Mures (Marosvásárhely), Romania. A very innovative way to learn the bubble-sort algorithm! Do you know any other unorthodox ways teach the bubble-sort…
-
Introduction to function pointers in C
-
Once again how to create a password
-
How to show line numbers in Vim
-
I am a software craftsman, are you?
Having signed the manifesto for software craftsmanship I’d like to make the following statement As aspiring software craftsman I’m raising the bar of professional software development by practising it and helping others learn the craft. Through this work I’ve have come to value: Not only working software, but also well-crafted software Not only responding to…
-
Zero Inspection
-
How to know if you have a strong password? Want to be able to create a strong password?
If your answer is yes and no then continue and read to learn ! There are a number of characteristics that characterize a strong password. All typed passwords are constructed based on a number of characters. As a result the characteristics of a strong password is related to the following: Characters Length Change Let’s have…