Keeping Javascript Simple Edit: This was previously published on May 2017 on another platform. Constant discussions about the state of frontend development are going for a while now. And they all touched a nerve or two for everyone. The amount of tools and libraries you need to
multipass Easily Create a Nomad Cluster Locally with Multipass Multipass is a great tool from Canonical, that lets you create any number of Ubuntu virtual machines to play with. It works on Windows, Mac and Linux with their native
docker Docker As a Build Tool Suppose you want to build a java maven project, but you don't have the correct environment to do so. Or you just don't want to mess up your local machine. You can use docker to do the build without installing JDK or Maven. We
spring Elegant Data Initialization for Spring Projects So you want some initial data to be available to your spring project. You can use Hibernate's import.sql but let's do it with Java 8 and Spring Data JPA Repositories. Case: Make sure there is an admin user, if not create one with
docker Ready to Use Jenkins Docker Image For the past couple of weeks I've been working on a pre-configured Jenkins Docker image. I thought it should be easier to get started than the official jenkins image. Ultimate goal is to get the image to a point where no configuration, package management
spring-boot Dockerizing Your Spring Boot Application Update: This is an older post. There are now better ways to containerize your java applications such as Jib and BuildPack. In this post we will be creating a docker container that will run the sample application from the spring boot getting started guide.