Category: Software Development

  • Applying Domain-Driven Design

    Applying Domain-Driven Design

    tl;dr In this post I apply Domain-Driven Design to my favorite pet project. The picture above contains the resulting model. The resulting code can be found at GitHub. My attempt on Domain-Driven design As mentioned in my previous post I need to learn Domain-Driven Design for my new job. In this post I apply the…

  • Learning domain-driven design

    Learning domain-driven design

    On my new job the department is applying Domain-Driven Design. I did read Domain-Driven Design – Tackling Complexity in the Heart of Software by Eric Evans a couple of years back. However as I never used it I need to learn how to apply it. So in order to really learn DDD I started to…

  • Naive Bayesian Classifier on transactions

    Naive Bayesian Classifier on transactions

    For a long time I have the idea to enhance my BudgetApp application with machine learning techniques. After trying a implementation of the K-nearest-neighbor algorithm. I finally use a bayesian classifier implementation which works quite well.

  • Leaky abstractions in JPA eclipselink

    In our team we use JPA, EclipseLink to be precise. Now we start stress testing we notice something weird. The child relations of a entity are not updated if we only save the child. Probably we can prevent it by some configuration/annotation or other way, but we use an ORM to make sure we don’t…

  • Coderetreat in December solves quine problem in March

    Yesterday I spoke to @MMz_ about my Space invaders quine. As is was a general meeting and a lot of people attended we didn’t have time to look into the solution properly. So I promised him to explain the details on a later moment. I think more people would like to know how the technical…