frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Programming has changed dramatically due to AI in the last 2 months (Karpathy)

https://twitter.com/karpathy/status/2026731645169185220
1•bakigul•1m ago•0 comments

Demo of an indie AI collaboration app – beyond Codex and Claude Code desktop

1•seeksky•3m ago•1 comments

AIQuotaBar – macOS menu bar app that shows Claude and ChatGPT usage limits

https://github.com/yagcioglutoprak/AIQuotaBar
1•toprak123•8m ago•0 comments

Git City – Your GitHub as a 3D City

https://www.thegitcity.com/
1•duck•9m ago•1 comments

Mumsnet campaign demands ban on social media for under-16s

https://www.theguardian.com/society/2026/feb/26/mumsnet-campaign-demands-ban-social-media-under-16s
1•pmg101•11m ago•0 comments

Shipcast – Turn your Git commits into tweets, automatically

https://shipcast.dev/
1•guoyu•11m ago•0 comments

Show HN: LucidExtractor – Extract web data in plain English, no selectors

https://lucidextractor.liceron.in
1•yukendiran_j•16m ago•0 comments

A larger cage: about the ongoing calls for "digital sovereignty"

https://www.structural-integrity.eu/a-larger-cage-about-the-ongoing-calls-for-digital-sovereignty/
1•doener•17m ago•0 comments

Earth's heat to power 10k homes in renewable energy first for UK

https://www.bbc.co.uk/news/articles/cewzg77k721o
2•RobinL•17m ago•0 comments

Show HN: Snaplake – Query past database states without restoring backups

https://snaplake.clroot.io
1•clroot•17m ago•0 comments

Show HN: Context Harness – Local first context engine for AI tools

https://github.com/parallax-labs/context-harness
1•__parallaxis•17m ago•0 comments

Perplexity Computer

https://www.perplexity.ai/hub/blog/introducing-perplexity-computer
1•kamaal•17m ago•0 comments

Show HN: I Made an AI Skill to Help Write Tlaps Proofs

https://github.com/younes-io/agent-skills/blob/main/skills/tlaps-workbench/SKILL.md
1•youio•17m ago•0 comments

Implementing a Clear Room Z80 / ZX Spectrum Emulator with Claude Code

https://antirez.com/news/160
1•boyter•19m ago•0 comments

RUS-Pat Bringing Optical Color to Ultrasound

https://www.caltech.edu/about/news/bringing-optical-color-to-ultrasound
1•Liquidity•19m ago•0 comments

Show HN: SendView – Mail merge from Airtable/GSheets, sends through your email

https://sendview.app/
2•jbrake•26m ago•0 comments

Evidence for the weak Sapir-Whorf hypothesis

https://twitter.com/colingorrie/status/2026658482959565246
2•MrBuddyCasino•26m ago•0 comments

Apple's Touch-Screen Laptop to Have Dynamic Island, New Mac Interface

https://www.bloomberg.com/news/articles/2026-02-24/apple-s-touch-screen-macbook-pro-to-have-dynam...
3•mpweiher•27m ago•0 comments

Show HN: Trust-gated developer communities with portable identity (AT Protocol)

https://github.com/JohannaWeb/ProjectFalcon
2•JohannaWeb•30m ago•0 comments

A Logic Named Joe(1946)

https://www.baen.com/chapters/W200506/0743499107___2.htm
2•largbae•30m ago•0 comments

Open-Source Discord Alternatives

https://lwn.net/SubscriberLink/1058319/7f10cd1d82956e9f/
2•mkesper•31m ago•0 comments

Burned $250 in tokens on Day 1 with OpenClaw

2•aposded•31m ago•0 comments

You are likely unable to connect to http://archive.ph

https://twitter.com/pberrini/status/2026884672584867986
2•petethomas•32m ago•1 comments

Show HN: Sleeping LLM – A language model that remembers by sleeping

https://github.com/vbario/sleeping-llm
2•vbaranov87•34m ago•0 comments

Show HN: Check Your Latency

https://3nt.lat/
2•dpweb•36m ago•0 comments

Apple's Multibillion-Dollar Push to Make Chips in the U.S. [video]

https://www.youtube.com/watch?v=ktFlaBhpMu8
1•Austin_Conlon•37m ago•0 comments

Date-fns: Modern JavaScript date utility library

https://date-fns.org/
1•nateb2022•37m ago•0 comments

OVH Is Raising Prices

1•babaganoosh89•41m ago•1 comments

ZES – sign data with post-quantum crypto without the API ever seeing it

https://pq-api.cyclecore.ai/try
1•dev_PQC-focus•43m ago•1 comments

Show HN: Nullroom.io – Experimental, stateless P2P messaging and file sharing

https://www.nullroom.io/
2•vdw•45m ago•0 comments
Open in hackernews

Show HN: AI-assert – Constraint verification for LLM outputs (278 lines, Python)

https://github.com/kaantahti/ai-assert
1•kaantahti•1h ago
I built a tiny library that verifies LLM outputs against constraints and retries on failure.

The core insight: LLMs don't reliably follow instructions, but you can catch failures cheaply and retry with targeted feedback. This is essentially a lightweight "process reward model" that requires zero training.

How it works: 1. Your LLM generates output 2. ai-assert checks it against constraints (length, word count, sentence count, regex, custom predicates) 3. Each constraint returns a score in [0,1] -- composite is multiplicative (zero in any = zero overall) 4. If score < threshold, retry with feedback ("Constraint X failed because Y -- regenerate") 5. Return the best-scoring attempt

On IFEval (25 instruction-following constraint types): 69.3% -> 76.2% accuracy.

278 lines. Zero dependencies. Works with any callable that takes a string and returns a string.

pip install ai-assert

https://github.com/kaantahti/ai-assert