frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Transparent Compression with Folder Actions in macOS

https://blog.gingerbeardman.com/2026/07/01/transparent-compression-with-folder-actions-in-macos/
1•tobr•26s ago•0 comments

Garbage in the Loop

https://www.moderndescartes.com/essays/garbage_loop/
1•evakhoury•50s ago•0 comments

ESO: SpaceX plans to launch 1M satellites for space-based data centres

https://mastodon.social/@esoastronomy/116844620404236120
1•ColinWright•59s ago•0 comments

Doma.in Na.me Ha.ck Cl.ub

https://namehack.club/
1•infinitewalk•1m ago•0 comments

Phantom Type

https://wiki.haskell.org/index.php?title=Phantom_type
1•ahsillyme•1m ago•0 comments

Show HN: Beep explicit language in podcasts so you can listen with kids

https://beepcasts.com/
1•zachthewf•2m ago•0 comments

PowerFuzz: Power-Based Black-Box Firmware Fuzzing

https://arxiv.org/abs/2606.24692
1•Jimmc414•3m ago•0 comments

GPUBreach: Privilege Escalation Attacks on GPUs Using Rowhammer

https://arxiv.org/abs/2605.03812
1•Jimmc414•4m ago•0 comments

Transportation Secretary Announces Supersonic Flight Is Coming to the U.S.

https://www.faa.gov/newsroom/trumps-transportation-secretary-sean-p-duffy-announces-supersonic-fl...
2•pseudolus•6m ago•0 comments

Show HN: A reproducible React data grid benchmark with raw browser samples

https://vitashev.github.io/react-data-grid-benchmark/
1•vitashev•7m ago•0 comments

I read 80 articles in June, these were my favorites

https://readpondercom.substack.com/p/i-read-80-articles-in-june-these
1•wingdiction•7m ago•0 comments

Amalia – an open-source language model targeting European Portuguese

https://huggingface.co/amalia-llm
1•mt_•8m ago•2 comments

The Founding Father Who Sought a Last-Minute Deal to Avert the Revolution

https://www.nytimes.com/2026/06/30/us/250-american-revolution-john-dickinson.html
1•bookofjoe•9m ago•1 comments

Ask HN: Will AI LLMs for coding get smarter and cheaper in the future?

2•roschdal•10m ago•1 comments

What's the Point of Sex, Anyway?

https://www.newyorker.com/magazine/2026/06/29/on-the-origin-of-sex-book-review-lixing-sun
1•mitchbob•10m ago•1 comments

Valve Explains Why It Doesn't Subsidize Its Hardware Platforms

https://daringfireball.net/linked/2026/07/01/valve-on-subsidizing-hardware
2•Tomte•10m ago•0 comments

A new clock measures the chance of satellite collisions

https://theconversation.com/a-new-crash-clock-measures-the-chance-of-satellite-collisions-and-its...
1•mathgenius•10m ago•0 comments

Show HN: In-place OCR + Translate for Internet Archive books

https://chromewebstore.google.com/detail/bookxlate-archiveorg-book/mfefkdeojibnbabedjonpgmbgbfplbhe
1•viking2917•10m ago•0 comments

OpenFoundry 2.0

https://m.open-foundry.com/w/UOdYBuUAEN4pxsHpN4b5ng/RZpKCWI21Q0Nf2HXPYFqhw/dVopakEBt0HsOjcigQ8b2w
2•starkparker•12m ago•0 comments

Show HN: a Rust OS kernel built for LLM inference

https://github.com/Kanchisaw03/axiom
2•Kanchisaw•12m ago•0 comments

Appearently MV2/uBO extentions still works on Chrome 150

https://old.reddit.com/r/uBlockOrigin/comments/1ukq0hf/ubo_can_work_on_chrome_150_if_you_already_...
1•elfatnorthpole•14m ago•0 comments

Droid Shield 2.0: learned secret detection

https://factory.ai/news/droid-shield-2-0
2•kstrauser•14m ago•1 comments

Norman Rockwell Paintings of the West Wing in the White House on Public View

https://www.smithsonianmag.com/smart-news/norman-rockwell-captured-the-hustle-of-the-west-wing-in...
1•thunderbong•15m ago•0 comments

Indian Address Parser – Qwen3-0.6B LoRA

https://huggingface.co/gagan1985/qwen3-0.6b-indian-address-parser
1•gagan2020•16m ago•1 comments

The Hidden Harms of CPR (2023)

https://www.newyorker.com/news/the-weekend-essay/the-hidden-harms-of-cpr
1•mitchbob•17m ago•1 comments

Show HN: Rewindr – Local shell inside failed GitHub Actions snapshots

https://github.com/dr-alberto/rewindr
3•__alberto•17m ago•0 comments

Consortium including Visa, Mastercard jointly launch new global stablecoin

https://www.reuters.com/business/consortium-including-visa-mastercard-jointly-launch-new-global-s...
2•FergusArgyll•18m ago•0 comments

Sanpo Yoshi: the Japanese business principle of success through responsibility

https://medium.com/social-innovation-japan/sanpo-yoshi-japans-responsible-business-philosophy-15d...
1•akyuu•19m ago•0 comments

Artful Cats: Feline-Inspired Art and Artifacts

https://www.si.edu/spotlight/art-cats
1•jruohonen•19m ago•0 comments

Boffins peg narcissistic leadership as the real driver behind 'return to office'

https://www.theregister.com/columnists/2026/07/01/boffins-peg-narcissistic-leadership-as-the-real...
1•CrankyBear•19m 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