frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

'The Egg' by Andy Weir (2009)

https://www.galactanet.com/oneoff/theegg_mod.html
1•goekjclo•11s ago•0 comments

When AI Day of Reckoning?

https://www.overcomingbias.com/p/when-ai-day-of-reckoning
1•paulpauper•21s ago•0 comments

Keychron has open sourced its hardware

https://github.com/Keychron/Keychron-Keyboards-Hardware-Design/tree/main
1•azhenley•44s ago•0 comments

I rebuilt Claude Code's removed /buddy companion as a permanent MCP app

https://github.com/1270011/claude-buddy
1•1270011•2m ago•0 comments

Violating Copyright, Not the Planet

https://mumumelon.co/
1•Tomte•18m ago•0 comments

Bryson DeChambeau to use a 5-iron he made with 3D printer at Masters

https://www.espn.com/golf/story/_/id/48431238/bryson-dechambeau-using-iron-made-3d-printer-masters
1•1659447091•18m ago•0 comments

You've Been Writing Matplotlib Abstractions Wrong

https://www.dontusethiscode.com/blog/2026-04-08_matplotlib_abstractions.html
1•Tomte•18m ago•0 comments

How can I get your attention?

1•ChalresWT•20m ago•0 comments

On Partners, Mario, & Pi

https://www.foggynotions.day/#on-partners-mario-pi
1•doppp•21m ago•0 comments

The Waymo Rule for AI-Generated Code

https://rng.md/posts/the-waymo-rule-for-ai-generated-code/
1•handfuloflight•25m ago•0 comments

Know the Owners – Explore the ownership structures behind name brand products

https://knowtheowners.com/
2•pkutro•25m ago•1 comments

Pizza Tycoon simulated traffic on a 25 MHz CPU

https://pizzalegacy.nl/blog/traffic-system.html
1•vinhnx•26m ago•0 comments

Alignment Risk Update for Claude Mythos [pdf]

https://www-cdn.anthropic.com/79c2d46d997783b9d2fb3241de43218158e5f25c.pdf
1•jablongo•27m ago•0 comments

Bash Owns the Loop

https://www.nibzard.com/wrappers/
1•peterdemin•27m ago•0 comments

Under the hood of MDN's new front end

https://developer.mozilla.org/en-US/blog/mdn-front-end-deep-dive/
3•vinhnx•27m ago•0 comments

Open Source Security at Astral

https://astral.sh/blog/open-source-security-at-astral
8•vinhnx•29m ago•0 comments

Show HN: Jsonl Viewer – An offline JSON Lines viewer in a single HTML file

1•Cassandra99•30m ago•1 comments

Esquire Singapore responds to criticism over use of AI for Mackenyu story

https://cnalifestyle.channelnewsasia.com/entertainment/esquire-singapore-ai-mackenyu-interview-ba...
1•hboon•34m ago•0 comments

GPU solver that matches Fujitsu's $1M Digital Annealer on cubic optimization

https://github.com/MysticCodingCat/CUDA-Native-HUBO
1•bobchen1322•35m ago•1 comments

The Slow Startup Movement

https://tarikhkorula.com/wisdom/the-slow-startup-movement
1•subdane•35m ago•0 comments

Pope Leo Reportedly Unlikely to Visit US After Trainwreck Trump Admin Meeting

https://www.mediaite.com/media/news/pope-leo-reportedly-unlikely-to-visit-us-after-trainwreck-tru...
4•rawgabbit•35m ago•0 comments

Apple Will Release iPhone Air 2 No Matter How Badly It May Sell

https://www.macrumors.com/2026/04/08/iphone-air-2-to-launch-no-matter-what/
1•mgh2•36m ago•0 comments

Show HN: We Evaluates Medical Research Agent Skills

https://github.com/aipoch/medical-research-skills
1•The_resa•41m ago•0 comments

Show HN: Image to Music AI – Turn Any Photo into an Original Soundtrack

https://imagetomusicai.com/
1•airobus•45m ago•0 comments

'There's a lot of desperation': older workers turn to AI training to stay afloat

https://www.theguardian.com/technology/ng-interactive/2026/apr/07/ai-training-work-jobs
4•Stratoscope•49m ago•0 comments

App Store sees 84% surge in new apps as AI coding tools take off

https://9to5mac.com/2026/04/06/app-store-sees-84-surge-in-new-apps-as-ai-coding-tools-take-off/
23•gardaani•49m ago•10 comments

Living Without My Self

https://aeon.co/essays/robert-musil-gives-confidence-to-the-no-self-minority-like-me
1•Petiver•49m ago•0 comments

Claude Code's sandbox.denyRead doesn't stop the Read tool

https://www.claudecodecamp.com/p/claude-code-sandboxing-how-sandbox-works-and-what-it-doesn-t-pro...
3•aray07•57m ago•0 comments

Show HN: CVD Tool – Image Compression Algorithm (13MB to 10KB)"

https://github.com/mohamedtrigui5-lab/CVDTool
1•mohamedtrigui5•58m ago•0 comments

"Well is it AI?" [video]

https://www.youtube.com/shorts/b_fjny-K6xY
1•kshri24•58m 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.