frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A LangGraph pipeline that generates compiling Flutter apps (with a repair loop)

https://github.com/carlosge492/app-generation-microservice
1•m2magents•2m ago•0 comments

Arch Linux AUR Package Adoptions Halted

https://www.phoronix.com/news/Arch-Linux-AUR-Adoptions-Halted
1•wanderer2323•6m ago•0 comments

Mastodon new TOS: we may restore your self-deleted content from backup

https://mastodon.social/terms-of-service/2026-08-31
2•meysamazad•7m ago•0 comments

Trouble at lunchtime as Hong Kong private club spat escalates

https://www.ft.com/content/da564e49-d7bb-48c9-a5d9-b847b596b23e
1•petethomas•11m ago•2 comments

A Sovereign Coding Agent on macOS – Pi in an Apple Container; Zero NPM on Host

https://medium.com/@michael.hannecke/a-sovereign-coding-agent-on-macos-pi-in-an-apple-container-z...
1•rguiscard•11m ago•0 comments

Ace Sidecar – Efficiency Optimization for Local AI Coding

https://acefleet.dev/blog/announcing-the-ace-sidecar
1•flyingfishisme•15m ago•1 comments

Inducing language models to assert their own consciousness restores human

https://arxiv.org/abs/2607.28607
1•sbulaev•16m ago•0 comments

BMW Is Showing Commercials on Their Car's Dash Screens

https://www.theautopian.com/bmw-is-showing-commercials-on-their-cars-dash-screens-and-they-want-y...
1•Tomte•22m ago•0 comments

Last 30 Days (Skill) – AI Agent for Reddit, X, YT, HN, Web and Polymarket

https://github.com/mvanhorn/last30days-skill
2•ms7892•22m ago•0 comments

In Silicon Valley, Some Say an A.I. Bubble Would Be Just Fine

https://www.nytimes.com/2026/07/30/technology/ai-bubble-venture-capital.html
1•mitchbob•29m ago•1 comments

About 100 firefighters are convicted of arson, every year

https://www.firerescue1.com/arson-investigation/articles/expert-firefighter-arson-a-long-standing...
2•gurjeet•33m ago•2 comments

Fireside Friday, July 31, 2026 (On The Odyssey)

https://acoup.blog/2026/07/31/fireside-friday-july-31-2026-on-the-odyssey/
1•Tomte•36m ago•0 comments

Loora: Design files your agent can edit

https://loora.design/
1•handfuloflight•37m ago•0 comments

A.I. Books Sneak Their Way into Stores

https://www.nytimes.com/2026/07/28/books/ai-bookselling-amazon.html
2•lxm•37m ago•0 comments

Climate Change Is Moving Mountains

https://www.theatlantic.com/science/2026/07/climate-change-land/688129/
1•littlexsparkee•44m ago•0 comments

Ask HN: Anyone got DeepSeek-v4-flash-0731 running using antirez/ds4?

1•freakynit•45m ago•0 comments

BMW Spider-Man in-car advertising

https://consumerrights.wiki/w/BMW_Spider-Man_in-car_advertising
71•goplayoutside•58m ago•22 comments

MiniMax H3: Open weights Omni-modal model

2•ignoramous•59m ago•0 comments

The Cost of China's Free A.I

https://www.nytimes.com/2026/07/29/opinion/ai-china-us-free-models.html
3•lxm•1h ago•0 comments

The development pipeline is a production system

https://sundry.jerryorr.com/2026/07/31/development-pipeline-is-a-production-system
29•firefoxd•1h ago•10 comments

What Is MiniMax H3? Everything You Need to Know About the Hailuo 3.0 Video Model

https://minimaxh3.art/blog/what-is-minimax-h3
3•wangneo276•1h ago•0 comments

Saudi PIF's $55B EA deal gets EU approval under subsidy rules

https://www.reuters.com/legal/transactional/saudi-pifs-55-billion-ea-deal-gets-eu-approval-under-...
2•doughnutstracks•1h ago•0 comments

US lawmakers investigate DoorDash's use of Moonshot AI's Kimi K2.6 model

https://www.scmp.com/news/china/diplomacy/article/3362616/us-lawmakers-investigate-doordashs-use-...
4•fragmede•1h ago•3 comments

Situational Awareness Holdings Report

https://last10k.com/sec-filings/2045724
2•ijidak•1h ago•0 comments

History of Submarine Telegraphy

https://atlantic-cable.com/
2•walrus01•1h ago•0 comments

Doom on Emacs

https://github.com/minad/doom-on-emacs/tree/3830991bd3d69a9426498ee4a3dc8b55c8eb2eb5
2•signa11•1h ago•0 comments

AI broke writing as proof-of-thought

https://hereisyourbrain.substack.com/p/ai-generated-content-mind-virus
5•prdgl_daughter•1h ago•0 comments

Claude 5 family's hallucinations look a lot like internal Anthropic emails

https://github.com/alectrocute/dario-and-amanda-prompt/blob/main/outputs.md
3•arm32•1h ago•2 comments

Snapcompact: SoTA compaction – instant, local, free. Pick 3

https://stencil.so/blog/snapcompact
2•mji•1h ago•0 comments

The One That Says IT All

https://liljrxsoverign.substack.com/
2•liljr20•1h 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