frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google Scholar names its most influential papers for 2025

https://www.nature.com/nature-index/news/google-scholar-reveals-most-influential-research-papers-...
1•teleforce•37s ago•0 comments

Japan is gripped by mass allergies. A 1950s project is to blame

https://www.bbc.com/future/article/20260515-the-1950s-blunder-which-causes-mass-hay-fever-in-japan
1•ranit•2m ago•0 comments

Ask HN: Should I learn to code in 2026?

2•vrinda13•3m ago•0 comments

Thioacetone (Wiki)

https://en.wikipedia.org/wiki/Thioacetone
1•sans_souse•5m ago•0 comments

XINF MCP Server

https://xinf.dev/mcp
2•ZeroTerabytes•9m ago•2 comments

Canonical launches Ubuntu Core 26

https://canonical.com/blog/canonical-launches-ubuntu-core-26
2•LopRabbit•10m ago•0 comments

Ben Welsh made an index of all FiveThirtyEight articles on the Internet Archive

https://fivethirtyeightindex.com/
1•ChocMontePy•11m ago•1 comments

'We don't see a robot as a threat: simply another form of presence in the world'

https://english.elpais.com/science-tech/2026-05-16/takeshi-yoro-anatomist-in-japan-we-dont-see-a-...
1•Geekette•13m ago•0 comments

Sci/acc: what happens to science after super-intelligence?

https://willzeng.com/shared/sciacc.html
1•wzeng•15m ago•0 comments

Ubuntu Core 26 targets IoT, offers up to 15 years of security maintenance

https://www.cnx-software.com/2026/05/19/ubuntu-core-26-targets-iot-devices-and-embedded-systems-o...
2•0in•19m ago•0 comments

On Guard! The Story of SAGE [IBM, 1956]

https://www.youtube.com/watch?v=lFGco9ZsFGE
1•doctaj•22m ago•1 comments

Optimize_anything: A Universal API for Optimizing Any Text Parameter

https://arxiv.org/abs/2605.19633
4•LakshyAAAgrawal•24m ago•1 comments

Google accused of pushing 'free for life' G Suite users onto paid plans

https://www.theregister.com/applications/2026/05/19/google-accused-of-pushing-free-for-life-g-sui...
4•0in•25m ago•0 comments

Chairman and Commssioners – CFTC

https://www.cftc.gov/About/Commissioners/index.htm
1•seliopou•34m ago•0 comments

Towards Identifying the Economics and Efficiency of Fuzzers vs. Agents

https://dangerouserrors.com/posts/2026-04-06-towards-identifying-the-economics-of-fuzzers-vs-agents/
2•mooreds•40m ago•0 comments

Writing clear docs when you naturally think in code

https://www.knowledgeowl.com/blog/posts/writing-docs-when-you-think-in-code
1•eigenBasis•41m ago•1 comments

Cavity quantum electrodynamics control of quantum Hall stripes

https://www.nature.com/articles/s41567-026-03287-3
2•bookofjoe•44m ago•0 comments

US Justice Department 'forever' bars IRS from auditing Trump's past tax returns

https://www.theguardian.com/us-news/2026/may/19/trump-irs-settlement-tax-returns
7•embedding-shape•50m ago•1 comments

Poor grip strength linked to greater odds of developing depression

https://medicalxpress.com/news/2026-05-early-poor-strength-linked-greater.html
1•Gaishan•53m ago•0 comments

Stop paying $360/year to access your own email history

https://mailvaulty.com
1•khaledsabae•53m ago•1 comments

LLMs Are Revealing How Low the Bar Is (and Lowering It Even Further)

https://countercraft.substack.com/p/llms-are-revealing-how-low-the-bar
3•crescit_eundo•57m ago•0 comments

State Space Models, Explained Through Code

https://karthik-ragunath-ananda-kumar-blogs.notion.site/State-Space-Models-Explained-Through-Code...
1•eigenBasis•58m ago•0 comments

StartupStarter – we built a company brain so AI can do your work

https://startupstarter.co/
1•SCJB•1h ago•3 comments

Google Cloud has blocked our account, making some Railway services unavailable

https://twitter.com/i/status/2056883076496789854
7•bundie•1h ago•3 comments

An AI Co-Scientist for Hypothesis Generation from Google DeepMind

https://doi.org/10.1038/s41586-026-10644-y
3•car•1h ago•0 comments

Windows on Nintendo 64

https://www.youtube.com/watch?v=eGS9su_inBY
3•cedel2k1•1h ago•0 comments

Everything You Do Is Being Recorded

https://www.theatlantic.com/technology/2026/05/ai-wearable-surveillance-countermeasures/687203/
2•breve•1h ago•1 comments

Railway Blocked by Google Cloud

https://status.railway.com/?date=20260519
84•aarondf•1h ago•15 comments

Google's First AI Smart Glasses Launching This Fall with iPhone Support

https://www.macrumors.com/2026/05/19/google-ai-smart-glasses-iphone-support/
1•mikhael•1h ago•0 comments

I made an App that uses local LLMs to monitor your screen

1•roy3838•1h 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.