Personal blog powered by a passion for technology.
· 1 min read

Clients

Authentication …

Read more →
· 2 min read

Gitlab: continuous delivery setup for Clojure/Java with Docker

Recently I was doing a https://github.com/mprokopov/it-service-sse and I though it should be a good idea to implement automatic build and deployment to docker registry container. I already have Gitlab …

Read more →
· 1 min read

How to speed up ruby bundle gems fetch

Short answer: use https://github.com/geminabox/geminabox for caching gems on your own host, or in your local network. I was using bundler’s vendor/cache in docker container, but with such improvement …

Read more →
· 1 min read

Keycloak

docker run -p 8080:8080 -e KEYCLOAK_USER=admin -e KEYCLOAK_PASSWORD=admin quay.io/keycloak/keycloak:11.0.3

Read more →
· 1 min read

Pharo testing

Suprisingly, Pharo turns out to be interesting solution for managing web pages fully by the pure OO classes and objects.

Read more →
· 1 min read

Ruby tricks

Use binding object to run code within other object context. https://ruby-doc.org/core-2.2.0/Binding.html stderr output highlight your code and insert in presentation …

Read more →
· 2 min read

Speeding up Ruby on Rails in docker

Speeding up Ruby on Rails in docker Bundle package will create a cached copy, so bundler in docker will not fetch all dependencies all the time. bundle package Create separate bundler data volume to …

Read more →
· 1 min read

Useful Kubernetes tools and tips

Unlike docker-compose sometimes kubectl provides you better tooling for docker container access. Let me share with you my useful findings. With port-forward, you can easily connect to pods service and …

Read more →
· 1 min read

Why is my dev docker container so slow on macOS?

TLDR: because of the networking layer and how docker volumes implemented.

Read more →