frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Temporal: A nine-year journey to fix time in JavaScript

https://bloomberg.github.io/js-blog/post/temporal/
466•robpalmer•8h ago•160 comments

Many SWE-bench-Passing PRs would not be merged

https://metr.org/notes/2026-03-10-many-swe-bench-passing-prs-would-not-be-merged-into-main/
84•mustaphah•2h ago•9 comments

Don't post generated/AI-edited comments. HN is for conversation between humans.

https://news.ycombinator.com/newsguidelines.html#generated
2395•usefulposter•4h ago•899 comments

Making WebAssembly a first-class language on the Web

https://hacks.mozilla.org/2026/02/making-webassembly-a-first-class-language-on-the-web/
357•mikece•19h ago•136 comments

Personal Computer by Perplexity

https://www.perplexity.ai/personal-computer-waitlist
88•josephwegner•5h ago•61 comments

Show HN: I built a tool that watches webpages and exposes changes as RSS

https://sitespy.app
137•vkuprin•7h ago•39 comments

Show HN: Autoresearch_at_home – SETI_at_home but for LLM training

https://www.ensue-network.ai/autoresearch
6•austinbaggio•19m ago•2 comments

Google closes deal to acquire Wiz

https://www.wiz.io/blog/google-closes-deal-to-acquire-wiz
207•aldarisbm•8h ago•139 comments

Britain is ejecting hereditary nobles from Parliament after 700 years

https://apnews.com/article/uk-house-of-lords-hereditary-peers-expelled-535df8781dd01e8970acda1dca...
122•divbzero•2h ago•97 comments

The MacBook Neo

https://daringfireball.net/2026/03/the_macbook_neo
345•etothet•12h ago•586 comments

Meticulous (YC S21) is hiring to redefine software dev

https://jobs.ashbyhq.com/meticulous/3197ae3d-bb26-4750-9ed7-b830f640515e
1•Gabriel_h•2h ago

I was interviewed by an AI bot for a job

https://www.theverge.com/featured-video/892850/i-was-interviewed-by-an-ai-bot-for-a-job
92•speckx•5h ago•98 comments

BitNet: 100B Param 1-Bit model for local CPUs

https://github.com/microsoft/BitNet
287•redm•11h ago•146 comments

Preliminary data from a longitudinal AI impact study

https://newsletter.getdx.com/p/ai-productivity-gains-are-10-not
20•donutshop•2h ago•6 comments

Entities enabling scientific fraud at scale (2025)

https://doi.org/10.1073/pnas.2420092122
248•peyton•10h ago•178 comments

Show HN: Klaus – OpenClaw on a VM, batteries included

https://klausai.com/
110•robthompson2018•7h ago•63 comments

5,200 holes carved into a Peruvian mountain left by an ancient economy

https://newatlas.com/environment/5-200-holes-peruvian-mountain/
83•defrost•1d ago•44 comments

Building Better Country Selects

https://talysto.com/blog/building-better-country-selects/
5•dlrush•1h ago•2 comments

Against vibes: When is a generative model useful

https://www.williamjbowman.com/blog/2026/03/05/against-vibes-when-is-a-generative-model-useful/
35•takira•1d ago•2 comments

How we hacked McKinsey's AI platform

https://codewall.ai/blog/how-we-hacked-mckinseys-ai-platform
375•mycroft_4221•13h ago•150 comments

Physicist Astrid Eichhorn is a leader in the field of asymptotic safety

https://www.quantamagazine.org/where-some-see-strings-she-sees-a-space-time-made-of-fractals-2026...
103•tzury•7h ago•15 comments

Swiss e-voting pilot can't count 2,048 ballots after decryption failure

https://www.theregister.com/2026/03/11/swiss_evote_usb_snafu/
140•jjgreen•10h ago•315 comments

Show HN: Open-source browser for AI agents

https://github.com/theredsix/agent-browser-protocol
93•theredsix•9h ago•29 comments

Launch HN: Prism (YC X25) – Workspace and API to generate and edit videos

https://www.prismvideos.com
30•aliu327•7h ago•16 comments

Can the Dictionary Keep Up?

https://www.thenation.com/article/culture/stefan-fatsis-dictionary-history/
7•pepys•1d ago•3 comments

Launch HN: Sentrial (YC W26) – Catch AI agent failures before your users do

https://www.sentrial.com/
22•anayrshukla•7h ago•10 comments

Show HN: Satellite imagery object detection using text prompts

https://www.useful-ai-tools.com/tools/satellite-analysis-demo/
34•eyasu6464•2d ago•13 comments

What Is a Tort?

https://harvardlawreview.org/print/vol-139/what-is-a-tort/
22•bookofjoe•3h ago•24 comments

Building a TB-303 from Scratch

https://loopmaster.xyz/tutorials/tb303-from-scratch
208•stagas•4d ago•82 comments

Fungal Electronics (2021)

https://arxiv.org/abs/2111.11231
55•byt3h3ad•6h ago•6 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•10mo ago

Comments

JonChesterfield•10mo ago
Exhaustive compile time checking of dispatch statements is a wonderful thing, sorely missing from the languages that decided "sum types" are a bit weird and niche.
fredrikholm•10mo ago
They make it near impossible to extend from the outside.

I can pass a Reader interface to your function, but I cannot (easily) add a

> | UnusualProtocol(Socket)

as a third party consumer.

Other than that, sum types are the better abstraction. With exhaustive first class pattern matching (eg. with proper matching on destructuring), nothing comes close in terms of ergonomics.

hermanradtke•10mo ago
That is a feature. Compose instead of extending.
Yoric•10mo ago
OCaml has extensible sum types. They work very nicely for some ranges of problems.
swiftcoder•10mo ago
Elm <-> Rust

Best buds on this front

gitroom•10mo ago
Tbh, missing those checks in other languages bugs me so much - it's like why leave me hanging?