frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Microsoft marked the holiday by unloading 973 CVEs

https://www.automox.com/blog/patch-fix-tuesday-september-2026
1•speckx•11s ago•0 comments

Voronoi Fragmentation of a Mesh

https://www.4rknova.com/blog/2026/07/27/voronoi-fracture
1•ibobev•22s ago•0 comments

Kimi K3 (2.8T) at 1 token/s on a MacBook Pro, streamed from four SSDs

https://github.com/argonautlabsai/deltafin
1•Argonautlabs•25s ago•0 comments

A laser scanner killed the two mobile apps we had just finished

https://aiku.io/blog/a-laser-scanner-killed-our-two-mobile-apps
1•xboro•29s ago•0 comments

OpenAI says GPT-6 Astra can find zero-days, but is also harder to monitor

https://www.bleepingcomputer.com/news/artificial-intelligence/openai-says-gpt-6-astra-can-find-ze...
1•sbulaev•1m ago•0 comments

Trey Parker and Matt Stone Are Changing the Name of South Park to South America

https://twitter.com/SouthPark/status/2097364141237539116
2•HelloUsername•1m ago•0 comments

After Work, We'll Have Each Other

https://asteriskmag.com/issues/15/after-work-we-ll-have-each-other
3•devonnull•1m ago•0 comments

Microsoft September 2026 Patch Tuesday fixes 966 flaws, 2 zero-days

https://www.bleepingcomputer.com/news/microsoft/microsoft-september-2026-patch-tuesday-fixes-966-...
1•Handy-Man•4m ago•0 comments

How We Built Safety into Muse by Meta

https://research.meta.ai/blog/security-and-safety-for-ai-agents-our-approach-with-muse
1•ni5arga•5m ago•0 comments

Are Teenagers Growing Dimmer?

https://www.economist.com/international/2026/09/08/are-teenagers-growing-dimmer
1•karakoram•5m ago•1 comments

Regional differences in Google's Search experience

https://developers.google.com/search/docs/appearance/aggregator-features
1•thm•5m ago•0 comments

Django, Livekit Project Sale

https://chichi.quest/
1•victor_okoth•5m ago•0 comments

Using radiative coatings to cool buildings on the cheap

https://www.economist.com/science-and-technology/2026/09/08/how-to-cool-buildings-on-the-cheap
2•ikesau•6m ago•0 comments

Three people have died during Burning Man Festival, Pershing County Sheriff says

https://news3lv.com/news/local/burning-man-festival-black-rock-city-nevada-pershing-county-deaths...
3•randycupertino•7m ago•0 comments

We found a surprisingly connected file in OpenCode

https://github.com/thecolourfoundation/rune
1•malikfyua•8m ago•1 comments

Agents.md: one guide for your coding agents

https://fewshotacademy.com/blog/agents-md-guide
1•mangatgoyal•9m ago•0 comments

Show HN: Ollama stand in replacement, 2-4x faster, not just basic optimizations

https://github.com/omgitsbase/llmash
1•wowitsbase•9m ago•0 comments

Show HN: Eliminating text looping/latent collapse in LLM activation steering

https://nathanegbuna.com/latense/
1•negb•10m ago•0 comments

Show HN: Bounce Router. A TUI over Claude, Codex and Muse with Usage Failover

https://github.com/richet/bounce-router
1•richchetwynd•11m ago•0 comments

Employer Health Costs Are Expected to Spike in 2027

https://www.nytimes.com/2026/09/02/business/health-insurance-increases.html
3•karakoram•11m ago•1 comments

Show HN: Rokz: a browser port of a 1990 ASCII dungeon crawler

https://taler.pl/rokz/
2•htaler•13m ago•1 comments

Hearthfire: For the Stonetop TTRPG by Jeremy Strandberg

https://hearthfire.camp/
1•doener•13m ago•0 comments

A Generalizable Light Transport 3D Embedding for Global Illumination

https://dl.acm.org/doi/full/10.1145/3799902.3811095
1•ibobev•17m ago•0 comments

Netanyahu was warned of 7 October Hamas attacks, book claims

https://www.theguardian.com/world/2026/sep/08/netanyahu-warned-7-october-hamas-book-haaretz
3•giov4•18m ago•2 comments

Show HN: Pipnote – Share a reminder they can't peek at until it arrives

https://pipnote.app/
2•radomird•19m ago•1 comments

Melting Arctic glaciers are creating a climate 'doom loop' by flushing methane

https://www.dailymail.com/sciencetech/article-16113525/Melting-Arctic-glaciers-doom-loop.html
2•Bender•20m ago•0 comments

OpenAI fought dirty on career-making math problem

https://techcrunch.com/2026/09/08/openai-fought-dirty-on-career-making-math-problem-says-nyu-math...
5•jonbaer•21m ago•0 comments

Ask HN: When human experts disagree, how should machines determine truth?

1•panabee•21m ago•0 comments

What happens when a GPU writes memory

https://blog.doubleword.ai/what-happens-when-a-gpu-writes-memory
1•ibobev•21m ago•0 comments

DLSS 5: Generative Neural Rendering

https://research.nvidia.com/labs/adlr/DLSS5/
2•ibobev•21m ago•0 comments
Open in hackernews

Show HN: Miralis – a RISC-V virtual firmware monitor

https://github.com/CharlyCst/miralis
4•charlycst•1y ago
Miralis is a RISC-V firmware that virtualizes RISC-V firmware. In other words, it runs firmware in user-space (M-mode software in U-mode).

The fact that this is even possible is interesting: indeed, not all ISAs are virtualizable, and the same applies for their firmware mode. It all boils down to the virtualization requirements [1], which is a great read if you haven't come across it yet. Arm's EL3 cannot be virtualized, for instance, because some instructions, such as `cpsid`, are sensitive but do not trap (`cpsid` is a nop in user-space).

If you have a VisionFive 2 or a HiFive Premier P550, you can try it out, the instructions are in the documentation [2, 3]. Of course, it runs on QEMU too.

As Miralis is a research project, we have also been using it as a vehicle to explore other research ideas, such as automated verification of hypervisors [4]. For instance, we verified instruction emulation by comparing Miralis' implementation with the reference RISC-V executable specification [5], which we translated to Rust.

It has been fun working on Miralis, I hope you'll find it interesting too!

[1]: https://dl.acm.org/doi/pdf/10.1145/361011.361073

[2]: https://miralis-firmware.github.io/docs/platforms/visionfive...

[3]: https://miralis-firmware.github.io/docs/platforms/premierp55...

[4]: https://charlycst.github.io/papers/lightweight-hypervisor-ve...

[5]: https://github.com/riscv/sail-riscv