frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

God Save the Red Queen Competition in Co-Evolutionary Robotics (1997)

https://infoscience.epfl.ch/entities/publication/a65d0679-6855-4be6-adf4-6c8288092357
1•andsoitis•3m ago•0 comments

Webcat: A tamper-evident seal for the open web

https://freedom.press/tech/news/webcat-a-tamper-evident-seal-for-the-open-web/
1•instagraham•7m ago•0 comments

Job search tracker with real response-rate analytics

https://trackmyjob.app/
1•adamhutson•14m ago•0 comments

We turned off Pub/Sub and nobody noticed

https://incident.io/blog/we-turned-off-pub-sub-and-nobody-noticed
1•JustSkyfall•25m ago•0 comments

Ask HN: How do you keep track of all your codex/Claude sessions?

1•lasky•25m ago•0 comments

If Meta loses this trial, Instagram and Facebook could change forever

https://www.bbc.com/news/articles/clyqpx6xk69o
3•tartoran•27m ago•0 comments

List of words banned by the USA government

https://pen.org/banned-words-list/?unique
2•inigyou•39m ago•0 comments

Niu Lai (The Ox Comes): Bad Chinese Animated Movie Becomes Viral Box Office Hit

https://economictimes.indiatimes.com/news/international/global-trends/niu-lai-aka-the-ox-comes-th...
1•yanhangyhy•40m ago•1 comments

Sana.cpp – Nvidia's Sana T2I model in C++, 4.8x faster than PyTorch

https://github.com/cconthekeyboard/sana.cpp
2•cconthekeyboard•47m ago•0 comments

Octopuses could help us conceptualize a different form of intelligence

https://www.cbc.ca/lite/story/1.6871036
2•colinprince•49m ago•0 comments

Amodei Re. Regulation

https://twitter.com/DarioAmodei/status/2088758816376807762
2•jacquesm•55m ago•1 comments

Python's http.server – Add support for HTTP Range header in HTTPServer

https://github.com/python/cpython/pull/118949
2•gregsadetsky•57m ago•0 comments

Show HN: An open-source workspace for your agents

https://github.com/gigeey/launchpad-studio
1•SEArongo•58m ago•1 comments

A gas-enshrouded and gas-reddened black hole at cosmic dawn

https://www.nature.com/articles/s41586-026-10846-4
2•diwank•59m ago•0 comments

DeepSeek V4 Pro at 207 tok/s with the full 1M context, no quantization

https://runinfra.ai/inference-api/deepseek-v4-pro
3•OsamaJaber•1h ago•0 comments

Cross-Sectional Stock Selection: Where Returns Come from and Why Models Fail

https://wangqiao.me/posts/cross-sectional-stock-selection-models/
1•unliftedq•1h ago•0 comments

An app to streamline data analytics – and do it cheaply

https://app.verbagpt.com/
1•symuz•1h ago•0 comments

AGI-64 Brings Sierra Adventures to the Commodore 64

https://meanhamster.com/news/agi-64-brings-sierra-adventures-to-the-commodore-64
11•erickhill•1h ago•0 comments

Why Young Men Are Abandoning the Workforce

https://www.wsj.com/opinion/free-expression/young-men-are-abandoning-the-workforce-a021228a
3•bilsbie•1h ago•6 comments

BlockArena: AI-Generated FPS Game

https://blockarena.puter.com/
1•ent101•1h ago•0 comments

AI Agent Safety Is Still Thinking Like Permissions

https://jeffreyflynt02.medium.com/ai-agent-safety-is-still-thinking-like-permissions-45878337bd98
5•jflynt76•1h ago•0 comments

Why I vibecoded my own terminal multiplexer

https://www.codedsleep.com/posts/wv-multiplexer
1•codedsleep•1h ago•0 comments

Show HN: Adding friction to my automatic open Claude reaction

3•aqureshi8•1h ago•0 comments

Hacking Legends

https://opensourcelegends.com/hacking-legends
1•buffer_overlord•1h ago•0 comments

Rare things become common at scale (2014)

https://longform.asmartbear.com/scale-rare/
2•mooreds•1h ago•0 comments

Protecting water systems from cyberattacks: 5 steps cities can take now

https://www.smartcitiesdive.com/news/protecting-water-systems-cyberattacks-5-steps-cities/827560/
3•mooreds•1h ago•0 comments

Forecasting Andean rainfall and crop yield from influence of El Niño on Pleiades

https://www.nature.com/articles/47456
1•mooreds•1h ago•0 comments

Why Chinese Citizens Are More Optimistic About AI Than Americans

https://www.bloomberg.com/news/articles/2026-08-14/why-ai-optimism-is-so-much-higher-in-china-tha...
2•pella•1h ago•0 comments

PPS Watch – The Most Accurate Watch That Doesn't Tell Time

https://www.instructables.com/PPS-Watch-the-Most-Accurate-Watch-That-Doesnt-Tell/
1•sudo_cowsay•1h ago•0 comments

Code Is the Byproduct

https://yagmin.com/blog/code-is-the-byproduct/
2•lubujackson•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