Month: March 2020

  • Monthly notes 49

    Working From Home edition. Issue 49, 27.3.2020 Conferences Now that COVID-19 has all of us in corontine and working from home, also the technology conferences have been moved to online and free. Here’s some. WFHConfWorking From Home Conf with talks from technology to projects, best practices, lessons learned and about working from home.… Jatka lukemista…

  • Using NGINX Ingress Controller on Google Kubernetes Engine

    If you’ve used Kubernetes you might have come across Ingress which manages external access to services in a cluster, typically HTTP. When running with GKE the “default” is GLBC which is a “load balancer controller that manages external loadbalancers configured through the Kubernetes Ingress API”. It’s easy to use but doesn’t let you to to…

  • Keep Maven dependencies up to date

    Software development projects come usually with lots of dependencies and keeping them up to date can be burdensome if done manually. Fortunately there are tools to help you. For Node.js projects there are e.g. npm-check and npm-check-updates and for Maven projects there are OWASP/Dependency-Check and Versions Maven plugins. Here’s a short introduction how to setup…