Stories from an Italian Software Engineer
How I write Blog Posts (2022)
Every year, I promise to write at least one blog post a month, but EVERY SINGLE TIME that commitment only lasts for a while.
It’s not that I don’t try; for example, I published four blog posts last year, and this is the fifth this year, but sooner or later, I give up.
Coding during high school
I started coding seriously during high school. I went to ITIS Leonardo Da Vinci in Viterbo (https://www.ittvt.edu.it/), a professional school meant to teach you a job, and it does.
It taught us about physics, chemistry, system theory, advanced math, computer science, and electronics.
My new remote-local workstation setup
I always wanted to solve the problem of moving from laptop 1 to laptop X while continuing to work on a task.
The perfect example is this blog post, I’m writing this from laptop 1, but I would love to keep going from where I left when switching to a different notebook.
The solution should work not just for text editing but also for GUI applications in general.
Cluster Api - multi-tenancy EKS implementation
Cluster API in case you don’t know it is:
a Kubernetes sub-project focused on providing declarative APIs and tooling to simplify provisioning, upgrading, and operating multiple Kubernetes clusters.
Multi-tenancy is defined by the project itself:
Starting from v0.6.5, single controller multi-tenancy is supported that allows using a different AWS Identity for each workload cluster. For details, see the multi-tenancy proposal.
That is exactly what we are going to see in this post.