Skip to main content

Linux

Self Hosting Navidrome - Your personal music streaming service
Hello everyone! ๐Ÿ‘‹ In this article I will show you how to self-host Navidrome, your personal music streaming service. I will provide you with an Ansible playbook that you can run from your machine.
Self Hosting Forgejo
Hello everyone! I’m writing this article to quickly show you how-to self-host Forgejo, the Git software forge, and how to do common maintenance operations.
Running a PHP Application inside a Container
Hello ๐Ÿ‘‹, In this month’s blog post I’ll show you how to run a PHP Application inside a container. I’m quite a fan of online forums and the majority of forum software is written in PHP. To evaluate them quickly I wanted the ability to be able to run and install then locally.
Anubis: Protection against LLMs and Scrapers
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 AI Scrapers and LLMs. Since AI started to get popular more and more scrappers started appearing. They grab your data in order to use it to train their AIs while ignoring any rules such as robots.txt, licenses and intellectual property laws. Meta even torrented 82TB of books to train their AI.
Accessing the host address from inside a container
Hello everyone! ๐Ÿ‘‹ This post is about accessing the host URL from inside a Podman (or Docker) container and how to avoid a mistake I made when setting up containers.
Self Hosting a Calendar and Contacts server, Baรฏkal
Hello everyone! ๐Ÿ‘‹ Welcome to another self-host article! This month we’re hosting a CalDAV and CardDAV server. Baรฏkal, the lightweight CalDAV+CardDAV server.
Self Hosting PeerTube on Fedora Server
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 yourself.
How to install DaVinci Resolve on Linux (Fedora Edition)
Hello everyone! ๐Ÿ‘‹ In this article you will learn how to install DaVinci Resolve Free and Studio editions on Fedora 40 and Fedora 41.
How to install HP LaserJet 107a Drivers on Linux
Hello everyone! ๐Ÿ‘‹ I’ve recently installed Fedora on my main PC and I wanted to write this post to serve me as a memo on how to install the HP LaserJet 107 printer driver.
Implementing cat with Kotlin Native
Introduction # Hello! ๐Ÿ‘‹ In this article we’ll implement the cat command utility which is used in many Unix like systems like Linux and macOS. To implement it, we’ll use kotlin and to drop the Java Virtual Machine (JVM). We’ll build a binary directly with Kotlin Native. In the end, we’ll get an executable that we can simply run on our Linux or macOS box.