frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Pizza delivery driver built triple OS where folders SOLIDIFY at 5% capacity

1•Catanamu•1h ago
Live demo [screenshot of your terminal above]

Self-taught between deliveries in Conroe, TX. Core concept: • Everything = (subject predicate object) triples • Folders have hard volume = triples/sec limits • Run cold at 5% by design = massive headroom • Memory leak? Folder hits 5% → SOLIDIFIES → delete clean

Code: https://replit.com/@clydetosspon/tripleos [after you make Replit]

Neuromorphic chip makers: this matches your spike physics perfectly (0W idle)

Full story in comments. AMA! code from collections import deque import time, random

class Triple: def __init__(self, s, p, o, folder=""): self.s, self.p, self.o, self.folder = s, p, o, folder

class Folder: def __init__(self, name, capacity): self.name = name self.capacity = capacity self.triples = [] self.occupancy = 0 self.rules = {}

    def add_rule(self, subj, pred, result):
        self.rules[(subj, pred)] = result
    
    def can_accept(self):
        return self.occupancy < self.capacity * 0.05  # 5% rule
    
    def process(self):
        processed = self.triples[:]
        self.triples, self.occupancy = [], 0
        for t in processed:
            if (t.s, t.p) in self.rules:
                if self.can_accept():
                    self.triples.append(Triple(*self.rules[(t.s, t.p)]))
                    self.occupancy += 1
                else:
                    print(f"*** {self.name} SOLIDIFIED at {self.occupancy/self.capacity*100:.0f}% ***")
                    return
class TripleOS: def __init__(self): self.folders = { "root": Folder("root", 1000), "avatar": Folder("avatar", 200), "world": Folder("world", 500) } # Avatar passes keypress to world self.folders["avatar"].add_rule("key", "press", ("key", "press", "A")) self.folders["world"].add_rule("key", "press", ("world", "react", "key"))

    def inject(self, triple):
        self.folders["avatar"].triples.append(triple)
    
    def tick(self):
        for folder in self.folders.values():
            folder.process()
# Demo run os = TripleOS() print("Triple OS Demo - Pizza Driver's Solid Folders") print()

for i in range(60): os.inject(Triple("key", "press", "A")) os.tick() print(f"Tick {i}: World {os.folders['world'].occupancy/os.folders['world'].capacity100:.0f}% | Avatar {os.folders['avatar'].occupancy/os.folders['avatar'].capacity100:.0f}%") time.sleep(0.1) end code demo clydetosspon@pop-os:~$ python3 '/home/clydetosspon/tripleos.py' Triple OS Demo - Pizza Driver's Solid Folders

Tick 0: World 0% | Avatar 0% Tick 1: World 0% | Avatar 1% Tick 2: World 0% | Avatar 2% Tick 3: World 0% | Avatar 2% Tick 4: World 0% | Avatar 2% Tick 5: World 0% | Avatar 3% Tick 6: World 0% | Avatar 4% Tick 7: World 0% | Avatar 4% Tick 8: World 0% | Avatar 4% Tick 9: World 0% | Avatar 5% ** avatar SOLIDIFIED at 5% ** Tick 10: World 0% | Avatar 5% ** avatar SOLIDIFIED at 5% ** Tick 11: World 0% | Avatar 5% ** avatar SOLIDIFIED at 5% ** (truncated display due to discord intermediary limitations ... ... etc end demo

A Markdown textfile based Kanban board in a single HTML file

https://github.com/chr15m/kanban-todo
1•chr15m•55s ago•1 comments

The easiest way to make the world smarter [video][30m]

https://www.youtube.com/watch?v=XRcwwZXJ8gk
1•Bender•2m ago•0 comments

NPM Visual Manager – a visual dependency manager for VS Code

https://github.com/luisssc/npm-visual-manager
1•luicc•4m ago•0 comments

I'm Sorry Did You Say Street Magic

https://en.wikipedia.org/wiki/I%27m_Sorry_Did_You_Say_Street_Magic
2•doener•6m ago•1 comments

Atuin v18.13 – better search, a PTY proxy, and AI for your shell

https://blog.atuin.sh/atuin-v18-13/
3•cenanozen•13m ago•0 comments

AI Slop Is Infiltrating Online Children's Content

https://undark.org/2026/03/20/ai-slop-children/
3•jruohonen•14m ago•0 comments

Tech Interview guide – the test without tests

http://opentranscripts.org/wp-content/uploads/2016/12/allison-parrish-programming-forgetting-04.png
1•anong1•18m ago•0 comments

Big Win for Open Source as Germany Backs Open Document Format

https://itsfoss.com/news/germany-digital-stack-mandate/
3•giuliomagnifico•19m ago•0 comments

Apple: Accelerate your machine learning workloads with the M5 and A19 GPUs

https://www.youtube.com/watch?v=wgJX1HndGl0
3•de_aztec•19m ago•0 comments

Etel-Tuning

https://etel-tuning.com/
2•mqus•22m ago•0 comments

I benchmarked managed Kubernetes across 31 EU providers – here's what I found

https://www.eucloudcost.com/blog/building-eucloudcost/
1•mixxor•25m ago•0 comments

Show HN: YoloAI: A sandbox and diff/apply workflow your agent can't escape

https://yoloai.dev/posts/the-only-sandbox-claude-cant-escape/
1•kstenerud•27m ago•0 comments

Show HN: World Time TUI

https://github.com/aleris/woti
1•realaleris149•31m ago•0 comments

Internet course on circuit theory using TINA

https://www.tina.com/free-dc-ac-course/
1•teleforce•34m ago•0 comments

Pydantic-Deep: Production Deep Agents for Pydantic AI – Vstorm

https://pydantic.dev/articles/pydantic-deep-agents
1•rbanffy•34m ago•0 comments

Show HN: Shareaslot Is a Doodle Alternative

https://shareaslot.com/
1•theill•36m ago•0 comments

Study: An AI decoded the rules of an ancient board game

https://news.flinders.edu.au/blog/2026/03/21/ai-sheds-light-on-an-ancient-gaming-mystery/
1•giuliomagnifico•36m ago•0 comments

Show HN: Live-Typing Chat

https://kraa.io/kraa/trees
2•levmiseri•38m ago•0 comments

Microscope (Role-Playing Game)

https://en.wikipedia.org/wiki/Microscope_(role-playing_game)
1•doener•39m ago•0 comments

SoftBank planning $500B data center in Ohio

https://www.japantimes.co.jp/business/2026/03/21/companies/softbank-ohio-data-center/
2•shrike•40m ago•1 comments

Hallucinated References: Five Excuses for Academic Misconduct

https://dorotheabaur.ch/en/texts-and-media/hallucinated-references-five-excuses-for-academic-misc...
2•jruohonen•40m ago•1 comments

Living with (Jagged) Artificial Superintelligence

https://langkilde.se/blog/living-with-asi/
1•imartin2k•42m ago•0 comments

Show HN: AI still recommends Delve to buyers 3 days after the fraud scandal

https://optimly.ai/brand/delve
1•apurvaluty•42m ago•0 comments

Elon Musk misled Twitter investors, jury finds

https://www.bbc.co.uk/news/articles/c62j3yl842eo
6•iamflimflam1•45m ago•1 comments

Ask HN: Good minimal hardware to run LLMs and general NNs

1•mdp2021•46m ago•0 comments

Show HN: Run Emacs in the Browser with v86

https://play.emacsen.de/
1•gudzpoz•52m ago•0 comments

New research suggests Bennu's boulders might be more porous than expected

https://science.nasa.gov/missions/osiris-rex/asteroid-bennus-rugged-surface-baffled-nasa-we-final...
1•ultratalk•1h ago•0 comments

Your Site Content Is Powering AI. Your Bank Account Has No Idea

https://medium.com/@tenslor.com/your-site-content-is-powering-ai-your-bank-account-has-no-idea-th...
3•emem_ndon•1h ago•0 comments

An effect notation based on with-clauses and blocks

https://blog.yoshuawuyts.com/a-with-based-effect-notation
1•fanf2•1h ago•0 comments

AI Team OS – Turn Claude Code into a Self-Managing AI Team

https://github.com/CronusL-1141/AI-company
1•cronus1141•1h ago•0 comments