frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Growing Up Online Nearly Killed Me

https://www.afterbabel.com/p/growing-up-online-nearly-killed-me
1•paulpauper•41s ago•0 comments

Markdown Is Holding You Back

https://newsletter.bphogan.com/archive/issue-45-markdown-is-holding-you-back/
1•zdw•1m ago•0 comments

Fugees rapper Pras Michel sentenced 14 years illegal donations to Obama campaign

https://www.cnn.com/2025/11/20/entertainment/fugees-pras-michel-sentenced-prison-obama
1•indigodaddy•3m ago•0 comments

Ive Built Cursor for Blender

https://www.3d-agent.com
1•gsunshinel•4m ago•1 comments

How Google Finally Leapfrogged Rivals with New Gemini Rollout

https://www.wsj.com/tech/ai/google-gemini-3-ai-behind-scenes-e1787729
1•bookofjoe•6m ago•1 comments

They built a mobile observatory to film nebulae 7,500 Light-Years Away [video]

https://www.youtube.com/watch?v=5A3D06D97jo
1•Geekette•6m ago•0 comments

Conference Fermi Problems

https://gwern.net/blog/2025/conference-size
1•johnfn•7m ago•0 comments

Web development tip: disable pointer events on link images

https://lapcatsoftware.com/articles/2025/11/2.html
2•frizlab•10m ago•1 comments

Education Is Crumbling

https://nymag.com/intelligencer/article/public-education-failure-american-test-scores-trump-pande...
3•andsoitis•10m ago•1 comments

Matchya – AI emotional support via voice calls and long-term memory

https://matchya.app/
1•botchi•11m ago•1 comments

Training Agents Inside of Scalable World Models

https://danijar.com/project/dreamer4/
2•CharlesW•11m ago•0 comments

Zoomers are the status-seeking generation

https://www.technotheoria.org/p/zoomers-are-the-status-seeking-generation
2•paulpauper•15m ago•1 comments

Saturn's Rings Are Ghosting Us This Weekend

https://gizmodo.com/saturn-will-look-naked-in-the-night-sky-this-weekend-2000689525
1•gmays•16m ago•0 comments

22 November 1963: An Introduction to the JFK Assassination

http://22november1963.org.uk/
1•clanky•17m ago•0 comments

Oral arginine suppresses Aβ pathology in animal models of Alzheimer's disease

https://www.sciencedirect.com/science/article/pii/S019701862500155X
1•bookofjoe•18m ago•0 comments

mgrep: searching codebases with embeddings

https://github.com/mixedbread-ai/mgrep
1•mustaphah•18m ago•0 comments

Apple Event – November 20 (Spoof) [video]

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

Recycling lead for U.S. car batteries is poisoning people

https://www.seattletimes.com/nation-world/recycling-lead-for-u-s-car-batteries-is-poisoning-people/
1•MilnerRoute•21m ago•0 comments

OnePlus 15 Review: The Flagship

https://www.steaktek.com/mobile/oneplus-15-review-the-flagship/
1•genuser•26m ago•1 comments

Comparing My Techstars Experiences

https://substack.com/home/post/p-179583196
1•azhenley•30m ago•0 comments

The Fermi Paradox Just from Rarity

https://win-vector.com/2025/11/22/the-fermi-paradox-just-from-rarity/
1•jmount•33m ago•0 comments

Remote Control your Browser via Remote MCP (no NPX commands)

https://www.rtrvr.ai/blog/browser-as-mcp-server
1•arjunchint•36m ago•1 comments

Peter Sullivan on 'different world' after 14,000 days in prison

https://www.bbc.co.uk/news/articles/cjr0rz3wrrqo
2•lifeisstillgood•40m ago•0 comments

Finnegans Wake

https://en.wikipedia.org/wiki/Finnegans_Wake
2•reconnecting•42m ago•0 comments

Mosquitoes discovered in Iceland for first time

https://www.japantimes.co.jp/environment/2025/10/28/climate-change/mosquitoes-iceland-first-time/
3•PaulHoule•43m ago•1 comments

Dating for nerds (part 1): problem diagnosis (2017)

https://p.migdal.pl/blog/2017/07/dating-for-nerds/
1•KolmogorovComp•43m ago•0 comments

How Brazil's innovative 'Pix' payment system is angering Trump and Zuckerberg

https://www.france24.com/en/americas/20250731-how-brazil-innovative-pix-payment-system-is-angerin...
7•pseudolus•43m ago•4 comments

The Visual Display of Quantitative Information [pdf]

https://kyl.neocities.org/books/%5BTEC%20TUF%5D%20the%20visual%20display%20of%20quantitative%20in...
1•kekqqq•44m ago•1 comments

The Easiest Way to Build a Type Checker

http://jimmyhmiller.com/easiest-way-to-build-type-checker
1•emschwartz•45m ago•0 comments

Systemic Vulnerability of Large Language Models to Solar Weather

https://zenodo.org/records/17678602
2•datanality•47m 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•7mo ago

Comments

palata•7mo 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•7mo 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•7mo 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•7mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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.