frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gemini Spark

https://gemini.google/overview/agent/spark/
1•czeizel•26s ago•1 comments

A Structured Generation Framework for Transforming Scientific Papers into Patent

https://arxiv.org/abs/2601.02589
1•teleforce•33s ago•0 comments

Rage Against the Dying of Critical Thinking

https://mmaksimovic.dev/rage-against-the-dying-of-critical-thinking
1•Liriel•45s ago•0 comments

PatentScore: Multi-Dimensional Evaluation of LLM-Generated Patent Claims

https://aclanthology.org/2025.emnlp-main.1564/
1•teleforce•2m ago•0 comments

Notion killing Skiff-influenced email app since most users use AI agents instead

https://arstechnica.com/gadgets/2026/06/notion-killing-skiff-influenced-email-app-since-most-user...
1•joozio•3m ago•0 comments

Worldwide X (Twitter) Trends for last 24 hours

https://trends24.in/
3•aurenvale•8m ago•0 comments

List of all UK universities currently having redundancies/restructuring

https://qmucu.org/qmul-transformation/uk-he-shrinking/
1•theanonymousone•11m ago•0 comments

The food science behind designing an ice cream

https://altermag.com/articles/designing-a-summer-ice-cream-for-india
1•trojanalert•13m ago•0 comments

Position: Stop Anthropomorphizing Intermediate Tokens as Reasoning/Thinking Trac

https://arxiv.org/abs/2504.09762
1•xiaoyu2006•19m ago•0 comments

My BASB Implementation in Org Mode

https://ftwynn.com/posts/my-basb-implementation-in-org-mode-v2023-06/
1•ankitg12•20m ago•0 comments

The largest scorpion lived 415M years ago

https://www.sciencenews.org/article/largest-scorpion-lived-415-million-years-ago
4•celadonceladon•20m ago•0 comments

Fintech Engineering Handbook

https://w.pitula.me/fintech-engineering-handbook/
1•krever•21m ago•0 comments

Ask HN: Why does every AI demo sound perfect but real world deployment always

1•VaderAi•21m ago•0 comments

A graph-based IDE for understanding and working with large codebases

https://vnoc.vercel.app/project/claudecode
2•yared_seed•23m ago•0 comments

I made a Claude Code skill to check if AI crawlers can read your site

https://github.com/MerqryLabs/ai-crawler-visibility
2•novaesystems•23m ago•0 comments

Fivy – AI review management for small businesses (Google reviews)

https://www.fivy.com.au
1•mesqfel•24m ago•0 comments

MCP Authorization with Dynamic Client Registration

https://blog.christianposta.com/understanding-mcp-authorization-with-dynamic-client-registration/
1•ankitg12•24m ago•0 comments

Ask HN: How are you solving long-term memory for production AI agents in 2026?

1•xSingh16•24m ago•1 comments

When a Gift Becomes a Pain

https://medium.com/whatsnextwray/when-a-gift-becomes-a-pain-0a854c47589e
1•raynchad•25m ago•1 comments

We Rewrote WAL-G for Postgres Backups in Rust: Meet WAL-RUS

https://clickhouse.com/blog/walrus-postgres-backups-in-rust
1•thunderbong•26m ago•0 comments

Mapping London – All Sorts of Interesting Maps of London

https://mappinglondon.co.uk
1•akashwadhwani35•28m ago•1 comments

Open Source Low Tech

https://opensourcelowtech.org/
1•grep_it•31m ago•0 comments

Bumble dating app explores sale

https://www.reuters.com/business/bumble-dating-app-explores-sale-sources-say-2026-06-25/
1•JimsonYang•31m ago•0 comments

Fossil fuel emissions have rapidly worsened European heatwaves in a few decades

https://www.worldweatherattribution.org/fossil-fuel-emissions-have-rapidly-worsened-european-heat...
1•tcumulus•32m ago•0 comments

The many journeys of learning Rust

https://blog.rust-lang.org/2026/06/25/vision-doc-journeys-to-learning-rust/
1•TangerineDream•33m ago•0 comments

Relationship-driven vs. process-driven organisations

https://www.leadinginproduct.com/p/relationship-driven-vs-process-driven
1•benkan•33m ago•0 comments

Spain will require carriers to keep mobile networks live during power outages

https://www.engadget.com/2201931/spain-will-require-carriers-to-keep-mobile-networks-live-during-...
1•benkan•34m ago•0 comments

Polestar Banned from Selling Cars in the U.S. Starting with Model Year 2027

https://www.autoevolution.com/news/polestar-banned-from-selling-cars-in-the-us-starting-with-mode...
1•benkan•35m ago•0 comments

Local and GitHub Code Review TUI

https://tuicr.dev/
1•angelmm•36m ago•0 comments

Software SIM Card

https://github.com/tomasz-lisowski/swsim
3•ilreb•37m 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