frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What Is Science?

https://worrydream.com/RhetoricAndScience/
1•andsoitis•38s ago•0 comments

OpenAI needs to raise at least $207B by 2030 so it can continue to lose money

https://ft.com/content/23e54a28-6f63-4533-ab96-3756d9c88bad
3•akira_067•1m ago•0 comments

The best guide to spotting AI writing comes from Wikipedia

https://techcrunch.com/2025/11/20/the-best-guide-to-spotting-ai-writing-comes-from-wikipedia/
1•vintagedave•2m ago•0 comments

The Play Deficit

https://aeon.co/essays/children-today-are-suffering-a-severe-deficit-of-play
1•skx001•2m ago•0 comments

Show HN: Lumethic – Verify photo authenticity by comparing RAW to JPEG

https://www.lumethic.com/en
1•byfx•3m ago•0 comments

llmfuse: A self-compressing filesystem backed by an LLM

https://grohan.co/2025/11/25/llmfuse/
1•grohan•4m ago•0 comments

Forecasting Social Science: Evidence from 100 Projects

https://www.nber.org/papers/w34493
1•mathattack•5m ago•0 comments

The games industry's self-induced traumatic brain injury

https://doctorow.medium.com/https-pluralistic-net-2025-11-17-stop-killing-games-again-object-tran...
1•rbanffy•8m ago•0 comments

Check if a business has online reviews deleted

https://www.myreviewgotdeleted.com
1•maxmoehl•8m ago•0 comments

Dictionary.com's 2025 Word of the Year Is "67"

https://www.dictionary.com/e/word-of-the-year-2025/
1•skx001•10m ago•0 comments

Black Friday Deals Won't Save You from EA's New Private Equity Overlord

https://cepr.net/publications/black-friday-deals-wont-save-you-from-eas-new-private-equity-overlord/
1•spopejoy•11m ago•0 comments

Show HN: MyChefGPT.com – Your Personal AI Chef Assistant Is Now Live

1•ebastiban•11m ago•0 comments

Long-sought solution to 'Kryptos' sculpture sells for almost $1M

https://www.washingtonpost.com/entertainment/2025/11/21/kryptos-auction-sale-sanborn-cia/
1•speckx•12m ago•0 comments

Decision Matrices Create Better Engineering Decisions

https://boredhacking.com/decision-matrix-vs-pros-cons-engineering-decisions/
2•bored_hacker•13m ago•1 comments

Solving the Partridge Packing Problem Using MiniZinc

https://zayenz.se/blog/post/partridge-packing/
3•mzl•13m ago•0 comments

Human behavior isn't coherent enough to be a benchmark for AI

https://kemendo.com/benchmark.html
2•AndrewKemendo•15m ago•0 comments

Towards milli-joules per token – AI on the Apple Watch

https://atsentia.com/blog/towards-millijoules-per-token
1•amund•16m ago•0 comments

Are emotional video surprises better than text messages?

https://softlywished.substack.com/p/how-text-to-video-is-changing-the
1•SoftlyWished•18m ago•1 comments

Show HN: Apache Iceberg FDW for Postgres

http://fdw.dev/catalog/iceberg/
1•kiwicopple•19m ago•1 comments

A National Mission to Accelerate Science Through Artificial Intelligence

https://energy.gov/genesis
3•kordlessagain•19m ago•1 comments

Huawei and Chinese Surveillance

https://www.schneier.com/blog/archives/2025/11/huawei-and-chinese-surveillance.html
1•speckx•19m ago•0 comments

One Year of MCP: November 2025 Spec Release

http://blog.modelcontextprotocol.io/posts/2025-11-25-first-mcp-anniversary/
1•vinhnx•20m ago•0 comments

Justice dept. requires Realpage end sharing competitively sensitive information

https://www.justice.gov/opa/pr/justice-department-requires-realpage-end-sharing-competitively-sen...
7•phkahler•21m ago•2 comments

AI Coding Tools Every Developer Should Use Now

https://medium.com/@shaikhrayyan123/10-ai-coding-tools-every-developer-should-use-now-2ae5988c4bbd
1•blogd•21m ago•0 comments

Open source LLM prompt eval and optimization CLI

https://github.com/davismartens/ev
1•davismartens•22m ago•0 comments

Ask HN: Where to start with AI as a software engineer after a long sabbatical?

1•eel•23m ago•0 comments

Capital One's H-1B Kickback Scheme

https://thevisafiles.substack.com/p/capital-one
4•kappi•24m ago•0 comments

How to Get Hired in 2025

https://tonsky.me/blog/hiring-ai/
2•arational•25m ago•0 comments

Title Will Be Clicked No Matter What It Says

https://ng-menu.netlify.app/
1•cpuXguy•25m ago•0 comments

Digital Nomads and Expats visa info

https://abrotherabroad.com/long-term-visa-residency-directory-for-nomads-and-expats/
1•netfortius•25m 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.