Skip to main content

Linux

Apache Kafka: How-to set offsets to a fixed time
Hello ๐Ÿ‘‹, This is a short article about setting offsets in Apache Kafka for a consumer group. Normally, to reset offsets in Kafka you need to use the kafka-consumer-groups.sh tool, this means downloading the zip archive with Kafka’s source code and setting up the Java SDK. All Kafka’s tools are dependent on Java and this isn’t that nice or developer friendly…
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.
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.
ncdu: NCurses Disk Usage
·1 min
Hello everyone! ๐Ÿ‘‹ This is a short article about a handy tool called ncdu. The tool helps you delete files and directories from your filesystem. I use it daily to clear junk files from my workstation and the servers that I’m working on. ๐Ÿงน
How to make Rร˜DE audio interface work on Linux
Hi ๐Ÿ‘‹, I have recently updated the firmware of my RODE audio interface from 1.12.x to 1.13, and the device was no longer working properly on Linux, it had trouble with the microphone. I found out that it was an audio sampling issue.
How to install aย specific Python version on Linux
Hello, ๐Ÿ‘‹ In this article I will show you how to install Python versions on Linux using the following methods: compiling from source, dead snakes ppa and pyenv.
fzf: A command-line fuzzy finder ๐ŸŒธ
·1 min
Hi ๐Ÿ‘‹, fzf is a command line tool that can be used to fuzzy search files, history, and command outputs. Check out the Github repository.
Kubernetes service account for pod
Hi ๐Ÿ™‹โ€โ™‚๏ธ, In this article I will talk about how to authenticate your applications to the Kubernetes API via the service accounts feature.