frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Windows for IoT Documentation

https://learn.microsoft.com/en-us/windows/iot/
1•teleforce•5m ago•0 comments

Whatever you do, don't disable these 11 Windows services

https://www.makeuseof.com/dont-disable-these-windows-services/
1•teleforce•6m ago•0 comments

OpenAI Launches Aardvark to Detect and Patch Hidden Bugs in Code

https://openai.com/index/introducing-aardvark/
1•_ZeD_•10m ago•0 comments

When Groups Get Stuck on the Wrong Problem

https://www.jrwinget.com/blog/2025-10-31_when-groups-get-stuck/
1•mononcqc•17m ago•0 comments

Dan Houser: GTA, Red Dead Redemption, Rockstar, Absurd and Future of Gaming

https://www.youtube.com/watch?v=o3gbXDjNWyI
1•doppp•20m ago•0 comments

The Number Ones: Michael Jackson's "Man in the Mirror"

https://www.stereogum.com/2145029/the-number-ones-michael-jacksons-man-in-the-mirror/columns/the-...
1•handfuloflight•20m ago•0 comments

Designing Remote Work at Linear

https://linear.app/now/designing-remote-work-at-linear
1•doppp•26m ago•0 comments

The Profitable Startup

https://linear.app/now/the-profitable-startup
2•doppp•27m ago•0 comments

LLMs Report Subjective Experience Under Self-Referential Processing

https://arxiv.org/abs/2510.24797
1•j_crick•29m ago•1 comments

Nonlinear dynamics of multi-omics profiles during human aging

https://www.nature.com/articles/s43587-024-00692-2
1•walterbell•30m ago•0 comments

ChatGPT uses YOLOv8 to detect UI elements

https://twitter.com/sudeeppillai/status/1984454005314240934
1•fzysingularity•32m ago•0 comments

Call Center Tunaiku

1•jokodidi•33m ago•0 comments

A portable picokernel for async I/O

https://ryansepassi.com/notes/picokernel
1•mikenew•34m ago•0 comments

Why Everyone Gets the F1 Inerter Wrong [video]

https://www.youtube.com/watch?v=4FOjKXdqFZA
1•CharlesW•34m ago•0 comments

Claude Code will ship as a native executable (no Node.js required)

https://www.threads.com/@boris_cherny/post/DQfE5QyEmrQ
2•sorcercode•40m ago•0 comments

Fragmented medical records delayed treatment for months

1•topavocadown•46m ago•0 comments

Possible Enhanced Meteor Impact Risk in 2032 and 2036 from Taurid Asteroids

https://www.sciencedirect.com/science/article/pii/S0094576525006460
1•jandrewrogers•52m ago•0 comments

Jerusalem Syndrome

https://en.wikipedia.org/wiki/Jerusalem_syndrome
1•thunderbong•1h ago•1 comments

Show HN: ZigNet: How I Built an MCP Server for Zig in 1.5 Days

https://fulgidus.github.io/posts/zignet/
1•Fulgidus•1h ago•0 comments

Show HN: Anime Eternal – Your Hub for Roblox's Anime-Themed Gaming Guides

https://animeeternal.net/
1•linkshu•1h ago•0 comments

A React-based Ratings and Reviews SaaS with customizable forms and dashboard

https://www.rovza.shop
1•arvymo•1h ago•1 comments

Turning Desert Fog into Fresh Water Using 50k Volts [video]

https://www.youtube.com/watch?v=-wa2JEYl9jU
1•slicktux•1h ago•0 comments

Why Mark Zuckerberg Is So Good at Bad Products – Merivya

https://merivya.com/2025/11/01/why-mark-zuckerberg-is-so-good-at-bad-products/
2•jainilprajapati•1h ago•0 comments

A.I. Is Making Death Threats More Realistic

https://www.nytimes.com/2025/10/31/business/media/artificial-intelligence-death-threats.html
2•mitchbob•1h ago•0 comments

NASA's Orion Space Capsule Is Flaming Garbage

https://caseyhandmer.wordpress.com/2025/10/31/nasas-orion-space-capsule-is-flaming-garbage/
2•wmf•1h ago•0 comments

Stochastic Computing

https://scottlocklin.wordpress.com/
1•d_silin•1h ago•2 comments

Developers in C-Level Meetings

https://radekmie.dev/blog/on-developers-in-c-level-meetings/
1•keyle•1h ago•0 comments

Would you let AI negotiate deals on your behalf?

1•moseg•1h ago•0 comments

Show HN: JustAButton – One button. One chance. Forever

https://www.justabutton.org/
2•nadermx•1h ago•0 comments

Want to Know What Tesla Is Doing with Cybertrucks? SpaceX Has 'Em All

https://www.autoblog.com/news/want-to-know-what-tesla-is-doing-with-cybertrucks-that-dont-sell-sp...
1•TheAlchemist•1h ago•0 comments
Open in hackernews

Systems Don't Exist but Definitions Do

https://tangrammer.codeberg.page/on-the-clojure-move/output/posts/systems-dont-exist-but-definitions-do.html
4•tangrammer•6h ago

Comments

tangrammer•6h ago
Fish don't exist—they're a category humans invented. Files don't exist —they're abstractions over magnetic patterns. Your OrderService doesn't exist either —it's just a name you gave to clustered functions.

If systems are just collections of definitions, why do we scatter those definitions across code, diagrams, wikis, Slack threads, and tribal knowledge?

This article explores compound identities —using sets of semantic keywords instead of flat strings to define system entities. The key insight: `#{:semantic-namespace/error :domain.payment/timeout}` reads like plain English ("an error in the payment domain, specifically a timeout"), and becomes queryable:

```clojure ;; What can go wrong with payments? (find-docs #{:domain.payment})

;; What are all critical errors? (find-docs #{:severity/critical}) ```

A mid-sized project has 500-1000 such definitions (errors, events, endpoints, metrics, permissions, etc.). Right now they're scattered. What if they were unified, typed, and queryable in one registry?

The system becomes self-describing. Everything else (API docs, monitoring dashboards, tests) can be generated from the definitions.

Built in Clojure but the concept applies broadly. Would love feedback on the approach.