frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hire Me (Taylor) via API

https://taylor.town/looop-000
1•surprisetalk•1m ago•0 comments

Tulsi Gabbard Exposes US Global Biolab Program [video][3 Mins]

https://www.youtube.com/watch?v=gFc3oqQIJDw
1•Bender•2m ago•0 comments

TreeSheets (Hierarchical Spreadsheet)

https://strlen.com/treesheets/
1•jxmorris12•3m ago•0 comments

AI Is Dogshit at Design

https://tomcreighton.com/AI-is-dogshit-at-design/
1•speckx•3m ago•0 comments

Flap: A deterministic parser with fused lexing

https://arxiv.org/abs/2304.05276
1•fanf2•4m ago•0 comments

Doom on the Mi Band 10

https://github.com/atc1441/MiBand10-BES2700iMP-BEST1503-Hacking
1•kmmbvnr_•4m ago•0 comments

Extensive Sand Dune Loss Threatens California Coast

https://eos.org/research-spotlights/extensive-sand-dune-loss-threatens-california-coast
2•visha1v•5m ago•0 comments

TCP Throughput Calculator

https://network.switch.ch/pub/tools/tcp-throughput/
1•mrngm•6m ago•0 comments

Comcast to spin off NBCUniversal and Sky into separate company

https://www.nbcnews.com/business/business-news/comcast-spinoff-nbcuniversal-sky-split-two-compani...
2•throw0101d•6m ago•0 comments

Quiet, My Exoself

https://kk.org/thetechnium/quiet-my-exoself/
1•herbertl•7m ago•0 comments

Seikilos epitaph: oldest known musical composition

https://en.wikipedia.org/wiki/Seikilos_epitaph
1•nathell•8m ago•0 comments

Faith, Freedom, Family, Place – An Ethnographic Study

https://conservativestudy.redassociates.com/
1•Tomte•8m ago•0 comments

Menstrual Cycle Phase Alters Covid-19 Vaccine Outcomes

https://www.the-scientist.com/menstrual-cycle-phase-alters-covid-19-vaccine-outcomes-74685
1•visha1v•9m ago•0 comments

You Can Detect If Code Is Being Run Inside a Terminal

https://nelson.cloud/you-can-detect-if-code-is-being-run-inside-a-terminal/
2•speckx•11m ago•0 comments

Show HN: An MMORPG where you control your characters with an API

https://www.artifactsmmo.com/
5•muigetsu•13m ago•0 comments

Show HN: A fast hex dumper, written in Rust

https://github.com/CallMeAlphabet/fasthex
1•CallMeAlphabet•13m ago•0 comments

Looking free beta user. Speechtoflow rewrites your speech in your own style

https://speechtoflow.com
1•FelixLepi•13m ago•0 comments

Gen Z's AI problem isn't about AI

https://www.computerworld.com/article/4189645/why-spacex-is-the-mcdonalds-of-ai.html
2•mikelgan•13m ago•1 comments

NocoPlatform – Managed NocoDB hosting for $29/mo

https://nocoplatform.com/
1•sushanth999•14m ago•0 comments

Performance Tuning on Linux

https://cromwell-intl.com/open-source/performance-tuning/
1•mrngm•14m ago•0 comments

When Your IDE Becomes a RCE Endpoint

https://medium.com/trendyol-tech/when-your-ide-becomes-a-rce-endpoint-c87b85096b19
1•ozirus•15m ago•0 comments

Auditing my local Python packages

https://alexwlchan.net/2026/python-package-audit/
1•surprisetalk•15m ago•0 comments

Our anti-party system returns for July 4 weekend

https://news.airbnb.com/airbnbs-anti-party-system-returns-for-july-4-weekend/
2•WalterGR•16m ago•0 comments

The Goldilocks customizable <select> height

https://jakearchibald.com/2026/goldilocks-select-height/
1•jaffathecake•16m ago•0 comments

Passport to Adventure: The Scumm Story

https://www.scummdoc.com/
2•peterkelly•17m ago•0 comments

Data breach exposes up to 14.2M email logins at six ISPs

https://www.bleepingcomputer.com/news/security/data-breach-exposes-up-to-142-million-email-logins...
5•Brajeshwar•19m ago•0 comments

Ableton Live and Designing for Authenticity

https://ericcarl.link/blog/ableton-live-and-designing-for-authenticity/
1•jrmyphlmn•19m ago•0 comments

Using Aspect-Oriented Programming to Record DRL Agents' Data

https://blog.ptidej.net/using-aspect-oriented-programming-to-record-drl-agents-data/
2•luca-sctr•20m ago•1 comments

Law to Save Coloradans Money on Property Insurance Goes into Effect

https://www.senatedems.co/newsroom/law-to-save-coloradans-money-on-property-insurance-goes-into-e...
1•mooreds•20m ago•0 comments

Show HN: Uselink – publish and collaborate on AI-generated HTML

https://uselink.app:443/
1•nathanjryc•21m 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.