frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Call Center TransNusa

1•bilangBoss•1m ago•3 comments

Google Chrome Developer Tools: AI Powered Suggestions

https://developer.chrome.com/docs/devtools/settings/ai-innovations
1•rasengan•3m ago•0 comments

Fran Sans – font inspired by San Francisco light rail displays

https://emilysneddon.com/fran-sans-essay
1•ChrisArchitect•3m ago•0 comments

Apple to focus on 'quality and underlying performance' with iOS 27 next year

https://9to5mac.com/2025/11/23/apple-focusing-on-software-quality-improvements-ios-27-next-year-r...
1•jb1991•4m ago•0 comments

G0-G3 corners, visualised: learn what "Apple corners" are

https://www.printables.com/model/1490911-g0-g3-corners-visualised-learn-what-apple-corners
1•dgroshev•7m ago•0 comments

The Housing Strategy That Has California NIMBYs in a Corner

https://www.nytimes.com/2025/11/20/business/economy/california-housing-nimby.html
1•mitchbob•8m ago•1 comments

Whisperer AI Note Taker – Automatic meeting transcription and summary on iPhone

https://apps.apple.com/gb/app/whisperer-ai-note-taker/id6755069300
1•deepskyapps•9m ago•1 comments

Show HN: Menu Bar World Clocks

https://sindresorhus.com/zone-bar
1•mofle•9m ago•0 comments

HPE Launches AMD EPYC Venice Instinct MI400 and Nvidia Vera Rubin Compute Blades

https://www.servethehome.com/hpe-launches-new-amd-venice-instinct-mi400-and-nvidia-vera-rubin-com...
1•PaulHoule•10m ago•0 comments

Interstellar Space Travel Will Never, Ever Happen

https://jasonpargin.substack.com/p/interstellar-space-travel-will-never
4•billybuckwheat•10m ago•0 comments

Non-Tech Communities That Inform Our DevRel Activities

https://www.communitypulse.io/101-non-tech-communities
1•mooreds•11m ago•0 comments

The Most Dangerous Genre

https://www.newyorker.com/news/the-lede/the-most-dangerous-genre
1•mitchbob•12m ago•1 comments

Ruby Was Ready from the Start

https://obie.medium.com/ruby-was-ready-from-the-start-4b089b17babb
1•mooreds•13m ago•0 comments

Selecting the right product metrics (KPIs) (2023)

https://longform.asmartbear.com/product-metrics/
1•mooreds•13m ago•0 comments

ChatGPT for Teachers

https://chatgpt.com/plans/k12-teachers/
1•sunnybeetroot•16m ago•0 comments

Don't spill your guts to your chatbot friend – it'll hoover up info for training

https://www.theregister.com/2025/11/20/experts_warns_house_of_privacy/
2•Bender•18m ago•0 comments

Self-destructing thumb drive can brick itself and wipe your secret files away

https://www.theregister.com/2025/11/21/selfdestructing_external_ssd/
2•Bender•19m ago•0 comments

Ask HN: How do you teach a 7 year old visual editing on PC?

1•stmL•21m ago•0 comments

Early experiments in accelerating science with GPT-5

https://openai.com/index/accelerating-science-gpt-5/
2•sanjitb•23m ago•1 comments

Netflix, Comcast and Paramount Submit Warner Bros. Discovery Bids

https://www.nytimes.com/2025/11/20/business/media/warner-discovery-bids-paramount-netflix-comcast...
1•ChrisArchitect•23m ago•1 comments

Show HN: Genesis DB now provides a full gRPC API alongside HTTP

https://www.genesisdb.io/blog/posts/2025-11-23/grpc-endpoint
2•patriceckhart•26m ago•0 comments

Logic Puzzle from the University Quest

https://wondrousnet.blogspot.com/2025/11/solution-to-psychoanalytix-puzzle.html
2•morethenthis•28m ago•0 comments

Native Secure Enclave backed SSH keys on macOS

https://gist.github.com/arianvp/5f59f1783e3eaf1a2d4cd8e952bb4acf
55•arianvanp•28m ago•3 comments

A Swift Language Feature I wish existed in TypeScript

https://www.kxlaa.com/articles/a-swift-language-feature-i-wish-existed-in-typescript
1•kxlaa•29m ago•0 comments

97 'peace walls' still divide Belfast. Will they ever come down?

https://www.thetimes.com/uk/northern-ireland/article/belfast-peace-walls-divide-jxb9nfn0p
1•ilamont•29m ago•0 comments

The Agent Lab Thesis

https://www.latent.space/p/agent-labs
1•theptip•31m ago•0 comments

Show HN: Testing an AI-first HTML landing page for LLM crawling

https://ai.asasushi.pl/
1•marcustas•32m ago•1 comments

Tell HN: NYT put a JavaScript wall on page fetches

1•m-hodges•33m ago•0 comments

Enough with All the Raft

https://transactional.blog/talk/enough-with-all-the-raft
2•birdculture•37m ago•0 comments

iTorrent App Restored to AltStore in the EU

https://github.com/XITRIX/iTorrent/issues/401
3•NotPractical•40m ago•1 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.