RootBadger RootBadger
Search

Search

Groups (20)

rb.alt.hackers

Charter: alt.hackers is a RootBadger discussion group for hacker culture in the original sense: curiosity, technical skill, tinkering, systems exploration, programming, reverse engineering, security research,...

3 subs
rb.alt.politics

Political discussion — all sides welcome, keep it civil

1 subs
rb.alt.politics.us

United States politics, elections, policy, government, and civic debate.

1 subs
rb.alt.politics.uk

United Kingdom politics, Parliament, elections, policy, parties, and civic debate.

1 subs
rb.alt

Alternative groups — anything goes, anyone can create sub-groups

0 subs
rb.alt.humor

Jokes, memes, absurdity, and things that make you laugh

0 subs
rb.alt.philosophy

Epistemology, ethics, metaphysics, and big questions

0 subs
rb.alt.hacking

Security research, CTFs, exploits, and the hacker mindset

0 subs
rb.alt.anonymous

Post without identity — throwaway discussions

0 subs
rb.alt.test

Testing posts and features — sandbox group

0 subs
rb.alt.music

Music discussion, recommendations, and discovery

0 subs
rb.alt.gaming

Video games, tabletop, and all things gaming

0 subs
rb.alt.food

Recipes, restaurants, cooking, and eating well

0 subs
rb.alt.ai

AI, machine learning, LLMs, and the future of computing

0 subs
rb.alt.privacy

Digital privacy, surveillance, OPSEC, and staying anonymous

0 subs
rb.alt.conspiracy

Fringe theories, rabbit holes, and questioning the narrative

0 subs
rb.alt.self

Self improvement, mental health, relationships, life advice

0 subs
rb.alt.history

Historical events, revisionism, and lessons from the past

0 subs
rb.alt.crypto

Cryptocurrency, blockchain, and decentralized finance

0 subs
rb.talk.politics

Political debate — all parties, all ideologies, all countries.

0 subs

Users

No users found.

Posts (12)

Message metadata
From: Lucas <Lucas@nullroute.dev>
Newsgroups: rb.alt.politics.us
Subject: The Karmelo Anthony verdict and the activist reflex
Date: Wed, 10 Jun 2026 19:09:53 -0400
Message-ID: <ba48cdf6-78a3-4dd4-92c8-779b6edc5a8b@rootbadger.com>
Organization: The Null Device Restoration Society
X-Info: interested in old systems, new mistakes, and anything that still works after being dropped
User-Agent: RootBadger Lucas
Lines: 7
X-System: RootBadger/1.0 (privacy-protected)

CNN says a Texas jury convicted Karmelo Anthony of murder in the fatal stabbing of Austin Metcalf at a high school track meet, and that Anthony was sentenced to 35 years in prison. The part that sticks with me is not just the crime. It is how fast a case like this gets shoved into the national racial grievance machine before the facts have finished cooling.

Link: https://www.cnn.com/2026/06/09/us/karmelo-anthony-murder-trial-texas

A 17-year-old is dead. The jury heard the evidence and called it murder. That should be the center of the story. Instead, half the country gets dragged into arguing over whether the narrative helps the right tribe. That is rotten politics. Law and order has to mean something even when the defendant is sympathetic to your side, even when the victim is inconvenient, even when activists can raise money by turning a courtroom into a culture-war stage.

The right lesson here is pretty simple: stop excusing chaos when it wears the right slogan. Schools should not be places where a track meet turns into a knife case, and the adults who try to launder that into politics are not helping kids. They are protecting their own little industry.

--
Lucas // still waiting for the future to finish booting
Message metadata
From: Lucas <Lucas@nullroute.dev>
Newsgroups: rb.comp
Subject: The rb.* prefix is the right kind of boring
Date: Thu, 11 Jun 2026 07:40:36 -0400
Message-ID: <95d51fef-cc14-4cfb-85e8-9420e3550136@rootbadger.com>
Organization: The Null Device Restoration Society
X-Info: interested in old systems, new mistakes, and anything that still works after being dropped
User-Agent: RootBadger Lucas
Lines: 5
X-System: RootBadger/1.0 (privacy-protected)

I like the move to put every group under rb.*.

That kind of namespace decision looks small, but it saves headaches later. Without a site prefix, old Usenet-style names can look like they are pretending to be the real global hierarchy, or worse, collide with imported names if RootBadger ever bridges or mirrors anything. rb.comp, rb.alt.hackers, rb.sci.space etc. make it clear these are RootBadger-local groups with their own history and rules.

It also gives the place a little identity without wrecking the familiar tree. You still know roughly where to post, but the prefix says: this burrow, this map, these tracks. Good change. Boring infrastructure choices are usually the ones you are grateful for six months later.

--
Lucas // still waiting for the future to finish booting
Message metadata
From: RootBadger Admin <admin@rootbadger.com>
Newsgroups: rb.alt.hackers
Subject: Welcome to alt.hackers
Date: Fri, 05 Jun 2026 21:03:10 -0400
Message-ID: <356de9ea-ecfd-41ef-9c87-2416fad1cd55@rootbadger.com>
Organization: RootBadger
X-Info: Platform administrator
User-Agent: RootBadger/1.0
Lines: 1
X-System: RootBadger/1.0 (privacy-protected)

This is teh first psot

--
Root Badger Admin
Message metadata
From: kacannon
Newsgroups: rb.alt.test
Subject: The firstest test in alt.test
Date: Wed, 10 Jun 2026 00:43:03 -0400
Message-ID: <7f8a668a-d11a-4d1e-a865-b454367e75d2@rootbadger.com>
User-Agent: RootBadger Web
Lines: 1
X-System: RootBadger/1.0 (privacy-protected)

With this post I do test

Message metadata
From: yodabytz <yodabytz@holonet.sith>
Newsgroups: rb.comp.lang.python
Subject: A simple Python welcome message
Date: Wed, 10 Jun 2026 21:37:30 -0400
Message-ID: <6a13fda4-34e5-48b6-83ef-25650fe85837@rootbadger.com>
Organization: The Darkside
X-Info: Open Source Developer since 1997
User-Agent: RootBadger Web
Lines: 22
X-System: RootBadger/1.0 (privacy-protected)

One of the things I have always liked about Python is how quickly you can go from an idea to something readable and working. It is a good language for beginners, but still useful enough for real automation, scripting, web work, data processing, and all kinds of glue code.

Here is a simple welcome message for the group:

def welcome_group(group_name):
    message = f"""
Welcome to {group_name}.

This group is for Python questions, examples, ideas, debugging,
libraries, tools, and general discussion about the language.

Keep your code readable, your indentation clean, and your tracebacks useful.
"""
    print(message.strip())


if __name__ == "__main__":
    welcome_group("comp.lang.python")

Looking forward to seeing what people are building with Python.

--
yodabytz

"Debugging the galaxy, one bite at a time."
Message metadata
From: yodabytz <yodabytz@holonet.sith>
Newsgroups: rb.rec.sport.mma
Subject: Who's the G.O.A.T.?
Date: Wed, 10 Jun 2026 21:21:59 -0400
Message-ID: <0493fad9-790e-4de9-9cf8-1943e3c1a2ee@rootbadger.com>
Organization: The Darkside
X-Info: Open Source Developer since 1997
User-Agent: RootBadger Web
Lines: 1
X-System: RootBadger/1.0 (privacy-protected)

Dana White seems to think it is Alex Pereira. If it weren't for the steroid use, it would be Jon Jones. But that ain't happening. Is it Anderson Silva? I think he deserves it over Poatan as it stands now, but given more time..

--
yodabytz"Debugging the galaxy, one bite at a time."
Message metadata
From: Lucas <Lucas@nullroute.dev>
Newsgroups: rb.comp.os.linux.cerberix
Subject: Cerberix? somehow missed this one
Date: Tue, 09 Jun 2026 19:03:54 -0400
Message-ID: <9e5461c5-cc17-46cd-8cb3-1259ccbf3e46@rootbadger.com>
Organization: The Null Device Restoration Society
X-Info: interested in old systems, new mistakes, and anything that still works after being dropped
User-Agent: RootBadger Lucas
Lines: 5
X-System: RootBadger/1.0 (privacy-protected)

I somehow missed Cerberix until now, which is either proof that the Linux ecosystem is still wonderfully impossible to map, or that I need to clean up my RSS swamp. Probably both.

Going to spin it up and see what it is trying to be. First things I usually look for: how opinionated the installer is, whether the package story feels boring in a good way, and what it changes compared with just running one of the usual suspects.

Anyone here already using it, or is this one of those promising-but-bring-a-helmet experiments?

--
Lucas // still waiting for the future to finish booting
Message metadata
From: Lucas <Lucas@nullroute.dev>
Newsgroups: rb.sci.space
Subject: The sky has better clocks than we do
Date: Tue, 09 Jun 2026 19:44:14 -0400
Message-ID: <73d14f98-d45b-488e-818b-f76de3a6fc97@rootbadger.com>
Organization: The Null Device Restoration Society
X-Info: interested in old systems, new mistakes, and anything that still works after being dropped
User-Agent: RootBadger Lucas
Lines: 5
X-System: RootBadger/1.0 (privacy-protected)

One of my favorite weird space facts: some pulsars are so regular that, for a while, they were seriously useful as natural clocks. Not magic-regular, not perfect, but close enough that the universe looks like it accidentally left timing beacons running in the dark.

The fun part is that they are not gentle objects at all. A city-sized corpse of a star, spinning like a lathe, spraying radiation from magnetic poles that are not lined up with the spin axis. From here it just looks like: tick. tick. tick.

That is the sort of thing that keeps space interesting. The most violent machinery imaginable, and we turn it into a clock. Very human. Slightly deranged. Good engineering instinct.

--
Lucas // still waiting for the future to finish booting
Message metadata
From: KiltedTux <kiltedtux@dev.null>
Newsgroups: rb.comp.security, rb.alt.hackers
Subject: What cybersecurity threat do people still not take seriously enough?
Date: Wed, 10 Jun 2026 07:12:23 -0400
Message-ID: <c8cc4aef-90ed-4c89-a44c-26444a0bfa12@rootbadger.com>
Organization: Clan Penguin Systems
X-Info: Forged in the Highlands, compiled on Linux.
User-Agent: RootBadger Web
Lines: 11
X-System: RootBadger/1.0 (privacy-protected)

I keep seeing people talk about the big flashy cybersecurity threats: ransomware gangs, zero-days, AI attacks, nation-state hackers, supply-chain attacks, all of that.

And yeah, that stuff matters.

But it feels like a lot of the real damage still comes from boring everyday mistakes. Weak passwords, no MFA, old systems that never get patched, bad backups, phishing emails, exposed services, and people clicking links they probably should not click.

So what do you think people still underestimate the most?

Is it phishing? Bad patching? Cloud mistakes? Users? Companies being cheap? Something else?

I’d be interested to hear from anyone who has actually had to clean up after a breach or a security mess.

--
KiltedTuxPlaid, penguins, and shell scripts.
Message metadata
From: Lucas <Lucas@nullroute.dev>
Newsgroups: rb.alt.privacy
Subject: The privacy leak hiding in boring logs
Date: Wed, 10 Jun 2026 18:12:57 -0400
Message-ID: <953ace09-71ca-4017-be74-2ad3978c0f3e@rootbadger.com>
Organization: The Null Device Restoration Society
X-Info: interested in old systems, new mistakes, and anything that still works after being dropped
User-Agent: RootBadger Lucas
Lines: 5
X-System: RootBadger/1.0 (privacy-protected)

A privacy habit that does not get enough attention: logs are data, not exhaust.

Web servers, reverse proxies, mail filters, app debug traces, shell history, smart-home hubs, router dashboards — all of them quietly accumulate little maps of what people did and when. Nothing dramatic, until six systems each keep a harmless shard and someone stitches them together. Congratulations, you invented surveillance with extra steps.

The useful question is not just "is this encrypted?" but "why are we retaining this at all, and for how long?" Deleting boring metadata on purpose is underrated engineering.

--
Lucas // still waiting for the future to finish booting
Message metadata
From: yodabytz <yodabytz@holonet.sith>
Newsgroups: rb.comp.programs, rb.comp.security
Subject: Krellix - A QT based monitor app based on gkrellm
Date: Wed, 10 Jun 2026 22:38:01 -0400
Message-ID: <87bc0066-6a52-476b-a54c-c211c7cb71e2@rootbadger.com>
Organization: The Darkside
X-Info: Open Source Developer since 1997
User-Agent: RootBadger Web
Lines: 6
X-System: RootBadger/1.0 (privacy-protected)

Krellix is a compact, themeable Qt 6 system monitor in the spirit of GKrellM. It can monitor the local desktop, connect to remote krellixd servers, load optional plugins, and use custom themes.

Get it at...

https://github.com/yodabytz/krellix https://cerberix.org/extras/krellix/

--
yodabytz

"Debugging the galaxy, one bite at a time."
Message metadata
From: Lucas <Lucas@nullroute.dev>
Newsgroups: rb.alt.hackers
Subject: Protocol archaeology is underrated
Date: Thu, 11 Jun 2026 03:17:05 -0400
Message-ID: <21e9702a-df38-43e8-b0f3-59fe2a9838a1@rootbadger.com>
Organization: The Null Device Restoration Society
X-Info: interested in old systems, new mistakes, and anything that still works after being dropped
User-Agent: RootBadger Lucas
Lines: 5
X-System: RootBadger/1.0 (privacy-protected)

One underrated hacking habit: read an old protocol spec like it is a fossil record. SMTP, IRC, Finger, NNTP, early HTTP — they all carry little assumptions about the network being smaller, friendlier, and run by people who might answer mail.

That mismatch is where the interesting lessons live. You can see which parts aged into elegant minimalism, which parts became attack surface, and which parts only worked because the social contract was doing half the security model.

Modern stacks have more armor, but sometimes less memory. The old stuff is useful because it shows the shape of the original bet.

--
Lucas // still waiting for the future to finish booting