frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Steam Machine launches today

https://store.steampowered.com/news/group/45479024/view/685257114654870245
1465•theschwa•13h ago•1289 comments

Will It Mythos?

https://swelljoe.com/post/will-it-mythos/
106•mindingnever•2h ago•59 comments

GLM-5.2 – How to Run Locally

https://unsloth.ai/docs/models/glm-5.2
320•TechTechTech•9h ago•141 comments

VibeThinker: 3B param model that beats Opus 4.5 on reasoning with novel SFT+GRPO

https://arxiv.org/abs/2606.16140
128•timhigins•5h ago•45 comments

Polymarket has flooded social media with deceptive videos by paid creators

https://www.wsj.com/business/media/polymarket-social-media-bets-prediction-market-441cdeb5?st=HhTZY2
195•Vaslo•2d ago•149 comments

In praise of memcached

https://jchri.st/blog/in-praise-of-memcached/
122•j03b•5h ago•45 comments

An Introduction to YOLO26

https://blog.roboflow.com/yolo26/
58•teleforce•5h ago•15 comments

The new HTTP QUERY method explained

https://kreya.app/blog/new-http-query-method-explained/
9•CommonGuy•57m ago•2 comments

OpenAI DayBreak – GPT-5.5-Cyber

https://openai.com/index/daybreak-securing-the-world/
47•AaronO•5h ago•9 comments

Optocam Zero: a Pi Zero based digital camera made using off the shelf components

https://github.com/dorukkumkumoglu/optocamzero
156•iamnothere•11h ago•39 comments

Ultralytics YOLO26: Unified Real-Time End-to-End Vision Models

https://arxiv.org/abs/2606.03748
31•teleforce•4h ago•3 comments

My Mathematical Regression

https://blog.dahl.dev/posts/my-mathematical-regression/
267•aleda145•3d ago•102 comments

Cyberdecks, going analog, and convivial technology

https://blog.hydroponictrash.solar/cyberdecks-going-analog-and-convivial-technology/
86•akkartik•3d ago•44 comments

Japanese symbols that speak without words

https://arun.is/blog/japan-symbols/
161•msephton•11h ago•85 comments

Moebius: 0.2B image inpainting model with 10B-level performance

https://hustvl.github.io/Moebius/
275•DSemba•17h ago•68 comments

Ask HN: Anthropic banned me from using Claude Code and I don't know what to do

5•ayi•29m ago•0 comments

Windows NT for GameCube/Wii

https://github.com/Wack0/entii-for-workcubes
53•zdw•3d ago•9 comments

Show HN: Oak – Git alternative designed for agents

https://oak.space/oak/oak
179•zdgeier•15h ago•159 comments

How Lume Works: The Retrieval Primitives

https://deepbluedynamics.com/blog/lume-retrieval-primitives
4•kordlessagain•2d ago•0 comments

Canada plans 'nuclear renaissance' with up to 10 reactors built by 2040

https://www.cbc.ca/news/politics/federal-nuclear-strategy-9.7244509
433•geox•11h ago•274 comments

Package Managers need global hooks

https://captnemo.in/blog/2026/06/17/package-managers-need-hooks/
15•evakhoury•4d ago•20 comments

Canyon HUD helmet for road riding

https://media-centre.canyon.com/en-INT/266866-new-canyon-heads-up-display-helmet-could-be-a-safet...
89•zh3•2d ago•101 comments

Flock-Powered Police Chiefs Stalking Women Shows Why Warrants Are Needed

https://ipvm.com/reports/police-chiefs-track
482•jhonovich•11h ago•196 comments

1,700 free online courses from top universities

https://www.openculture.com/freeonlinecourses
158•momentmaker•5h ago•32 comments

Kyber (YC W23) Is Hiring a Head of Engineering

https://www.ycombinator.com/companies/kyber/jobs/FGmI8mx-head-of-engineering
1•asontha•10h ago

Show HN: Got sick of ads, so I made my own logic puzzle site

https://puzzlelair.com/
178•HaxleRose•18h ago•113 comments

Help I accidentally a wigglegram

https://lmao.center/blog/wiggle-accidents/
525•gregsadetsky•3d ago•121 comments

Chevron signs 20-year power agreement with Microsoft for West Texas data center

https://www.chevron.com/newsroom/2026/q2/chevron-signs-20-year-power-agreement-with-microsoft-for...
141•cdrnsf•17h ago•125 comments

Deno Desktop

https://docs.deno.com/runtime/desktop/
1055•GeneralMaximus•1d ago•381 comments

Is it time for a new Embedded Linux build system?

https://yoebuild.org/blog/time-for-a-new-build-system/
66•cbrake•4d ago•47 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?