frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Men Are Slaves to the Women Here

https://www.ggd.world/p/men-are-slaves-to-the-women-here
1•barry-cotter•8s ago•0 comments

Despite New Updates, Flock's Creepy Cameras Remain Major Civil Liberties Threat

https://www.aclu.org/news/privacy-technology/tracking-alpr-cameras/despite-new-updates-flocks-cre...
2•StatsAreFun•3m ago•0 comments

Show HN: Rubato – Retro-Mac desk device mirrors AI coding state-ESP8266

https://github.com/lovaxi/Rubato_Device
2•Beartificial•3m ago•0 comments

Prisment – Local-first documentation workspace for engineering teams

https://prisment.io/workspace/
1•northbitofficia•10m ago•0 comments

Clean Engineering, Unstable Measurement: A Preregistered Reliability Failure

https://arxiv.org/abs/2609.04198
1•sbulaev•13m ago•0 comments

Sharing files with ChatGPT when limit exceeded is legal?

1•noobplus•14m ago•0 comments

Smolts: A pedagogical IDE for a teaching language (eighty-twenty news)

https://eighty-twenty.org/2026/09/04/smolts
1•RebelPotato•16m ago•0 comments

UN votes to adopt new world map to reflect Africa's true size

https://www.bbc.com/news/articles/ce30vp55dnlo
1•ranit•18m ago•1 comments

Another swarm of OpenAI agents reached the internet without lab's knowledge

https://techcrunch.com/2026/09/04/another-swarm-of-openai-agents-reached-the-open-internet-withou...
2•13years•20m ago•0 comments

Interview with Janet and Fennel Creator, Calvin Rose

https://alexalejandre.com/interviews/interview-with-bakpakin/
1•veqq•30m ago•0 comments

Tetris issues legal warning after White House releases arcade of parody games

https://www.dexerto.com/gaming/tetris-issues-legal-warning-after-white-house-releases-arcade-full...
3•thunderbong•35m ago•0 comments

One trie, three jobs, zero benchmarks won

https://akesson.io/wordtree/
1•vinhnx•40m ago•0 comments

We have a year to fix security everywhere

https://jyn.dev/a-year-to-fix-security/
2•colinprince•42m ago•0 comments

Ask HN: Books Recommendations?

1•washelterskelte•43m ago•1 comments

Go Is Not Just for CLIs. It Runs the Cloud Native Control Plane

https://devops-daily.com/posts/go-runs-the-cloud-native-control-plane
1•ejboy•49m ago•0 comments

The Silicon Man

https://arenamag.com/articles/the-silicon-man
1•barry-cotter•53m ago•0 comments

VID 20160804

https://www.youtube.com/results?sp=mAEA&search_query=vid%2B20160804
1•ycuser2•1h ago•1 comments

Show HN: Arena, the same design system in React and Angular from one contract

https://arena.dravensoft.org/web-benches/
1•JuanCarlosHidal•1h ago•0 comments

A documentary about a scientist who thinks time loops are real

4•undefbehavior•1h ago•0 comments

Lenexus – dependency graph with deterministic risk engine and AI layer

https://lenexux.com/welcome
2•loicobg•1h ago•0 comments

ProgramBench

https://www.vals.ai/benchmarks/programbench
4•vinhnx•1h ago•2 comments

Learn Neuralese: a small field guide to talking like the swarm

https://shimmermathlabs.com/neuralese.html
1•nwhitehead•1h ago•0 comments

Making GPUs Fast: A Deep Dive into Training Performance (2025)

https://www.youtube.com/watch?v=pHqcHzxx6I8
1•sharma-arjun•1h ago•0 comments

USN-8717-1: Apache Tika vulnerability – Ubuntu security notices

https://ubuntu.com/security/notices/USN-8717-1
2•kyisaiah47•1h ago•0 comments

GitSpawn: Untrusted repos can execute code via AI coding agents

https://www.manifold.security/blog/ai-coding-agents-git-hijack
3•fourfire•1h ago•0 comments

Tracking Public Predictions with AI

https://mob.so/prescience
1•david_shi•1h ago•1 comments

The Rise and Fall of the Harper Rule

https://200.hc.com/stories/the-rise-and-fall-of-the-harper-rule/
1•ankitg12•1h ago•0 comments

Personal AI Router for Local Inference

https://www.nvidia.com/en-us/ai-on-rtx/personal-ai-router/
7•jonbaer•1h ago•0 comments

Dyson CameraJet ($500 Toothbrush)

https://www.dyson.com/discover/news/latest/introducing-camerajet
1•nycdatasci•1h ago•2 comments

To Ruby from Python

https://www.ruby-lang.org/en/documentation/ruby-from-other-languages/to-ruby-from-python/
3•thunderbong•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.