Unbound DNS Server

- 2 mins read
Unbound is a fast, secure, validating, recursive, and caching DNS resolver. It’s commonly used for privacy (no third-party logs), DNSSEC validation, and performance via local caching. Installation apt update && apt dist-upgrade -y apt install sudo vim unbound unbound-anchor dns-root-data Basic Configuration Create or edit a config file. Common location: /etc/unbound/unbound.conf (main file, often includes other files) vim /etc/unbound/unbound.conf Minimal recommended config (for home use): server: # DNSSEC trust anchor (auto-updates) auto-trust-anchor-file: "/var/lib/unbound/root.

Degeneration

- 2 mins read
This french folk song really got to me and I’d like to share it with you: peertube mirror to the song: https://tube.tinfoil-hat.net/w/g2JcB9BLamqJbUYy14cPEK Dégénération Your great-great-grandfather was the one who cleared the soil Your great-grandfather was the one who worked the soil And your grandfather turned a profit on the land And your father was the one who sold the land to become a government functionary And as for you my young lad,

Happening Bingo

- 1 min read
A List of things I assume can happen in the next Year(s) / Decade. I’ll update things whenever I can think of a new event or if one came true General A new Pandemic Grocery shortages Travel restrictions Gas shortages Fertilizer shortages Dramatic increases in grocery prices Energy lockdowns Nighttime energy shutdowns Local brownouts and blackouts A global economic crisis China invades Taiwan Mandatory vaccination Fuel shortages Hyperinflation The end of the petrodollar CO₂ certificates A social credit–style scoring system Electric cars won’t charge 24/7 Technical: Digital IDs Clear Name online Identity Digital euro with limited or no cash use Operating system–level age verification No sideloading—apps only from official stores A ban on VPNs Advanced general AI (AGI) developments The emergence of rogue AGI Memoryholed Epstein List / Pizzagate
Hi, I had several problems with my Nextcloud installs. So I decided today that I’ll try the Snap Package. There are some tweaks to do, in order to run Snapd on LXC. But I’ll walk you trough this. I assume you already have a working Debian LXC container. Prepare the Container first, SSH into your Proxmox Server and edit your LXC Containers config vim /etc/pve/lxc/CONTAINER_NUMBER.conf First, make sure you have fuse=1, enabled, then add the last 3 lines from below
In Proxmox, create a new Linux container using an Debian template (version 13 was used here). The following configuration is perfectly adequate for home use. Depending on your needs, you can of course increase the number of cores and the amount of memory. unprivileged container (yes) 0 Cores (let the Host Kernel decide on CPUs) 512 MB RAM 0 MB Swap 8 GB Storage Change LXC Properties Shutdown the LXC Container, then on the HOST
Hi, there, here I tell my story. How I became a tinfoil-hat. The nickname has several origins: the mentally ill tinfoil-hat, the privacy tinfoil-hat and the conspiracy tinfoil-hat The Mentally ill Tinfoil-hat Way To Psychiatry I don’t want to go into detail about my upbringing, but let’s just say I had a troubled childhood and adolescence. I was both a bully at times and a victim at others. My stepdad was a complete tyrant, and I struggled in school while my parents frequently fought, sometimes even physically, right in front of me.
Tales from the Psychiatry I was admitted to psychiatry several times, beginning at age 15. I thought the experiences might be worth sharing, so here is what I witnessed in the youth unit. The “Nazi” Hip‑Hopper A patient who identified as a Christian Nazi Hip-Hopper believed that God would forgive him no matter what he did. He once urinated into an apple‑juice bottle that someone later drank. During a conversation about vacations, he learned that the Thai currency is called a “baht,” which sounds like “bud” (marijuana).

Why we need the Darknet

- 5 mins read
The Darknet Isn’t Just for Criminals You’ve probably heard scary stories: “The darknet is where drugs and hackers live. Some of that is true, but it’s like saying “the internet is only for p0rn and scams.” The darknet is just a corner of the internet built for one thing: nobody can see who you are or where you are. Imagine you could walk into a library wearing a perfect disguise — no ID, no cameras, no questions.

Winter

- 1 min read
The winter seemed never-ending, and the pack was dying of hunger. The leader of the pack, the oldest of them all, was out in front comforting the young wolves, telling them that spring was coming, but at a certain point, one young wolf decided to stop. He says he has had enough of cold and hunger, and he says he is going to live among men because the important thing is to stay alive.

Setup Kubernetes Cluster

- 4 mins read
Installing Kubernetes Here is how i install my Kubernetes cluster. I have 3 VMs: 1 Control Node and 2 Worker Nodes. As for the Distro, I go with Ubuntu 24.04. As for Ressources, I went with 4GB RAM 2 Cores and 70GB for each Node. Install Containerd # update packages in apt package manager sudo apt update && apt dist-upgrade # install containerd using the apt package manager # containerd is lightwieght, reliable and fast (CRI native) sudo apt-get install -y containerd # create /etc/containerd directory for containerd configuration sudo mkdir -p /etc/containerd # Generate the default containerd configuration # Change the pause container to version 3.