frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What Comes After Vibe Coding

https://blog.bijup.com/what-comes-after-vibe-coding
1•andreirx•3m ago•0 comments

Show HN: One-command deploys from your terminal with CreateOS CLI

https://nodeops.network/createos/docs/CLI/Overview
1•alex_creates•3m ago•0 comments

Pruner: Give AI coding agents the right context in one shot

https://github.com/heikki-laitala/pruner
2•xfiler•5m ago•0 comments

Dependency cooldowns turn you into a free-rider

https://calpaterson.com/deps.html
1•calpaterson•11m ago•0 comments

Bypass Paywalls Clean Chrome

https://gitflic.ru/project/magnolia1234/bypass-paywalls-chrome-clean
2•Cider9986•11m ago•1 comments

Multi-Agentic Software Development Is a Distributed Systems Problem

https://kirancodes.me/posts/log-distributed-llms.html
1•tie-in•12m ago•0 comments

Sam Altman: Man charged with attempting to murder OpenAI boss

https://news.sky.com/story/sam-altman-man-charged-with-attempting-to-murder-openai-boss-13531548
1•taspeotis•15m ago•0 comments

UpDown: Efficient Manycore based on Many Threading & Scalable Memory Parallelism

https://people.cs.uchicago.edu/~aachien/lssg/research/10x10/ics26-single-chip-updown.pdf
2•matt_d•16m ago•0 comments

TanStack Start Now Support React Server Components

https://tanstack.com/blog/react-server-components
2•polywock•16m ago•0 comments

How the corpse flower came to be so weird

https://www.scientificamerican.com/article/how-the-corpse-flower-evolved-its-bizarre-traits/
1•1659447091•19m ago•0 comments

HyperVenom: Using Hyper-V for Ring -1 Control from Usermode

https://gsmll.github.io/hypervenom/writeup/
1•claykettle•21m ago•0 comments

Modern Git based version control with parallel and stacked branches

https://gitbutler.com/
1•rushil_b_patel•23m ago•0 comments

Can Germany restart its nuclear power program?

https://www.politico.eu/article/germany-berlin-nuclear-is-over-the-debate-isnt/
1•leonidasrup•24m ago•0 comments

Introduction to Spherical Harmonics for Graphics Programmers

https://gpfault.net/posts/sph.html
2•nicebyte•29m ago•0 comments

Hackers Reveal Rockstar Earns over $1M a Day from GTA Online

https://kotaku.com/hackers-reveal-rockstar-earns-over-1-million-a-day-from-gta-online-2000687207
1•jmsflknr•33m ago•0 comments

Show HN: Groupr – Rust CLI that sorts files into subfolders by extension

https://github.com/TimFinnigan/groupr
1•timfinnigan•38m ago•0 comments

Show HN: Shloka Artha [Word-by-Word Meanings for Shlokas]

https://shlokartha.in/
1•init0•38m ago•0 comments

Show HN: Deflect One – command line dashboard for managing Linux servers via SSH

https://github.com/Frytskyy/deflect-one
2•whitemanv•40m ago•1 comments

Show HN: 2nnel – self-hosted ngrok with one-click framework-agnostic deployment

https://github.com/22or/2nnel
1•rogerdodgerwang•41m ago•0 comments

Need feedback on sandflare.io – AI Agent Sandboxes with

2•ajaysheoran2323•44m ago•0 comments

When Dancing Plagues Struck Medieval Europe(2019)

https://daily.jstor.org/when-dancing-plagues-struck-medieval-europe/
1•rawgabbit•45m ago•0 comments

Is It Worth Learning Unity in 2026? In the Age of AI

https://darkounity.com/blog/is-it-worth-learning-unity-in-2026
2•hacker_13•47m ago•0 comments

I Built a Open Source Portfolio and Project Website – Sean Filimon

https://seanfilimon.com
2•seanfilimon•48m ago•0 comments

Microlink: Tailscale-compatible VPN client for ESP32

https://github.com/CamM2325/microlink
1•MrBuddyCasino•54m ago•0 comments

Bear Roll – Daily roll of Bear Blog's top posts

https://bearroll.dev/
2•freediver•56m ago•0 comments

How to build an Agent

https://ampcode.com/notes/how-to-build-an-agent
2•pramodbiligiri•1h ago•2 comments

Ex150nosauce+ACV-5 review: Bouncing off the new Bottom?

https://www.exfatloss.com/p/ex150nosauceacv-5-review-bouncing
1•paulpauper•1h ago•0 comments

Math Is Still Catching Up to the Mysterious Genius of Srinivasa Ramanujan

https://www.quantamagazine.org/srinivasa-ramanujan-was-a-genius-math-is-still-catching-up-20241021/
16•paulpauper•1h ago•0 comments

Qten AI platform for social media content creator

https://www.qten.ai/
1•bandishankar•1h ago•0 comments

Spektrafilm – Open-source Film Simulation

https://github.com/andreavolpato/spektrafilm
2•mikae1•1h 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•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.