Feed aggregator

Report from MPs warns of unknown number of unsafe subpostmasters convictions based on multiple pre-Horizon systems

Computer Weekly Feed - Thu, 03/12/2026 - 8:20pm
Report from MPs warns of unknown number of unsafe subpostmasters convictions based on multiple pre-Horizon systems
Categories: Computer Weekly

Cinema App Is for Movie Streaming or Games Too?

Hacker News - Thu, 03/12/2026 - 8:04pm

Comments URL: https://news.ycombinator.com/item?id=47359037

Points: 2

# Comments: 0

Categories: Hacker News

AlgoTradeAI

Hacker News - Thu, 03/12/2026 - 8:03pm

Article URL: https://www.algotradeai.live/

Comments URL: https://news.ycombinator.com/item?id=47359026

Points: 2

# Comments: 0

Categories: Hacker News

One plan/spec to rule them all (at least replace lots of docs)

Hacker News - Thu, 03/12/2026 - 8:02pm

There have been lots of talk about PRDs being dead and spec-driven development etc.

Here is how we are planning. We iterate with our team and agents on one plan document.

It starts with some of the key things in a PRD but shorter and to the point: goals, use cases, jobs to be done, differentiators, strategy, succcess.

Then, in the same document, we include architecture diagrams in excalidraw or mermaid.

Then we describe the implementation approach but without any code, the approach.

Goal is as short as possible while being thorough... usually a few pages.

Now, we have one unified document that we/agents can use to build. The agents use this plus a full testing plan plus the code. And we get much better results.

It is nice because a human can and will read a few page document and the agents will keep it up-to-date with what is implemented.

Comments URL: https://news.ycombinator.com/item?id=47359022

Points: 2

# Comments: 0

Categories: Hacker News

Show HN: Nix on Windows –- proof-of-concept demo

Hacker News - Thu, 03/12/2026 - 7:58pm

How puffnfresh, my coworker, made a single command to download, assemble, and boot the VM image is arguably as cool as the port itself!

Comments URL: https://news.ycombinator.com/item?id=47358988

Points: 2

# Comments: 0

Categories: Hacker News

Show HN: Tarvos – Relay Architecture for infinitely building with coding agents

Hacker News - Thu, 03/12/2026 - 7:55pm

Relay Architecture is a new way to run AI coding agents. Instead of one agent executing your entire plan until it degrades, you run a relay. Each fresh agent reads the full plan, picks up a minimal handoff from the previous one, works at peak capacity, and passes the baton forward. The team covers a distance no single agent could sustain.

The problem it exists to solve: LLMs degrade as context fills up — this is measured, not anecdotal (Chroma Research). Every AI coding tool today runs a single agent start to finish. By phase 4 of your plan, half the context window is spent remembering what was already done. I was restarting sessions by hand, copy-pasting progress notes just to keep quality up. That's not autonomous development. That's babysitting. The architecture has four components: the Master Plan (your PRD, read fresh by every agent — never accumulates in context), the Baton (a hard-capped 40-line handoff note — the constraint is intentional, a bloated handoff recreates context rot in the next agent), the Signals (trigger phrases agents emit so the orchestrator dispatches without understanding the code), and the Context Budget (real-time token tracking, automatic handoff at threshold).

Tarvos is the reference implementation for Claude Code. Each session runs in its own git worktree. Accept merges to your branch, reject discards cleanly.

Open source, MIT. Works today, rough edges exist.

Comments URL: https://news.ycombinator.com/item?id=47358960

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Parevo Core – Auth, tenant, permission in one Go library

Hacker News - Thu, 03/12/2026 - 7:53pm

I built Parevo Core because I kept rewriting the same auth + tenant + permission logic across Go projects.

Each time: JWT validation, refresh rotation, session revoke, tenant context, RBAC checks, SQL filters for tenant_id. Same patterns, different codebases.

So I extracted it into a modular library. You pick what you need: auth, tenant, permission, storage, cache, lock, billing, etc. Each module has interfaces; you plug in MySQL, Postgres, MongoDB, or Redis. No framework lock-in—works with net/http, chi, gin, echo, fiber, GraphQL.

What’s included:

Auth: JWT, OAuth2, SAML, LDAP, API keys, WebAuthn, magic link Multi-tenant: lifecycle, feature flags, SQL filters Permission: RBAC, ABAC, cached checks Storage adapters: memory, Postgres, MySQL, MongoDB, Redis Extras: cache, lock, health, job queue, billing, GDPR export I’d love feedback—especially on the module boundaries and what’s missing for real-world SaaS.

GitHub: https://github.com/parevo/core Docs: https://parevo.github.io/core/

Comments URL: https://news.ycombinator.com/item?id=47358943

Points: 1

# Comments: 0

Categories: Hacker News

Pages