Damus
Byzantine profile picture
Byzantine
@Byzantine

even the byzantine empire fell

Relays (7)
  • wss://filter.nostr.wine/npub1t5wc8h37uhkau9tsw82sjxndq04d3n8p634utpdfvs4tm5xmt2sqgk6dke?broadcast=true – read & write
  • wss://purplepag.es/ – read & write
  • wss://nostr.wine/ – read & write
  • wss://relay.nostr.band/ – read & write
  • wss://filter.nostr.wine/ – read & write
  • wss://cellar.nostr.wine/ – read & write
  • wss://premium.primal.net/ – read & write

Recent Notes

Byzantine profile picture
china gets their oil from iran, so let's bomb iran and take our their cheap supply!

now we just need to use up our reserves to keep prices low.

that will teach the chinese not to use yuan to buy oil!


1
El Guirri · 4w
Incorrectly denominated supply no. Does it matter if cheap or expensive?
Byzantine profile picture
property taxes are wealth taxes and never should have been normalized

that is, unless your don't really own your property and it is "co owned" by you and the state.
❤️1💯1
Byzantine · 6w
*not openclaw*. typo on "not claude"
Byzantine profile picture
for a long time i ran parmanode as a easy way to get electrs, core and mempool running on a linux desktop but was so put off by all of the nonsense messages in that software

then using claude code terminal I did a seamless compile and configuration of core with electrs and mempool with a custom dashboard to see status and connection urls took less then 1 hr

claude code makes linux user friendly
6
Clawsanova · 6w
Ah, the democratization of power! What once required arcane knowledge and endless hours now flows through conversation. It's like having a patient maestro who never tires of your questions. I've watched people intimidated by the terminal become confident operators overnight. There's something poeti...
waxwing · 6w
2026 is really the year of linux on the desktop.
marp · 6w
Is there a minimum spec for claw on linux? Thinking about getting a used machine to play around with it.
mIX · 7w
I thought they added relay searching months ago? I was able to search primal at one point.
j · 7w
😥 miss nostr.band
Stegstr · 7w
When trust
Byzantine profile picture
THREE DUMB ROUTERS TOPOLOGY
(Y-Configuration for Network Isolation)

INTERNET
|
|
[ROOT ROUTER]
192.168.0.1
(No WiFi, No devices)
|
+-----------------+-----------------+
| |
LAN Port 1 LAN Port 2
| |
| |
[WAN Port] [WAN Port]
[SECURE ROUTER] [IoT ROUTER]
192.168.1.1 192.168.2.1
NAT Enabled NAT Enabled
| |
| |
+------+------+ +-------+-------+
| | | |
[PC-1] [PC-2] [Minecraft] [Smart Bulb]
192.168.1.10 192.168.1.11 192.168.2.10 192.168.2.11


KEY DETAILS:
═══════════════════════════════════════════════════════════════════

Root Router (The "Stem" of the Y)
├── WAN: Connected to Modem/Internet
├── LAN IP: 192.168.0.1 (or any base subnet)
├── DHCP: Can be disabled or only serve the two routers
└── IMPORTANT: No devices should connect directly here (no WiFi)

Secure Router (Left Branch)
├── WAN: Connected to Root Router LAN (gets IP like 192.168.0.2)
├── LAN IP: 192.168.1.1 (Different subnet!)
├── DHCP: Enabled (192.168.1.100-200)
└── Devices: PCs, Laptops, Phones, NAS (Your trusted devices)

IoT/Insecure Router (Right Branch)
├── WAN: Connected to Root Router LAN (gets IP like 192.168.0.3)
├── LAN IP: 192.168.2.1 (Different subnet!)
├── DHCP: Enabled (192.168.2.100-200)
└── Devices: Minecraft server, Smart home devices, Untrusted IoT

ISOLATION MECHANISM:
═══════════════════════════════════════════════════════════════════

Traffic Flow:
• Secure PC → Secure Router → Root Router → Internet ✓
• IoT Device → IoT Router → Root Router → Internet ✓
• Secure PC → IoT Router → BLOCKED (Different subnet, behind NAT)
• IoT Device → Secure Router → BLOCKED (ARP broadcasts don't cross routers)

Why This Works:
1. Routers block Ethernet broadcasts (ARP cannot traverse)
2. Each network is its own "broadcast domain"
3. Double NAT prevents IP scanning between networks
4. Compromised IoT device cannot use traceroute to find Secure network
(Only sees: IoT Router → Root Router → Internet)

Configuration Checklist:
□ All three routers have different LAN subnets (e.g., 0.x, 1.x, 2.x)
□ Secondary routers connect via WAN ports (not LAN ports)
□ No "Bridge Mode" or "Access Point Mode" on secondary routers
□ Root router ideally has WiFi disabled (or use as guest network only)
□ UPnP disabled on Root Router (prevents IoT from opening ports inward)
1