on Mon, Jun 21, 2021 by · 3 min reading time
IMPLICT MAGIC I learned to program with BASIC followed by C. These languages require syntax to tell the computer to do something.
Java, like many contemporary languages, has many implicit features that add convenience, but my imparative language roots make these features difficult to accept.
This diffculty results in a trouble with fluency.
For example, in Part 2, I mention implicit casting and the fact that it will not loose precision.
Read more →
on Sun, Mar 14, 2021 by · 5 min reading time
ENUMs Enumerations can help me create code that is readable and maintainable. However, in my last project I created a program design based on enums that proved to be too complex. This complexity increases the burden on maintenance in the aims of making the code maintainable. I need to find a balance between ease of reading and ease of updating.
I had not used Java’s Enums before. So, it took me some time to figure out how I wanted to design their use. I chose to make an Enums class that holds …
Read more →
on Thu, Mar 04, 2021 by · 5 min reading time
Reasons to note minor differences in programming languages When switching between languages, continual minor syntax errors eat time: compile time, debugging time, typing time, etc. Paying attention to the small details helps smooth out the change from one language to the next. From the minor amount of French I’ve studied, I would relate this to the difference between studying Parisien and Québécois French. Paying attention to the tone of speach and pronunciation differences will help in precise …
Read more →