frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Crypto Royale – A Play to Earn Ecosystem That Rewards You for Having Fun

1•CryptoRoyale•47s ago•0 comments

Sci-Hub has been blocked in India

https://sci-hub.se/sci-hub-blocked-india
1•the-mitr•1m ago•0 comments

Show HN: CivMD – CivitAI model downloader in your terminal

https://github.com/jackowfish/civitai-downloader
1•jackdecker•6m ago•0 comments

Origins of Life: Thioester RNA Aminoacylation Enables Peptide Synthesis

https://bioengineer.org/thioester-rna-aminoacylation-enables-peptide-synthesis/
1•jbotz•7m ago•0 comments

Scientists Spotted a 'Yellow Brick Road' at the Bottom of the Pacific Ocean (2022)

https://www.sciencealert.com/scientists-spotted-a-yellow-brick-road-at-the-bottom-of-the-pacific-...
2•samaysharma•8m ago•0 comments

The Deletion of Docker.io/Bitnami

https://community.broadcom.com/tanzu/blogs/beltran-rueda-borrego/2025/08/18/how-to-prepare-for-th...
2•zdkaster•10m ago•0 comments

Checkpoints for Claude Code

https://apps.apple.com/us/app/checkpoints-for-claude-code/id6751541546?mt=12
1•punnerud•11m ago•0 comments

Matter Is Finally Ready to Deliver the Smart Home It Promised

https://www.wired.com/story/matter-is-finally-on-track-to-deliver-the-smart-home-it-promised/
1•CharlesW•12m ago•0 comments

An Automated Lego Car Factory [video]

https://www.youtube.com/watch?v=XTyzfUEb9_s
1•pajtai•12m ago•0 comments

Classic Psion fan releases proof-of-concept language server for OPL

https://www.theregister.com/2025/08/27/vintage_computing_boffin_resurrects_opl/
1•idw•13m ago•0 comments

Listers: A glimpse into extreme bird watching

https://www.youtube.com/watch?v=zl-wAqplQAo
1•brudgers•17m ago•0 comments

Smart Attack on Elliptic Curves for Programmers

https://leetarxiv.substack.com/p/smart-attack-on-elliptic-curves-for
1•thunderbong•20m ago•0 comments

Origin and history of 'deprecate'

https://www.etymonline.com/word/deprecate
2•pash•28m ago•1 comments

PGlite – embeddable Postgres with real-time, reactive bindings

https://github.com/electric-sql/pglite
1•microflash•30m ago•0 comments

Some Pixels are bricked and Google apparently won't help revive them

https://www.androidauthority.com/google-pixel-phones-bricked-3591218/
2•josephcsible•31m ago•0 comments

There Is Thinking and There Is Thinking and There Is Thinking

https://aethermug.com/posts/there-is-thinking-and-there-is-thinking-and-there-is-thinking
3•zdw•34m ago•0 comments

Ask HN: Do you read your own PR?

1•bubblebeard•36m ago•1 comments

Last Man

https://en.wikipedia.org/wiki/Last_man
3•ofrzeta•37m ago•0 comments

Show HN: Stop paying for analytics. I built a Bring-Your-Own database platform

https://berrylog.app/
1•lakshikag•40m ago•0 comments

Show HN: AIKit

https://github.com/chinmaymk/aikit
1•_chinmaymk•58m ago•0 comments

With little to show from 10 years of work, WA suspends $292M IT rebuild

https://www.seattletimes.com/business/with-little-to-show-from-10-years-of-work-wa-suspends-292m-...
4•rwc9•1h ago•0 comments

Hola Que Tu Al

1•Idodbslb•1h ago•1 comments

Anthropick.com Redirects to ChatGPT

3•nerdcortex•1h ago•0 comments

Ready to build Alaska's next legendary lodge?

https://www.motherlodehatcherpass.com/submit-a-proposal
3•thoughtstheseus•1h ago•0 comments

A Dark Mode PDF Reader Competing with Adobe

https://www.shadowreader.io/
2•EbenZergaw•1h ago•1 comments

Nothing busted using professional photos as Phone 3 samples

https://www.theverge.com/report/766543/nothing-busted-using-fake-phone-3-photo-samples
2•Brajeshwar•1h ago•1 comments

Htm.sh – turn your code into a live website instantly from your shell

https://htm.sh/
2•viniciusbarreto•1h ago•0 comments

Why Did ChatGPT Hit a Wall? [video]

https://www.youtube.com/watch?v=emHCav2pxLA
2•slashnode•1h ago•0 comments

Meta to launch California super PAC backing pro-AI candidates

https://www.reuters.com/world/us/meta-launch-california-super-pac-backing-pro-ai-candidates-2025-...
4•1vuio0pswjnm7•1h ago•1 comments

Certificates for Onion Services

https://onionservices.torproject.org/research/proposals/usability/certificates/
2•keepamovin•1h ago•0 comments
Open in hackernews

Show HN: Created a Node.js's addon that can handle 1M req/s

1•StellaMary•2h ago
I’ve been experimenting with building a Node.js HTTP framework using Rust + Hyper with N-Api.

The project started as a fully synchronous server, but I recently patched it to support async (Tokio/Hyper). That change alone nearly doubled throughput in benchmarks.

What’s different:

* Built directly on Hyper, no heavy abstraction * napi glue for Node.js bindings * Minimal core (sync and async engines side-by-side) * Focused on raw performance, not plugins (yet)

This is still experimental and not production-ready. I’d like feedback on:

* Async API design — does it feel ergonomic? * Middleware style — what patterns should be supported?

Repo: [https://github.com/Shyam20001/rsjs](https://github.com/Shyam20001/rsjs) Full benchmarks: [https://shyam20001.github.io/rsjs/](https://shyam20001.github.io/rsjs/)