frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Internet Is Kind of a Predatory Cesspit Now

https://www.stephendiehl.com/posts/internet_predatory_cesspit/
202•ibobev•1h ago•108 comments

Warp builds self-improving agents on Claude

https://claude.com/blog/how-warp-builds-self-improving-agents-on-claude
25•shenli3514•48m ago•15 comments

Calibrate Before You Accelerate: Bias Toward Action in a New Role

https://tucker.wales/writing/bias-towards-action/
37•tuckerwales•2h ago•8 comments

SQLite as a Document Database (2020)

https://dgl.cx/2020/06/sqlite-json-support
121•lioeters•4d ago•29 comments

Tether: iMessage, SMS, etc. on Linux

https://zackbartel.com/blog/2026/08/tether/
175•zackb•5d ago•88 comments

DHS is using obscure law to snoop on journalists, non-profits, unions

https://www.theguardian.com/us-news/2026/aug/29/trump-dhs-1509-summons-records-journalists-nonpro...
78•firefax•1h ago•12 comments

The growing divide between AI hype and software engineering reality

https://optimizedbyotto.com/post/why-open-source-projects-ban-ai/
46•jruohonen•3h ago•38 comments

Good Culture Is the Biggest Productivity Hack, Not AI

https://newsletter.eng-leadership.com/p/good-culture-is-the-biggest-productivity
92•gpi•2h ago•17 comments

Indirect Calling of Nested Functions on GCC Without Executable Stack

https://uecker.codeberg.page/2026-08-29.html
53•uecker•5h ago•29 comments

Sleepwalker: Passive Backdoor with Its Own Command Language

https://r136a1.dev/2026/08/24/sleepwalker-a-passive-backdoor-with-its-own-command-language/
37•defrost•4d ago•3 comments

vLLM v0.28.0

https://github.com/vllm-project/vllm/releases/tag/v0.28.0
5•mrrrcs•1h ago•0 comments

Show HN: Typebase – A single-folder back end you write in TypeScript

https://typebase.io
80•andrewww-dev•3d ago•17 comments

Glacier Mice

https://en.wikipedia.org/wiki/Glacier_mice
202•ostacke•5d ago•42 comments

Quantifying Colour

https://ekunazanu.foo/lab/quantifying-colour/
43•vismit2000•4h ago•3 comments

Samsung's Processing-in-Memory (PIM)

https://chipsandcheese.com/p/hot-chips-2026-samsungs-processing
219•ingve•13h ago•75 comments

Kmart Digicam Mod Part 2

https://mason.bearblog.dev/kmart-digicam-mod-part-2/
5•masoniamme•5d ago•0 comments

EVE Online moves to Python 3

https://www.eveonline.com/news/view/the-move-to-python-3-begins
232•TylerJaacks•4d ago•116 comments

A better SQL in 11 lines of code

https://prela-lang.org/tutorial/
18•remywang•2h ago•16 comments

Creating the Aetheryte Radio

https://haz.ee/posts/aetheryte-radio.html
52•wonger_•1d ago•12 comments

GrapheneOS project: pixel 11 no longer supports hardware memory tagging (MTE)

https://bsky.app/profile/grapheneos.org/post/3mua32q4ds22e
161•400thecat•4h ago•57 comments

Nancy Grace Roman Space Telescope

https://science.nasa.gov/mission/roman-space-telescope/
80•JumpCrisscross•4h ago•27 comments

Trees for a Changing Climate and Resilient Urban Forest (2022)

https://www.coolboulder.org/news/trees-for-a-changing-climate-resilient-urban-forest
8•mooreds•3h ago•0 comments

Htmx 4.0

https://four.htmx.org/announcements/2026-08-28-htmx-4.0.0-is-released
785•rmsaksida•1d ago•196 comments

Boot a Virtual iPhone via Apple's Virtualization.framework

https://github.com/Lakr233/vphone-cli
360•hentrep•20h ago•95 comments

Show HN: Galaxium, an experimental WebGPU space explorer

https://galaxium.app
83•guillaumec•5d ago•28 comments

Hunting Down a Go Runtime Bug on 32-Bit Embedded Systems

https://sigma-star.at/blog/2026/08/go-runtime-netpoll-bug/
96•birdculture•3d ago•12 comments

StemDeck, a free, open-source and local AI stem separator

https://github.com/stemdeckapp/stemdeck
186•thclpr•18h ago•57 comments

Time complexity of operations on Python's built-in types

https://docs.python.org/3.16/library/time-complexity.html
81•theanonymousone•4d ago•32 comments

I accidentally turned LLM memory into program analysis

https://pwning.systems/posts/llm-memory-program-analysis/
259•matt_d•20h ago•71 comments

Europe's last regular standard-gauge steam passenger service

https://parowozowniawolsztyn.pl/?page_id=2141
103•GungulSurm•2d ago•24 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?