While setting up a Raspberry Pi 5 for a new project, I decided to go with a headless setup – no display, keyboard, or mouse. I flashed the SD card, connected power, and waited for the Pi to appear on my network.
Read More
Manually formatting code can be tedious, especially in fast-paced or collaborative development environments. While consistent formatting is essential for readability and maintainability, doing it by hand slows you down and sometimes leads to inconsistent results across a project. In this article, I’ll
Read More
In this blog post, we will show you how to make your Linux terminal talk using espeak-ng. Imagine a small voice synthesizer on your computer. […]
Sausage is a word forming game, inspired by the classic Bookworm. Written in bash script, you can use it on any Linux distribution. Playing Sausage The goal of the game is simple. Earn points by spotting words. Longer word spotting results in
Read More
An interesting development has taken place as openSUSE has decided to not offer Deepin Desktop anymore over repeated security concerns. Deepin Desktop Removed from openSUSE over Security Concerns openSUSE is not happy with Deepin Desktop and they have their reasons for that.
Read More
Indentation is how code is visually spaced. It helps define structure, scope, and readability. For example, Python requires indentation to define blocks of code. Other languages might not require it, but messy indentation can make code really hard to read (and debug).
Read More
Sometimes I do weird things for the sake of it. Like once, I used Raspberry Pi as a WiFi extender for fun. This is one of those stories. I had an old pair of hi-fi speakers gathering dust in a forgotten corner
Read More
Rust everywhere! It was included in the Linux kernel code a couple of years ago. And even before that happened, a race started to re-write tools into Rust. 14 Rust Tools for Linux Terminal Dwellers Rust-powered tools for the terminal? Here are
Read More
Word wrap automatically breaks a long line of text so it fits within your current editor window, without you needing to scroll horizontally. It doesn’t add line breaks to your file; it just wraps it visually. Picture this: You’re writing a long
Read More
In this guide, we will learn how to sandbox Linux apps with Firejail and Bubblewrap. Imagine you download a seemingly harmless PDF reader from the […]