How it started I used to be obese. Actually, when I entered my weight in the NHS BMI calculator about 6 months ago, I was "officially" obese. No longer overweight. I think that was the trigger. The location of my BMI on the X-axis in the "obese" regi...
One of the important topics in programming courses is error handling. Usually, they talk about what is an error and explain stuff like try/catch/finally and in the case of more advanced courses they explain about resource cleanup. But after learning ...
Practical tips for writing FP in Java
When you write a piece of code, you inevitably need to use memory. To keep track of the data you care about. This data can be list of customers, contents of a file, input from the user or anything. Unfortunately, the amount of available memory is not...
So, I have had the chance to work with a front-end project at my work which is based on React. I thought a short and concise introduction to React can be useful for those who are not familiar with it. The idea for a website is that you write content ...
I was working on my side project JustRead and at some point, the complexity of the client side Javascript code became so high that I felt need for a more modular code. Initially, I had lots of server side calls scattered all around the place and was...