frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

WhatsApp Usernames Are Raising Impersonation Red Flags

https://techcrunch.com/2026/07/01/whatsapp-usernames-are-already-raising-impersonation-red-flags/
1•karakoram•38s ago•0 comments

Cona – Recreate your room in 3D and redesign it with shoppable furniture

https://cona.design
1•Losenok•58s ago•0 comments

60k Radio Streams DB

https://www.radio-browser.info
1•kesor•1m ago•0 comments

SuperDoc – Modern Docx Editor and Agent SDK

https://github.com/superdoc-dev/superdoc
1•hisamafahri•4m ago•0 comments

Tips for scaling AI from founders to organization leaders

https://davenporter.substack.com/p/ai-sdlc-scaling-framework
1•davenportjw•8m ago•0 comments

DocETL: Declarative and Agentic Map-Reduce

https://github.com/ucbepic/docetl
1•handfuloflight•11m ago•0 comments

US home battery installations hit record high on rising electricity costs

https://arstechnica.com/science/2026/07/us-home-battery-installations-hit-record-high-in-early-2026/
1•pseudolus•11m ago•0 comments

Clicks Communicator: A Physical-Keyboard Phone

https://clicks.tech/communicator
1•karakoram•11m ago•1 comments

That Sounds Like AI: The Last Refuge of the Intellectually Insolvent

https://medium.com/@ryanlocklear2025/that-sounds-like-ai-the-last-refuge-of-the-intellectually-in...
1•themondayafter•12m ago•0 comments

More AI – Open-source model-agnostic AI desktop

https://github.com/DougTrier/MoreAI
1•DougTrier•14m ago•1 comments

Float Runs an AI Energy Company on a 3-Person Team with Tiger Data

https://www.tigerdata.com/blog/how-float-runs-ai-energy-company-3-person-team-tiger-data
1•nreece•14m ago•0 comments

We put a Redis server inside our runtime

https://encore.dev/blog/redis-runtime
1•nreece•15m ago•0 comments

Accelerating Gemini Nano Models on Pixel with Frozen Multi-Token Prediction

https://research.google/blog/accelerating-gemini-nano-models-on-pixel-with-frozen-multi-token-pre...
2•CharlesW•17m ago•0 comments

Fable 5 update: Still willing to cybercrime

https://alec.is/posts/fable-5-update-still-willing-to-cybercrime/
2•arm32•21m ago•0 comments

Why Meta's Move to the Cloud Is a Big Deal–and Bad News for CoreWeave and Nebius

https://www.barrons.com/articles/meta-stock-ai-cloud-coreweave-nebius-1e35955b
1•CharlesW•22m ago•0 comments

AI and Operators

https://vektorgeist.com/market
1•Floukie•22m ago•0 comments

Show HN: A local AI-powered Bloomberg terminal for German meme stocks

https://github.com/bsommerfeld/wsbg-terminal
1•bsommerfeld•22m ago•0 comments

Snakes in the Ball Pit (2000)

https://www.snopes.com/fact-check/culprit-in-the-ball-pit/
1•pipeline_peak•23m ago•0 comments

Artificial Adventures

https://www.scattered-thoughts.net/writing/artificial-adventures/
1•jamii•23m ago•0 comments

ShareChat, India's Meta Rival, Plans $400M IPO Next Year

https://www.bloomberg.com/news/articles/2026-07-02/sharechat-india-s-meta-rival-plans-400-million...
3•petethomas•29m ago•1 comments

Show HN: Open-source Deterministic Guardrails Against AI Duplicated Code

https://github.com/Rafaelpta/dupehound
1•rafaepta•33m ago•0 comments

Man uses a Game Boy to photograph Jupiter

https://www.popsci.com/science/game-boy-camera-jupiter/
3•MattSayar•34m ago•1 comments

The Threat of Residential Proxies

https://www.feistyduck.com/newsletter/issue_138_the_threat_of_residential_proxies
1•birdculture•34m ago•0 comments

Steam Machine in the hands of a console sicko

https://ravi64.com/steam-machine-console-sicko/
3•merlioncity•34m ago•1 comments

The AI industrial revolution: why US faces a historic tech reckoning from China

https://www.scmp.com/tech/article/3358925/great-ai-reckoning-how-china-flipping-script-us-new-ind...
1•outrunner•36m ago•0 comments

Kling AI nears US$3B round at US$18B valuation: sources

https://www.scmp.com/tech/big-tech/article/3359059/chinas-kling-ai-nears-us3-billion-round-us18-b...
3•merlioncity•37m ago•0 comments

LibreCAD in the Browser

https://magik.net/librecad/
2•devttyeu•37m ago•0 comments

Palantir CEO Alex Karp says 'something has gone wrong' with how AI is sold

https://www.youtube.com/watch?v=0A3sGymV6kY
3•king_zee•37m ago•2 comments

T-Mobile moving tens of thousands of virtual machines off VMware amid lawsuit

https://arstechnica.com/information-technology/2026/07/t-mobile-moving-tens-of-thousands-of-virtu...
6•naturalmovement•41m ago•0 comments

Building an Open-Source Robot Vacuum – Meet Oomwoo

https://makerspet.com/blog/building-an-open-source-robot-vacuum-meet-oomwoo/
17•devicelimit•49m 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