Recent posts

Anubis: Protection against LLMs and Scrapers

1 minute read

Hello everyone! ๐Ÿ‘‹ In this blog post weโ€™re exploring the option of self hosting Anubis. Anubis is a software that defends and protects your services from ...

How to zip and unzip a directory in Go

2 minute read

Hello everyone! ๐Ÿ‘‹ I wanted to write a short article about zipping and unzipping a directory in Golang. The answer is quite simple, you can use the AddFS ...

How to use RocksDB with Go

3 minute read

Hello everyone! ๐Ÿ‘‹ Iโ€™ve had to work with RocksDB recently and in order to use it from Golang I had to jump a few hops before getting it to work properly. ...

Self Hosting PeerTube on Fedora Server

11 minute read

Hello everyone! ๐Ÿ‘‹ This is my first blog post in 2025, and Iโ€™d like to talk about my experience in self-hosting PeerTube in Fedora Server and how to do it...

The Go *Options pattern

3 minute read

Introduction Hello everyone! ๐Ÿ‘‹ In this article Iโ€™ll present you the options pattern in Golang. The pattern is useful when you want to create a function tha...

The Hash Set

2 minute read

Introduction A hash set is a data structure that allows storing elements inside a set using a hash function. The set is a data structure that offers effici...