frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hister: A private search engine for the pages you visit and the files you keep

https://github.com/asciimoo/hister
127•bookofjoe•2h ago•37 comments

Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA

https://global.fujitsu/en-global/pr/news/2026/09/14-02
376•my123•2d ago•145 comments

CrowdSec Source Code Leak

https://www.crowdsec.net/blog/crowdsec-statement-source-code-exposure
64•eccgecko•3h ago•23 comments

Rate limits on GitLab.com are changing

https://about.gitlab.com/blog/rate-limit-change-2026/
92•darkwater•3h ago•81 comments

T. Rex Had a Body Temperature of 97 Degrees

https://www.nytimes.com/2026/09/16/science/trex-dinosaur-temperature-warm-blooded.html
16•marojejian•1h ago•15 comments

Towards Self-Driving Codebases

https://blog.detail.dev/posts/towards-self-driving-codebases/
27•wilhelmklopp•1h ago•9 comments

Infinite-Parameter LLMs: Generating and Adapting Weights from Live Data

https://arxiv.org/abs/2609.18842
23•Betelbuddy•1h ago•6 comments

Why I didn’t sign the Fields medallists’ letter

https://gowers.wordpress.com/2026/09/17/why-i-didnt-sign-the-fields-medallists-letter/
106•simianwords•9h ago•153 comments

Zettascale (YC S24) Is Hiring ASIC/FPGA Engineers to Build Chips for ASI

https://zscc.ai/careers?job_id=109821
1•el_al•1h ago

How GLM built its own inference infrastructure

https://z.ai/blog/glm-built-its-inference-infrastructure
284•whiteros_e•10h ago•225 comments

Show HN: Aclif – Agent CLI framework: one grammar, canonical names across SaaS

https://www.aclif.ai/
18•chris_marino•1h ago•13 comments

One year of sponsored Servo development

https://servo.org/blog/2026/09/15/one-year-of-sponsorship/
305•AshleysBrain•10h ago•126 comments

Launch HN: Skillsync (YC W26) – AI chat sessions made portable across agents

17•cat-whisperer•2h ago•16 comments

Show HN: Share your AI Setup, Learn from others

https://mysetup.ai/
104•steveybrown•5h ago•65 comments

Grand MS-DOS Gaming General MIDI Showdown

https://blog.johnnovak.net/2023/03/05/grand-ms-dos-gaming-general-midi-showdown/
50•ibobev•2d ago•3 comments

Vinix – A modern operating system written in V

https://vinix-os.org/
64•hggh•3h ago•38 comments

The American Religion of Self-Storage Facilities

https://www.newyorker.com/magazine/2026/09/21/the-american-religion-of-self-storage-facilities
96•pseudolus•5h ago•161 comments

Ask HN: How to recover Google auth after phone stolen?

59•keymasta•2h ago•52 comments

CCC invites all model citizens to 40C3

https://events.ccc.de/en/2026/09/12/40c3-model-citizens/
260•antonly•10h ago•113 comments

Running Ubuntu on the Lenovo IdeaPad Duet

https://vhaudiquet.fr/blog/duet-ubuntu/
14•vhaudiquet•2d ago•1 comments

The Return of Sail Power: Cargo Ships Are Turning Back to the Wind

https://gcaptain.com/the-return-of-sail-power-cargo-ships-are-turning-back-to-the-wind/
135•gumby•18h ago•98 comments

Whoisinspace.com/

https://whoisinspace.com
99•Egg-Man•2h ago•49 comments

LLM Classification Is Feature Engineering

https://minimallysufficient.com/posts/llm-classification-is-feature-extraction/
57•minsufficient•3h ago•11 comments

Show HN: Craigslist for agent skills, curated by a human

https://skillbay.sh/
5•skeptrune•1h ago•1 comments

My temporary PHP fix from 2014 has nearly 20M installs. Today I'm deprecating it

https://jakeasmith.com/blog/http-build-url/
291•jakeasmith•1d ago•85 comments

Economic policy for AGI

https://institute.deepmind.com/essays/economic-policy-for-agi/
23•alphabetatango•1h ago•12 comments

Artificial intelligence now beats some of the best human forecasters

https://www.economist.com/science-and-technology/2026/09/16/artificial-intelligence-now-beats-som...
86•ddp26•3h ago•73 comments

Mastering Layout Engines in Graphviz: Dot vs. Neato vs. Twopi vs. Circo

https://guides.visual-paradigm.com/mastering-graphviz-layout-engines-dot-neato-twopi-circo/
26•vismit2000•2d ago•6 comments

Stallman: Thousands Dead, Millions Deprived of Liberties (2001)

https://news.slashdot.org/story/01/09/17/1758231/stallman-thousands-dead-millions-deprived-of-lib...
48•B1FF_PSUVM•1h ago•9 comments

Show HN: I built a new version of my fun spatial 3D online meeting app

https://flat.social
85•pawelwentpawel•5h ago•50 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?