frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Apple's App Tracking Transparency treated its own apps better than rivals

https://www.bundeskartellamt.de/SharedDocs/Meldung/EN/Pressemitteilungen/2026/08_17_2026_Apple_AT...
113•nyku•1h ago•38 comments

A Preview of DuckDB v2.0

https://duckdb.org/2026/08/17/duckdb-20-highlights
128•ibotty•1h ago•11 comments

AI-Generated GitHub Copilot "Autofix" Allowed Compromise of Snowflake's Jira

https://www.wiz.io/blog/red-agent-snowflake-copilot-cicd-bug
52•galnagli•1h ago•20 comments

GPT 5.6 Sol is the best "vision" model OpenAI ever released

https://blog.roboflow.com/openai-gpt-5-6/
148•plurby•3h ago•77 comments

How to disable or avoid intrusive AI

https://www.librarian.net/notoai/
38•ColinWright•1h ago•12 comments

Incident with Github.com

https://www.githubstatus.com/incidents/zkxwbgr0cnmx
551•kevcampb•1h ago•427 comments

How to put 170 atoms in an atom

https://signoregalilei.com/2026/08/02/how-to-put-170-atoms-in-an-atom/
28•surprisetalk•1h ago•0 comments

GitHub down again? no PR access

200•yodon•1h ago•64 comments

Show HN: Sokoban AI Solver

https://mkornreich.me/projects/sokoban/
32•enjoyyourlife•2h ago•21 comments

Qwen3.8-27B at 256K on a 24GB RTX PRO 4000 SFF (432 GB/s): 50 tok/s with MTP

https://piszczek.pl/blog/qwen38-27b-256k-50-tps-24gb-gpu
13•pich•1h ago•3 comments

Qwen 3.8 27B is excellent, but it defaults to overthinking things

https://simonwillison.net/2026/Aug/16/qwen-38-27b/
688•bilsbie•15h ago•325 comments

Mexico Crackdown on Coastal Development Underway

https://yucatanmagazine.com/mexico-crackdown-on-coastal-development/
63•untiledsource•3h ago•11 comments

How to ship a database every day

https://turbopuffer.com/blog/control-plane
13•tarunnnp•1h ago•0 comments

How Go detects struct copies with sync.noCopy

https://func25.dev/posts/go-sync-nocopy/
37•func25•4d ago•37 comments

How I developed an Am29000 C compiler and web browser

https://nanochess.org/am29000_c_compiler_web_browser.html
14•nanochess•18h ago•0 comments

Show HN: Learn Flags Quiz

https://flagquizzes.com/
5•artiomyak•1h ago•1 comments

Anthropic's 'watermark' text adulteration in Claude is a perversion of writing

https://daringfireball.net/2026/08/anthropics_watermark_text_adulteration_in_claude_is_a_perversi...
566•ropbear•17h ago•497 comments

Show HN: Eve Software Factory

https://github.com/vercel-labs/eve-software-factory-template/tree/main
5•flashbrew•1h ago•2 comments

On A.I. regulation and messaging

https://twitter.com/DarioAmodei/status/2088758816376807762
180•jacquesm•13h ago•364 comments

Ask HN: Alternatives to GitHub

131•dhruv3006•1h ago•88 comments

Show HN: Desktopcolors.com – A museum for solid background colors of classic OS

https://desktopcolors.com
85•vlowrian•7h ago•35 comments

Ask HN: GitHub employees what's going on? Why?

17•sharts•16m ago•10 comments

Cialis is an erectile dysfunction drug. Could it also help you live longer?

https://www.npr.org/2026/08/17/nx-s1-5928263/cialis-viagra-tadalafil-longevity-heart-health
50•brandonb•2h ago•27 comments

A third world engineer responds to “RISC-V: They should have known better”

https://rvembedded.com/blog_post/12/
577•Narishma•22h ago•293 comments

Linear algebra done right

https://linear.axler.net/
170•the-mitr•10h ago•62 comments

Speeding Up the Plush Garbage Collector

https://pointersgonewild.com/2026-08-17-speeding-up-the-plush-garbage-collector/
9•maxime_cb•2h ago•0 comments

Claude: System Prompts

https://platform.claude.com/docs/en/release-notes/system-prompts
723•tosh•1d ago•275 comments

Reticulum – Decentralized Mesh Network

https://reticulum.network/
179•sudo_cowsay•15h ago•63 comments

The only known trebuchet casualty in history

https://arstechnica.com/science/2026/08/meet-the-only-known-trebuchet-casualty-in-history/
15•Tomte•1h ago•0 comments

My Ten Years in No Man's Sky

https://nmsspot.com/2026/08/09/my-ten-years-in-no-mans-sky/
59•blakespot•4d ago•53 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?