frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Apple Silicon and macOS VMs: 11–16× Faster LLM Inference with Llama.cpp

https://github.com/trycua/cua/blob/main/blog/gpu-passthrough-macos-vms.md
221•frabonacci•4h ago•32 comments

OpenSSH 10.5/10.5p1

https://www.openssh.org/releasenotes.html#10.5
30•voxadam•1h ago•10 comments

Stealing Reasoning Traces from Proprietary LLM APIs

https://stolen-thoughts.com/
293•quantumgarbage•5h ago•105 comments

England set to be one of the first countries to eliminate hepatitis C

https://www.bbc.com/news/articles/c75gk620r22o
415•stevekemp•6h ago•291 comments

Show HN: iPhone app takes simultaneous images from 2 lenses, fuses into 1 photo

https://photosynthesis.camera
71•sajomes•2d ago•36 comments

Jolt: Clojure compiler implemented with Chez Scheme

https://jolt-lang.github.io
81•mark_l_watson•3d ago•24 comments

Manus will return to operating as an independent company

https://manus.im/blog/a-note-to-our-users
89•thm•4h ago•39 comments

Why Go Is an Ideal Language for AI-Assisted Software Engineering

https://developers.googleblog.com/why-go-is-an-ideal-language-for-ai-assisted-software-engineering/
117•0xedb•2h ago•124 comments

As AI eats the web, the internet’s collective memory is disappearing

https://thewalrus.ca/google-search-is-dying/
783•awnird•20h ago•796 comments

Nvidia's Risky Business

https://stratechery.com/2026/nvidias-risky-business/
214•jonbaer•8h ago•89 comments

Archive of Animal Photography Reveals 18,000 Species and Counting

https://www.smithsonianmag.com/science-nature/this-amazing-archive-of-animal-photography-reveals-...
18•pseudolus•2d ago•2 comments

Launch HN: Keet (YC S24) – An app to create video courses on anything

https://www.trykeet.com/
25•zackashen•4h ago•30 comments

H3-metal – Native MiniMax-H3 inference for Apple Silicon

https://github.com/antirez/h3.c
401•swyx•17h ago•93 comments

What I learned by putting GitHub Copilot behind a MitM proxy

https://www.lighthousenewsletter.com/p/i-put-github-copilot-behind-a-mitm
107•j0selit0•8h ago•12 comments

Show HN: Git-knife – edit commit messages, authors, and dates like a spreadsheet

https://github.com/TheRealYT/git-knife
75•YonathanTesfaye•3h ago•60 comments

Mojo 1.0 Is Here

https://www.modular.com/blog/modular-26-5-mojo-1-0-is-here
43•dayanruben•2h ago•12 comments

Show HN: Needle2: 14MB agentic LLM for phones, wearables, smart home and robots

https://cactuscompute.com/needle
488•HenryNdubuaku•1d ago•162 comments

We Used to Get Jobs

https://ironicsans.ghost.io/how-we-used-to-get-jobs/
17•speckx•50m ago•2 comments

Mark Zuckerberg attacks 'closed' AI rivals as Meta returns to open models

https://www.ft.com/content/4e3957f8-ea7c-4c46-a3de-cdce8e526878
616•root-parent•1d ago•574 comments

Halcyon Video – a 3D video store for your media server

https://github.com/halcyon-video/halcyon-video
58•Gander5739•4d ago•13 comments

Chicken Scheme 6.0

https://code.call-cc.org/releases/6.0.0/NEWS
281•eatonphil•18h ago•44 comments

LFM2.5 2.6B model competitive with 4x larger models

https://huggingface.co/LiquidAI/LFM2.5-2.6B
148•nateb2022•1w ago•38 comments

Show HN: Scroll through all 43252003274489856000 Rubik's Cube states

https://everycube.alen.is/
275•Alen123•19h ago•108 comments

France to ban unsolicited telemarketing calls

https://www.lemonde.fr/en/france/article/2026/08/06/france-to-ban-unsolicited-telemarketing-calls...
944•aziaziazi•10h ago•448 comments

How Claude marks AI-generated content

https://support.claude.com/en/articles/16266773-how-claude-marks-ai-generated-content
385•mfiguiere•21h ago•357 comments

Stowaway – Take the window seat on any plane or satellite overhead

https://stowaway.live/
412•thunderbong•4d ago•50 comments

Nvidia Nemotron 3.5 Lightning

https://huggingface.co/nvidia/NVIDIA-Nemotron-3.5-Lightning-30B-A3B-NVFP4
102•beklein•5h ago•23 comments

The “mechanical miracle” that ruined Mark Twain’s life

https://resobscura.substack.com/p/the-mechanical-miracle-that-ruined
213•benbreen•6d ago•110 comments

Faster floating point math with Rust's new API

https://pythonspeed.com/articles/faster-float-math-rust/
93•subset•5d ago•34 comments

Sonic Pi v5

https://www.patreon.com/samaaron/posts/sonic-pi-v5-166001392
420•samaaron•4d ago•103 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?