fresh

fresh: Build and (re)start go web apps after saving/creating/deleting source files. Fresh is a command line tool that builds and (re)starts your web application everytime you save a Go or …

gotop

gotop: A terminal based graphical activity monitor inspired by gtop and vtop. Another terminal based graphical activity monitor, inspired by gtop and vtop, this time written in Go! CLI Options -c, –color=NAME Set a colorscheme.-m, –minimal Only show …

Comparing Ingress controllers for Kubernetes

Deploying a Kubernetes cluster for a specific application, you need to realize the requirements from the application itself, business and developers. Having this understanding, you can make an architectural choice …

TypeScript: Optional Chaining

TypeScript 3.7 RC implements one of the most highly-demanded ECMAScript features yet: optional chaining and nullish coalescing! It is crazy! 🙂 Optional Chaining So what is optional chaining? Well at …

docker: multi-stage builds

Multi-stage builds are a new feature requiring Docker 17.05 or higher on the daemon and client.  With multi-stage builds, you use multiple FROM statements in your Dockerfile. Each FROMinstruction can use a different …

Compile Daemon for Go

CompileDaemon watches your .go files in a directory and invokes go build if a file changed. Nothing more. Installation Examples In its simplest form, the defaults will do. With the current working …