frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Zep.js: tiny event pipeline with auto-cleanup, debounce and AbortSignal

https://github.com/marsbos/zep
1•markolb•3m ago•1 comments

Agent Needs an Unknown State

https://www.drjoshcsimmons.com/writing/your-agent-needs-an-unknown-state
1•joshcsimmons•3m ago•0 comments

Security: PolinRider malware detected in two open PRs (#7716, #10321)

https://github.com/shadcn-ui/ui/issues/11971
1•fr0th•5m ago•0 comments

Digital euro makes debut in wholesale financial markets

https://www.ft.com/content/9f57e612-1068-43ab-889a-febad1602c4a
3•thm•8m ago•0 comments

Weather2 – new SQL datasets and multilingual dashboard

1•yahikoyama•9m ago•0 comments

How to Smash the Memory Wall Plaguing High Performance Systems

https://www.nextplatform.com/store/2026/09/16/how-to-smash-the-memory-wall-plaguing-high-performa...
1•rbanffy•11m ago•0 comments

Thomson Reuters: Thomson-1.0-Small

https://huggingface.co/thomsonreuters/Thomson-1.0-Small
3•tosh•11m ago•0 comments

Show HN: Deskies – ambient presence for friends across companies

https://deskies.vercel.app/
1•bchhabra2490•11m ago•0 comments

AI Poster Prompts Improved

https://john.hartnup.uk/2026/09/20/poster-prompts-v2.html
1•ereiamjh•14m ago•2 comments

Frontier Overhangs

https://stratechery.com/2026/frontier-overhangs/
1•swolpers•15m ago•0 comments

New air traffic control failure delays flights at UK airports

https://www.reuters.com/world/uk/delays-uks-manchester-airport-over-air-traffic-control-failure-t...
2•rstreefland•20m ago•0 comments

You have more influence over the future than you think

https://sharif.io/better-future
1•Samin100•20m ago•0 comments

Quantum Gravity, UAPs, Wormholes

https://twitter.com/JackSarfatti/status/2101775865789223054
1•DanielBMarkham•21m ago•0 comments

Linker I/O tricks and their downsides

https://maskray.me/blog/linker-io-tricks-and-their-downsides
1•r4um•22m ago•0 comments

Engineering Memory: Thoughts on learning to memorize first 100 digits of pi

https://gregorygundersen.com/blog/2024/12/21/engineering-memory/
3•fuzzythinker•23m ago•0 comments

Finding Bugs

https://matklad.github.io/2026/09/19/finding-bugs.html
1•r4um•25m ago•0 comments

Show HN: Race – Terminal Multiplexer on Infinite Canvas (macOS and Linux Beta)

https://race-term.com/
2•xlii•27m ago•0 comments

Show HN: A GUI for non programmers for Epic's version control system Lore

https://www.anchorpoint.app/lore
1•m_niedoba•29m ago•0 comments

Intel Ends Its $100k Bug Bounty Program

https://www.techpowerup.com/352872/intel-ends-its-usd-100-000-bug-bounty-program
3•giuliomagnifico•34m ago•0 comments

Show HN: A solar-powered, privacy-preserving vehicle counter (Pi 5 and YOLOv8)

https://www.mch170.com/projects/traffic_monitoring
1•MCH170•36m ago•0 comments

The PopuList

https://popu-list.org/
2•futurecat•43m ago•0 comments

Dialedin – Put your lab PDFs, protocols and daily logs on one timeline

https://dialedin.bio
1•redigaffi•48m ago•0 comments

Trump Ramps Up Bid to Dismantle International Criminal Court

https://www.wsj.com/politics/policy/trump-administration-prepares-to-sanction-the-international-c...
7•TechTechTech•50m ago•1 comments

Notorious cybercrime group claims hijack of rival's website

https://www.reuters.com/legal/government/cybercrime-feud-erupts-dark-web-notorious-group-claims-h...
1•HelloUsername•51m ago•0 comments

Rust+Box2D Browser Physics Sandbox with Multiplayer

https://v-yanakiev.itch.io/machina
1•v-yanakiev•51m ago•1 comments

Nvidia boss says there is '0% chance' AI destroys the world by 2030

https://www.theguardian.com/technology/2026/sep/21/nvidia-boss-jensen-huang-dismisses-warnings-ai...
4•01-_-•58m ago•3 comments

Kaohsiung adds new hub to semiconductor corridor

https://www.taiwannews.com.tw/news/6443294
1•01-_-•59m ago•1 comments

Show HN: CallFirst – blocks socials until you've made a call to someone

https://callfirst.app/
2•fribble•1h ago•0 comments

iFixit Teardown: iPhone 18 Pro and Pro Max

https://www.ifixit.com/News/119329/inside-the-tiny-unfixable-eye-iphone-18-pro-and-pro-max-teardown
4•tosh•1h ago•1 comments

Jev 1.13 Jaggedness

https://docs.typesafe.ai/model-jaggedness/jev-1.13
3•Bluestein•1h 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