frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Albania Is Not for Sale: Kushner's $4B Resort Triggers'Flamingo Revolution'

https://www.yacnews.com/albania-is-not-for-sale-kushners-4-billion-resort-triggers-flamingo-revol...
228•ortr•1h ago•53 comments

Making Graphics Like it's 1993

https://staniks.github.io/articles/catlantean-3d-blog-1/
321•sklopec•4h ago•47 comments

GentleOS – Classic operating system with a lovely retro GUI

https://github.com/luke8086/gentleos32
280•tekkertje•5h ago•59 comments

Microsoft's open source tools were hacked to steal passwords of AI developers

https://techcrunch.com/2026/06/08/microsofts-open-source-tools-were-hacked-to-steal-passwords-of-...
352•raffael_de•7h ago•145 comments

Cleaning up after AI rockstar developers

https://www.codingwithjesse.com/blog/rockstar-developers/
213•BrunoBernardino•6h ago•127 comments

WWDC 2026: Apple is Folding

https://cupertinolens.com/2026/06/09/wwdc-2026-apple-is-folding/
80•brandonb•1h ago•66 comments

OpenCV 5 Is Here: The Biggest Leap in Years for Computer Vision

https://opencv.org/opencv-5/
439•ternaus•3d ago•71 comments

Show HN: Gravity – interactive solar-system simulator, from Newton to Einstein

https://qunabu.github.io/Gravity/
49•qunabu•3h ago•14 comments

Forever Young: how one molecule can lock plants in a youthful state (2025)

https://omnia.sas.upenn.edu/story/biologist-scott-poethig-plants-never-age
89•bryanrasmussen•6h ago•46 comments

An introduction to functional analysis for science and engineering

https://arxiv.org/abs/1904.02539
69•Anon84•1d ago•8 comments

Apple reveals new AI architecture built around Google Gemini models

https://www.macrumors.com/2026/06/08/apple-reveals-new-ai-architecture/
670•unclefuzzy•19h ago•521 comments

Emerge Career (YC S22) Is Hiring a Founding Growth Marketer

https://www.ycombinator.com/companies/emerge-career/jobs/v0S1AEG-founding-growth-marketer
1•gabesaruhashi•3h ago

Adopting the Parallel DWARF linker in dsymutil

https://jonasdevlieghere.com/post/dsymutil-parallel-linker/
13•JDevlieghere•2d ago•3 comments

Thi.ng – open-source building blocks for computational design and art

https://thi.ng
118•nmstoker•1d ago•18 comments

xAI is looking more like a datacentre REIT than a frontier lab

https://martinalderson.com/posts/xais-new-rental-business/
632•martinald•23h ago•492 comments

Show HN: Performative-UI – A react component library of design tropes

https://vorpus.github.io/performativeUI/
1076•lizhang•1d ago•195 comments

Job: Head of Stonehenge

https://www.english-heritage.org.uk/about/our-people/careers-with-us/job-search/default-job-page/...
191•mooreds•11h ago•177 comments

The beauty and simplicity of the good old C-style void* in C++

https://giodicanio.com/2026/06/05/how-to-declare-a-c-plus-plus-function-that-takes-a-blob-of-memory/
47•movd128•2d ago•86 comments

Corrupting a ZFS File on Purpose

https://oshogbo.com/blog/90/
48•zdw•2d ago•8 comments

Siri AI

https://www.apple.com/apple-intelligence/
630•0xedb•20h ago•634 comments

Eagle Computer: The rise and fall of an early PC clone

https://dfarq.homeip.net/eagle-computer-the-rise-and-fall-of-an-early-pc-clone/
35•giuliomagnifico•5h ago•6 comments

The iPhone's Last Stand

https://stratechery.com/2026/the-iphones-last-stand/
81•swolpers•5h ago•130 comments

EU-banned pesticides found in rice, tea and spices

https://www.foodwatch.org/en/eu-banned-pesticides-found-in-rice-tea-and-spices
477•john-titor•23h ago•260 comments

Porting the ThinkPad X61 to Coreboot

https://blog.aheymans.xyz/post/thinkpad_x61/
130•walterbell•11h ago•46 comments

The better the autopilot the worse the pilot

https://julienreszka.com/blog/the-better-the-autopilot-the-worse-the-pilot/
58•julienreszka•1h ago•55 comments

MiMo-v2.5-Pro-UltraSpeed: 1T model with 1000 tokens per second

https://mimo.xiaomi.com/blog/mimo-tilert-1000tps
601•gainsurier•23h ago•448 comments

H2JVM – A Haskell Library for Writing JVM Bytecode

https://discourse.haskell.org/t/h2jvm-a-haskell-library-for-writing-jvm-bytecode/14182
35•rowbin•2d ago•9 comments

Old'aVista – The most powerful guide to the old Internet

https://oldavista.com/
135•abnercoimbre•23h ago•31 comments

Apple Core AI Framework

https://developer.apple.com/documentation/coreai/
335•hmokiguess•20h ago•96 comments

Looking Forward to Postgres 19: Query Hints

https://www.pgedge.com/blog/looking-forward-to-postgres-19-query-hints
209•jjgreen•3d ago•36 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?