# whats wrong (blogs) — RSS Amplifier

Recent posts from the 2 feeds in the RSS Amplifier directory that cover whats wrong.

Page: <https://rssamplifier.com/topics/what-wrong/blogs>  
Feed: <https://rssamplifier.com/topics/what-wrong/blogs.md>

---

## [Special Announcement — Huge Changes](https://gkcdaily.substack.com/p/special-announcement-huge-changes)

_2026-08-17 · G.K. Chesterton · G.K.'s Daily_

Changes and plans.

## [Modern Martyrs](https://gkcdaily.substack.com/p/modern-martyrs)

_2026-08-14 · G.K. Chesterton · G.K.'s Daily_

Excerpts from All Things Considered

## [The Godliness of Gargoyles](https://gkcdaily.substack.com/p/the-godliness-of-gargoyles)

_2026-08-13 · G.K. Chesterton · G.K.'s Daily_

Excerpted essay from The Defendant

## [The Crusader Returns From Captivity](https://gkcdaily.substack.com/p/the-crusader-returns-from-captivity-dfc)

_2026-08-12 · G.K. Chesterton · G.K.'s Daily_

A poem by GK Chesterton

## [Free Thought Against Freedom](https://gkcdaily.substack.com/p/free-thought-against-freedom)

_2026-08-12 · G.K. Chesterton · G.K.'s Daily_

Excerpts from Orthodoxy

## [THE BATTLE OF THE STORIES (1915)](https://gkcdaily.substack.com/p/the-battle-of-the-stories-1915)

_2026-06-06 · G.K. Chesterton · G.K.'s Daily_

A poem

## [The Outlawed Parent](https://gkcdaily.substack.com/p/the-outlawed-parent)

_2026-06-05 · G.K. Chesterton · G.K.'s Daily_

Excerpt from What's Wrong With the World

## [Europe's Midnight](https://gkcdaily.substack.com/p/europes-midnight)

_2026-06-04 · G.K. Chesterton · G.K.'s Daily_

Excerpts from The Crimes of England

## [The Reason for Rebellion](https://gkcdaily.substack.com/p/the-reason-for-rebellion)

_2026-06-03 · G.K. Chesterton · G.K.'s Daily_

Excerpted from What's Wrong with the World

## [To Edmund Clerihew Bentley](https://gkcdaily.substack.com/p/to-edmund-clerihew-bentley)

_2026-04-29 · G.K. Chesterton · G.K.'s Daily_

The dedication of A Man Who Was Thursday

## [One Cloud, Every AI Layer (Sponsored)](https://crawlproof.com/a/RBsU2XkZZseo)

_2026-04-29 · **Sponsored**_

Run agents, inference, and infrastructure on one stack — economics improve as you scale.

## [Building Python packages via GitLab pipeline with type checking](https://blog.pmhahn.de/gitlab-python-packaging/)

_2026-04-18 · Philipp Hahn · Philipp Hahn_

My main programming language is Python and I’m a huge fan of static type hinting. As of 2026 there are four type checkers: Dropbox mypy (Python) Microsoft pyright (TypeScript) Facebook pyrefly (rust) Astral ty (rust) I like to integrate them into my GitLab workflow, which includes generatin a Code Quality report. On top of this my pipeline also runs Astral ruff as a linter and code formatter and…

## [Running linters in GitLab](https://blog.pmhahn.de/gitlab-linter/)

_2026-04-07 · Philipp Hahn · Philipp Hahn_

Linters run as part of GitLab Continuous Integration pipelines to guarantee code quality. A Merge Request based workflow will start from a branch main being currently at some commit start. You normally fork a branch develop from that branch base and will create several commits c1, c2, …, cN. When you push that branch and create a Merge Request, a pipeline may start and will run several jobs.

## [Linux and the Windows NT file system](https://blog.pmhahn.de/linux-ntfs/)

_2026-02-17 · Philipp Hahn · Philipp Hahn_

The Windows New Technology File System (NTFS) has a long history with Linux: Driver Type Based on Kernel Period Read-write Original Kernel Scratch 2.1.74 1995-2001 Read-only Linux-NTFS Kernel Scratch 2.5.11 2002-2024 Read-only Captive FUSE ntfs.sys 2003-2006 Read-write NTFS-3G FUSE Linux-NTFS 3.18 2006- Read-write NTFS3 Kernel Paragon 5.15 2021- Read-write NTFS Plus Kernel Linux-NTFS 7.1 2026-…

## [Proper dependency tracking in GNU make](https://blog.pmhahn.de/make/)

_2025-11-22 · Philipp Hahn · Philipp Hahn_

make is used to build projects, e.g. compile source code into binaries. If the project consists of multiple files, explicit dependencies must be specified to run the command in the correct order. In addition to that Makefiles can also be used to track implicit dependencies: If one file is modified, only those commands are re-run which are needed. For large projects that can be a big time-saver if…

## [Padding and alignment of C structs](https://blog.pmhahn.de/C-padding/)

_2025-10-01 · Philipp Hahn · Philipp Hahn_

Q: How to debug padding and alignment issues of C struct? A: gdb --silent --batch -ex 'ptype /o struct my\_t' some.o

## [Linux Kernel Module Symbol Versioning](https://blog.pmhahn.de/linux-kernel-symbol-versioning/)

_2025-08-23 · Philipp Hahn · Philipp Hahn_

The Linux kernel itself and its modules may export symbols, so that other modules can import and use them. As the functions are written in C, it is important that the function signature matches: the number of arguments must match the ordering of the arguments must match the data types must match, which includes the structure and layout of all input and output parameters If any of them changes, the…

## [Shell-trivia #3: set -e](https://blog.pmhahn.de/shell-trivia-3-set-e/)

_2025-08-13 · Philipp Hahn · Philipp Hahn_

Es gab bereits zwei Blog-Eintrag Shell-trivia #1 und Shell-trivia #2 zum Thema set -e. Mein Kollege N. Schier hat mich heute Morgen aber mit einer weiteren Shell-Absurdität überrascht: #!/bin/sh set -e date && false && true date Wie häufig wird date ausgeführt?

## [Debian 13 Trixie released](https://blog.pmhahn.de/debian-13-trixie/)

_2025-08-11 · Philipp Hahn · Philipp Hahn_

Last Saturday - 2025-08-09 - Debian 13 “Trixie” has been released after 2 years of work. 🥳

## [shell \`trap\` signal](https://blog.pmhahn.de/shell-trap-signal/)

_2025-06-30 · Philipp Hahn · Philipp Hahn_

What’s wrong with signal handling like this: #!/bin/sh trap 'echo Cleanup…' EXIT HUP INT TERM ...

## [Open this .onion address (Sponsored)](https://crawlproof.com/a/2ZXPT4GobTsf)

_2025-06-30 · **Sponsored**_

Access 7btj5kisrpopxjkhmcugbiygfk2xd6op3ta7whfrmxxrldyrlh5b5zad.onion using a Tor browser.

## [shell \`trap\` and proper quoting](https://blog.pmhahn.de/shell-trap-quote/)

_2025-06-28 · Philipp Hahn · Philipp Hahn_

What’s wrong with #!/bin/bash TMPDIR=$(mktemp -d) trap 'rm -r $TMPDIR' EXIT ...

