frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Oxlint plugin to auto-fix non-canonical Tailwind classes

https://github.com/maharshi365/oxlint-plugin-tailwind-canonical
1•maharship2022•1m ago•0 comments

Anthropic is lying: Moonshot is not routing to Claude

https://twitter.com/trydotworks/status/2098300730805284961
1•try-working•3m ago•0 comments

Proposal: Cmd/cgo: cgo without a C toolchain

https://github.com/golang/go/issues/81450
1•mappu•5m ago•0 comments

Predicting AI Job Exposure

https://www.ben-evans.com/benedictevans/2026/5/24/ai-job-exposure
1•saikatsg•6m ago•0 comments

Read Independent Fiction

https://eveningnotes.bearblog.dev/read-independent-serialized-fiction-and-short-fiction-web-novel...
1•saikatsg•7m ago•0 comments

The Omarchy Doctrine

https://omarchy.org/doctrine/
1•Tomte•10m ago•0 comments

For most of history, people's conversations, thoughts, and finances were private

https://grapheneos.social/@GrapheneOS/117249893761790371
1•Cider9986•12m ago•0 comments

Cursor Projects

https://cursor.com/blog/projects
3•deadalus•12m ago•0 comments

Show HN: Automatically keep track of all features implemented in a project

https://github.com/netizer/feature-ledger
1•krzysiek•12m ago•0 comments

Roads – the UKs favourite roads website

https://www.roads.org.uk/
2•ColinEberhardt•18m ago•0 comments

Only 31% of startup accelerators publish what cheque they write

https://accelerator.directory/methodology
2•buidlr•19m ago•0 comments

Astra for Coding: Why Are We Doing This Again?

https://lucumr.pocoo.org/2026/9/7/astra-why/
31•manojbajaj95•22m ago•7 comments

Vinetaro Drops

https://www.facebook.com/VinetaroDropsTry/
1•taxygamu•23m ago•0 comments

Anthropic blocks 'malicious use' of AI that could develop biological weapons

https://www.bbc.com/news/articles/cx2zrrpkx20o
2•mgh2•26m ago•0 comments

Course Review: TrainSec Malware Analyst Professional – Level 1

https://medium.com/@1200km/course-review-trainsec-malware-analyst-professional-level-1-203ca89b76a2
1•1200km•31m ago•0 comments

Large Language Models Reflect the Ideology of Their Creators

https://arxiv.org/abs/2410.18417
2•zvr•31m ago•0 comments

Gonc – Netcat with P2P Nat Traversal

https://github.com/threatexpert/gonc
3•gonc_cc•33m ago•0 comments

In Praise of Non-Alphanumeric Identifiers (2008)

https://prog21.dadgum.com/20.html
1•anoushiravan•34m ago•0 comments

Gaza documentary Naza receives record 25-minutes ovation at Venice Film Festival

https://www.thenationalnews.com/arts-culture/film-tv/2026/09/11/gaza-documentary-naza-receives-re...
3•teleforce•34m ago•0 comments

Microsoft Brings "Age Verification" System to Windows

https://reclaimthenet.org/microsofts-brings-verification-system-to-windows
4•PPBear•35m ago•0 comments

Cross-App TCP Hijacking and DNS Cache Poisoning via Malicious Local App

https://arxiv.org/abs/2609.09345
2•sbulaev•38m ago•0 comments

Show HN: SideNote Pro – Native Windows 11 AI beside your work

https://sidenotepro.com
1•fortisnode•38m ago•0 comments

9/11 footage is reaching new audiences – and fueling old conspiracy theories

https://www.cnn.com/2026/09/10/media/911-footage-social-media-conspiracy-theories
2•1659447091•41m ago•0 comments

The 9/11 Cars That Never Made It Home [video]

https://www.youtube.com/watch?v=COVCuPtNDO4
1•fortran77•42m ago•0 comments

STS-51-F Abort-to-Orbit (1985)

https://en.wikipedia.org/wiki/STS-51-F
2•schoen•42m ago•1 comments

ARM's 2026 'Tech' Day Is a Self-Inflicted Wound

https://www.semiaccurate.com/2026/09/07/arms-2026-tech-day-is-a-self-inflicted-wound/
2•fork-bomber•44m ago•0 comments

Show HN: I pointed 11 cold AI agents at my own product. 3 finished

https://pact0.com/notes/agents-vs-our-own-product
3•benban•45m ago•0 comments

The Mailman Kept Crossing Out My Address

https://idiallo.com/blog/sharing-a-name
1•firefoxd•47m ago•0 comments

The Scientific Challenge Atlas

https://micde.umich.edu/scientific-challenge-atlas/
2•JohnHammersley•50m ago•0 comments

Personal statement on joining the OpenAI board

https://paulfchristiano.substack.com/p/personal-statement-on-joining-the
2•doener•50m 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