frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Claude Code Arcade

https://github.com/jystervinou/claude-code-arcade
1•jystervinou•2m ago•0 comments

Show HN: I made a minimalist digital zine powered by 5 random emoji prompts

https://moon-zine.net/
1•riedhes•2m ago•0 comments

Show HN: Sheet-Based Infrastructure, Sheeternetes and Sheet-Native Foundation

https://sncfoundation.github.io/landscape.html
1•tym83•3m ago•0 comments

LaSuite.coop

https://lasuite.coop/
1•ngrislain•4m ago•0 comments

LiveSplit

http://livesplit.org/
1•skibz•7m ago•0 comments

Elon Musk did well for a penniless immigrant

https://utopiayouarestandinginit.com/2026/08/31/elon-musk-did-well-for-a-penniless-immigrant/
1•speckx•8m ago•0 comments

old.reddit.com Now Requires Log-In

https://www.old.reddit.com
3•ed95•10m ago•1 comments

Nvidia-Labs Object Oriented Agents

https://github.com/NVIDIA-NeMo/labs-OO-Agents
1•wslh•11m ago•0 comments

Vexatious Litigants

https://www.gov.uk/guidance/vexatious-litigants
1•robin_reala•11m ago•0 comments

Show HN: Transform text and images into cinematic AI videos

https://h3max.app/
1•wowinter15•11m ago•0 comments

The brain struggles to make new neurons in people with depression

https://www.nature.com/articles/d41586-026-02661-8
2•bookofjoe•14m ago•1 comments

Why Garfield Phones Are Washing Up on a French Beach Since the '80s

https://www.thisiscolossal.com/2026/08/silly-little-plastic-cat-short-film/
1•gmays•15m ago•0 comments

Top Remote Work Trends in Germany in 2026

https://www.foxapply.com/blog/en/remote-work-trends-germany-2026
1•josanjohnata•15m ago•0 comments

The law won't save us from Meta's 'pervert glasses' The only solution is mockery

https://www.theguardian.com/commentisfree/2026/aug/31/law-meta-pervert-glasses-mockery
5•6LLvveMx2koXfwn•15m ago•0 comments

Show HN: Room Treatment

https://roomtreatment.diy/landing
3•gregojaca•15m ago•0 comments

Dropbox Got Hacked

https://twitter.com/yonilevy/status/2094521566826541248
4•yonilevy•15m ago•0 comments

One False Alert and Zero False Autonomous Actions in over 15,000 Pod-Hours

https://pandocore.io/blog/clean-run-soak-results
1•eaferstl•17m ago•0 comments

The river of Apple's interface guidelines

https://hig.josefrichter.design/
2•josefrichter•18m ago•0 comments

Show HN: Keel - A conductor, not an agent loop

https://daneb.github.io/keel/
1•danebalia•19m ago•0 comments

Show HN: Doom Compiled into an LLM

https://github.com/physicsrob/torchwright_doom/
1•physicsrob•19m ago•0 comments

Dropbox Data Breach

4•hmate9•21m ago•1 comments

Pebble Index 01 sold as open-source, but proprietary

https://github.com/coredevices/mobileapp/issues/333
1•okso•21m ago•1 comments

Show HN: Terminal-browser – A real browser inside the terminal

https://github.com/zenbu-labs/terminal-browser
3•robpruzan•22m ago•0 comments

Show HN: Super CLI MARIO – a Mario clone for your terminal in zero-dependency Go

https://blog.daviey.com
1•Daviey•24m ago•1 comments

The Conglomerate Premium

https://hypersoren.xyz/posts/conglomerate-premium/
1•handfuloflight•26m ago•0 comments

South Korea opened bidding for a free, unlimited AI chatbot for all citizens

https://thenextweb.com/news/south-korea-free-ai-chatbot-all-citizens-domestic-models
4•quantisan•26m ago•0 comments

An offline code scanner with a Node.js network guard to block cloud leaks

https://simplebeacon.ai/
1•TJP88•26m ago•0 comments

Show HN: PopSQL and SeekWell were shutting down, so I built the replacement

https://saturnsql.com
3•infr88•27m ago•0 comments

RFM analysis: not all 64 R-F-M score combinations map to a segment

https://www.erathos.com/en/blog/rfm-analysis
1•gpaulbagetti•27m ago•0 comments

Pglogs

https://pglogs.dev/
1•handfuloflight•28m 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.