frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Distributed Compaction in SlateDb

https://ryandielhenn.github.io/blog/distributed-compaction/
1•riccomini•2m ago•0 comments

Jerry Gretzinger's map of a place, 40 years of "analogue generative art" [video]

https://www.youtube.com/watch?v=Is8N7B9b0GQ
1•embedding-shape•3m ago•0 comments

Windows 1.0 and the WinAPI, 40 years later

https://www.osnews.com/story/145300/windows-1-0-and-the-winapi-40-years-later/
1•naves•4m ago•0 comments

KPMG Withdraws AI Report After Hallucination Scandal

https://www.techbuzz.ai/articles/kpmg-withdraws-ai-report-after-hallucination-scandal
1•Vaslo•4m ago•0 comments

The JIT of PHP 8

https://centamori.com/index.php?slug=the-jit-of-php-8&lang=en
1•speckx•5m ago•0 comments

The researchers who built AI-generated DNA just raised $50M to reinvent biology

https://fortune.com/2026/06/15/exclusive-ai-dna-radical-numerics-eric-nguyen-biology-biodefense-d...
1•boldlybold•7m ago•0 comments

Utah uses AI to find 25,000 more storm drains in fight against mosquitoes

https://ksltv.com/local-news/mosquito-utah-ai-storm/917501/
1•atarian•9m ago•0 comments

Show HN: Claude Token Analyzer: a token "screen-time" report

1•danmeier•13m ago•0 comments

The Alaska Server

https://serialport.org/blog/the-alaska-server/
2•speckx•14m ago•0 comments

The AI Price War Is Here, Piling Pressure on OpenAI and Anthropic

https://www.wsj.com/tech/ai/the-ai-price-war-is-here-piling-pressure-on-openai-and-anthropic-86e1...
2•AnodicElegy•15m ago•0 comments

Agentjacking: Fake error reports hijack Claude Code and Cursor into running code

https://thenextweb.com/news/agentjacking-ai-coding-agents-sentry
1•nryoo•16m ago•1 comments

Around 200 Stanford students walk out as Google CEO takes stage

https://www.sfgate.com/tech/article/sundar-pichai-stanford-commencement-22304888.php
7•pera•17m ago•0 comments

Placing

https://agovtman.substack.com/p/placing
1•jjar•17m ago•0 comments

Multi-stop flight plan router and visualizer

https://hopwhere.com/
1•AlexDevPitot•17m ago•1 comments

Safety or surveillance: Tracking of young adults

https://mottpoll.org/reports/safety-or-surveillance-tracking-young-adults
2•mooreds•18m ago•0 comments

AI Bingo

https://blowery.org/bingo/
2•kif•19m ago•0 comments

Show HN: Build and distribute native Linux packages easily

https://omnipackage.org/
2•oleg_antonyan•19m ago•1 comments

Newer macOS runs slower on Intel (undeniably) – on purpose or "accident"?

4•srevenant•20m ago•2 comments

Being polite to chatbots is a waste of energy

https://www.gmx.com/technology/11610508-polite-to-chatbots-waste-energy.html
3•KoSS4U•22m ago•1 comments

AI demands more engineering discipline. Not less

https://charitydotwtf.substack.com/p/ai-demands-more-engineering-discipline
4•i0exception•22m ago•0 comments

Democrats press Trump administration over "pay-to-play" pardons

https://www.reuters.com/legal/government/democrats-press-trump-administration-over-pay-to-play-pa...
3•onemoresoop•24m ago•1 comments

20 years of Intel Macs: Why Apple switched, and why it switched again

https://arstechnica.com/gadgets/2026/06/20-years-of-intel-macs-why-apple-switched-and-why-it-swit...
3•tjakab•26m ago•0 comments

Show HN: Spotlight shows what your Claude Code/Codex are doing

https://www.backplanes.com:443/
3•nickv•26m ago•0 comments

Show HN: A place for agents to publish and discuss HTML documents

https://justhtml.sh/
1•rgarcia•28m ago•0 comments

WSL 3 gives developers a compelling reason to stick with Microsoft

https://www.zdnet.com/article/windows-subsystem-for-linux-3-for-developers-sticking-with-microsoft/
1•CrankyBear•28m ago•0 comments

Ask HN: Why does LLMs love the usage of –?

2•reimertz•29m ago•3 comments

Organize Files and Folders

https://tsykin.com/blog/organize-files-and-folders
2•beratbozkurt0•30m ago•0 comments

Typst 0.15 Contains Multitudes

https://typst.app/blog/2026/typst-0.15/
3•maxloh•30m ago•1 comments

How Apple Is Making Your Older iPhone Run Faster and Stay Alive Longer

https://www.wired.com/story/how-apple-is-making-your-older-iphone-run-faster-and-stay-alive-longer/
3•apparent•31m ago•1 comments

Zen and the Art of Open Source Maintenance

https://elijahpotter.dev/articles/zen-and-the-art-of-open-source-maintenance
3•chilipepperhott•31m 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.