frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: AI Agents took my programming job. What can I do?

1•butILoveLife•26s ago•0 comments

Jeff Kaplan: World of Warcraft, Overwatch, Blizzard, and Future of Gaming [video]

https://www.youtube.com/watch?v=H9rF1CSSh-w
1•neko_ranger•59s ago•0 comments

High court claimant was fed answers through his smart glasses, judge finds

https://www.theguardian.com/uk-news/2026/mar/13/high-court-smart-glasses-fed-answers-evidence
1•chrisjj•2m ago•0 comments

The Stalk Market

https://www.stalk-market.com
1•mooreds•4m ago•0 comments

Election Data Handed over to the FBI in Maricopa County Could Be Fatally Flawed

https://www.propublica.org/article/maricopa-county-arizona-election-records-fbi
1•hn_acker•4m ago•1 comments

Proton's Swiss Myth: US Jurisdiction via Cloudflare and FAA Arbitration Clauses

1•MissMajordazure•5m ago•0 comments

Show HN: CaliVibe – Explore California Neighbourhoods

https://trekhleb.dev/cali-vibe/
1•trekhleb•5m ago•0 comments

The race to solve the biggest problem in quantum computing

https://www.newscientist.com/article/2518974-the-race-to-solve-the-biggest-problem-in-quantum-com...
1•Brajeshwar•5m ago•0 comments

Boulder's middle-income down payment program drew zero applicants in 3 years

https://boulderreportinglab.org/2026/03/12/boulders-middle-income-down-payment-program-drew-zero-...
1•mooreds•5m ago•0 comments

Sandcat – Docker and dev container setup for securely running AI agents

https://github.com/VirtusLab/sandcat
4•mihau•6m ago•0 comments

Show HN: Fine-tuned 3B outperforms Claude Haiku on constrained generation

https://serendip-ml.github.io/fine-tuned-3b-beats-haiku/
1•serendip-ml•6m ago•0 comments

New Tools Added

https://everytool.solutions/
1•Mihir1426•6m ago•1 comments

What Crystals Older Than the Sun Reveal About the Start of the Solar System

https://www.quantamagazine.org/what-crystals-older-than-the-sun-reveal-about-the-start-of-the-sol...
1•colinprince•6m ago•0 comments

Comparing income and hours worked across countries and states for the bottom 95%

https://bsky.app/profile/jakemgrumbach.bsky.social/post/3mgdis6q3oc2o
2•colinprince•7m ago•0 comments

The Uncomfortable

https://www.theuncomfortable.com/
1•bookofjoe•10m ago•0 comments

Show HN: Every AI tool claims to be revolutionary. We built a place to test it

https://glad-ia-tor.com/
2•Enjoyooor•10m ago•0 comments

Four crew members killed after US refuelling plane crashes in Iraq

https://www.bbc.com/news/articles/cy0dz5ql17vo
6•tartoran•10m ago•0 comments

Sharing encrypted files in a single HTML file

https://blog.alcazarsec.com/posts/portable-secret-use-cases
1•alcazar•11m ago•0 comments

AI Software Tells Cops to Arrest the Wrong Guy

https://thecivilrightslawyer.com/2026/03/11/ai-software-tells-cops-to-arrest-the-wrong-guy/
2•FinnKuhn•12m ago•1 comments

A Brief History of Software Engineering (Wirth: 2008) [pdf]

https://people.inf.ethz.ch/wirth/Miscellaneous/IEEE-Annals.pdf
1•recursivedoubts•14m ago•0 comments

'Comatose' Mojtaba Khamenei 'is unaware he is supreme leader'

https://www.dailymail.co.uk/news/article-15642237/Mojtaba-Khamenei-UNAWARE-war-coma.html
1•Bender•14m ago•1 comments

Immersive Navigation is Google Maps' biggest upgrade in a decade

https://www.androidpolice.com/google-maps-immersive-navigation-ask-maps-chat-rollout/
2•golfer•14m ago•0 comments

Meta to Deploy Four New In-House Chips to Handle AI

https://www.bloomberg.com/news/articles/2026-03-11/meta-preparing-to-deploy-four-new-homegrown-ch...
1•gmays•16m ago•0 comments

California Considers Grizzly Reintroduction Plan That Could Use Wyoming Bears

https://cowboystatedaily.com/2026/03/12/california-considers-grizzly-reintroduction-plan-that-cou...
1•Bender•17m ago•0 comments

Pentagon needs more missile interceptors; Artemis II clears review

https://arstechnica.com/space/2026/03/rocket-report-pentagon-needs-more-missile-interceptors-arte...
1•Bender•18m ago•0 comments

Show HN: HealUp – Task execution app that hides your todo list on purpose

https://www.healup.me
1•neshwa35•18m ago•0 comments

Software Bonkers

https://craigmod.com/essays/software_bonkers/
1•Tomte•18m ago•0 comments

Puppet Agent OS Support EOL: 90 Day Notice

https://groups.google.com/g/puppet-announce/c/7awnfHR0ZEg?pli=1
1•mooreds•18m ago•0 comments

Parallels Confirms MacBook Neo Can Run Windows in a Virtual Machine

https://www.macrumors.com/2026/03/13/macbook-neo-runs-windows-11-vm/
2•tosh•18m ago•0 comments

Show HN: Argus – AI agent that investigates infra anomalies and proposes fixes

https://github.com/precious112/Argus
1•PreciousH•18m ago•1 comments
Open in hackernews

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

https://github.com/CharlyCst/miralis
4•charlycst•10mo 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