Collabnix – A Community of 8800+ DevOps Engineers

Collabnix is a popular blogging site and DevOps community founded by Docker Captain Ajeet Singh Raina. It’s a DevOps community of 6k Slack members. DockerLabs – Access to 500+ Docker Hands-on Labs & Tutorials KubeLabs – Access to 300+ Kubernetes Hands-on Labs & Tutorials Kubetools – A Curated List of Kubernetes Tools DockerTools – A ...

“Distroless” Container Images

“Distroless” images contain only your application and its runtime dependencies. They do not contain package managers, shells or any other programs you would expect to find in a standard Linux distribution. Language focused docker images, minus the operating system

Czy Docker ma sens w 2021 roku?

Czy Docker ma sens w 2021 roku?

Unit testing in Kotlin projects with Mockk vs. Mockito

Unit testing in Kotlin projects with Mockk vs. Mockito

Podstawy UML

Podstawy UML

Kotlin: An Illustrated Guide

Kotlin: An Illustrated Guide

Developer conferences

Developer conferences

Bare: sizing for stock drysuits

Sizing for Stock Drysuits

AI Commits

This CLI tool runs git diff to grab all your latest code changes, sends them to OpenAI’s GPT-3, then returns the AI generated commit message.

Fixing floating-point arithmetics with Kotlin

– https://blog.frankel.ch/fixing-floating-point-arithmetics-with-kotlin/ – https://www.linkedin.com/pulse/why-we-should-use-bigdecimal-instead-double-java-financial-ismail val a = 5.8.toBigDecimal() val b = 5.6.toBigDecimal() assertThat(a - b).isEqualTo(0.2.toBigDecimal()) or val a = BigDecimal("5.8") val b = BigDecimal("5.6") assertThat(a - b).isEqualTo(BigDecimal("0.2"))