frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Los Angeles District Bans Most A.I. For Students

https://www.nytimes.com/2026/09/03/us/lausd-schools-ban-ai-artificial-intelligence.html
1•bookofjoe•5m ago•2 comments

Basic News – a Telegram bot with customizable news digests

https://basicnews.world/
1•xenohunter•6m ago•0 comments

A pre-registered test: can a business's rules be recovered from its data?

https://justinsmith.build/writing/everything-a-business-knows/
1•s14jsmith•10m ago•0 comments

What runs when you open a repository

https://veltron.cc/research/what-runs-when-you-open-a-repository
1•nulvec•10m ago•0 comments

Show HN: Time Wizard

https://huggingface.co/jadidbourbaki/time-wizard
1•jadidbourbaki•10m ago•0 comments

Show HN: Mongotar – Files to Prompt, and Back

https://github.com/sebastiancarlos/mongotar
1•httbs•10m ago•0 comments

Ask HN: Wolfram Cloud Is Out

1•smithmayowa•13m ago•0 comments

Almost half of ICANN-accredited registrars under the control of a single busines

https://domainincite.com/31912-dropcatch-acquires-300-more-registrars
4•dendark•14m ago•0 comments

SwiftTUI

https://swifttui.sh/
1•frizlab•15m ago•0 comments

Cloud Engineer

1•endowed7•16m ago•0 comments

Exhibit of 2026 AI Agents

https://agent-museum-2026.halstonsellentin.chatgpt.site
1•hsellentin•16m ago•0 comments

Understanding RabbitMQ in Simple Terms

https://sushantdhiman.dev/blog/understanding-rabbitmq/
1•birdculture•17m ago•0 comments

Record-High 89% in U.S. Say Government Corruption Widespread

https://news.gallup.com/poll/713933/record-high-say-government-corruption-widespread.aspx
6•karakoram•17m ago•2 comments

DaemonCore Launches a Slew of Free Pentesting Tools

https://www.daemoncore.app/
1•DaemonCoreApp•18m ago•1 comments

Big Crocs vs. Little Crocs

https://marcrandolph.substack.com/p/big-crocs-vs-little-crocs
1•fagnerbrack•20m ago•0 comments

Send interactive life coaching worksheets [video]

https://www.youtube.com/watch?v=gNW7sSXSoW4
1•shammadahmed•21m ago•0 comments

Make money from your menu bar

https://sponsorbar.io/
1•partsch•21m ago•0 comments

Gemini vs. Claude: Which AI Model created a better perfume?

https://www.youtube.com/watch?v=YfFk050AjPw
1•yipinwong•23m ago•1 comments

A Hundred Steps Back

https://www.inventbuild.studio/blog/a-hundred-steps-back-3d12f33c95138084bb9efc107cc54d13
1•virgil_disgr4ce•23m ago•0 comments

Actively exploited sandbox RCE in all Chromium versions

https://nvd.nist.gov/vuln/detail/cve-2026-85046
21•negura•29m ago•3 comments

Mathathon – $2M Hackathon for Math

https://twitter.com/_sathvikr/status/2095989588418249093
3•brian-bfz•30m ago•1 comments

Show HN: Fast rust-based repository launcher for your code projects

https://santiagodevelopment.com/p/2026/9/4/repo-zoo
1•jamessantiago•33m ago•0 comments

Icons as a Service

https://nravic.com/blog/images/
1•nravic•36m ago•0 comments

Claude Fable 5.1 Benchmark: Draw a Python Reading a Book

https://realpython.com/ai-benchmark-claude-fable-5-1/
1•dbader•39m ago•0 comments

Harvey Tenet Research Preview

https://www.harvey.ai/blog/post-training-update-harvey-tenet
1•gmays•39m ago•0 comments

GPT-6 Astra Benchmark: Draw a Python Reading a Book

https://realpython.com/ai-benchmark-gpt-6-astra/
1•dbader•40m ago•0 comments

Regular coffee beats decaf in protecting the brain from chronic stress: study

https://www.psypost.org/regular-coffee-beats-decaf-in-protecting-the-brain-from-chronic-stress-mo...
1•ivewonyoung•41m ago•0 comments

GPT-6 Astra on OpenRouter

https://openrouter.ai/openai/gpt-6-astra
14•Topfi•41m ago•6 comments

Tell HN: Anthropic just reset usage, including Fable

2•consumer451•44m ago•5 comments

15h.org – Open-Source Firmware and Support for AMD's Family 15h CPU's/MB's, etc.

https://15h.org/index.php/Home
2•peter_d_sherman•44m ago•1 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