How we use Kotlin to script some tasks in our team.

In my team we work on a lot of technologies, some we chose, some we did not mostly due to getting existing projects in while consultants were asked to leave our company. Nonetheless, we had some load testing to perform on our Open API stack. We decided that we needed to script it with one of the technologies we use. What do we currently have on our stack?

  • Java - Spring boot
  • Kotlin - Spring boot
  • TypeScript - NestJS
  • ReactJS with and without Redux and all the possible things around
  • VueJS - NuxtJS
  • Golang
Read More

My January 2021 books

Last month I read

  • Critical Chain from Eliyahu Goldratt
  • What would I be without you from Guillaume Musso which is not the topic of this article.
Read More

Agile Australia, my sketchnotes

Last week I went to Agile Australia Sydney. As usual this is a very inspiring event that gives some perspective and where people can really talk and exchange on methodologies and agile subjects.

Read More

Integrate Jenkins and Gitlab

After integrating Jenkins with Gitlab a few times on my last projects I ran on the same issues hence this article to summarise what I usually do.

Read More

Java 8, Lambdas - the ForEach

Today I will write a little article about the Lambdas in Java 8 and more precisely the forEach loop. You will tell me that nobody has written something on it … RIGHT!! Or maybe not …

Read More

How to use CRON Jobs?

Lately, I had to integrate data in my systems and I don’t want to have my jobs running every 10 minutes if I receive these data once a week or a day. And as I am working on AWS servers I created CRON Jobs.

Read More

MongoDB, GridFS and MongoFiles

So today I will talk about the file management into MongoDB. Indeed I met some issues while manipulating them so I thought some people could be happy to have a basic article on GridFS and MongoFiles.

Read More

Create unique code with a determined base

I wanted to create a unique code that was readable which means different from what you get when you use UUID or anything else. And it was also necessary to increment this code every time a new document was created.

Read More

Java Immutable Objects

Sometimes when I develop with my friends they ask me: where did you get this habit to use final on all these objects? Why do you always want to use immutable objects?

Read More

Design Pattern Composite

The intent of the Design Pattern Composite is to compose objects into tree structures to represent part-whole hierarchies. Composite lets clients treat individual objects and compositions of objects uniformly.

Read More

Design Pattern Adapter

In our professional projects, there are some patterns we see more often than others. The Design Pattern Adapter is one of them.

Read More