frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Anthropic's open-source framework for AI-powered vulnerability discovery

https://github.com/anthropics/defending-code-reference-harness
189•binyu•3h ago•69 comments

IPv6 zones in URLs are a mistake

https://xeiaso.net/notes/2026/ipv6-zones-go-url/
43•xena•1h ago•25 comments

VoidZero Is Joining Cloudflare

https://blog.cloudflare.com/voidzero-joins-cloudflare/
540•coloneltcb•10h ago•243 comments

Do Transformers Need Three Projections? Systematic Study of QKV Variants

https://arxiv.org/abs/2606.04032
5•Anon84•6m ago•0 comments

When AI Builds Itself: Our progress toward recursive self-improvement

https://www.anthropic.com/institute/recursive-self-improvement
253•meetpateltech•6h ago•342 comments

Branchless Quicksort faster than std:sort and pdqsort with C and C++ API

https://tiki.li/blog/blqsort
41•birdculture•2d ago•6 comments

Ian's Secure Shoelace Knot

https://www.fieggen.com/shoelace/secureknot.htm
468•mooreds•12h ago•180 comments

I'm skeptical about efforts to revolutionize schooling

https://www.scotthyoung.com/blog/2026/05/27/revolutionize-schooling/
18•andrewstuart•2d ago•12 comments

Castor: CERN Advanced STORage Manager

https://castor.web.cern.ch/content/home.html
39•naves•3h ago•15 comments

KVarN: Native vLLM backend for KV-cache quantization by Huawei

https://github.com/huawei-csl/KVarN
108•theanonymousone•8h ago•11 comments

Retro-Tech Parenting

https://havenweb.org/2026/05/28/retro-tech.html
220•mawise•7h ago•153 comments

Queen bees emerge from special wax chambers

https://cen.acs.org/materials/biobased-materials/queen-bees-special-wax/104/web/2026/06
10•gmays•1h ago•0 comments

My two light switches got stuck in an infinite echo loop

https://docodethatmatters.com/the-infinite-echo-state-mirror-bug/
9•skittleson•3d ago•0 comments

Show HN: FFmpeg WebCLI – Full FFmpeg in Browser, Offline PWA, No Uploads(WASM)

https://github.com/tejaswigowda/ffmpeg-webCLI
55•tejaswigowda•2h ago•13 comments

JLink JTAG Access on the Pinecil

https://danielmangum.com/posts/jlink-jtag-pinecil/
29•hasheddan•2d ago•5 comments

Samurai City

https://worksinprogress.co/issue/samurai-city/
75•zdw•2d ago•9 comments

Making Debian or Fedora persistent live images

https://sigwait.org/~alex/blog/2026/05/28/smdBC8.html
49•henry_flower•3d ago•6 comments

AI, Ashby Engineering, and the future

https://www.ashbyhq.com/blog/engineering/ai-ashby-engineering-and-the-future
42•fredley•8h ago•23 comments

Zettascale (YC S24) Is Hiring Founding FPGA Engineers

https://www.ycombinator.com/companies/zettascale/jobs/O9S1vqO-founding-engineer-fpga-rtl-asic-arc...
1•el_al•6h ago

Iran Shock Jolts Asia and Europe to Speed Up Energy Transition

https://www.bloomberg.com/graphics/2026-energy-transition-iran-war/
92•toomuchtodo•2h ago•70 comments

Show HN: Hitoku Draft – Context aware local assistant

https://hitoku.me/draft/
5•lostathome•5h ago•0 comments

Sum-product, unit distances, and number fields

https://www.erdosproblems.com/forum/thread/blog:6
49•robinhouston•3d ago•12 comments

Mornings and nights no longer exist at 47C: A day in the hottest place in India

https://www.bbc.co.uk/news/articles/crmp0krp98ro
80•mellosouls•2d ago•45 comments

Meta's ships facial recognition on smart glasses

https://www.buchodi.com/meta-glasses-facial-recognition/
178•buchodi•3h ago•170 comments

Ask HN: Gin rummy strategies

10•bix6•9h ago•1 comments

Show HN: Uruky (EU-based Kagi alternative) now has Image Search and URL Rewrites

https://uruky.com/?il=en
200•BrunoBernardino•14h ago•189 comments

Show HN: Formally verified polygon intersection – Opus 4.8 oneshots, prev failed

https://github.com/schildep/verified-polygon-intersection
30•permute•1h ago•3 comments

Gaussian Point Splatting

https://momentsingraphics.de/Siggraph2026.html
171•ibobev•12h ago•65 comments

U.S. Army Corps of Engineers Bay Model

https://en.wikipedia.org/wiki/U.S._Army_Corps_of_Engineers_Bay_Model
201•tosh•2d ago•52 comments

Show HN: Mercek – A Desktop IDE for AWS ECS

https://www.mercek.dev/
7•utibeumanah•2h ago•0 comments
Open in hackernews

Branchless Quicksort faster than std:sort and pdqsort with C and C++ API

https://tiki.li/blog/blqsort
40•birdculture•2d ago

Comments

davidkwast•1h ago
It is so simple that I had to look very slowly to understand. Nicely done.
NuclearPM•58m ago
If it wasn’t simple you could look fast and understand?
mgaunard•1h ago
Aren't there several bitonic sort network implementations that are vectorized, Intel's in particular?

Why not compare against that?

jeffbee•49m ago
Great question. It would also be fair to ask how this behaves with non-random inputs. The benchmarks in the repo only use random values.
mswphd•32m ago
Funny: you can cf "sorting network", and see they use them within their own design even.
orlp•26m ago
Since pdqsort (an older project of mine) was mentioned, I felt it wouldn't be entirely inappropriate to mention that I've since then collaborated with Lukas Bergdoll to provide two high-quality sort implementations for the Rust standard library, ipnsort (unstable) and driftsort (stable).

So if you use Rust, you get these by simply calling [T]::sort(_unstable). Great performance out of the box :)

On my machine (Apple M2), using the benchmarks from the repository on Apple clang 17 and Rust 1.98 nightly:

    Sorting 50 million doubles:
    ipnsort             0.79s
    blqs                0.90s
    driftsort           1.13s   (stable)
    std::sort           1.22s
    std::stable_sort    4.64s   (stable)

    Sorting 50 million (i32, i32) structs:
    ipnsort             0.82s
    blqs                0.89s
    driftsort           1.07s   (stable)
    std::sort           3.09s
    std::stable_sort    3.15s   (stable)

And now for a cool party trick, let's repeat the 50 million doubles experiment again, but have the first 90% already sorted, last 10% random:

    driftsort           0.29s   (stable)
    ipnsort             0.81s
    std::sort           1.15s
    std::stable_sort    1.63s   (stable)
    blqs                1.89s