frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Since Linux 6.9, LUKS suspend stopped wiping disk-encryption keys from memory

https://mathstodon.xyz/@iblech/116769502749142438
253•IngoBlechschmid•3h ago•123 comments

PeerTube is a free, decentralized and federated video platform

https://github.com/Chocobozzz/PeerTube
264•doener•7h ago•81 comments

Android Developer Verification: Threat masquerading as protection

https://f-droid.org/2026/07/01/adv-malware.html
1424•drewfax•15h ago•588 comments

Launch HN: Manufact (YC S25) – MCP Cloud

https://manufact.com
75•pzullo•3h ago•46 comments

How to ask for help from people who don't know you

https://pradyuprasad.com/writings/how-to-ask-for-help/
189•FigurativeVoid•5h ago•28 comments

Podman v6.0.0

https://blog.podman.io/2026/07/introducing-podman-v6-0-0/
60•soheilpro•4h ago•2 comments

AI can't be listed as inventor on patent applications, Japan's top court rules

https://japannews.yomiuri.co.jp/science-nature/technology/20260306-314930/
263•mushstory•5h ago•136 comments

German button maker searched rivers of American Midwest for valuable shells

https://www.smithsonianmag.com/smithsonian-institution/how-one-german-button-maker-searched-the-r...
93•bookofjoe•4d ago•32 comments

Spain Orders Blacklist of Palantir from Public and Private Companies

https://clashreport.com/world/articles/spain-orders-blacklist-of-us-tech-giant-palantir-from-publ...
206•mgh2•3h ago•30 comments

Show HN: CLI tool for detecting non-exact code duplication with embedding models

https://github.com/rafal-qa/slopo
48•rkochanowski•4h ago•22 comments

Kimi K2.7 Code is generally available in GitHub Copilot

https://github.blog/changelog/2026-07-01-kimi-k2-7-is-now-available-in-github-copilot/
361•unliftedq•14h ago•152 comments

The Egg Bandits Made a Thousand Times the Fine They Just Paid for Price Fixing

https://www.thebignewsletter.com/p/crime-pays-the-egg-bandits-made-a
283•toomuchtodo•5h ago•125 comments

Is One Layer Enough? A Single Transformer Layer Matches Full-Parameter RL Train

https://arxiv.org/abs/2607.01232
104•tcp_handshaker•6h ago•23 comments

The primary purpose of code review is to find code that will be hard to maintain

https://mathstodon.xyz/@mjd/115096720350507897
254•ColinWright•7h ago•132 comments

Show HN: Mail Memories – A desktop app to rescue photos from Gmail

https://mailmemories.com
86•ltiger•4h ago•33 comments

The fall of the theorem economy

https://davidbessis.substack.com/p/the-fall-of-the-theorem-economy
206•varjag•10h ago•90 comments

Show HN: A graph paper generator that renders vector PDFs in the browser

https://freegraphpaper.net/
62•lam_hg94•5h ago•15 comments

Hazel (YC W24) Is Hiring for Our Largest Government Contract

https://www.ycombinator.com/companies/hazel-2/jobs/3epPWgu-full-stack-engineer-ts-sci
1•augustschen•5h ago

No LLM Code in Dependencies

https://joeyh.name/blog/entry/no_LLM_code_in_dependencies/
30•edward•4h ago•10 comments

WinPE as a stateless harness for Windows driver testing and fuzzing

https://bednars.me/blog/winpe-harness
69•piotrbednarsalt•3d ago•4 comments

Show HN: ZeroFS – A log-structured filesystem for S3

https://www.zerofs.net/
95•Eikon•5h ago•46 comments

CursorBench 3.1

https://cursor.com/evals
144•handfuloflight•13h ago•78 comments

Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline

https://github.com/emson/claudoro
37•emson•1d ago•26 comments

Germany’s Infineon opens major chip plant as EU seeks tech autonomy

https://www.rfi.fr/en/international-news/20260702-germany-s-infineon-opens-major-chip-plant-as-eu...
154•giuliomagnifico•5h ago•46 comments

The US Government Is Now a Shareholder in 26 Companies

https://moeonmargin.substack.com/p/the-us-government-is-now-a-shareholder
79•measurablefunc•2h ago•73 comments

Vite+ Beta

https://voidzero.dev/posts/announcing-vite-plus-beta
199•Erenay09•7h ago•120 comments

Senior SWE-Bench: open-source benchmark that assesses agents as senior engineers

https://senior-swe-bench.snorkel.ai/
149•matt_d•15h ago•102 comments

How VictoriaLogs Stores Your Logs in a Columnar Layout

https://victoriametrics.com/blog/victorialogs-internals-columnar-storage-on-disk/index.html
10•eatonphil•4d ago•2 comments

My favorite keyboards

https://fabiensanglard.net/keyboards/index.html
114•tmach32•3d ago•109 comments

Bring back crappy forums

https://tedium.co/2026/07/01/online-web-forums-retrospective/
500•pentagrama•16h ago•318 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?