frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

WayVR – Open-source VR desktop overlay for Linux

https://digitalescapetools.com/tools/wayvr.html
1•xabd•1m ago•0 comments

Show HN: Moto – a native habit tracker for iPhone with a lifetime purchase

https://motohabit.com/
1•voising•1m ago•0 comments

Show HN: ReWeaver AI DriftDetector – score a GitHub repo's production readiness

https://drift.reweaver.ai/
1•gojongo•2m ago•0 comments

PEP 845 – Leading-Dot Value Patterns

https://peps.python.org/pep-0845/
1•orf•5m ago•0 comments

Hyprcrd – native Wayland host for Chrome remote desktop

https://github.com/jxoesneon/hyprcrd
1•jxoesneon•8m ago•0 comments

IdP Registration API

https://github.com/w3c-fedid/idp-registration/
1•erlend_sh•12m ago•0 comments

Shut up and calculate: Jev's new AI primitives for coders

https://www.theregister.com/devops/2026/09/23/shut-up-and-calculate-jevs-new-ai-primitives-for-co...
1•beardyw•14m ago•0 comments

Show HN: Gwae – infinite-scroll terminal multiplexer for AI agent fleets

https://github.com/hongnoul/gwae
1•hongnoul•14m ago•0 comments

Show HN: Structured Promptmaker

https://www.gptpromptmaker.com/
2•sanathbhat•19m ago•0 comments

Porting a clearing-house money market to a smart contract

1•citizensinan•23m ago•0 comments

Arcentry is back – create beautiful 3D infrastructure diagrams

https://arcentry.com/?src=hn
2•wolframhempel•23m ago•0 comments

Listening to loud music on a Singapore bus? It'll cost you

https://www.cnn.com/2026/09/22/travel/singapore-bus-rules-music-intl-hnk
2•edward•24m ago•0 comments

"Father of The Elder Scrolls" Julian LeFay has passed away (2025)

https://www.gamesradar.com/games/the-elder-scrolls/father-of-the-elder-scrolls-julian-lefay-has-p...
2•anotherhue•24m ago•0 comments

I am done with this shit

https://www.reddit.com/r/ClaudeAI/comments/1wm5c21/i_am_done_with_this_shit/
2•meander_water•24m ago•0 comments

Tradeoff considerations while running LLM models locally

https://swapniltalekar.substack.com/p/should-you-be-running-llm-models
1•swapnilt•27m ago•0 comments

Scott Jenson: Are we going to use the same Desktop UX forever? [video]

https://www.youtube.com/watch?v=V7AfAcQwLW0
1•KitN•29m ago•0 comments

Secretive gambling industry exposed in leak

https://www.ftm.eu/articles/curacao-secretive-gambling-industry-exposed-in-leak
2•fh973•29m ago•0 comments

AurionMail: E2EE suite (CryptPad and Stalwart) with single-password UX

https://aurionmail.github.io/docs/
2•polo46•34m ago•0 comments

Ask HN: How do you cope with AI being used to target and bomb children?

2•trumbitta2•36m ago•3 comments

Claude Opus 5.5, GPT-6 Sol, GPT-6 Luna, and a new price war

https://simonwillison.net/2026/Sep/22/opus-and-sol-and-luna/
1•theanonymousone•37m ago•0 comments

Show HN: Semantic Search for Zotero Local

https://github.com/ilDon/zotero-semantic-search
1•ildon•38m ago•0 comments

Show HN: Listen to your eBook and control the playback sentence by sentence

https://documentplayer.com/
1•janpmz•39m ago•0 comments

GPT-6 Sol and Luna push the cost efficiency frontier by halving token cost

https://artificialanalysis.ai/articles/gpt-6-sol-and-luna-push-the-cost-efficiency-frontier
1•theanonymousone•41m ago•0 comments

Observe – local semantic code search that admits when grep beats it

https://github.com/tritsystem/012-trit-search
1•gbranaa4•47m ago•0 comments

NobodyWho is an inference engine that lets you run LLMs locally and efficiently

https://github.com/nobodywho-ooo/nobodywho
1•Bluestein•51m ago•0 comments

Show HN: I built a site for my 42 km walk across 30 Tokyo stations

https://yamathon.tonymanh.space
1•tonymanh•52m ago•0 comments

Taming the ML Firehose: Scaling Feature Consistency

https://www.uber.com/us/en/blog/taming-ml-firehose/
1•iamsyr•52m ago•0 comments

Tearing Down a Spring Drive

https://www.thenakedwatchmaker.com/decon-seiko-snowflake
1•stefanv•54m ago•0 comments

New AI technique could make minimally invasive surgeries safer and more precise

https://news.mit.edu/2026/new-ai-technique-could-make-minimally-invasive-surgeries-safer-more-pre...
2•ycombinatronics•56m ago•1 comments

Rebranding artificial intelligence as super intelligence

https://www.bbc.com/news/videos/c8n5d9x10v14o
3•tin7in•56m ago•1 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