frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Sentivel – a status page that tracks the providers you depend on

https://demo.sentivel.com
1•jensonhirst•31s ago•0 comments

Why the Legendary Erdős Problems Are Falling to AI

https://www.quantamagazine.org/why-the-legendary-erdos-problems-are-falling-to-ai-20260803/
1•speckx•37s ago•0 comments

The global memory shortage hits the MacBook Air

https://techcrunch.com/2026/08/02/the-global-memory-shortage-hits-the-macbook-air/
1•Brajeshwar•51s ago•0 comments

"Phantom Twist" drone nearly disappears in flight [video]

https://www.youtube.com/watch?v=1mUgyV3A1O0
1•zdw•56s ago•0 comments

Anyone using machine translation quality estimation?

1•cefoo•1m ago•0 comments

GitLab Is Slow as a Turtle

https://status.gitlab.com/
1•byte_surgeon•2m ago•0 comments

Bullsta

https://bullsta.com
1•ConnorHolcomb•3m ago•0 comments

AI's talent wars have a loyalty problem

https://www.axios.com/2026/08/03/ai-talent-wars-openai-google-meta-anthropic
2•ironyman•4m ago•0 comments

AAuth Protocol

https://datatracker.ietf.org/doc/draft-hardt-oauth-aauth-protocol/
1•kyle-macmillan•5m ago•0 comments

New spinning drone hides in plain sight

https://news.northwestern.edu/stories/2026/07/new-spinning-drone-hides-in-plain-sight
1•Supermancho•5m ago•0 comments

LLM Writing and Me

https://www.makonea.com/en-US/casual/llm-writing-and-me
1•jdw64•5m ago•0 comments

Review of Marcus Hutter's Job-Less Utopia

https://borretti.me/article/review-job-less-utopia
1•thoughtpeddler•6m ago•0 comments

Deprecation of HCP Vagrant

https://developer.hashicorp.com/hcp/docs/vagrant/hcp-vagrant-eol
1•cybadger•6m ago•1 comments

AI can detect underwater waste in oceans

https://www.nature.com/articles/d44151-026-00129-2
3•wertyk•8m ago•1 comments

Tool Specifications Matter: Uncovering and Mitigating Safety Risks in AI Agents

https://arxiv.org/abs/2607.29254
2•zhinit•8m ago•0 comments

OSS ChatGPT UI v4: PDF Studio, Projects, Profiles, Server Tools, 1-Click Sharing

https://llmspy.org/docs/latest
1•mythz•9m ago•0 comments

Standalone PEP 723 scripts with Conda dependencies in Pixi

http://pixi.prefix.dev/latest/python/scripts/
1•manzt•9m ago•0 comments

We re-wrote the Excel engine in Rust to run headless for agents

https://twitter.com/peterjliu/status/2084298237884948928
3•peterjliu•11m ago•0 comments

When rogue AI launches a cyberattack, who is legally responsible?

https://www.yahoo.com/news/politics/articles/rogue-ai-launches-cyberattack-legally-011003955.html
2•pseudolus•13m ago•0 comments

I am quite tired of algorithms, so am I with Spotify; exporting playlists, etc.

https://www.ssp.sh/brain/export-spotify-data-and-music-playlists-etc/
1•zazuke•13m ago•0 comments

Taylor Farms Has Rewritten Its Cyclospora Statement Four Times in Sixteen Days

https://www.marlerblog.com/case-news/taylor-farms-has-rewritten-its-cyclospora-statement-four-tim...
20•speckx•13m ago•0 comments

Dualism

https://pluralistic.net/2026/08/03/andor/#either
1•joebuckwilliams•15m ago•0 comments

End Poverty in California

https://en.wikipedia.org/wiki/End_Poverty_in_California
1•Amorymeltzer•15m ago•0 comments

A Simpler Lambda Calculus (2019)

https://dl.acm.org/doi/pdf/10.1145/3294032.3294085
1•sargstuff•16m ago•0 comments

Kinjo: The home lab menu I wanted

https://abbyssoul.github.io/engineering/2026/08/03/kinjo-the-home-lab-menu-i-wanted.html
2•sagevoid•19m ago•0 comments

ChessTUI: Chess but via Command Line

https://github.com/gslf/ChessTUI/releases/tag/v1.0.3
2•gioeleslfierro•20m ago•0 comments

Why is it all in the kernel?

https://lawrencecpaulson.github.io/2026/07/30/Collatz.html
1•vinhnx•21m ago•0 comments

Electric air taxis are finally ready for takeoff

https://fortune.com/2026/08/03/electric-air-taxis-joby-aviation-evtols-archer-aviation/
1•ryan_j_naughton•21m ago•0 comments

Ask HN: Freelancer? Seeking freelancer? (August 2026)

2•jon_north•21m ago•1 comments

Setting Up and Using the Pi Coding Agent

https://deepakness.com/blog/pi-agent-setup/
1•speckx•23m 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