frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SheepDipped

1•sheepdipped•2m ago•0 comments

Anthropic launches Code Review

https://code.claude.com/docs/en/code-review
1•rishabhaiover•2m ago•1 comments

The Arts Bookstore of the Internet

https://mzs.press/
1•mooreds•3m ago•0 comments

Breaking free from smartphone addiction: Defensive tactics against algorithms

https://english.elpais.com/technology/2026-03-07/breaking-free-from-smartphone-addiction-defensiv...
1•1vuio0pswjnm7•3m ago•0 comments

Lovable, Monetization, and the Vibe Coder Economy

https://jxnl.co/writing/2025/06/12/lovable-monetization-and-the-vibe-coder-economy/
1•AnhTho_FR•6m ago•0 comments

Trial against Meta in New Mexico highlights video depositions by top executives

https://apnews.com/article/meta-instagram-new-mexico-zuckerberg-mosseri-social-e5a6749f4628cff9ff...
1•1vuio0pswjnm7•9m ago•0 comments

Lunches.fyi: Scraping corporate cafeteria menus and ranking the food

https://walzr.com/lunches-fyi/
2•meetpateltech•13m ago•0 comments

Human Brain Cells Run New Data Centers in Singapore, Melbourne

https://www.bloomberg.com/news/articles/2026-03-09/human-brain-cells-run-new-data-centers-in-sing...
1•inaros•13m ago•0 comments

Mockdown

https://www.mockdown.design
1•handfuloflight•13m ago•0 comments

Sony is testing dynamic pricing in the PlayStation Store

https://psprices.com/news/sony-ab-testing-prices/
1•xoxxala•14m ago•0 comments

Amazon tells FCC to bin SpaceX's million-satellite datacenter dream

https://www.theregister.com/2026/03/09/amazon_petitions_to_block_spacexs/
1•johnbarron•19m ago•0 comments

Lazy iteration vs. array chaining on 500k rows – benchmark results

1•gvsh_maths•22m ago•1 comments

I built a tool to export Gemini chat to PDF, Word, Docs, and Notion

2•backrun•22m ago•0 comments

Baochip-1x: What It Is, Why I'm Doing It Now, and How It Came About

https://www.crowdsupply.com/baochip/dabao/updates/what-it-is-why-im-doing-it-now-and-how-it-came-...
1•brewcrew•22m ago•0 comments

Sen Sheldon Whitehouse: Connections Between Trump, Russia, and Epstein

https://www.youtube.com/watch?v=ylvTFvJvB84
2•johnbarron•23m ago•0 comments

I just launched my first Roblox game "Drone Wars"

https://www.roblox.com/games/136100514232797/Drone-Wars
1•mmmmkay•25m ago•1 comments

Scotland becomes first UK country to legalise water cremations

https://www.theguardian.com/society/2026/mar/02/scotland-becomes-first-uk-country-to-legalise-wat...
3•gscott•28m ago•0 comments

Loom vs. Linear: A tale of two AI-cities

https://jamespember.substack.com/p/loom-vs-linear-a-tale-of-two-ai-cities
1•jep888•30m ago•0 comments

Reese's changed its chocolate because of climate change

https://www.fooddive.com/news/hershey-reeses-ingredients-chocolate-climate-change-oped/813903/
1•del82•30m ago•2 comments

Financial group probed by congressional committee over Chinese stock scams

https://www.ft.com/content/49f541f8-c73d-4268-9621-f8604f1a8141
2•petethomas•30m ago•0 comments

Boredom Is the Price We Pay for Meaning

https://www.theatlantic.com/ideas/2026/02/boredom-parenthood-father/686158/
3•myth_drannon•31m ago•0 comments

Something feels weird about this economy

https://www.noahpinion.blog/p/something-feels-weird-about-this
1•paulpauper•32m ago•0 comments

Phonyhuman

https://github.com/manav03panchal/phonyhuman
1•manavpanchal•33m ago•0 comments

Ask HN: What game engine would you recommend for vibe coding?

3•general_reveal•34m ago•2 comments

American Prairie Grows Again with 2k+ Acres of Critical Wetland Habitat

https://americanprairie.org/the-latest/american-prairie-grow-again-with-2k-acres-of-critical-wetl...
2•gametorch•36m ago•0 comments

Emergent Quantization from a Dynamic Vacuum

https://journals.aps.org/prresearch/abstract/10.1103/l8y7-r3rm
1•Rover222•47m ago•2 comments

High-throughput phenomics of global ant biodiversity

https://www.nature.com/articles/s41592-026-03005-0
1•bookofjoe•48m ago•0 comments

The Deadliest Animals

https://ourworldindata.org/deadliest-animals
1•gmays•48m ago•0 comments

Fast and Powerful Code Editor

https://lap.dev/lapce/
3•arthurz•50m ago•1 comments

The greatest unsolved problem in computer science

https://www.youtube.com/watch?v=x36UmiSiEzc
1•ArturoNereu•53m 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•10mo ago

Comments

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

https://reportmill.com/SnapCode

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