frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Amazon vs. Perplexity – U.S. Court of Appeals for the Ninth Circuit

https://law.justia.com/cases/federal/appellate-courts/ca9/26-1444/26-1444-2026-08-04.html
98•neom•55m ago•66 comments

Distributed Systems Classics (2017)

https://nvartolomei.com/dist-sys-classics/
195•grep_it•5h ago•38 comments

A Beginning for Mathematics

https://www.daniellitt.com/blog/2026/9/13/a-beginning-for-mathematics/
139•robinhouston•6h ago•75 comments

How my e-reader lost its stripes

https://www.serpentine.com/posts/2026/x3-stripes/
109•simonmic•5h ago•11 comments

OpenAI bots knew about the RubyGems caching vulnerability

https://tenderlovemaking.com/2026/09/11/what-a-time-to-be-alive/
312•gregnavis•9h ago•277 comments

Principles for Fast Tokio Applications

https://dial9-rs.github.io/blog/principles-for-fast-tokio-applications/
140•carllerche•6h ago•26 comments

Why don't machine learning research agents overfit?

https://www.amazon.science/blog/why-dont-machine-learning-research-agents-overfit
89•Betelbuddy•5h ago•51 comments

XCancel service is suspended until further notice

https://xcancel.com/#
357•gaganyaan•12h ago•650 comments

Cloudflare AKE cuts origin HelloRetryRequests from 52% to 3.7%

https://blog.cloudflare.com/automatic-key-exchange-for-origins/
63•iamsyr•4h ago•18 comments

Pion, an agent designed to run any company autonomously

https://andonlabs.com/blog/why-we-built-pion
213•lukaspetersson•4h ago•229 comments

Dario, Please

https://pop.rdi.sh/dario-please/
111•0x5FC3•7h ago•52 comments

Show HN: Neobrutalism.dev – Just added Base UI support and added new color theme

https://www.neobrutalism.dev/
113•samke-•5h ago•51 comments

Optimizing a Spin-Lock

https://david.alvarezrosa.com/posts/optimizing-a-spin-lock/
16•signa11•2d ago•7 comments

Show HN: Nari Qwen3-TTS and Qwen3-ASR – High accuracy, low latency and cost

https://narilabs.com/blog/nari-labs-leads-coval-voice-ai-benchmarks/
47•toebee•5h ago•11 comments

Notes on gotchas while migrating 35kb preprompts from Opus to self-hosted Ollama

https://patrickmccanna.net/notes-on-migrating-large-prompts-away-from-anthropic-openai-to-self-ho...
104•0o_MrPatrick_o0•8h ago•49 comments

Cua (YC P25) Is Hiring a Founding Technical GTM Lead

https://www.ycombinator.com/companies/cua/jobs/1IWEKVH-founding-technical-gtm-lead
1•frabonacci•5h ago

Microsoft patches Windows and Excel – breaks audio, remote access, and paste

https://www.theregister.com/os-platforms/2026/09/14/microsoft-patches-windows-and-excel-breaks-au...
161•Alephinitesimal•5h ago•80 comments

An atlas of periodic solutions to the three-body problem

https://www.threebodyorbits.com/
316•danielmorozoff•2d ago•70 comments

Show HN: Apollo Lunar Module landing simulation

https://gosandeep.com/eagles-descent/
32•gosandeep•5d ago•2 comments

Ask HN: What are you working on? (September 2026)

279•david927•1d ago•869 comments

Oracle’s 6am layoff emails hit staff amid new wave of cuts

https://www.techtimes.co.uk/oracle-new-layoffs-restructuring-costs-2-8-billion-1808676
117•akis33•2h ago•90 comments

Truncated SVD (2023)

https://brashandplucky.com/2023/09/09/truncated-svd.html
39•ibobev•6h ago•7 comments

Adversarial Fashion Makes a Statement on AI Panopticon

https://spectrum.ieee.org/adversarial-fashion
85•rbanffy•7h ago•41 comments

Backprop Alternative: Augmented Lagrangian Predictive Coding

https://pub.sakana.ai/pc-alm/
14•guld•3h ago•2 comments

Steam Frame starts at $1059

https://store.steampowered.com/hardware/steamframe
408•bsimpson•4h ago•285 comments

EuroBirdPortal – Live bird movements across Europe

https://www.eurobirdportal.org/ebp/en/
209•NKosmatos•13h ago•62 comments

Show HN: Pelican-bicycle alternatives

https://gally.net/temp/20260914pelican-alternatives/index.html
98•tkgally•8h ago•39 comments

iOS 27, iPadOS 27, and macOS 27

https://www.apple.com/newsroom/2026/09/major-updates-for-apples-software-platforms-are-now-availa...
275•throw0101d•4h ago•281 comments

Trying to Make a Loop Auto-Vectorize

https://jsgroth.dev/blog/posts/trying-to-make-a-loop-auto-vectorize/
57•zdw•4d ago•15 comments

GPT-5.6 Luna vs. GPT-6 Astra: Is a $1.20 Model Good Enough for Code Review?

https://entelligence.ai/blogs/gpt-5.6-luna-vs-gpt-6-astra-is-a-1.20-model-good-enough-for-code-re...
63•theanonymousone•2h ago•78 comments
Open in hackernews

Optimizing a Spin-Lock

https://david.alvarezrosa.com/posts/optimizing-a-spin-lock/
16•signa11•2d ago

Comments

dalvrosa•2d ago
Thanks for sharing! Happy to get feedback :)

Note that I don't recommend spinlock for most cases, only when there is a 1:1 mapping between threads and phsycal CPU cores, and only after measuring

tombert•48m ago
I genuinely had not heard of anyone actually using a spinlock in production code until I started using LMAX Disruptor a few years ago.

I was always told that they were an anti-pattern, and I think that generally that is a pretty good rule of thumb, but I guess like most stuff in CS: there are always exceptions to "good rules of thumb".

I still haven't actually explicitly written a spinlock for anything in production, but Disruptor has shown me that there are cases for it.

sedatk•34m ago
It’s one of the secret ingredients to avoid a Big Kernel Lock™.
BoingBoomTschak•32m ago
I think Linus says it well: https://www.realworldtech.com/forum/?threadid=189711&curpost...
ignoramous•14m ago
> had not heard of anyone actually using a spinlock in production code

Go stdlib sync.Mutex uses spins: https://victoriametrics.com/blog/go-sync-mutex / https://archive.vn/BIb7F

mathisfun123•12m ago
not all architectures have atomic cas
bob1029•7m ago
To be really pedantic, it's a spin wait, not a spin lock in disruptor. You are waiting for a sequence, not mutually excluding some resource. Many threads can watch the same volatile at the same time without blocking each other.