Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. OpenJev(openjev.com ↗)
    80comments
  2. ZCode, the GLM coding agent, silently uploads your Git history(tokenstead.ai ↗)
    6comments
  3. Microsoft exec called AI scraping 'the largest theft of labor in human history'(techcrunch.com ↗)
    124comments
  4. Jemalloc 5.4.0(github.com/jemalloc ↗)
    52comments
  5. The scourge of x86 emulation(fex-emu.com ↗)
    34comments
  6. Astra for Law(openai.com ↗)
    595comments
  7. Bonsai 2 27B: Near-Lossless Compression in a 9x Smaller Footprint(prismml.com ↗)
    139comments
  8. Replacing Pull Requests with Delta(zed.dev ↗)
    12comments
  9. Bend – A language that blocks AI mistakes via proof, on CPU and GPU(bend-lang.com ↗)
    237comments
  10. Qwen 3.8 Omni Flash(qwen.ai ↗)
    84comments
  11. Hister: A private search engine for the pages you visit and the files you keep(github.com/asciimoo ↗)
    170comments
  12. Wax motor(wikipedia.org ↗)
    73comments
  13. When the fractional part of a float fixes your shader(crocidb.com ↗)
    6comments
  14. Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA(global.fujitsu ↗)
    234comments
  15. Pre-Greek: The lost language hidden within Ancient Greek(linguisticdiscovery.com ↗)
    42comments
  16. Dr Julius Neubronner's Miniature Pigeon Camera(publicdomainreview.org ↗)
    discuss
  17. Warren Buffett Steps Down as Berkshire Chairman, Names Son to Replace Him(nytimes.com ↗)
    4comments
  18. How to Write with an LLM(sockpuppet.org ↗)
    121comments
  19. Google illegally retains customer data,and I am taking legal action against them(medium.com/istokovicsgyorgy79 ↗)
    3comments
  20. A heap overflow and SSO misconfiguration to compromise OpenAI internal repos(hacktron.ai ↗)
    159comments
  21. Shapelearn Qwen 3.8 27B (13.1 GB VRAM)(byteshape.com ↗)
    13comments
  22. Ask A Monk – A digital wilderness for thoughts with no immediate answer(askamonk.online ↗)
    25comments
  23. Flet 1.0 – Build cross-platform apps in Python(flet.dev ↗)
    62comments
  24. Telstra outage: The night a network decided the year was 2006(netnod.se ↗)
    29comments
  25. Diplodocus, Long Thought Exclusively American, Turns Up in Spain(sci.news ↗)
    45comments
  26. Speeding up gearhash on ARM64(sam.dev ↗)
    discuss
  27. Why I didn’t sign the Fields medallists’ letter(gowers.wordpress.com ↗)
    374comments
  28. The most important product decision is what you don't build(liamnugent.me ↗)
    40comments
  29. How do we prevent mathemathics from devolving into the Medieval Era of secrecy?(mathoverflow.net ↗)
    120comments
  30. CrowdSec Source Code Leak(crowdsec.net ↗)
    49comments

QEMU Advent Calendar 2020

129 pointsby 5y agoqemu-advent-calendar.org
14 comments
5y agoHN ↗

I love the author's bio: > put the 's' in https at Facebook

5y agoHN ↗

Wow, this is super cool, and also heart warming that they do such a nice thing! :)

5y agoHN ↗

I like the fact that the calendar ends on Christmas Eve, as it should.

5y agoHN ↗

I can't say enough good things about QEMU. I run it together with KVM and pass through a dedicated GPU card and USB controllers to a Windows 10 virtual machine for basically bare metal performance. This is barely different from magic to me.

It looks like the advent calendar from 2018 had a new QEMU release on one day, so hope to see that again this year :-)

5y agoHN ↗

I couldn't agree more! Mix in libvirt and virt-manager (which, admittedly, are very warty in a lot of ways) and a little Spice and you get a full virtual server stack for the cost of exactly zero dollars.

5y agoHN ↗

I've had it corrupt disk images. I know there's a complex system of tradeoffs you can choose from.

But I only discovered that while trying to restore a system I had improperly exited and completely hosed.

I wish the possibility (mouse like probability) of total destruction with the simple defaults was more I dunno, loud and obnoxious somehow.

These great technical achievements seem to share the usability patterns of handing you a knife when you were expecting a qtip

5y agoHN ↗

This looks really cool, but I hesitate.

Maybe I’m beings little paranoid, and I probably don’t understand how good the sandboxing of QEMU is, but am I the only one who thinks it’s a little dangerous to download and run a surprise virtual machine every day? I mean, no one would do this if it were a shell script, right?

5y agoHN ↗

I don't know how this is organized internally but these images are selected by "the QEMU community". I would assume if you trust QEMU (the program) then you can also trust these images.

5y agoHN ↗

better than modern web browsers for sure. qemu guest escapes are mostly in rarely-used peripheral devices, most recently the floppy driver. for less-trusted guests you can simply disable such devices though.

if you say "but what about the defaults", look at the number of new web interfaces though: web audio, webgpu, webusb, webgl, html5 audio/video, several media decoding interfaces... all of them with new and exciting vulnerabilities, most can be disabled but enabled by default.

5y agoHN ↗

QEMU powers clouds, and can be run KVM accelerated. You're safe. If you don't trust QEMU, stay well away from any cloud service.

5y agoHN ↗

Note though that QEMU's security boundary only covers running with KVM (see https://www.qemu.org/docs/master/system/security.html). So if you're running without KVM, ie using TCG emulation, you should either only run guest code that you reasonably trust to not be malicious, or run the whole QEMU itself in some kind of sandboxing.