frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Discussion on Self-Evolving SaaS Systems

https://www.suggix.com/blog/a-discussion-on-selfevolving-saas-systems
1•mike_watson•2m ago•0 comments

I Stabilized Never Type

https://blog.ihatereality.space/0C-never-type/
2•birdculture•10m ago•0 comments

Show HN: Replay Doctor – Local CLI to find silent prompt cache leaks

https://replay.doctor/
1•danielsaito•10m ago•0 comments

Show HN: SaneHosts – Mac GUI for /etc/hosts with Touch ID before writes

https://sanehosts.com/
1•sanebar•12m ago•0 comments

Assistive Access User Guide for iPhone

https://support.apple.com/en-in/guide/assistive-access-iphone/welcome/ios
1•vismit2000•13m ago•0 comments

Show HN: Imageaicraft] – GPT Image 2 Image Generator and Editor

https://imageaicraft.com
1•zhou594660747•19m ago•0 comments

Making Hundreds of Mugs by Hand

https://www.youtube.com/watch?v=O163JMvWixg
1•brudgers•19m ago•0 comments

Artifactory: In-the-Wild Exploitation of CVE-2026-42016,CVE-2026-42018

https://www.wiz.io/blog/artifactory-under-attack-in-the-wild-exploitation-of-cve-2026-42016-cve-2...
2•ls1911•22m ago•0 comments

OEMpocalypse: Unprivileged Android app to root on Samsung, Xiaomi, others

https://calif.io/research/oempocalypse
2•negura•23m ago•0 comments

Brief Legal [1A] Thoughts on the "AI Safety" Fights to Come

https://prestonbyrne.com/2026/09/13/brief-legal-thoughts-on-the-ai-safety-fights-to-come/
3•blueSky1989•24m ago•1 comments

A.I. Slopware Is Everywhere Now. Nobody Is Using It

https://www.nytimes.com/2026/09/12/opinion/ai-software-coding-apps.html
6•walterbell•26m ago•0 comments

Show HN: Kairo – Fail-closed LLM inference routing from RTX 5090 measurements

https://github.com/peter941221/Kairo
2•peter941221•28m ago•0 comments

Bernie Sanders proposes 20 years in prison for developers pursuing ASI plans

https://www.tomshardware.com/tech-industry/artificial-intelligence/sanders-proposes-20-year-priso...
5•girish_r•28m ago•1 comments

Show HN: PaperFlip – the bird never moves, you fold the paper

https://apps.apple.com/us/app/paperflip/id6807705987
1•hongbiaoluo15•28m ago•0 comments

Why Forth Matters

https://nomlang.org/post/post.14.sep.2026.html
1•mjbq•31m ago•1 comments

Historic Business Machines Collection

https://cdm16471.contentdm.oclc.org/digital/collection/p16471coll9/search
2•Group_B•32m ago•0 comments

Sere, a compiled Python-like systems programming language

https://sere-lang.com
2•handheldheart•33m ago•3 comments

Show HN: Bipluk, Open-source browser Web MIDI librarian for vintage synthesizers

https://github.com/maxcomperatore/bipluk.com
2•halfradaition•34m ago•0 comments

Show HN: Dllog – Replay debug logs when an operation fails

https://github.com/arhuman/dllog
2•doolta•34m ago•0 comments

The logging dilemma: keeping debug context without debug noise

https://blog.assad.fr/en/post/log-dilemma/
2•doolta•35m ago•1 comments

AI Forces You to Commit to Your Initial Belief

https://idiallo.com/blog/making-changes-mid-sentence
2•walterbell•36m ago•0 comments

Show HN: I made a tiny MoE/Engram viz tool

https://sw-ml-study.github.io/moe-microscope/
2•softwarewright•50m ago•0 comments

The Accelerationist Case for Frontier Pacing

https://contraptions.venkateshrao.com/p/the-accelerationist-case-for-frontier
3•wskinner•50m ago•0 comments

Show HN: Is It Greg?

https://github.com/antoineleclair/is-it-greg
22•antoineleclair•51m ago•6 comments

Bruce Schneier: No, AI doesn't mean the end of mathematics – at least not yet

https://www.theguardian.com/commentisfree/2026/aug/25/ai-mathematics-careers
6•emil-lp•54m ago•0 comments

"Oopsies " FreeBSD Devs Say There's Still GPL in the Kernel

https://fossforce.com/2026/07/oopsies-freebsd-devs-say-theres-still-gpl-in-the-kernel/
2•pizzaiolo•57m ago•0 comments

new free website for people who are interested in free trading tools

2•Mohamed_Amineio•1h ago•0 comments

Made a Simple Link Extractor from HN Comments

https://hn-links.netlify.app/?id=49684393
2•rammy1234•1h ago•1 comments

The Malicious Use of Artificial Intelligence

https://arxiv.org/abs/1802.07228
5•rasengan0•1h ago•0 comments

Sandbox-API

https://hub.docker.com/r/credkellar/sandbox-api
2•credkellarboop•1h ago•0 comments
Open in hackernews

CheerpJ 4.0: WebAssembly JVM for the browser, now with Java 11 and JNI support

https://labs.leaningtech.com/blog/cheerpj-4.0
9•apignotti•1y ago

Comments

palata•1y ago
That's technically pretty cool, but it makes me wonder:

In order to run a Java Desktop app, I need to install a JVM first (or the Desktop app can embed it, I guess that's what IntelliJ does, right?).

Now if I run CheerpJ, it means that I essentially download a JVM when I load the page (every time), and run code in that JVM. But at this point, why not downloading a Desktop app?

It feels like we are going around, shipping simple web pages together with full browsers and calling that "desktop apps" (e.g. ElectronJS), then shipping complete JVMs as web pages and calling that a "web page"... why don't we just ship simple webpages through browsers and complex desktop apps through package managers?

apignotti•1y ago
With CheerpJ you are downloading the subset of the JVM that you need, and actually only once thanks to the standard browser cache.

There are many reasons why shipping via the browser is a better choice compared to shipping desktop apps. The main 3 in my opinion are:

1. Distribution: Give your user a link and the app will start 2. Isolation: The user can have confidence the app won't read his personal files. 3. Cross-platform: Every OS and every device, for real this time

yuri91•1y ago
For reference, when loading https://browsercraft.cheerpj.com for the first time (up to loading a world), my browser downloaded ~32MB.

The second time almost nothing.

jeffreportmill1•1y ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•1y ago
> With CheerpJ you are downloading the subset of the JVM that you need

That's interesting! May I ask how it works? Does that also happen with e.g. IntelliJ?

> Every OS and every device, for real this time

Doesn't the JVM run everywhere in 2025?

apignotti•1y ago
> That's interesting! May I ask how it works? Does that also happen with e.g. IntelliJ?

Byte ranges request do most of the heavy lifting, data is loading exclusively on-demand.

> Doesn't the JVM run everywhere in 2025?

What about iOS? Android has Java, but can't run desktop Java apps. Chromebooks also have limits.

palata•1y ago
> Byte ranges request do most of the heavy lifting, data is loading exclusively on-demand.

I don't understand what that means. The JVM is supposed to interpret and sometimes compile bytecode, right? How can it be done with only a fraction of the JVM?

Or are you saying that it is constantly communicating with a server that does the work?

apignotti•1y ago
The VM itself is very small, it's the OpenJDK runtime that is quite sizeable. Byte ranges are used to only download the parts of the runtime (in terms of bytecode) that are required.

There is no server-side computation. CheerpJ runs code exclusively client-side.

palata•1y ago
But you said before that you only download a subset of the JVM, right? Or did you mean a subset of the JDK, including the JVM and... I guess other stuff?
apignotti•1y ago
I meant the JVM in an extended sense: the combination of the bytecode parsing, JIT compiler and OpenJDK runtime. You are right, I should have been more precise and refer to only the runtime part, which is by far the most significant.
palata•1y ago
I was not trying to prove you wrong, I'm just genuinely interested :-). I don't see a lot of articles about the JVM these days.