Subscribe to my newsletter and never miss my upcoming articles
Personal projects are a great way to demonstrate your skills. But what when you want to make some UI application. It needs to look good. You just spent weeks or months learning code, and the last thing you want is someone closing it because out of al...
Supporting multiple themes for your website is a difficult problem to solve. If you did it even a couple of years ago, you would agree with that. Quite often solution was to have wholly duplicated stylesheets. But that is messy. Maintaining an enormo...
If you ask any developer about tests, they answer that tests are essential. They indicate that the code works as intended and that your new change didn’t break something else. However, if you go into almost any React project, you can notice that thei...
Recently, I posted a small snippet on how to remove duplicates from an array using a filter function. That started a thread on all the different ways to achieve this. Therefore, in this post, I am covering different ways to solve this problem. JavaSc...
I wanted to do some volunteering work for a very long time. But I end up postponing it. In the last years, the reason was both working full time and studying at the same time. Next to it, there was not much time left. But when I finally got my degree...
After simple linear regression (SLR) logical next learning step is multiple linear regression (MLR). To better explain what MLR is, let's start with a reminder of what SLR is. Simple linear regression SLR is a statistical method where the predicted ...