Tempat Uploadan
48 subscribers
16 photos
4 videos
134 files
649 links
Quick file mirror for everyone
(´・ω・`)
Download Telegram
Forwarded from Hacker News
My “grand vision” for Rust (❄️ Score: 152+ in 4 days)

Link: https://readhacker.news/s/6P6ZS
Comments: https://readhacker.news/c/6P6ZS
Forwarded from Hacker News
JSLinux Now Supports x86_64 (Score: 151+ in 4 hours)

Link: https://readhacker.news/s/6PqzW
Comments: https://readhacker.news/c/6PqzW
Forwarded from Hacker News
Flash media longevity testing – 6 years later (Score: 150+ in 1 day)

Link: https://readhacker.news/s/6Pkt3
Comments: https://readhacker.news/c/6Pkt3
Forwarded from slanterns w/ 🦀
December in Servo: multiple windows, proxy support, better caching, and more! - Servo aims to empower developers with a lightweight, high-performance alternative for embedding web technologies in applications.
https://servo.org/blog/2026/01/23/december-in-servo/
Forwarded from Hacker News
More than 135 open hardware devices flashable with your own firmware (❄️ Score: 152+ in 4 days)

Link: https://readhacker.news/s/6PKcM
Comments: https://readhacker.news/c/6PKcM
Forwarded from Lobste.rs
AI - Assassinating Intelligence

I think I am fed up with AI for now, DLSS managed to push me over the edge.Comments

via yashgarg.dev by yashgarg
Forwarded from Hacker News
Show HN: Sub-millisecond VM sandboxes using CoW memory forking (Score: 154+ in 20 hours)

Link: https://readhacker.news/s/6PYP3
Comments: https://readhacker.news/c/6PYP3

I wanted to see how fast an isolated code sandbox could start if I never had to boot a fresh VM.
So instead of launching a new microVM per execution, I boot Firecracker once with Python and numpy already loaded, then snapshot the full VM state. Every execution after that creates a new KVM VM backed by a `MAP_PRIVATE` mapping of the snapshot memory, so Linux gives me copy-on-write pages automatically.
That means each sandbox starts from an already-running Python process inside a real VM, runs the code, and exits.
These are real KVM VMs, not containers: separate guest kernel, separate guest memory, separate page tables. When a VM writes to memory, it gets a private copy of that page.
The hard part was not CoW itself. The hard part was resuming the snapshotted VM correctly.
Rust, Apache 2.0.