frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Why so many dead comments?

1•cockpump•1m ago•0 comments

Patterns for AI Assisted Development

https://jasonrobert.dev/blog/2026-03-21-patterns-for-ai-assisted-development/
1•hulksmash5756•1m ago•0 comments

One of the Thousands Missing

https://www.wired.com/story/hassan-took-a-bike-ride-now-hes-one-of-the-thousands-missing-in-gaza/
1•jbegley•1m ago•0 comments

Show HN: Chrome extension to scrape Posts from X

https://github.com/rs75/x-post-scraper
1•beast200•1m ago•0 comments

I built a package manager for agent skills

https://github.com/nattergabriel/reseed
1•eterer•2m ago•1 comments

Aphantasia

https://en.wikipedia.org/wiki/Aphantasia
1•kristianpaul•3m ago•0 comments

A Brief Review of Zorin OS 18

https://cheapskatesguide.org/articles/zorin-linux.html
1•worldofmatthew•3m ago•1 comments

Generators in Lone Lisp

https://www.matheusmoreira.com/articles/generators-in-lone-lisp
2•matheusmoreira•4m ago•0 comments

Encyclopedia Brittanica and Merriam-Webster vs OpenAI [pdf]

https://fingfx.thomsonreuters.com/gfx/legaldocs/klpylzoekvg/BRITTANICA%20OPENAI%20LAWSUIT%20compl...
1•seanhunter•5m ago•0 comments

Customer service agents offer $10M in benefits for RSA conference

https://www.generalanalysis.com/blog/adversarial_analysis_customer_service_agents
1•casca•5m ago•0 comments

MacBook Neo and the Windows Laptop Problem

https://worldofmatthew.com/blog/microslop/
1•worldofmatthew•6m ago•0 comments

Show HN: Illux – AI illustrations that stay on brand

https://illux.app/
1•phmarques•6m ago•0 comments

Optimistic Provide: How We Made IPFS Content Publishing 10x Faster

https://probelab.io/blog/optimistic-provide/
1•dennis-tra•7m ago•0 comments

Implementing Result Types for C

https://xnacly.me/posts/2023/result-types-c/
1•ibobev•8m ago•0 comments

Removing Metadata from Go Binaries

https://xnacly.me/posts/2023/go-metadata/
1•ibobev•8m ago•0 comments

AI Agentic for Banking and Financial Services in 2026

https://simplai.ai/blogs/agentic-ai-banking-financial-services-mortgage-kyc-credit-analysis/
1•Shanmugaraj-1•10m ago•0 comments

The intelligence illusion: why AI isn't as smart as it is made out to be

https://www.nature.com/articles/d41586-026-00882-5
1•Brajeshwar•11m ago•1 comments

Anthropomorphic Polygons

https://en.wikipedia.org/wiki/Anthropomorphic_polygon
1•ttd•13m ago•0 comments

Show HN: MemLineage, a shared workspace for solo developers working with agents

https://github.com/zhuamber370/memlineage
1•celastin•14m ago•1 comments

Reading Socrates in Silicon Valley

https://www.ft.com/content/f9e57ed6-ad07-491c-830a-88ba92d77add
1•eatonphil•15m ago•0 comments

ClickSay – Vibe Code 20x Faster

https://clicksay.net
1•lumieremedia•16m ago•1 comments

Internet and Email Policy and Practice

https://jl.ly/Internet/scrapeup.html
1•speckx•16m ago•0 comments

Len – types, relations, and generation contracts for LLM codegen

https://github.com/ewiger/len
1•divingstar•18m ago•1 comments

I wrote a 750-page guide to self-hosting production apps

https://selfdeployment.io/
2•kocyigityunus•19m ago•1 comments

I probably spend more than my salary on Claude

https://www.nytimes.com/2026/03/20/technology/tokenmaxxing-ai-agents.html
1•mizzao•20m ago•1 comments

The vital lessons in Metamorphoses, Ovid's 2k-year-old poem

https://www.bbc.com/culture/article/20260317-metamorphoses-ovids-2000-year-old-poem-says-a-lot-ab...
1•andsoitis•20m ago•0 comments

The Trouble with Rare Earths

https://homunculusmusic.wordpress.com/2026/03/23/the-trouble-with-rare-earths/
1•MindGods•22m ago•0 comments

In the killer world of online gaming, no hits any more – just survivors

https://www.theguardian.com/games/2026/mar/19/in-the-killer-world-of-online-gaming-there-are-no-h...
2•andsoitis•24m ago•0 comments

gRPC in the browser: gRPC-Web under the hood

https://kreya.app/blog/grpc-web-deep-dive/
1•CommonGuy•25m ago•0 comments

I built an open-source Obsidian alternative with desktop, mobile

https://github.com/thejacedev/Noteriv
2•JaceDev•25m ago•0 comments
Open in hackernews

Formally Verifying the Easy Part

https://brainflow.substack.com/p/formally-verifying-the-easy-part
3•hnipps•1h ago

Comments

derrak•1h ago
> The proofs stop at the language boundary. The bugs don’t.

In formal verification, you have to model everything you care about. I suspect we’ll see large fragments of popular languages being more thoroughly modeled in languages like Dafny and Lean.

An alternative that side steps all of this is to not use an external language at all. ACL2 might be a better fit in this regime than Dafny or Lean because of how close it sits to SBCL.

hnipps•33m ago
I suspect the same but I wonder how effective it will be in reality. I mention a group that has been trying to verify SQL for 12 years, and they haven't fully formalised all basic queries.

I think LLMs will speed things up but will it result in popular libraries becoming verified or an entirely new class of libraries being built and verified from the ground up?

ACL2 sounds interesting. Do you use it?

derrak•12m ago
I do use ACL2, although I don’t do many proofs. When I do, the proofs usually go through automatically or require me to state only a few lemmas or tell the tool how to do the induction.

This is partially a commentary on how good the automation is in ACL2 and partially a commentary on the fact that I don’t use it for hard problems :)

I use it more for property based testing. The counterexample generator is very powerful because it leverages the knowledge base of the theorem prover (all the accumulated lemmas, etc.) among other things.

hnipps•6m ago
> The counterexample generator is very powerful because it leverages the knowledge base of the theorem prover (all the accumulated lemmas, etc.) among other things.

That's a really interesting application. Could be very powerful for what I'm doing. Thank you!