Software, Linux & Infrastructure

This blog is my workspace for building software, working with Linux systems, and developing technical infrastructure - with a focus on clear and structured solutions.

πŸ“… By date ✏️ Recently updated

Latest articles

The Selection Sort Algorithm

The Selection Sort Algorithm πŸ‡¦πŸ‡Ή

πŸ“… 2026-09-11 πŸ‘οΈ ...

How selection sort repeatedly finds the smallest remaining value and swaps it into place, visualized as an animated bar chart with a C++ implementation.

The Quicksort Algorithm

The Quicksort Algorithm πŸ‡¦πŸ‡Ή

πŸ“… 2026-09-11 πŸ‘οΈ ...

How quicksort partitions a list around a pivot and recurses on both halves, visualized as an animated bar chart with a C++ implementation.

The Merge Sort Algorithm

The Merge Sort Algorithm πŸ‡¦πŸ‡Ή

πŸ“… 2026-09-11 πŸ‘οΈ ...

How merge sort repeatedly merges sorted runs into larger sorted runs until one remains, visualized as an animated bar chart with a C++ implementation.

The Insertion Sort Algorithm

The Insertion Sort Algorithm πŸ‡¦πŸ‡Ή

πŸ“… 2026-09-11 πŸ‘οΈ ...

How insertion sort grows a sorted prefix one element at a time by shifting larger values out of the way, visualized as an animated bar chart with a C++ implementation.

The Heapsort Algorithm

The Heapsort Algorithm πŸ‡¦πŸ‡Ή

πŸ“… 2026-09-11 πŸ‘οΈ ...

How heapsort turns a list into a binary heap and repeatedly extracts the maximum, visualized as an animated bar chart with a C++ implementation.

The Bubble Sort Algorithm

The Bubble Sort Algorithm πŸ‡¦πŸ‡Ή

πŸ“… 2026-09-11 πŸ‘οΈ ...

How bubble sort sorts a list by repeatedly swapping adjacent out-of-order elements, visualized as an animated bar chart with a C++ implementation.

Hello, World! in C

Hello, World! in C πŸ‡¦πŸ‡Ή

πŸ“… 2026-09-03 ✏️ 2026-09-04 πŸ‘οΈ ...

The classic first program every C programmer writes: a short history of the Hello World tradition and how to compile and run it.

WMines β€” A Minesweeper Clone

WMines β€” A Minesweeper Clone πŸ‡¦πŸ‡Ή

πŸ“… 2026-09-01 ✏️ 2026-09-05 πŸ‘οΈ ...

A browser-playable Minesweeper clone, compiled to WebAssembly.

The Bresenham Line Algorithm

The Bresenham Line Algorithm πŸ‡¦πŸ‡Ή

πŸ“… 2026-08-30 ✏️ 2026-08-31 πŸ‘οΈ ...

How Bresenham's algorithm draws straight lines on a pixel grid using only integer arithmetic, with a C++ implementation.

The Midpoint Circle Algorithm

The Midpoint Circle Algorithm πŸ‡¦πŸ‡Ή

πŸ“… 2026-07-05 πŸ‘οΈ ...

How the midpoint circle algorithm draws a circle on a pixel grid using only integer arithmetic and eightfold symmetry, with a C++ implementation.

plot β€” A Minimal C++ Plotting Library

plot β€” A Minimal C++ Plotting Library

πŸ“… 2026-06-28 πŸ‘οΈ ...

A lightweight C++ SDL2-based plotting library with a minimal callback API for 2D graphics.

Apache Benchmarks with ab and curl

Apache Benchmarks with ab and curl

πŸ“… 2026-03-28 ✏️ 2026-07-11 πŸ‘οΈ ...

How to measure web server performance with ab (ApacheBench) and curl β€” useful after configuration changes or software updates.

Syncthing - Cloud-synchronisation without cloud

Syncthing - Cloud-synchronisation without cloud πŸ‡¦πŸ‡Ή

πŸ“… 2025-03-16 ✏️ 2026-07-11 πŸ‘οΈ ...

Syncthing syncs files between devices directly, without any cloud service or third-party server. A practical setup guide for Linux.

Fast transfers with dd and loop-devices

Fast transfers with dd and loop-devices

πŸ“… 2024-09-22 ✏️ 2026-03-30 πŸ‘οΈ ...

Optimized dd parameters for fast file transfers and disk image copies when working with loop devices.

Emacs: Failed to verify signature archive-contents.sig

Emacs: Failed to verify signature archive-contents.sig

πŸ“… 2024-04-22 ✏️ 2026-03-30 πŸ‘οΈ ...

How to fix the 'Failed to verify signature archive-contents.sig' error in Emacs package management.

Setting static route in Debian-Linux

Setting static route in Debian-Linux

πŸ“… 2024-04-11 ✏️ 2026-03-30 πŸ‘οΈ ...

How to set a static network route in Debian/Linux and make it persistent across reboots.

How to change the environment of a running (parent) process under Linux?

How to change the environment of a running (parent) process under Linux?

πŸ“… 2024-02-10 ✏️ 2026-03-30 πŸ‘οΈ ...

How to modify environment variables of a running process under Linux using gdb β€” including parent processes.

apt-file – Find programs inside APT/Debian-repositories

apt-file – Find programs inside APT/Debian-repositories

πŸ“… 2023-01-15 ✏️ 2026-03-30 πŸ‘οΈ ...

How to use apt-file to search for commands and files in APT/Debian repositories before installing a package.

Passwordless SSH access to server

Passwordless SSH access to server

πŸ“… 2022-12-08 ✏️ 2026-03-30 πŸ‘οΈ ...

It is possible to simulate such password entries with the expect tool, but this is anything but secure.

Convert images to a single video using ffmpeg

Convert images to a single video using ffmpeg

πŸ“… 2022-07-13 ✏️ 2026-03-30 πŸ‘οΈ ...

How to combine a sequence of images into a single video file using ffmpeg.