frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google is rolling out its redesigned Workspace app icons

https://www.theverge.com/tech/932417/google-gmail-docs-cal-sheets-workspace-icon-redesign
1•xanthine•1m ago•0 comments

I Decided to Leave Mistral

https://twitter.com/Briviagra/status/2056975510731698188
1•defly•1m ago•0 comments

A small revolt against bloated software

https://www.f-rello.com/manifesto
1•karstenb•1m ago•0 comments

Proposal: Surface=Laterite

https://wiki.openstreetmap.org/wiki/Proposal:Surface%3Dlaterite
1•altilunium•3m ago•0 comments

Ask HN: Sorry, what Was FiveThirtyEight?

1•gagdiez•3m ago•0 comments

AI will create more jobs than it eliminates from 2028

https://www.gartner.com/en/newsroom/press-releases/2026-05-13-gartner-hr-research-reveals-ai-will...
1•01-_-•3m ago•0 comments

Cerebras Brings Trillion Parameter Inference to Enterprises with Kimi K2.6

https://www.cerebras.ai/blog/cerebras-kimi-k2-Enterprise
2•GaggiX•7m ago•0 comments

MailVault Pro – Own your inbox. Forever

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

The Expired Domain Trap: Why Legacy SEO Metrics Fail in the Age of AI Agents

https://domainalot.substack.com/p/the-great-domain-illusion-why-legacy
1•sonofmarzipan•9m ago•1 comments

Auto Agent Protocol – an A2A vertical for AI agents buying cars

https://autoagentprotocol.org/
1•yankouskia•10m ago•0 comments

Hack: A through-glass shower karaoke system

https://www.youtube.com/watch?v=pkvA6WhwxnU
1•mattkwan•10m ago•0 comments

The AI Quant Desk for Onchain Finance

https://grid.raster.finance/en/portfolio-analytics
1•Iwan-Raster•12m ago•0 comments

Generations of AI applications: conversational, delegative, and collaborative

https://zknill.io/posts/generations-of-ai-applications/
1•zknill•14m ago•0 comments

Show HN: Shitty AI App Idea Generator

https://shittyaiappidea.com
1•onexey•23m ago•0 comments

Railway GCP Account Suspension Incident Report

https://blog.railway.com/p/incident-report-may-19-2026-gcp-account-outage
2•0xedb•23m ago•0 comments

Andrej Karpathy Joined Anthropic's Pre-Training Team

https://firethering.com/andrej-karpathy-joins-anthropic/
1•steveharing1•26m ago•0 comments

Unitree: Voice‑driven, real‑time arbitrary action generation [video]

https://www.youtube.com/watch?v=B-a8TB8ttII
2•pr337h4m•29m ago•0 comments

Understanding how to run a fleet of agents

1•sermakarevich•31m ago•0 comments

Gemini Omni AI Video Generator

https://gemini-omni-ai.com/
1•gregzeng95•40m ago•0 comments

I built my AI Chief of Staff

https://www.cesarrg.com/how-i-built-my-ai-chief-of-staff/
1•cesarrg•46m ago•0 comments

Notes about reading messages with the Python email packages

https://utcc.utoronto.ca/~cks/space/blog/python/EmailPackagesNotes
2•ankitg12•47m ago•0 comments

Spotify's ugly new disco ball icon accomplished its goal

https://www.businessinsider.com/spotify-disco-ball-icon-logo-app-ugly-2026-5
1•doppp•52m ago•0 comments

An Update from Cloudflare's Community Champions (Layoffs)

https://old.reddit.com/r/CloudFlare/comments/1ti4456/an_update_from_cloudflares_community_champions/
2•mmarian•52m ago•1 comments

Cold Email Roaster

https://zerohypelab.com/cold-email-roaster/
1•tbergmann•53m ago•0 comments

What Do Gödel's Incompleteness Theorems Mean?

https://www.quantamagazine.org/what-do-godels-incompleteness-theorems-truly-mean-20260518/
2•isaacfrond•54m ago•0 comments

FBI seeks US-wide access to license plate cameras, wants data in near real time

https://arstechnica.com/tech-policy/2026/05/fbi-seeks-us-wide-access-to-license-plate-cameras-wan...
2•ndsipa_pomu•55m ago•0 comments

Moving from API Operations to Business Capabilities

https://medium.com/@bpedro/moving-from-api-operations-to-business-capabilities-cbff4e08f7b7
1•bpedro•57m ago•0 comments

Parakeet Translates French Audio

https://thoth-app.com/blog/2026-05-19-parakeet-language-drift/
1•MattVePhD•1h ago•1 comments

The Many Kings Problem: Why Humans May Survive an Age of Superior AI [pdf]

https://zenodo.org/records/20281580
1•AccidentalOrder•1h ago•0 comments

LG Electronics Introduces First Native 1000Hz Full HD Gaming Monitor

https://www.lg.com/global/newsroom/news/media-entertainment-solution/lg-electronics-introduces-wo...
2•ksec•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.