frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Is Trusttunnel easy for people to use?

1•AnonyMD•1m ago•0 comments

Probability and Statistics – The Science of Uncertainty, Second Edition

https://utstat.toronto.edu/mikevans/jeffrosenthal/
1•ibobev•1m ago•0 comments

Development of Wi-Fi chip operating in ultra-high radiation environments [JP]

https://www.isct.ac.jp/ja/news/dk5trp9231q1
1•sohkamyung•2m ago•0 comments

Swift 6.3 Released

https://www.swift.org/blog/swift-6.3-released/
2•frizlab•2m ago•0 comments

Should I Start a Blog?

https://vote.williamangel.net/
1•datadrivenangel•3m ago•0 comments

Ask HN: Is there a secret satellite war?

1•_justinfunk•4m ago•0 comments

ChatGPT's optimal route to cross the US in the 1800s

https://twitter.com/austinzhenley/status/2036570186552385672
1•azhenley•4m ago•0 comments

Google's Android Automotive Is Moving from the Dashboard to the Car's 'Brain'

https://www.theverge.com/tech/899034/google-android-automotive-os-software-defined-vehicle
1•m463•6m ago•0 comments

Show HN: Lexplain – AI-powered Linux kernel change explanations

https://lexplain.net
1•daisydevel•6m ago•0 comments

Meta misled users about its products' safety, jury decides

https://www.theverge.com/policy/899910/meta-new-mexico-jury-verdict
1•donohoe•8m ago•0 comments

Why does QA → implementation still feel so broken in modern dev work?

https://github.com/chadsly/knit
1•chadsly•8m ago•0 comments

DeepMind listed a "Post-AGI" research job

https://twitter.com/SamuelAlbanie/status/2034299673356259497
2•marojejian•9m ago•1 comments

Claude can now control your Mac

https://claude.com/blog/dispatch-and-computer-use
1•champagnepapi•9m ago•1 comments

At Protocol Roadmap (Spring 2026)

https://atproto.com/blog/2026-spring-roadmap
3•Kye•9m ago•0 comments

OLED Sleeper – A per-monitor idle dimming tool for Windows

https://github.com/Quorthon13/OLED-Sleeper
1•Quorthon13•11m ago•1 comments

Show HN: Palettepoint.com, AI palette generator with 120K+ curated palettes

https://palettepoint.com
1•latentio•13m ago•0 comments

Apple's Worldwide Developers Conference returns the week of June 8

https://www.apple.com/newsroom/2026/03/apples-worldwide-developers-conference-returns-the-week-of...
1•alwillis•13m ago•0 comments

History of transportation: dominant modes and innovations, 1600-2100, by decade

https://claude.ai/share/43e9753a-caa4-499d-bcef-f9f1eac2f439
3•legel•16m ago•0 comments

Show HN: Origin – Git blame for AI agents (track which AI wrote every line)

https://getorigin.io
1•dolobanko•16m ago•0 comments

ReactOS Presented to President Putin (2012)

https://reactos.org/project-news/reactos-presented-president-putin/
1•alhazrod•17m ago•1 comments

Samsung Brings AirDrop Support to Quick Share with Galaxy S26 Series

https://news.samsung.com/us/samsung-airdrop-quick-share-galaxy-s26-series/
2•alwillis•17m ago•0 comments

Show HN: RentDataNow – free rent data for 4k US cities and 8k ZIP codes

https://rentdatanow.com/
3•misterinfo•19m ago•1 comments

The economics of language choice in the LLM area

https://felixbarbalet.com/simple-made-inevitable-the-economics-of-language-choice-in-the-llm-era/
2•jgrodziski•20m ago•0 comments

Show HN: Konform Browser v140.9.0-100

https://codeberg.org/konform-browser/source/releases/tag/140.9.0.100
2•konform•20m ago•0 comments

Meta must pay $375M for violating New Mexico child exploitation law

https://www.cnbc.com/2026/03/24/jury-reaches-verdict-in-meta-child-safety-trial-in-new-mexico.html
5•cdrnsf•21m ago•1 comments

Working with Coders

https://www.pablo.pm/p/working-with-coders-is-worth-your
2•pablito•22m ago•1 comments

Nvidia Quantitative Portfolio Optimization

https://build.nvidia.com/nvidia/quantitative-portfolio-optimization
1•skogstokig•23m ago•0 comments

Restoring Bleve search in Mattermost v11 with a fork and Claude Code

https://danielhnyk.cz/restoring-bleve-search-mattermost-v11/
1•yread•24m ago•0 comments

Diedream, a solo RPG to play just before falling asleep

https://libraryofwords.com/diedream-a-sleep-ttrpg/
1•ui301•24m ago•0 comments

Now Available: Depot CI

https://depot.dev/blog/now-available-depot-ci
1•paddy_m•24m 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•11mo ago

Comments

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

https://reportmill.com/SnapCode

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