Programming is being crystal clear

August throughts

Programming is like writing.

Code must be easy to read, and understand. For this reason I do not like very much technologies like:

  1. Aspect oriented programming
  2. SQL Triggers
  3. Web filters
  4. Last minute event listeners (like the one check before an entity save and ‘patch’ some data on the fly or launch additional events).

These technology are nice,  but works ‘outside’ the logic of a piece of code you are writing/reading, and are mostly side effects.

Side effects are the evil of programing in my humble opinion because can create unexpected bugs.

Also side effect can increase maintenance costs.

I have some heavy doubts also on event-based programming because tracing and orchestrating events can become a burden.

But heser are just my own opionions for sure: if you have a model-driven system and you are able to keep your mantenance factor low, so far so good!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.