frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Leaked Apple M5 9 core Geekbench scores

https://browser.geekbench.com/v6/cpu/14173685
1•aurareturn•2m ago•0 comments

How to get the best night's sleep: what the science says

https://www.nature.com/articles/d41586-025-03148-8
1•rntn•2m ago•0 comments

Flow State to Free Fall: An AI Coding Cautionary Tale

https://www.oreilly.com/radar/flow-state-to-free-fall-an-ai-coding-cautionary-tale/
1•ghuntley•4m ago•0 comments

Perfect Masterminds Theroem

1•TO-SAO•4m ago•0 comments

Human skin DNA fertilised to make embryo for first time

https://www.bbc.co.uk/news/articles/c4g2vyee0zlo
1•fumblebee•5m ago•0 comments

Show HN: The First Commerce-Enabled MCP Server (GoPuff)

https://www.youtube.com/watch?v=QGP2hPJZ7c8
2•mealmeapp•5m ago•0 comments

Cerebras Systems Raises $1.1B Series G at $8.1B Valuation

https://www.cerebras.ai/press-release/series-g
2•fcpguru•8m ago•1 comments

Chile's Dark Skies and the Scale of Light Pollution

https://spectrum.ieee.org/scale-of-light-pollution
1•throw0101c•9m ago•1 comments

How to write a complete GNOME application in Lua

https://www.vtrlx.ca/posts/2025/howto-complete-lua-gnome-app/
2•Bogdanp•9m ago•0 comments

Show HN: I've build a Tik-Tok styled app, but for GitHub

https://www.gitscroll.dev/
1•wiwoworld•9m ago•0 comments

Do I Need a Google Ads Consultant for My Business?

1•adiheureux•10m ago•0 comments

Venmo and PayPal users will be able to send money to each other

https://techcrunch.com/2025/09/30/venmo-and-paypal-users-will-finally-be-able-to-send-money-to-ea...
1•mikece•10m ago•0 comments

The 15-year-old sprint sensation taking social media by storm

https://www.theguardian.com/sport/2025/sep/11/meet-the-15-year-old-sprint-sensation-taking-social...
1•PaulHoule•10m ago•0 comments

Atmospheric water harvesting can be scaled

https://techxplore.com/news/2025-09-atmospheric-harvesting-scaled.html
1•Brajeshwar•11m ago•0 comments

Tiny Probes Aim for Interstellar Travel

https://spectrum.ieee.org/high-speed-interstellar-travel
1•Brajeshwar•11m ago•0 comments

People Can't Distinguish AI Voice Clones from Actual Humans Anymore

https://singularityhub.com/2025/09/29/people-cant-distinguish-ai-voice-clones-from-actual-humans-...
1•Brajeshwar•11m ago•0 comments

Will consumer nutrition apps force widespread CPG reformulation?

https://www.foodnavigator-usa.com/Article/2025/09/29/edacious-roa-partner-to-measure-nutritional-...
1•jcarterwil•11m ago•1 comments

Prompt Analytics for MCP Servers

https://hyprmcp.com/blog/mcp-server-prompt-analytics/
1•louis_w_gk•12m ago•0 comments

Visualizations of Random Attractors Found Using Lyapunov Exponents

https://paulbourke.net/fractals/lyapunov/
4•cs702•12m ago•0 comments

Fra Mauro's Map of the World (dated 26 August 1460)

https://engineeringhistoricalmemory.com/challenge.php
1•Pamar•13m ago•0 comments

Why I no longer recommend Julia

https://yuri.is/not-julia/
23•cs702•16m ago•0 comments

Surreptitious Surveillance

https://blog.cr.yp.to/20250930-stealth.html
2•nabla9•16m ago•0 comments

Vercel Closes Series F at $9.3B Valuation to Scale the AI Cloud

https://www.gic.com.sg/newsroom/all/vercel-closes-series-f-at-9-3b-valuation-to-scale-the-ai-cloud/
2•pbardea•18m ago•0 comments

Why do I still end up over-engineering things?

https://littleleaps.substack.com/p/why-do-i-still-end-up-over-engineering
2•mskar•18m ago•0 comments

Cosmic Handedness Might Show Up in Galaxy Spins

https://physics.aps.org/articles/v18/s126
1•bikenaga•19m ago•1 comments

Lessons learned building an infrastructure devtool

https://www.nango.dev/blog/lessons-learned-building-infrastructure-devtool
1•rguldener•20m ago•0 comments

Study links food and beverage temperature to mental and gut health

https://medicalxpress.com/news/2025-09-links-food-beverage-temperature-mental.html
2•bikenaga•22m ago•1 comments

The Making of Indiana Jones and the Great Circle [video]

https://www.youtube.com/watch?v=FsxTQvo5QhM
1•skibz•23m ago•0 comments

More Speculations on Arenas in C++

https://nullprogram.com/blog/2025/09/30/
2•todsacerdoti•23m ago•0 comments

Show HN: Manta – open-source, graph-based IDE

1•makosst•24m ago•0 comments
Open in hackernews

Copier: Making Memory Copy an OS Service for Up to 1.8x Speedup [pdf]

https://ipads.se.sjtu.edu.cn/_media/pub/sosp25-copier-preprint.pdf
12•jkhe•1h ago

Comments

jkhe•1h ago
Memory copy (memcpy) is a pervasive but major performance bottleneck across all modern operating systems and apps, eating up to 66% of cycles in some benchmarks. We introduce Copier, a novel first-class OS service that fundamentally re-architects how memory is copied.

Instead of traditional synchronous (blocking) copy, Copier offers coordinated asynchronous copy, enabling applications to overlap computation with data movement using novel programming primitives, hiding copy latency.

As an OS service, Copier can also: - Fully utilize hardware (like AVX2 and DMA) via a specialized dispatcher, delivering higher throughput than existing kernel or library functions. - Absorb redundant copies across privilege levels (user-space to kernel and back) by maintaining a global view, drastically accelerating I/O-intensive workloads.

In practice, Copier achieves up to 1.8x latency speedup for Redis.

This shows memory copy doesn't have to be a performance tax—it can be a managed, efficient service.