frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Qualcomm QRB2210 Datasheet [pdf]

https://docs.qualcomm.com/bundle/publicresource/80-30843-1.pdf
1•my123•38s ago•0 comments

X settles ex-Twitter executives' $128M severance pay lawsuit

https://www.reuters.com/legal/litigation/musks-x-settles-ex-twitter-executives-128-million-severa...
1•m-hodges•1m ago•0 comments

A better SQL validator and comparison with existing SQL validators

https://app.sqlai.ai/posts/better-sql-validator/
1•l5870uoo9y•4m ago•0 comments

Irradiance Encoding, Ambient Cube

https://www.4rknova.com//blog/2020/01/29/ambient-cubes
1•ibobev•4m ago•0 comments

Google's New AI Vulnerability Reward Program

https://bughunters.google.com/blog/6116887259840512/announcing-google-s-new-ai-vulnerability-rewa...
1•ChrisArchitect•5m ago•0 comments

858TB of government data may be lost for good after South Korea data center fire

https://www.datacenterdynamics.com/en/news/858tb-of-government-data-may-be-lost-for-good-after-so...
1•TMWNN•6m ago•1 comments

Cold war power play: how the Stasi got into computer games

https://www.theguardian.com/games/2025/oct/07/stasi-coldwargames-its-all-a-game-alliiertenmuseum-...
1•n1b0m•7m ago•0 comments

A small V library to draw pixel graphics on the terminal using Braille letters

https://github.com/Nirei/vrawille
1•hggh•8m ago•0 comments

Show HN: I built GEOfast to make your websites readable by AI

https://geofast.me
1•glossardi•10m ago•0 comments

Creating a search application in under 2 minutes with Claude

https://www.youtube.com/watch?v=Vs_98sUrFqA
2•alpha_trion•12m ago•1 comments

CapstanMallNews

https://capstanmallnews.blogspot.com/search/label/Gadgets%20%26%20Tech?max-results=7
1•jahangirmughal•12m ago•0 comments

Tiny True Stories: How Micro Memoirs Make Us Better Writers

https://brevity.wordpress.com/2025/10/07/tiny-true-stories/
1•mooreds•13m ago•0 comments

MonkeysPaw – a prompt-driven web framework in Ruby

https://worksonmymachine.ai/p/introducing-monkeyspaw-a-prompt-driven
1•mooreds•14m ago•0 comments

The Unofficial Jobs Numbers Are in and It's Rough Out There

https://www.wsj.com/economy/jobs/the-unofficial-jobs-numbers-are-in-and-its-rough-out-there-3518e239
3•zerosizedweasle•17m ago•0 comments

Japanese athletes inspired by raucous home fans at World Athletics Championships

https://www.japantimes.co.jp/sports/2025/09/16/more-sports/japanese-athletes-home-track-advantage/
1•PaulHoule•17m ago•0 comments

Welcome to Heroku Vibes

https://www.heroku.com/blog/turn-ideas-into-apps-heroku-vibes-pilot/
2•runesoerensen•18m ago•0 comments

Online Identity Verification with the Digital Credentials API

https://webkit.org/blog/17431/online-identity-verification-with-the-digital-credentials-api/
2•mooreds•18m ago•0 comments

AI-Driven Demand for Gas Turbines Risks a New Energy Crunch

https://www.bloomberg.com/features/2025-bottlenecks-gas-turbines/
1•toomuchtodo•19m ago•1 comments

A Computing Legend Speaks – A New Oral History with Ken Thompson

https://computerhistory.org/blog/a-computing-legend-speaks/
1•verdverm•19m ago•1 comments

Video projectors used to be ridiculously cool [video]

https://www.youtube.com/watch?v=ms8uu0zeU88
1•CaliforniaKarl•19m ago•0 comments

A Molecular Motor Minimizes Energy Waste

https://physics.aps.org/articles/v18/167
2•lc0_stein•21m ago•0 comments

"22.8% of pull requests to Express.js are README updates adding somebody's name" [video]

https://www.youtube.com/watch?v=YFkeOBqfQBw
2•nomilk•23m ago•0 comments

Data streaming software maker Confluent explores sale

https://www.reuters.com/business/data-streaming-software-maker-confluent-explores-sale-sources-sa...
1•gangtao•23m ago•0 comments

Notify The web, script and feed monitor

https://notify.pingie.com
1•simplytoast•23m ago•1 comments

Western Alliance Faces First Brands Risk via Jefferies Fund

https://www.bloomberg.com/news/articles/2025-10-08/western-alliance-faces-first-brands-risk-throu...
1•zerosizedweasle•23m ago•0 comments

Ortega Hypothesis

https://en.wikipedia.org/wiki/Ortega_hypothesis
2•Caiero•24m ago•0 comments

Ask HN: ArsTechnica qbits mechanics[0] for a scaled up version of roons[1]?

1•sargstuff•25m ago•0 comments

Canada Sport Canada's Obsession with Figure Skating and Ice Sports

https://craftercontent.blogspot.com/2025/10/%20Figure%20Skating%20.html
1•arianmarry•26m ago•0 comments

Nvidia CEO: Oracle will be 'wonderfully profitable' despite reported thin margin

https://www.cnbc.com/2025/10/07/nvidias-jensen-huang-on-oracles-reported-gpu-profit-squeeze-theyl...
1•zerosizedweasle•26m ago•0 comments

Suspicionless ChatControl must be taboo in a state governed by the rule of law

https://digitalcourage.social/@echo_pbreyer/115337976340299372
3•nabla9•26m ago•0 comments
Open in hackernews

We didn't rewrite our feed handler in Rust

https://databento.com/blog/why-we-didnt-rewrite-our-feed-handler-in-rust
15•mpweiher•2h ago

Comments

hu3•1h ago
HN algo stripped the "Why" from the original title:

"Why we didn't rewrite our feed handler in Rust"

pjmlp•21m ago
Usually the trick is to update the title right after the submission and then HN won't "fix" the title, dunno why it does this when the guidelines are that the original titles are to be kept.
mikepurvis•1h ago
I'm not a very experienced Rust person, but I suspect the buffer reuse concern could be resolved with a tiny custom allocator, so semantically it's a new buffer on each iteration of the loop, satisfying the borrow checker, but the allocation is free. There are a number of bump/arena/slab allocators that do this, like bumpalo, but it would also be possible to write a small custom one specifically geared toward "just continually reuse this exact pointer".

Anyway, I don't mean to nitpick; I know that what's given in TFA are high level examples representing broader classes of concerns, but I thought this one in particular was interesting for having some decent alternatives.

vander_elst•58m ago
I wonder if for issues 1 and 2 a small amount of unsafe code could just solve them. At least for 1 this would seem quite achievable.
mikepurvis•30m ago
I don't even think unsafe is necessary for (1), just a custom allocator, as I suggested in a sibling comment.

For 2, I believe the pattern would be to make a generic version of the data structure as its own crate, with all the required unsafe stuff in there, properly tested and hidden behind a safe interface. Obviously that does require the data structure to be well defined and for you to know upfront what all the internal references and transformations are going to need to be (but honestly... it's probably good for that to be the case regardless).

c0balt•6m ago
Last I checked a custom allocator required unsafe code for pointer handling, one can hand this off to a library but the unsafe code is still there (though maybe better tested given a mature enough library).