frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Road to Lisp: Which Lisp

https://scotto.me/blog/2026-07-17-which-lisp/
1•silcoon•30s ago•0 comments

Use and share Skills for SAP and contribute

https://skills.cloud.sap
1•yogananda•1m ago•1 comments

Show HN: I built TrackMyMetro, a fast, ad-free metro router for India

https://trackmymetro.com
1•HelloShiv•4m ago•0 comments

Best EC2 Instance for PostgreSQL

https://postgres.saneengineer.com/best-ec2-instance-for-postgresql
1•b-man•5m ago•0 comments

Open Sauce 2026 – Exhibits

https://www.opensauce.com/exhibits
1•brokensegue•9m ago•0 comments

Show HN: Wolbarg – Local-first shared memory for AI agents using SQLite

https://wolbarg.com/blog/why-sqlite-is-enough-for-local-ai-agent-memory
1•atharvmunde•10m ago•0 comments

Kimi K3 may be an important inflection point for AI

https://twitter.com/GavinSBaker/status/2078110934740980193
1•jger15•17m ago•0 comments

Cross Compiling Rust To openwrt `mipsel-unknown-Linux-musl` on Mac OS

https://gabrielfalcao.github.io/blog/cross-compiling-rust-to-openwrt-mipsel-unknown-linux-musl-on...
1•gfalcao•17m ago•0 comments

Eusend keeps your email data in the EU

https://www.eusend.dev/blog/how-eusend-keeps-your-email-in-the-eu
1•sharecrow•18m ago•0 comments

EU loosens carbon market rules to let industry pollute for longer

https://www.politico.eu/article/eu-loosens-carbon-market-rules-to-allow-industry-to-pollute-for-l...
1•leonidasrup•19m ago•0 comments

Anthropic Thinks Its Own Success Is Key to Making AI Safe

https://www.wired.com/story/anthropic-thinks-ai-can-only-be-safe-under-its-control/
2•1vuio0pswjnm7•20m ago•0 comments

Show HN: Hearth, an open-source local AI that runs your PC (files, apps, voice)

https://github.com/0pen-Sourcer/Hearth
1•SwagKing•22m ago•0 comments

More Bounce to the Ounce – By Maciej Cegłowski

https://mceglowski.substack.com/p/more-bounce-to-the-ounce
2•pavel_lishin•24m ago•0 comments

Video Game Critic

https://videogamecritic.com/
1•helloplanets•24m ago•0 comments

Pattern Matching on Compressed Strings Without Decompression

https://spiraldb.com/blog/pattern-matching-strings-without-decompression
1•surprisetalk•25m ago•0 comments

PennyLane is an open-source quantum software platform for quantum

https://github.com/PennyLaneAI/pennylane
2•donutloop•25m ago•0 comments

Soft Dorothy Software: Unfinished Tales (Vol 1)

https://github.com/EngineersNeedArt/SoftDorothy-UnfinishedTales-Vol1
1•gregsadetsky•26m ago•0 comments

Multi-region data and service mesh operated by a Makefile

https://github.com/neospe/autoops
2•renk•26m ago•0 comments

Some Thoughts on AI and Art

https://insertchaos.bearblog.dev/thoughts-on-ai-and-art/
1•snorbleck•27m ago•0 comments

A multipurpose, private personal AI on a dedicated AWS instance

https://purposemapped.com
1•BuddyPerry•27m ago•0 comments

Document intelligence platform – share files, track views, collect signatures

https://tinidrop.com
1•santosh_premi•27m ago•0 comments

V1 of OpenTelemetry Go Compile-Time Instrumentation

https://opentelemetry.io/blog/2026/go-compile-time-instrumentation-v1/
1•svrnm•27m ago•0 comments

Glider Classic Returns

https://www.softdorothy.com/gliderclassic/gliderclassic.html
1•gregsadetsky•28m ago•0 comments

Regular expression speed and error rates

https://www.johndcook.com/blog/2026/07/17/regex-speed-error/
1•ibobev•29m ago•0 comments

Egerton MS 1995

https://quuxplusone.github.io/blog/2026/07/16/egerton-ms-1995/
2•ibobev•29m ago•0 comments

Why Org Social is the ethical Fediverse alternative

https://en.andros.dev/blog/734c56f2/why-org-social-is-the-ethical-fediverse-alternative/
4•ibobev•30m ago•2 comments

Unigent SDK – universal cross-harness, cross-session agent workflow scripting

https://github.com/gintasz/unigent
1•gintasz•31m ago•0 comments

Curry-Howard Correspondence – How proof assistants work [pdf]

https://cklixx.people.wm.edu/teaching/math400/Wesley-P1.pdf
1•max-amb•34m ago•0 comments

The Auditor's Opinion

https://www.cringely.com/2026/07/16/the-auditors-opinion/
1•mhb•34m ago•0 comments

Lenovo announces first laptop with inkjet-printed OLED

https://www.tomshardware.com/monitors/lenovo-announces-worlds-first-laptop-with-inkjet-printed-ol...
1•HardwareLust•36m 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•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.