frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Putting a thrift store's inventory online with a $2 microcontroller

https://snapy.pro/blog/putting-a-thrift-stores-inventory-online
1•sej8•1m ago•0 comments

Show HN: Use After Effects with Claude Code, Cursor and Antigravity

https://github.com/Arman-Luthra/aftr
2•armanluthra_•4m ago•1 comments

Tinier – Image compress, convert and AI-upscale, 100% in the browser

https://tinier.app/
1•jonathanst•8m ago•0 comments

Temporarily removing the 5 hour usage limit restriction for all paid Codex plans

https://xcancel.com/thsottiaux/status/2076365965915467978#m
1•chiefstorm•14m ago•0 comments

Ask HN: Add flag for AI-generated articles

2•levkk•16m ago•0 comments

The Philosophical and Technical Legacy of Bernard Stiegler (2021)

https://dl.acm.org/doi/fullHtml/10.1145/3411763.3450385
1•nativeit•17m ago•0 comments

Show HN: Tactile, feel a trackpad tick over everything clickable on macOS

https://github.com/Mason363/Tactile
2•MasonChen•29m ago•1 comments

Hatching in 1PDG (2019)

https://www.patreon.com/watawatabou/posts/hatching-in-1pdg-31716880
1•andsoitis•30m ago•0 comments

Hyperblam – make music using Web Audio API only

https://hyperblam.how/
1•8bitsrule•30m ago•0 comments

Real Hack History Collection

https://archive.org/details/realhackinghistory
1•toomuchtodo•38m ago•1 comments

Want to own a real T. rex?

https://www.npr.org/2026/07/12/nx-s1-5890988/t-rex-gus-dinosaur-auction-sothebys-millions
1•defrost•38m ago•0 comments

Vibecoder Quin69 realizes programming is a real job [video]

https://old.reddit.com/r/LivestreamFail/comments/1uss5x8/vibecoder_quin69_realizes_programming_is...
2•ivewonyoung•40m ago•0 comments

Show HN: A 10-chapter synthesizer course in a single HTML file

https://grahampaasch.itch.io/oscillaedu
2•gpaasch•40m ago•0 comments

Show HN: Clark – AI assistant with own computer

https://www.clarkchat.com/
1•stan_kirdey•47m ago•0 comments

Show HN: Topsoil – a notch dashboard for coding agents, music, and files

https://topsoil-two.vercel.app/
1•davey2wavey•47m ago•0 comments

Found Better Pagerduty Alternative

https://github.com/FluidifyAI/Regen
2•furyman•50m ago•0 comments

I tracked down an animal abuser using OSINT [video]

https://www.youtube.com/watch?v=nzytWZPyuEw
3•Bender•53m ago•0 comments

Major forest fire only 50km from Paris

https://www.reddit.com/r/paris/s/8wXGehfCCY
1•Arodex•53m ago•0 comments

Separating Logic and Language

https://news.mit.edu/2026/separating-logic-and-language-0708
1•alexwwang•56m ago•0 comments

The Work of Helping A.I. Destroy Work

https://www.nytimes.com/2026/07/10/business/ai-white-collar-jobs.html
2•pseudolus•58m ago•1 comments

Closing a three-year-old issue using Rust arenas

https://giacomocavalieri.me/writing/gleam-rust-arenas
1•ryantsuji•1h ago•0 comments

The great (fire)wall: the technical details behind how China's internet works

https://kylejeong.com/blog/great-firewall
2•Kylejeong21•1h ago•0 comments

Embedcache – Cut embedding API costs by caching redundant requests

https://github.com/Ajay6601/embedcache
1•Ajay3043•1h ago•0 comments

Show HN: Whop Downloader – Bulk save videos from Whop in one click

https://chromewebstore.google.com/detail/whop-downloader/lfnmkoipepgcllbonheeogljjgcjhjaa
1•qwikhost•1h ago•0 comments

Llambda.lisp

http://funcall.blogspot.com/2026/07/llambdalisp.html
2•lemonberry•1h ago•0 comments

Gameboy is back ( no signup)

https://gb.omniiii.com/
7•djxjxjcjcjc•1h ago•0 comments

MacKenzie Scott's giving, in quality-adjusted life years

https://maxghenis.com/mackenzie-scott-qaly/
38•383toast•1h ago•11 comments

Performant C/CUDA inference engine for Qwen 3.6 35B on RTX 5090 / Blackwell

https://github.com/ambud/q36
2•ambuds•1h ago•0 comments

Claude Code Usage Global Leaderboard

https://www.claudeusage.com
2•bazarkua•1h ago•0 comments

Apple's "Thermonuclear" Response to OpenAI's Threat

https://www.wsj.com/tech/ai/apples-thermonuclear-response-to-the-openai-threat-8d51c814
6•mful•1h 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.