frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: ScreenMind – grep for your visual memory, 100% on-device

https://github.com/ayushh0110/ScreenMind
1•skye0110•1m ago•0 comments

What Every Productivity App Trades Away [video]

https://www.youtube.com/watch?v=OuEKdD_1F8s
1•zdw•2m ago•0 comments

The Economics Behind the Spurs

https://bycig.substack.com/p/the-economics-behind-the-spurs
1•paulpauper•6m ago•0 comments

Has AI Killed How-To Nonfiction?

https://tim.blog/2026/06/12/has-ai-already-killed-nonfiction/
1•paulpauper•6m ago•0 comments

Sometimes it is hard to solve for the equilibrium

https://marginalrevolution.com/marginalrevolution/2026/06/sometimes-it-is-hard-to-solve-for-the-e...
1•paulpauper•7m ago•0 comments

'The traveler' book review: An enlightening voyage

https://www.wsj.com/arts-culture/books/the-traveler-review-an-enlightening-voyage-e9754ecb
1•hhs•9m ago•0 comments

Coronavirus and Credibility (2020)

https://paulgraham.com/cred.html
1•downbad_•9m ago•0 comments

White House's export limits on Anthropic linked to concerns about Chinese access

https://www.semafor.com/article/06/13/2026/white-house-move-to-limit-anthropic-linked-to-concerns...
3•shscs911•15m ago•0 comments

Getting Creative with Perlin Noise Fields

https://sighack.com/post/getting-creative-with-perlin-noise-fields
2•0x000xca0xfe•19m ago•0 comments

Ancient genome duplications laid the foundations of complex brains

https://www.ox.ac.uk/news/2026-06-09-ancient-genome-duplications-laid-the-foundations-of-complex-...
1•hhs•20m ago•0 comments

The 27 Platform Releases – June 2026

https://developer.apple.com/documentation/Updates
1•Austin_Conlon•20m ago•0 comments

Four by Three

https://www.hankgreen.com/fourbythree
1•_tk_•24m ago•0 comments

New research reveals how brains update their predictions

https://source.washu.edu/2026/06/new-research-reveals-how-brains-update-their-predictions/
1•hhs•25m ago•0 comments

LazyOwn RedTeam Framework

https://github.com/grisuno/LazyOwn
1•grisun0•28m ago•1 comments

Derbyshire Police officer accused of using AI to 'create evidence'

https://www.bbc.com/news/articles/cy8wppwdxl6o
6•healsdata•31m ago•1 comments

Hans Schulz – The father of the VEF Minox lens?

https://moments-of-now.com/hans-schulz-the-father-of-the-vef-minox-riga-lens/
1•throwaway81523•31m ago•0 comments

Wirth's Law

https://en.wikipedia.org/wiki/Wirth%27s_law
1•RinTohsaka•39m ago•0 comments

Designing Software for Software Factories

https://blog.sshh.io/p/designing-software-for-software-factories
1•sshh12•40m ago•0 comments

The Ruby JRuby Was Built to Run

https://intertwingly.net/blog/2026/06/11/The-Ruby-JRuby-Was-Built-to-Run.html
1•mooreds•43m ago•0 comments

Rails: The Sharp Parts. Lock Is Not a Mutex

https://baweaver.com/writing/2026/06/05/rails-sharp-parts-lock-is-not-a-mutex/
1•mooreds•43m ago•0 comments

Timeline of HN

https://news.ycombinator.com/threads?id=ChrisArchitect
5•razor-thin•44m ago•0 comments

LLM Token Price Index

https://tokenpriceindex.com
2•zurtri•46m ago•1 comments

Building a Functional Lego Typewriter [video]

https://www.youtube.com/watch?v=ZIWTSkCVxjk
1•vinnyglennon•46m ago•0 comments

Battery recycling boom exposes schoolchildren to lead

https://www.ft.com/content/19beeed4-8c99-4de3-a163-9301210634ad
1•petethomas•48m ago•0 comments

VTubeMe

https://vtubeme.com
1•alekcac•50m ago•1 comments

Show HN: Pebble, an open-source alternative to Minecraft: Java Edition

https://github.com/thebriangao/pebble
1•briangao•52m ago•1 comments

Is the Twenty-First Century a Creative Void?

https://yalereview.org/article/audrey-wollen-david-marx-blank-space
1•tintinnabula•53m ago•0 comments

Show HN: How to prevent spam and disposable signups

https://emailverify.se/
1•the_plug•53m ago•1 comments

Amazon security research reportedly led to the White House's Anthropic Fable ban

https://www.theverge.com/ai-artificial-intelligence/949601/amazon-anthropic-fablemythos-governmen...
2•kikibobo69•53m ago•0 comments

W.H. Auden and James Schuyler in life and literature

https://hedgehogreview.com/web-features/thr/posts/companions-on-parnassus
2•Caiero•59m 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.