frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The robotics revolution won't be humanoid

https://techcrunch.com/video/the-robotics-revolution-wont-be-humanoid/
2•ciqufi•8m ago•0 comments

Save 80% for video generations. OpenRouter for videos and images

https://videorouter.sh/
1•franklin_yao•8m ago•1 comments

One Thought Consumes Me Often, So I Made an AI App to Make It Real

https://play.google.com/store/apps/details?id=com.council.the_council
1•haybreaker•8m ago•1 comments

CVBranch – Resume tailoring for software engineers and IT job seekers

https://cvbranch.com/
1•danytrakhtenber•14m ago•0 comments

A burst of "pink noise" may lead to more restorative sleep

https://news.mit.edu/2026/pink-noise-burst-may-mean-more-restorative-sleep-0909
1•gmays•14m ago•0 comments

Code Contracts

https://code-contracts.cc/
1•carlsverre•21m ago•0 comments

Fileless ELF Execution via O_tmpfile

https://matheuzsecurity.github.io/hacking/fileless-loader-bypassing-elastic-memfd/
1•matheuzsec_•22m ago•0 comments

AuraSurvey – a survey builder that works without internet

https://aura-survey.vercel.app
1•ADPR•23m ago•0 comments

Astroturfing on Reddit and the Dead Internet

https://rushter.com/blog/astroturfing/
1•theorchid•23m ago•0 comments

102 Minutes: Last Words at the Trade Center; Fighting to Live as the Towers Die

https://www.nytimes.com/2002/05/26/nyregion/102-minutes-last-words-at-the-trade-center-fighting-t...
1•gmays•23m ago•0 comments

How to Build an AI Software Factory: Agents That Open, Review, and Merge PRs

https://www.firecrawl.dev/blog/ai-software-factory
2•makaimc•24m ago•0 comments

Show HN: OmaGem – A Ruby DSL for Configuring and Managing Omarchy Linux

https://github.com/azzenabidi/OmaGem
1•azzen•27m ago•0 comments

Show HN: A fruit fly connectome playing Super Mario Bros at 60 FPS

https://kaarelkaarelson.github.io/fly-super-mario/
1•kaarelson•40m ago•1 comments

The SEC EDGAR rate limit problem nobody warns you about

https://toscale.pro/blog/sec-xbrl-duplicate-tags
2•Dominique_Churc•41m ago•0 comments

Anthropic says Claude was used for weapons, spying and cyber operations

https://www.reuters.com/world/china/how-anthropic-says-claude-was-used-weapons-spying-cyber-opera...
1•sajithdilshan•43m ago•0 comments

ChatGPT puts 20x Plan on hold

https://help.openai.com/en/articles/9793128-about-chatgpt-pro-tiers
1•josefchen•46m ago•0 comments

Exposing a global AI slop empire ruining the internet for profit – CBC [video]

https://www.youtube.com/watch?v=GEHHTh5OTnQ
1•SG-•49m ago•0 comments

OpenAI agents carried out an undisclosed attack on RubyGems

https://www.rubyhack.ai/
90•chao-•50m ago•30 comments

Hog Calling 2015 Competition

https://www.youtube.com/watch?v=fUY9FmBvqms
1•ninjahawk1•50m ago•0 comments

Two's Complement – Is Programming Still Fun?

https://www.twoscomplement.org/#podcast/is-programming-still-fun
3•tambourine_man•51m ago•0 comments

Fermyon – Deploy and manage serverless WASM apps

https://www.fermyon.com/cloud
1•peter_d_sherman•53m ago•0 comments

Security Research Without Asking Permission

https://www.provos.org/p/security-research-without-asking-permission/
3•wslh•56m ago•0 comments

Another cyberattack by internal OpenAI agents targetting RubyGems

https://twitter.com/thlarsen/status/2098544270361964576
2•owenshen24•59m ago•0 comments

Unique, mathematical 60-sided dice go on display

https://www.scientificamerican.com/article/unique-mathematical-60-sided-go-first-dice-go-on-display/
2•sohkamyung•1h ago•1 comments

DeCloudflare

https://0xacab.org/dCF/deCloudflare/-/blob/master/README.md
31•DeepLogin•1h ago•41 comments

Massachusetts hits data centers with new clean power rules

https://techcrunch.com/2026/09/09/massachusetts-hits-data-centers-with-new-clean-power-rules/
5•cdrnsf•1h ago•0 comments

The Beginning of the End of History

https://www.persuasion.community/p/the-beginning-of-the-end-of-history
2•lermontov•1h ago•0 comments

Show HN: Clone any voice from a short audio clip and generate speech

http://npm.im/clone-voice
1•init0•1h ago•0 comments

Most angels follow poorly their angel portfolio

https://olivecapital.vc:443/angelo/
1•rphgrc•1h ago•0 comments

Ask HN: Lots of sign ups but people not completing onboarding

1•lucgagan•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.