Thoughts, Learnings & Realisations

An investment in knowledge always pays the best interest

Benjamin franklin
  • TDD – Todo application using Angular 11

    As a pre-requisite, it is expected to have npm and angular cli installed in your machine. The installations are pretty straight forward, you may follow the links and install if you don’t have it in your machine. The complete code for this can be found in my github url. Step-1: First step is generate aMore

    Read further..

  • Todo application using Java and Micronaut

    In the previous chapter, we created a Todo application using Java, Quarkus and Mongodb. In this chapter, lets to the same using Java and Micronaut. Quarkus/Kotlin – Before moving on to the Java/Micronaut implementation, lets quickly have a look at the quarkus kotlin combination. Here is my repository for the same – faskan/todo-kotlin-quarkus (github.com). UnfortunatelyMore

    Read further..

  • Todo App – Create a native image for Quarkus todo application

    In the previous post, I created a todo application using Quarkus and Java. In this post, I am going to see how to create a GraalVM Native Image for the same. First of all, package the application using native profile. The following command will create a linux executable file using maven native profile. Note thatMore

    Read further..