frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Best TTS models, a blind benchmark

https://techstackups.com/articles/best-tts-2026-blind-benchmark/
1•sixhobbits•4m ago•0 comments

West Coast Cities Turn to Vacancy Taxes to Grapple with Housing Crisis

https://www.theurbanist.org/west-coast-cities-turn-to-vacancy-taxes-to-grapple-with-housing-crisis/
1•harambae•8m ago•0 comments

Rank My Salary

https://rankmysalary.com
3•zakkishahh•9m ago•0 comments

A collection of small, low stakes and low effort tools

https://delphi.tools/
1•anyonecancode•9m ago•0 comments

Ask HN: I only use 30% of my Claude max x5 all model quota

2•firemelt•10m ago•0 comments

Cheap attack drones break through Israel's Iron Dome

https://www.dw.com/en/cheap-attack-drones-break-through-israels-iron-dome/a-77235132
2•Teever•12m ago•0 comments

Machine Code For Beginners (1983) [for the Z80/6502]

https://drive.google.com/file/d/0Bxv0SsvibDMTcHNXalEtYkVtU00/view?resourcekey=0-YtCcUG7ytBL-ls8gc...
3•peter_d_sherman•13m ago•0 comments

AI poses "urgent threat" to student learning and the HSC

https://www.smh.com.au/national/nsw/ai-poses-urgent-threat-to-student-learning-and-the-hsc-202605...
1•classichasclass•14m ago•0 comments

Spoqify – Un-personalize your Spotify playlists

https://spoqify.com/
4•eiiot•19m ago•1 comments

Curing US Healthcare, Part III: The Future

https://paulkrugman.substack.com/p/curing-us-healthcare-part-iii-the
1•rbanffy•21m ago•0 comments

Show HN: Simple Sprite Sheet Generation

https://github.com/acatovic/ai-game-studio
1•armcat•23m ago•0 comments

The political polarization of health outcomes in the USA

https://www.nature.com/articles/s41562-026-02474-9
3•geox•24m ago•0 comments

Show HN: 18 y/o – built the world's first behavioural intelligence platform

https://www.assemblr.net/
1•adityahv•26m ago•0 comments

Ask HN: Why didn't the C64 come with Simons' BASIC in the box from 1983 onward?

1•amichail•26m ago•0 comments

Why Physical Reality Is a Collective Construction

https://mimetra.com/blog/consciousness-fusion/
2•mw67•27m ago•0 comments

I am not a black belt

https://rodolphoarruda.pro.br/i-am-not-a-black-belt/
2•rodolphoarruda•29m ago•0 comments

The Leader of NASA's Artemis II Mission Is Still Moonstruck

https://www.newyorker.com/news/the-new-yorker-interview/the-leader-of-nasas-artemis-ii-mission-is...
1•fortran77•29m ago•0 comments

Show HN: Worldnotes – infinite notes in-browser canvas

https://github.com/AlexMason/worldnotes
1•recursivegirth•31m ago•0 comments

Machine: Never run NPM install on your computer

https://runmachine.dev/
1•katspaugh•31m ago•0 comments

Object-Store Native Databases

https://www.opendata.dev/docs
1•alex_hirner•33m ago•1 comments

The Next Computer Is Alive

https://www.reloadnyc.com/the-ai-shuffle/
2•smesser•35m ago•0 comments

Show HN: Brew-browser – A native macOS GUI for Homebrew

https://github.com/msitarzewski/brew-browser
1•msitarzewski•36m ago•0 comments

Did Amphetamines Help Erdős?

https://aleph.se/andart2/math/did-amphetamines-help-erdos/
1•wslh•37m ago•0 comments

The AI Bifurcation of Tech: Why the fundamentals matter more

https://neevash.com/blog/tech-bifurcation-and-the-0.5-layer
2•Nash0x7e2•38m ago•1 comments

A History of Obituaries in American Newspapers

https://blogs.loc.gov/headlinesandheroes/2026/05/mourn-not-a-history-of-obituaries-in-american-ne...
1•NaOH•38m ago•0 comments

Decree 770

https://en.wikipedia.org/wiki/Decree_770
1•mmh0000•39m ago•0 comments

Study of AI use by undergrads revealing disparities in access – and in cheating

https://news.berkeley.edu/2026/05/21/the-largest-study-of-ai-use-by-undergrads-is-in-revealing-di...
1•ChrisArchitect•39m ago•1 comments

When Generation Becomes Cheap, Selection Becomes Governance

https://lospino.so/blog/sunday-field-notes/the-workshop-has-changed/
2•jalospinoso•41m ago•0 comments

DHS says ICE has 'no relationship' with spyware maker Paragon Solutions

https://www.npr.org/2026/05/22/nx-s1-5831577/dhs-ice-spyware-paragon
3•devonnull•42m ago•0 comments

San Francisco Buried Treasure Has Been Found. Stop Hunting

https://www.buriedtreasuresf.com/solution
3•ChrisArchitect•43m 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.