frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Action Potentials for July

https://neurobiology.substack.com/p/action-potentials-for-july-505
1•paulpauper•1m ago•0 comments

My Dog Is The Best – A dog journal

https://mydogisthebest.org/
1•rrr_oh_man•2m ago•0 comments

Codeberg Disallows Cryptocurrency Projects

https://codeberg.org/Codeberg/org/commit/f383b648fd733ab88083dc390b91e77cd7589980
2•cdrnsf•3m ago•0 comments

GrapheneOS duress PIN could land a man in prison

https://www.androidauthority.com/grapheneos-duress-pin-us-prosecution-3691271/
2•samtheprogram•3m ago•0 comments

India's 'cockroach' movement halts protests after minister quits

https://www.ft.com/content/5f267b7d-9e57-40f6-9bb5-6fe5d6cf9d1d
1•JumpCrisscross•4m ago•0 comments

The Bliss of Graphene

https://srikanthperinkulam.com/2026/07/20/the-bliss-of-graphene
1•speckx•5m ago•0 comments

Magic codec – preprocessing for the Python interpreter (2024)

https://github.com/Tsche/magic_codec
1•zbentley•6m ago•0 comments

Bloomberg published an article based on false information sent from a fake email

https://twitter.com/yatharthmann/status/2081016902890168741
2•porridgeraisin•7m ago•0 comments

How to Recalculate a Spreadsheet

https://lord.io/spreadsheets/
1•thunderbong•7m ago•0 comments

Steps to Secure Your Authentication System

https://fusionauth.io/articles/security/steps-secure-your-authentication-system
2•mooreds•10m ago•0 comments

Emacs Dedicate Windows with toggle-window-dedicated

https://emacsredux.com/blog/2026/07/22/dedicate-windows-with-toggle-window-dedicated/
1•speckx•11m ago•0 comments

The pickle season runs on five business mechanisms

https://www.tsoon.com/posts/pickle-season/
1•mooreds•11m ago•0 comments

Handoff, a memory-only replicated KV on an eviction-prone substrate

https://tlc.proc.io/hub/623f9b12-a08b-4b6d-850a-29d58934eb61/Handoff
1•polvi•11m ago•0 comments

Kain – A non-von Neumann language (Zero GC, Python syntax, no borrow checker)

https://github.com/kainlang/kain
1•ephemara•11m ago•1 comments

Three out of four job postings won't tell you the pay

https://jobweb.io/blog/job-postings-hide-pay/
1•mooreds•12m ago•1 comments

All things are systems – the Idlewild Acres case

https://www.roderick.dev/writing/2026-07-25-systems-axioms-impacts/
1•tomrod•13m ago•0 comments

How will the decline in need for technical skills will affect internet cultures?

1•wuther•15m ago•1 comments

A system prompt to get AI to stop pretending to be human

https://swiftrocks.com/a-system-prompt-to-get-ai-to-stop-pretending-to-be-human
4•speckx•22m ago•2 comments

Silicon Valley Is Completely Divided over Chinese AI

https://www.wired.com/story/silicon-valley-is-completely-divided-over-chinese-ai/
2•joozio•22m ago•2 comments

I've been living inside DynamoDB for a while

https://www.thetrueengineer.com/p/dynamodb-deep-dive
1•adletbalzhanov•23m ago•0 comments

The Delphi Method: Expert Consensus Research Explained

https://www.koji.so/docs/delphi-method-guide
1•ankitg12•24m ago•0 comments

Show HN: Tongue – Text Your AI Personal Assistant

https://trytongue.com/demo
1•chadnewbry•24m ago•1 comments

Ask HN: What livestream do you keep open in a tab?

4•missmoss•24m ago•1 comments

Show HN: Protoai – an open source peer-to-peer network for sharing AI contexts

https://github.com/johndebord/protoai
2•piecesJohn•26m ago•1 comments

NASA-ISRO's NISAR satellite images a "hummingbird" in Antarctic ice

https://www.jpl.nasa.gov/news/us-india-satellite-delivers-data-reveals-hummingbird-in-antarctica/
1•MarcoDewey•26m ago•0 comments

The one name LLMs fear

https://ramblingafter.substack.com/p/the-one-name-llms-fear
3•paulpauper•27m ago•0 comments

Epistemics

https://ussri.substack.com/p/epistemics
1•paulpauper•27m ago•0 comments

Apple Is the King of AI and Nobody Knows It

https://limitededitionjonathan.substack.com/p/apple-is-the-king-of-ai-and-nobody
7•cyanbane•27m ago•7 comments

Friday Feature: Mini Cities

https://www.cato.org/blog/friday-feature-mini-cities
1•paulpauper•28m ago•0 comments

Show HN: Avatar-cursor – an AI shop assistant

https://github.com/eliasschwalme/avatar-cursor/blob/main/demo.gif
1•eschwalme•33m 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.