A few months ago I started several blogs about Python, Go, and Rust and some miscellaneous subjects.

Hacking with Python

On the hacking with Python blog I write about different things connected with Python. It can be found here

Hacking with Go

Hacking with Go was started out of my desire and curiousity about the Go language, which is both easy and quite performant. It can be found here.

Hacking with Rust

Rust is a hot new programming language, safe and performant at the same time, so I decided to invest some time in it, and blog about it here.

The Esox Solutions Blog

On this blog, I blog about all kinds of different things which are not appropiate for any of the previous blogs. It can be found here.

  • Introduction The builder pattern is a creational design pattern, i.e. it is a pattern for creating or instantiang objects of classes. We can use it for breaking down the construction […] The post Easy Object Construction: Mastering the Builder Pattern in C# appeared first on Hacking Away.
  • Introduction Sometimes, it’s useful to have a collection of pre-initialized objects ready for efficiency. This is especially handy when dealing with resource-intensive tasks, such as creating database connections. In this […] The post Easy Efficiency: Unleashing a Thread-Safe Object Pool in C# appeared first on Hacking Away.
  • Introduction The Abstract Factory Pattern organizes the creation of related objects, making it easy to interchange them. In our example, we’ll delve into a simplified implementation in C#. If this […] The post Easy Abstract Factory Pattern Implementation in C# appeared first on Hacking Away.
  • Introduction When I started out using .NET development, many years ago, SQL Server was the default database server to be used, and let’s be honest: .NET support for SQL Server […] The post .NET, Postgres and Kubernetes: a match made in heaven? appeared first on Hacking Away.
  • Introduction In the first part of this two-part series we built a small web api, backed by a postgres database. Now the time has come to deploy this to a […] The post Deploying a Go web API on Kubernetes, part 2: The Kubernetes part appeared first on Hacking Away.
  • Introduction After having done some experiments with the Go programming, I really started to like the language, and decided a bold experiment: build a small web API, backed by a […] The post Deploying a Go web API on Kubernetes, part 1: The API part appeared first on Hacking Away.