I just fixed a bug. The fix required me to initialise an Object[] array with the init values for each type, instead of just null, i.e. false for boolean, 0 for int, 0.0 for double, etc. So, instead… (more…)
Read more »
This whole Java SE bullshido that Oracle is all up on their high horse about
has made me think about why I really enjoy Forth.
I’d like to lay down some of my thoughts before I forget them,
because I think it’s worth preserving and discussing.
Read more »
This article was published originally on derkoe.dev. After reading the "Beating C with X lines of Y"... (more…)
Read more »
Like many people, I came to Go with a background in Java. Getting started on Go isn’t too hard, but it does require a change in mindset when it comes to a few key areas. Declaring Interfaces Like in Java, Go interfaces are a powerful way to make code test... (more…)
Read more »
In this blog post I will go through some practical examples of using the Try monad for exception handling in Java. The purpose is to see how we can write more functional code in a non-functional but widely adopted language such as Java. (more…)
Read more »