frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Skills vs. knowledge – formalizing how agents need both

https://blog.herlein.com/post/procedures-travel-knowledge-stays-home/
1•gherlein•1m ago•0 comments

NYC Off Tech

https://nycofftech.com
1•anandbaburajan•2m ago•0 comments

I Am Behind on C# 14 Features, and I Can't Prove It but Does It Matter?

https://medium.com/c-sharp-programming/i-am-behind-on-csharp-14-features-and-i-cant-prove-it-but-...
1•sukhpinder0804•3m ago•0 comments

Trump administration asks OpenAI to stagger release of GPT 5.6

https://old.reddit.com/r/OpenAI/comments/1ufnwkh/breaking_trump_administration_asks_openai_to/
1•samber•5m ago•0 comments

SpaceX's newest Starmind will make earth data centers obsolete

https://www.teslarati.com/spacex-starmind-ai-satellite-vs-starlink/
1•avgarrison•7m ago•1 comments

Show HN: ShotBrief – Daily photography briefings, should you shoot tomorrow?

https://shotbrief.app/
1•bigwindow1•9m ago•0 comments

Was GLM-5.2 trained on Opus 4.5 outputs?

https://1chat.com/research/was-glm-5-2-trained-on-outputs-from-opus-4-5
1•coolspot•9m ago•0 comments

Anthropic's Claude is winning over paid consumers, a market owned by ChatGPT

https://techcrunch.com/2026/06/25/anthropics-claude-is-winning-over-paid-consumers-a-market-owned...
2•sambcui•9m ago•2 comments

Foundation and Manifesto of Futurism (1909)

https://thelastpromontory.com/texts/foundation-and-manifesto-of-futurism/
1•Schlagbohrer•9m ago•0 comments

Ceiling Fans [video]

https://www.youtube.com/watch?v=_KWdCqpXB7A
3•tosh•11m ago•0 comments

Bureaucracy Is Eating the World

https://xn--gckvb8fzb.com/bureaucracy-is-eating-the-world/
1•surprisetalk•12m ago•0 comments

Adobe is buying Topaz Labs, the AI video enhancer

https://thenextweb.com/news/adobe-acquires-topaz-labs-ai-enhancement
1•microflash•13m ago•0 comments

What Should Be Done

https://www.hyperdimensional.co/p/what-should-be-done
1•bluepeter•13m ago•0 comments

AI Makes Bad Product Decisions Look Like Finished Software

https://www.vincentschmalbach.com/ai-makes-bad-product-decisions-look-like-finished-software-cost...
1•vincent_s•14m ago•1 comments

The BBC switches off its oldest service

https://www.economist.com/britain/2026/06/25/the-bbc-switches-off-its-oldest-service
1•andsoitis•14m ago•0 comments

Show HN: A cool portfolio I made

https://ahmed-z0.pages.dev/
1•ahmed-z00•15m ago•0 comments

The AI backlash is only getting started

https://www.economist.com/leaders/2026/06/25/the-ai-backlash-is-only-getting-started
4•andsoitis•15m ago•0 comments

Six critical 9.9-CVSS vulnerabilities were found in Canonical's LXD today only

https://github.com/canonical/lxd/security
3•jabrr7•16m ago•0 comments

Vision for the Godot Engine

https://godotengine.org/article/godot-vision-statement-2026/
2•HelloUsername•18m ago•0 comments

Micron exec suggests Apple's aggressive purchasing tactics fuel memory shortage

https://9to5mac.com/2026/06/25/micron-exec-suggests-apples-aggressive-purchasing-tactics-helped-f...
1•ksec•18m ago•1 comments

Reading the news is the new smoking

https://www.experimental-history.com/p/reading-the-news-is-the-new-smoking
13•wesleyd•20m ago•8 comments

"Careless People" author sues Meta

https://www.engadget.com/2202234/careless-people-sarah-wynn-wiliams-sues-meta/
1•NordStreamYacht•21m ago•0 comments

SEC Proposes Rescission of Regulation NMS Rules

https://www.sec.gov/newsroom/press-releases/2026-54-sec-proposes-rescission-regulation-nms-rules-...
1•noitpmeder•21m ago•1 comments

What's New in Soulver 4?

https://documentation.soulver.app/whats-new-in-soulver-4
1•ksec•22m ago•0 comments

Secret gifts from public swell Treasury's coffers

https://www.bbc.co.uk/news/articles/cvgdn3134w1o
2•thunderbong•23m ago•0 comments

Going Critical

https://meltingasphalt.com/interactive/going-critical/
1•surprisetalk•26m ago•0 comments

Tom Stoppard's Arcadia saved lives

https://lithub.com/how-tom-stoppards-arcadia-literally-saved-lives/
1•speckx•26m ago•0 comments

The first open-source, agentic video production system

https://github.com/calesthio/OpenMontage
1•grajmanu•27m ago•0 comments

BadBlocker: 11M Users, One Server Call Away from Compromise

https://www.island.io/blog/badblocker-11-million-users-one-server-call-away-from-compromise
1•Tomte•27m ago•0 comments

Digital Restaurants: The rarity of the pad and pen

https://micahblachman.com/p/digital-restaurants
1•subdomain•28m 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