frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Jev in 25 Lines of Python

https://www.nobodywho.ai/posts/jev-in-25-lines/
93•bashbjorn•1h ago•32 comments

GPT-6 Sol and Luna

https://openai.com/index/introducing-gpt-6-sol-and-luna/
1516•OfficialTurkey•15h ago•723 comments

Claude Opus 5.5

https://www.anthropic.com/claude-opus-5-5
1528•km144•16h ago•940 comments

Abandoning Scientific Linux Was a Mistake

https://blog.melashri.net/posts/scientific-linux-mistake/
6•elashri•24m ago•1 comments

Transit rewards

https://waymo.com/blog/2026/09/transit-rewards/
131•raybb•6h ago•133 comments

OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005

https://www.cryptocellar.org/bgac/the-mvueh-break.html
655•sohkamyung•19h ago•386 comments

Data-only attacks are easier than you think (2024)

https://www.usenix.org/publications/loginonline/data-only-attacks-are-easier-you-think
50•segfaultbuserr•5h ago•16 comments

'We hacked the FBI:' Hackers say they have data on all FBI employees

https://www.404media.co/we-hacked-the-fbi-hackers-say-they-have-data-on-all-fbi-employees/
594•spenvo•15h ago•428 comments

ReBarUEFI: Resizable BAR for almost any UEFI system

https://github.com/xCuri0/ReBarUEFI
148•nateb2022•2d ago•46 comments

Microsoft killed FoxPro in 2007. Anyway, here's FoxPro revived

https://foxscript.org/
309•boredjohnny•12h ago•183 comments

Show HN: Npunlock – Run custom C kernels for Intel NPUs

https://github.com/hsfzxjy/npunlock
20•hsfzxjy•20h ago•3 comments

What California is learning from solar panels built over irrigation canals

https://www.kqed.org/science/2002033/heres-what-california-is-learning-from-solar-panels-built-ov...
213•Jtsummers•1d ago•364 comments

How did AMD Ryzen get 50% faster in two years?

https://lemire.me/blog/2026/09/18/how-did-amd-ryzen-get-50-faster-in-two-years/
325•ibobev•4d ago•124 comments

SAML: A fractal of bad design

https://blog.trailofbits.com/2026/09/21/saml-a-fractal-of-bad-design/
235•aray07•14h ago•139 comments

WordPress: Unauthenticated path traversal leading to conditional RCE

https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-7hp8-65ch-5whp
190•vntok•16h ago•98 comments

Claude Opus 5.5 Intelligence, Performance and Price Analysis (Max)

https://artificialanalysis.ai/models/claude-opus-5-5
288•theanonymousone•16h ago•89 comments

No Easy Fix for Bogus Respondents in Online Opt-In Polls

https://www.pewresearch.org/methods/2026/08/27/no-easy-fix-for-bogus-respondents-in-online-opt-in...
28•luu•1d ago•9 comments

Pentagon says overreliance on AI contributed to missile strike on Iran school

https://www.bloomberg.com/graphics/2026-iran-school-attack/
635•devonnull•14h ago•324 comments

Unreal Agent

https://unreallabs.ai/blog/unreal-agent/
178•trollied•14h ago•105 comments

People hooked on vapes try a new way to quit: cigarettes

https://www.bloomberg.com/news/articles/2026-09-18/to-quit-vaping-some-are-starting-to-smoke
176•alephnerd•1d ago•194 comments

The current balance of power in open models

https://www.interconnects.ai/p/the-current-balance-of-power-in-open
88•gmays•11h ago•29 comments

The softness of metal

https://psyche.co/turning-points/his-frailty-made-ozzys-final-gig-true-heavy-metal
32•NaOH•1d ago•12 comments

How often do you think about the 1893 World's Fair?

https://www.thebirthofacapital.info/chicago-worlds-fair-tataria-ware-larsen/
9•bryanrasmussen•3h ago•2 comments

Obscura: VPN that can't log your activity

https://obscura.com/#faq-technical
132•Flimm•13h ago•108 comments

OpenAI is well positioned to fast-follow Jev

https://arcturus-labs.com/blog/2026/09/21/will-openai-eat-jevs-lunch/
292•JohnBerryman•18h ago•208 comments

Show HN: JevBench, a reproducible benchmark for typed decision models

https://benchmarkheaven.com/jev-models
103•florianstandhar•20h ago•25 comments

Grammarly will send unhinged messages to all your users if you try to cancel

https://www.reddit.com/r/sysadmin/comments/1wjdpgx/psa_grammarly_will_send_unhinged_messages_to_all/
132•ksec•5h ago•35 comments

Side-stepping the Secretary Problem, unwittingly

https://www.evalapply.org/posts/side-step-secretary-problem-hiring/index.html
79•pvdebbe•1d ago•13 comments

Markdown in /src

https://htmx.org/essays/markdown-in-src/
133•perrygeo•1d ago•70 comments

Delta: Highly available, strongly consistent storage using chain replication (2022)

https://engineering.fb.com/2022/05/04/data-infrastructure/delta/
25•grep_it•1d ago•2 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•1y ago

Comments

JonChesterfield•1y 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•1y 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•1y ago
That is a feature. Compose instead of extending.
Yoric•1y ago
OCaml has extensible sum types. They work very nicely for some ranges of problems.
swiftcoder•1y ago
Elm <-> Rust

Best buds on this front

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