frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Reclaim – Resume tailoring that flags adjacent skills instead of keywordstuffing

https://www.reclaim.careers/
1•Adoomah•33s ago•0 comments

Take More Screenshots (2022)

https://alexwlchan.net/2022/screenshots/
1•downbad_•3m ago•0 comments

Google News is just Forrest Gump's shrimp boat now

https://elgan.com/google-news-is-just-forrest-gumps-shrimp-boat-now
1•mikelgan•4m ago•2 comments

Which web browser has no AI?

2•lilerjee•4m ago•1 comments

EU accuses Temu of hindering raid in Ireland

https://www.rte.ie/news/business/2026/0731/1585977-temu-dublin/
2•austinallegro•9m ago•0 comments

The Index – a hand-checked catalog of AI tools

https://theindex.agnissanisaac.com/
1•Code_A-Z•10m ago•0 comments

AI #179 Part 2: Hearing the Fire Alarm

https://thezvi.substack.com/p/ai-179-part-2-hearing-the-fire-alarm
1•paulpauper•11m ago•0 comments

Moiré Pattern

https://en.wikipedia.org/wiki/Moir%C3%A9_pattern
1•petethomas•15m ago•0 comments

Jacques Vallée Spent 70 Years Investigating UFOs. Mystery Is Bigger Than Aliens

https://rmmclaren.substack.com/p/jacques-vallee-spent-70-years-investigating
2•handfuloflight•16m ago•0 comments

Show HN: Unified API for wearable and health data at 1/25th of Terra's price

https://stridee.fit/developer
1•alvaromolina0•17m ago•0 comments

Linux 7.3 to Allow Tuning AMD P-State Dynamic EPP with per CPU Core Granularity

https://www.phoronix.com/news/Linux-7.3-AMD-Per-Core-Dynamic
1•Bender•20m ago•0 comments

Show HN: Posecode inspectable human movement as text

https://www.posecode.org/play
1•brnbrn•22m ago•0 comments

Show HN AI Data Center Alert

https://aidatacenterimpact.com/
1•studsnchayns•25m ago•0 comments

Get ready to flee, Americans in ten countries warned

https://www.dailymail.com/news/article-16021741/flee-Americans-nine-countries-US-embassies-Iran-w...
2•Bender•25m ago•2 comments

Charities remain locked out of CAF Bank online accounts

https://www.theregister.com/security/2026/07/31/charities-remain-locked-out-of-caf-bank-online-ac...
1•Bender•28m ago•0 comments

Kun's Pi Agent Config

https://blog.kunchenguid.com/p/kuns-pi-agent-config
1•handfuloflight•32m ago•0 comments

Fermi Paradox

https://en.wikipedia.org/wiki/Fermi_paradox
1•simonebrunozzi•33m ago•0 comments

I made Squirrel game with Flutter and Flame

https://danvilela.com/squirrel-up
1•dmvvilela•34m ago•0 comments

Show HN: Cockpit for you Claude Code agents in Rust

https://episko.dev/
1•evolabs•34m ago•1 comments

GenAI Added to Google Earth

https://www.theatlantic.com/technology/2026/07/google-earth-ai-images/688145/
3•alwa•34m ago•1 comments

People Are Crossing Oceans for a Fayetteville Roller Coaster

https://www.axios.com/local/atlanta/2026/07/24/arieforce-one-closing-fayetteville-fun-spot-americ...
2•Xcelerate•35m ago•0 comments

Rails patches critical Active Storage flaw with RCE potential

https://www.bleepingcomputer.com/news/security/rails-patches-critical-active-storage-flaw-with-rc...
2•sbulaev•36m ago•0 comments

Tell HN: Amazonbot aggressively scraping my website and ignoring robots.txt

2•pera•39m ago•5 comments

Trump Media's new paid data service goes live, faster access to Trump's posts

https://www.cnbc.com/2026/08/01/trump-medias-new-data-service-gives-faster-access-to-trumps-posts...
3•srameshc•40m ago•1 comments

Static Devirtualization of Tencent VM

https://back.engineering/blog/31/07/2026/
2•not_a9•42m ago•0 comments

The Swiss Spaghetti Harvest

https://hoaxes.org/archive/permalink/the_swiss_spaghetti_harvest
1•EndXA•43m ago•0 comments

Signal Structure of the Starlink Ku-Band Downlink (2023) [pdf]

https://radionavlab.ae.utexas.edu/wp-content/uploads/starlink_structure.pdf
1•peter_d_sherman•44m ago•0 comments

A Tech Founder Wanted to Start a New Country. An Actual Country Got in the Way

https://www.wsj.com/tech/a-tech-founder-wanted-to-start-a-new-country-an-actual-country-got-in-th...
1•impish9208•45m ago•1 comments

Chess Engine Dev Community Openly Hostile to AI Assisted Development

https://github.com/adamtwiss/coda/issues/15
3•chesspeoplercra•46m ago•0 comments

What's Up with the Weird Mouths of These Finch Chicks?

https://www.audubon.org/news/whats-weird-mouths-these-finch-chicks
1•thunderbong•47m 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