frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MIT warns automating Gen Z entry jobs may cost firms their future workforce

https://fortune.com/article/automating-gen-z-entry-level-jobs-could-backfire-mit-ai-researcher-an...
1•01-_-•1m ago•0 comments

OpenAI Acknowledges GPT-5.6 May Accidentally Delete Files

https://www.infoworld.com/article/4198216/openai-acknowledges-gpt-5-6-may-accidentally-delete-fil...
1•andrewl•2m ago•0 comments

vs. 386 vs. 486: The Difference Wasn't Speed – It Was This

https://comuniq.xyz/post?t=1411
1•01-_-•2m ago•0 comments

Scorchsaver – a wildfire puzzle where you fight fire with backfires

https://scorchsaver.com
1•luciansecara•6m ago•0 comments

HuggingFace security incident: Guardrails vs. Open Models

https://huggingface.co/blog/security-incident-july-2026
2•benjiro29•8m ago•1 comments

Chris Huelsbeck

https://en.wikipedia.org/wiki/Chris_Huelsbeck
1•doener•10m ago•0 comments

The Last MPEG-4 Visual Patent Has Expired

https://www.phoronix.com/news/Last-MPEG-4-Patent-Expired
2•LorenDB•10m ago•0 comments

The Adventures of Quik and Silva

https://en.wikipedia.org/wiki/The_Adventures_of_Quik_%26_Silva
1•doener•11m ago•0 comments

Show HN: Phosphor – a CRT TV video player for your Mac

https://github.com/JoAz111/Phosphor
1•JoAz111•12m ago•0 comments

Jeffersonian Transcription

https://en.wikipedia.org/wiki/Conversation_analysis
1•kasperset•13m ago•1 comments

Even with an Edge, You Lose?

https://jappie.me/even-with-an-edge-you-lose.html
1•zeepthee•14m ago•0 comments

The Birth of Thickets

https://aneeshsathe.substack.com/p/the-birth-of-thickets
1•boredgargoyle•14m ago•0 comments

Texas Police Spent $4.5M on Four Chevy Tahoes

https://www.thedrive.com/news/how-texas-police-spent-4-5-million-on-four-chevy-tahoes
2•randycupertino•17m ago•2 comments

We need to talk about the open model situation

https://12gramsofcarbon.com/p/tech-things-we-need-to-talk-about
1•theahura•19m ago•0 comments

Tools and Techniques of Show Card Writing

https://jamesgurney.substack.com/p/tools-and-techniques-of-show-card
1•Michelangelo11•21m ago•0 comments

ECC and DDR5

https://etbe.coker.com.au/2026/07/19/ecc-ddr5/
1•zdw•23m ago•0 comments

Dough: Audio engine for live coding, written in a single C file

https://dough.strudel.cc/
1•lioeters•24m ago•0 comments

Verify email and phone number easily

https://checkfor.dev/
1•davygab•27m ago•1 comments

Why being a football/soccer fan is irrationally rational

https://www.adriankrebs.ch/blog/football/
1•hubraumhugo•27m ago•0 comments

Why Apple's Lawsuit Against OpenAI over Devices Spares Jony Ive

https://www.bloomberg.com/news/newsletters/2026-07-19/why-apple-s-openai-lawsuit-doesn-t-mention-...
2•thm•32m ago•0 comments

Since 2020, public transport has been free of charge throughout Luxembourg

https://luxembourg.public.lu/en/living/mobility/public-transport.html
1•robin_reala•34m ago•0 comments

AES Gets Swizzled

https://00f.net/2026/07/16/aes-with-simd-swizzles/
1•zdw•34m ago•0 comments

When One Nanny Isn't Enough, 'CEO Parents' Hire a Whole Team

https://www.wsj.com/lifestyle/relationships/ceo-parent-nanny-assistant-teams-hiring-20d3a9c0
1•tmach32•36m ago•0 comments

Lost Apple Project

https://en.wikipedia.org/wiki/Lost_Apple_Project
4•EndXA•38m ago•0 comments

Show HN: AIMakeTattoo – Visual references and artist briefs

https://aimaketattoo.com/ai-tattoo-generator
1•warrenshi•40m ago•0 comments

Wp2shell-detect, a non-intrusive detector for the WordPress core pre-auth RCE

https://github.com/own2pwn-fr/wp2shell-detect
1•own2pwn-fr•42m ago•0 comments

Do you manage task/todo differently in this AI era?

1•khanhphd•49m ago•1 comments

One frozen Gopher API, native clients from Mac OS 9 to Android

https://debene.dev/posts/one-frozen-gopher-api/
2•fdebene•49m ago•0 comments

AI Demands More Engineering Discipline

https://charity.wtf/p/ai-demands-more-engineering-discipline
1•nishantjani10•50m ago•0 comments

Two U.S. Troops Killed in Iranian Barrage on Base in Jordan

https://www.twz.com/news-features/two-u-s-troops-killed-in-iranian-barrage-on-base-in-jordan
2•prmph•50m 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.