frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Looking for experienced web developer to commission

1•marysminefnuf•5m ago•0 comments

Jeremy Scott gets cheer after ripping up AI-written commencement speech

https://www.businessinsider.com/jeremy-scott-fashion-graduation-speech-commencement-ai-student-ba...
1•cdrnsf•6m ago•0 comments

Resident: Vibe coding firmware (our new sandbox library for ESP32 devices)

https://interconnected.org/home/2026/05/20/resident
1•bertwagner•6m ago•0 comments

Crafting Fluid Animations Across Apple Platforms with Phil Zakharchenko [video]

https://vimeo.com/1194916003
1•Austin_Conlon•7m ago•0 comments

Sycophantic AI decreases prosocial intentions and promotes dependence

https://www.science.org/doi/10.1126/science.aec8352
1•cdrnsf•8m ago•0 comments

ICE Awards $25M Iris-Scanning Contract to Bi2 Technologies

https://www.projectsaltbox.com/p/ice-awards-25-million-iris-scanning
2•cdrnsf•8m ago•0 comments

SBCL – Struct by Value Final

https://github.com/jbouwman/sbcl/pull/14/commits/95acdf13aecda724f2dba12c4fb056ac825c58c8
1•dismalaf•9m ago•0 comments

AI-fix: type one word after a failed command and it fixes it

https://github.com/anasmohiuddinsyed-bit/ai-fix
1•Anas1371•10m ago•0 comments

Plane Geometry: An Elementary Textbook by Shalosh B. Ekhad, XIV (Circa 2050)

https://sites.math.rutgers.edu/~zeilberg/GT.html
1•casey2•11m ago•0 comments

Browserling – free cross-browser testing tool

https://www.browserling.com
1•tester1•18m ago•0 comments

The shared recipe behind search: Images, Shazam and RAG

https://medium.com/@pablo.cael/the-shared-recipe-behind-search-images-shazam-and-rag-08fc93a276ac
1•pcael•22m ago•0 comments

Show HN: CurRant->Screw Google scourge, help people notice what is worth a look

https://currantfeed.cc/
1•PAndreew•22m ago•1 comments

AV2 Codec Looks Like It Will Be Officially Released Next Week

https://www.phoronix.com/news/AV2-Next-Week
1•breve•24m ago•0 comments

Inequality Fell as (Bronze Age) Mohenjo-Daro Grew

https://www.anthropology.net/p/inequality-fell-as-mohenjo-daro-grew
3•marojejian•27m ago•1 comments

My I3-Emacs Integration

https://khz.ac/software/i3-integration.html
4•nosolace•34m ago•0 comments

Experimental Drug Retatrutide Yields Dramatic Weight Loss

https://www.nytimes.com/2026/05/21/science/retatrutide-weight-loss-drug.html
2•bookofjoe•35m ago•1 comments

Why T. Rex had tiny arms

https://nautil.us/we-finally-have-the-answer-for-t-rexs-tiny-arms-1280997
2•marojejian•45m ago•0 comments

Earliest Uses of Various Mathematical Symbols

https://mathshistory.st-andrews.ac.uk/Miller/mathsym/
4•layer8•49m ago•0 comments

Bun.Image

https://bun.com/docs/runtime/image
15•chakintosh•50m ago•3 comments

AI Governance 2026: I Almost Quit over This Shit (and Why You Might Too)

https://medium.com/open-ai/ai-governance-2026-i-almost-quit-over-this-shit-and-why-you-might-too-...
3•sukhpinder0804•55m ago•1 comments

Show HN: Fruitsy, a slot machine game

https://fruitsy.surge.sh
5•stagas•55m ago•0 comments

Jira Is Turing-Complete

https://seriot.ch/computation/jira.html
5•MrFinch•57m ago•0 comments

Codex is flagged as malware on macOS

https://github.com/openai/codex/issues/23195
3•vldszn•57m ago•4 comments

Wildlife is watching us, too – and changing their behavior in response

https://news.yale.edu/2026/05/21/wildlife-watching-us-too-and-changing-their-behavior-response
4•hhs•1h ago•1 comments

BFI Online Video Collection

https://replay.bfi.org.uk/collection/458
2•philo23•1h ago•1 comments

World Machines

https://worldmachines.org/resources
3•jerlendds•1h ago•0 comments

Curious cases of financial engineering in biotech

https://www.owlposting.com/p/curious-cases-of-financial-engineering
3•abhishaike•1h ago•0 comments

Birds can see into the UV spectrum, picking up signals that the human eye cannot

https://www.binghamton.edu/news/story/6207/beyond-black-research-explores-the-feather-color-of-am...
3•hhs•1h ago•0 comments

ParsOS NEXT, Learn how does a GUI works

https://github.com/amirali1390-bit/ParsOS-NEXT
2•amirali901•1h ago•1 comments

Hi-res microscopes give biologists petabytes of data

https://news.berkeley.edu/2026/05/22/hi-res-microscopes-give-biologists-petabytes-of-data-scienti...
3•hhs•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.