frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A SAT Attack on Tarski's High School Algebra Problem

https://arxiv.org/abs/2608.08421
22•matt_d•4d ago•10 comments

Stripe 2.9% vs. Adyen 0.6% vs. Braintree 2.59%: 2026 Fees

https://valueaddvc.com/blog/stripe-vs-adyen-vs-braintree-enterprise-payment-processing-compared-i...
8•ksec•1h ago•4 comments

Asus Bike Booster

https://www.asus.com/accessories/bike-booster/asus-oxiis/oxiis-intelligent-bike-booster/
494•wiradikusuma•4d ago•333 comments

Chestnut – eGPU dock with open-source firmware

https://hwbusters.com/news/comma-ai-egpu-dock-runs-open-source-firmware-249-bare-799-with-an-rx-9...
50•txrx0000•2d ago•11 comments

Superconducting monolayer cuprate with a single CuO2 plane

https://www.nature.com/articles/s41586-026-10857-1
31•sbulaev•3d ago•8 comments

Asynchronous I/O in DuckDB: Work, Thread, Work

https://duckdb.org/2026/07/31/asynchronous-io
203•pdet•6d ago•22 comments

Gooseworks (YC W23) Is Hiring a Founding Builder / Engineer

https://www.ycombinator.com/companies/gooseworks/jobs/UJ4vH2F-founding-engineer
1•shivsak•1h ago

Patterns and problems in emerging multi-agent systems

https://www.anthropic.com/research/multiagent-systems
141•maxutility•11h ago•94 comments

Super El Niño Keeps Growing as New Forecasts Reach Record Territory Ahead Winter

https://www.severe-weather.eu/long-range-2/super-el-nino-growth-accelerating-to-record-strength-f...
306•dgellow•18h ago•196 comments

Software Engineering fundamentals matter more

https://rhonabwy.com/2026/08/15/software-engineering-fundamentals-matter-more-than-ever/
205•ingve•14h ago•137 comments

Semaglutide linked to lower predicted dementia risk

https://alz-journals.onlinelibrary.wiley.com/doi/10.1002/dad2.70432
446•randycupertino•21h ago•330 comments

Cultivating a state of mind where new ideas are born (2023)

https://www.henrikkarlsson.xyz/p/good-ideas
201•felixbraun•16h ago•49 comments

Research papers using "kidney disappointment" instead of "kidney failure"

https://scholar.google.com/scholar?q=%22kidney+disappointment%22
23•Alifatisk•59m ago•13 comments

Guiding Ships with Moire Patterns

https://tinkerings.org/2018/03/28/guiding-ships-with-moire-patterns/
75•Eridanus2•11h ago•20 comments

Show HN: Remove AI voice from AI writings

https://unslopai.com
5•not_wowinter14•1h ago•2 comments

At-home test for infected ticks could improve Lyme Disease diagnosis

https://www.smithsonianmag.com/innovation/the-first-at-home-test-for-infected-ticks-could-improve...
268•gmays•23h ago•103 comments

What happens when an LLM never sees material beyond fifth grade?

https://littlelearner-ll.github.io/
179•porridgeraisin•5h ago•138 comments

Falstad Math and Physics Simulations

https://www.falstad.com/mathphysics.html
36•pykello•9h ago•9 comments

RISC-V: They Should Have Known Better

https://dmitry.gr/?r=06.%20Thoughts&proj=12.%20RV
339•dmitrygr•2d ago•384 comments

AI in drug discovery – what it is, where we stand and the path forward

https://www.science.org/content/blog-post/so-how-ai-drug-discovery-doing-really
153•AnodicElegy•18h ago•84 comments

Does anyone run Postgres without PgBouncer?

https://brandur.org/fragments/postgres-without-pgbouncer
14•abelanger•3d ago•0 comments

Show HN: Mic Drop, a real-time multiplayer karaoke game

https://www.micdrop.gg/
66•johnsillings•12h ago•29 comments

A fortuitous decade as an indie software developer

https://lapcatsoftware.com/articles/2026/8/3.html
108•frizlab•5d ago•14 comments

Numba in the Browser: Unlocking a New Scientific Python Stack in JupyterLite

https://notebook.link/blog/numba-in-the-browser/
57•xalfotis•4d ago•10 comments

How a Sony Veteran Is Overhauling the Company He Grew Up In

https://www.wsj.com/business/media/sony-ceo-hiroki-totoki-efc8923f
3•thm•9m ago•0 comments

A spectre is haunting Unicode

https://www.dampfkraft.com/ghost-characters.html
241•sensanaty•22h ago•94 comments

Tracking down a Zsh history data loss bug

https://michael.stapelberg.ch/posts/2026-08-09-zsh-history-truncation-bug/
93•ingve•15h ago•36 comments

Show HN: Grafana agent observability for Hermes Agent

https://github.com/alexander-akhmetov/grafana-agento11y-hermes
10•eventuallyacat•4h ago•0 comments

I built a browser-native SysEx librarian for 80s/90s synthesizers

https://bipluk.com/
28•halfradaition•3d ago•17 comments

Abdominal fat predicts heart disease risk better than BMI

https://www.acc.org/about-acc/press-releases/2026/08/11/14/59/abdominal-fat-predicts-heart-diseas...
285•theanonymousone•16h ago•229 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?