frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Noctis, an open-source music player for local libraries

https://noctisapp.cc/
1•heartached•2m ago•0 comments

Test Post from Automation

1•PrateekJ17•2m ago•0 comments

Ending All Respiratory Infections

https://blog.interceptfund.com/p/ending-respiratory-infections
1•EthanFantl•3m ago•0 comments

A Special Wireless-Free Nikon Camera Is Publicly Available for the First Time

https://petapixel.com/2026/06/24/a-special-wireless-free-nikon-camera-is-publicly-available-for-t...
1•HardwareLust•6m ago•1 comments

Mixing Visual and Textual Code

https://arxiv.org/abs/2603.15855
1•doppioandante•6m ago•0 comments

Show HN: Promptctl – Git for your AI prompts

https://github.com/naya-ai/promptctl
1•shawnaya101•9m ago•0 comments

Commandlinefu.com

https://www.commandlinefu.com/commands/browse
1•kordlessagain•10m ago•0 comments

Parsing JSON at compile time with C++26 static reflection

https://lemire.me/blog/2026/06/14/parsing-json-at-compile-time-with-c26-static-reflection/
2•kristianp•18m ago•1 comments

Flood-Prone Parts of America Are Losing Residents at Nearly 2x Last Year's Rate

https://www.redfin.com/news/climate-migration-real-estate-2026/
2•toomuchtodo•23m ago•1 comments

What I'm Finding About LLM Code Style and Token Costs

https://www.jimmont.com/llm-style-token-costs
1•jimmont•25m ago•1 comments

Venezuela hit by 7.5 magnitude earthquake

https://apnews.com/article/venezuela-earthquake-caracas-7179acaee70a9c543f953852f15d4814
4•oofbey•26m ago•0 comments

A Few Tools for Cyclists

https://www.theinstant.cc/
1•Gshaheen•30m ago•0 comments

Google's Gemini 3.5 Pro Release Slips to July

https://www.businessinsider.com/google-3-5-pro-july-release-tokens-ai-agents-model-2026-6
3•simonpure•30m ago•0 comments

Halyard – open AI work ledger for developers (time, tokens, cost, invoices)

https://github.com/Kormiloio/Halyard
1•mcamaj•31m ago•0 comments

The Joy and Power of Understanding

https://binaryigor.com/the-joy-and-power-of-understanding.html
2•birdculture•34m ago•0 comments

Do Course Certificates Matter?

5•ghassenfaidi•34m ago•1 comments

LuaJIT 3.0 proposed syntax extensions

https://github.com/LuaJIT/LuaJIT/issues/1475
20•phreddypharkus•36m ago•2 comments

Google DeepMind and A24 announce first-of-its-kind research partnership

https://blog.google/innovation-and-ai/models-and-research/google-deepmind/deepmind-a24-research-p...
4•ChrisArchitect•36m ago•1 comments

To sell toys

https://tfwiki.net/wiki/To_sell_toys
2•unleaded•40m ago•0 comments

Natural Language Is an Interface Capability, Chat Is Just a Mechanism

https://robenglander.com/writing/the-case-for-language-native-software/
3•robenglander•41m ago•0 comments

Absurdly Optimized

https://www.absurdlyoptimized.com/
3•skogstokig•43m ago•0 comments

Google releases new privacy controls for activity history, personalization

https://www.bleepingcomputer.com/news/google/google-releases-new-privacy-controls-for-activity-hi...
3•ilreb•43m ago•0 comments

10 Years of Euthanasia in Canada: 27 Deaths a Day

https://zenit.org/2026/06/22/10-years-of-euthanasia-in-canada-27-deaths-a-day-10000-a-year-and-no...
3•silvestromedia•44m ago•0 comments

Elastic layoff translation (June 24, 2026)

https://layofftranslator.com/layoffs/2026-06-24-elastic/
4•ronbenton•50m ago•0 comments

Indiana Jones and the Quest for Paradise VGA

https://archive.org/details/indy-paradise-vga
2•wicket•57m ago•0 comments

Use Claude Chrome Extension from Cursor

https://github.com/bebrws/claude-chrome-extension-from-cursor
2•bebrws•58m ago•1 comments

Human Brain Has Separate Circuits for Belly Laughs and Polite Chuckles

https://gizmodo.com/your-brain-has-separate-circuits-for-belly-laughs-and-polite-chuckles-2000775984
10•gmays•58m ago•0 comments

Venezuela earthquake: powerful back-to-back quakes collapse buildings in Caracas

https://www.theguardian.com/world/2026/jun/25/earthquake-venezuela-caracas-tremors-aftershocks
10•teleforce•58m ago•0 comments

Ask HN: What are the hardest problems AWS Lambda MicroVMs can solve now?

4•iaziz786•1h ago•0 comments

FPGA-based CNN acceleration using pattern-aware pruning [pdf]

https://inria.hal.science/hal-04689673/document
2•teleforce•1h 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.