frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Seinfeld Chronicles: Digital Edition

https://seinfeld.visualisingdata.com/
1•wallflower•48s ago•0 comments

Show HN: Commonplace Wiki – A Confluence Alternative Based on Git and OKF

https://github.com/commonplace-wiki/commonplace
1•aiobe•2m ago•1 comments

Rails patches critical Active Storage flaw with RCE potential

https://www.bleepingcomputer.com/news/security/rails-patches-critical-active-storage-flaw-with-rc...
2•Brajeshwar•8m ago•0 comments

Ban AI Surveillance at Live Events

https://www.banfacialrecognition.com/venues/
2•Cider9986•8m ago•1 comments

Arrakis raises $8M for AI agent runtime security

https://runtimewire.com/article/arrakis-security-raises-8-million-ai-agent-runtime-controls
2•ryanmerket•9m ago•0 comments

World-first photonic time crystal opens a new era of light control

https://www.sciencedaily.com/releases/2026/07/260731034131.htm
2•bookofjoe•10m ago•0 comments

First open-source firmware for AM5 launches – Coreboot and openSIL on Zen 4

https://www.tomshardware.com/pc-components/motherboards/first-open-source-firmware-for-am5-offici...
3•sbulaev•11m ago•0 comments

Show HN: Sagrada – a linter for instruction files' belief state

https://cruxia.dev/
2•mars-ausili•12m ago•0 comments

Show HN: Claude Code takes forever, so I filled the waiting with Pokémon

https://github.com/zamarrowski/claudemon
2•zamarrowski•12m ago•0 comments

AI Images Are Everywhere. Here's What They Do to Our Brains, and What We Can Do

https://www.wsj.com/tech/ai/ai-slop-blurring-reality-podcast-06a9e879
2•fortran77•13m ago•1 comments

Survey: From Agile to a Product Operating Model

https://age-of-product.com/survey-product-operating-model/
1•swolpers•13m ago•0 comments

Keep your vault tidy with item archiving

https://bitwarden.com/blog/keep-your-vault-tidy-with-item-archiving/
1•loughnane•14m ago•0 comments

AI and Productivity: What Firms Are Saying on Earnings Calls

https://www.stlouisfed.org/on-the-economy/2026/jul/ai-productivity-what-firms-say-earnings-calls
2•m-hodges•14m ago•1 comments

More Americans now support than oppose all-day school cellphone bans

https://www.pewresearch.org/short-reads/2026/07/29/more-americans-now-support-than-oppose-all-day...
4•Markoff•16m ago•1 comments

Systems of Agentic Leadership

https://agenticleadership.substack.com/p/systems-of-agentic-leadership
2•johnrauser•18m ago•0 comments

The adorable love story behind Wikipedia's 'high five' photos

https://www.inverse.com/input/culture/wikipedia-high-five-too-slow-photos-mystery-couple-solved
2•ceejayoz•20m ago•0 comments

Email client TUI with messenger-like layout UI

https://gitlab.com/Linkinverse/mailchat
2•malloc-0x90•20m ago•1 comments

Shitty Sleep

https://lemurintheattic.mataroa.blog/p/shitty-sleep/
1•xyztenet•22m ago•2 comments

Zellij: Support the Kitty Image Protocol

https://github.com/zellij-org/zellij/pull/5428
1•HellsMaddy•24m ago•0 comments

Google Just Ruined One of Its Most Important Tools

https://www.theatlantic.com/technology/2026/07/google-earth-ai-images/688145/
2•fortran77•24m ago•0 comments

Types with AI: Working with LLMs Through Types

https://www.alecvo.org/blog/types-with-ai/
1•Vgoose•26m ago•0 comments

OpenAI Lost Its AI Crown–and the Fight to Win It Back

https://www.wsj.com/tech/ai/how-openai-lost-its-ai-crownand-the-fight-to-win-it-back-7d069695
1•tosh•29m ago•0 comments

Ask HN: Is discovery channel using AI?

2•adamtaylor_13•31m ago•0 comments

Show HN: Crest, a MacBook notch control room that answers Claude Code prompts

https://crestnotch.app/
1•zack40x•31m ago•0 comments

FaceTime, Zoom, and Ring cameras are warping our sense of reality

https://www.nytimes.com/2026/07/31/opinion/face-self-reflection-technology-video.html
2•Gecko4072•32m ago•0 comments

LLVM for OpenBSD/SPARC64

https://undeadly.org/cgi?action=article;sid=20260730130302
2•sillywalk•37m ago•0 comments

How rogue officers turned a nationwide camera network into a tool for stalking

https://www.washingtonpost.com/technology/2026/08/02/how-police-officers-used-vast-network-camera...
2•jaredwiener•38m ago•1 comments

Show HN: Maverik – Benchmark, compare and cost-predict your MCP agents

https://github.com/langens-jonathan/maverik
2•flowofcontrol•42m ago•1 comments

From 2027, Every Gadget in Russia Will Have a Mandatory Set of Applications

https://www1.ru/en/news/2026/08/01/426001-marusiu-vygnali-alisu-zaselili-s-2027-goda-v-kazdom-gad...
3•Sibexico•46m ago•0 comments

US measles: Cases now surpass last year's total as vaccination rates decline

https://www.bmj.com/content/394/bmj-2026-100437
3•geox•50m 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.