frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: RedBoy – Lessons from generating 2-minute AI videos for 40k users

https://www.youtube.com/shorts/y6UvnfEWPUU
1•redboy_it•8s ago•0 comments

Fox to Acquire Roku in $22B Deal

https://www.hollywoodreporter.com/business/business-news/fox-acquires-roku-streaming-tech-deal-la...
1•throw0101c•9s ago•0 comments

AI Agent Tool Design: What Works and What Doesn't

https://machinelearningmastery.com/ai-agent-tool-design-what-works-and-what-doesnt/
1•eigenBasis•1m ago•0 comments

RawTree Adaptive Compression Codec

https://rawtree.com/blog/adaptive-compression-codec
3•stacyz•2m ago•0 comments

Intelligent Compilers?

https://github.com/Mecca-Research/Binary-Correspondence-Intermediate-Representation
1•artificial_i•11m ago•0 comments

Show HN: Gazenest – YouTube tracker that measures attention, not tab-open time

https://www.gazenest.com/
1•ibasaw_fr•11m ago•0 comments

Meta Tapped a Pentagon Supplier to Prototype Face Recognition for Its Glasses

https://www.wired.com/story/meta-rank-one-computing-face-recognition-smart-glasses/
1•boh•11m ago•0 comments

Oryzo – AI Powered Coaster

https://oryzo.ai/
1•saturn5k•12m ago•0 comments

Fakes of the Future

https://lareviewofbooks.org/article/fakes-future-artificial-intelligence-llms-larb-quarterly-traf...
1•Michelangelo11•13m ago•0 comments

RSA Munitions T-Shirt

https://www.johndcook.com/blog/2026/06/13/rsa-munitions-t-shirt/
1•ibobev•14m ago•0 comments

Katakana and Cypriot

https://quuxplusone.github.io/blog/2026/06/12/syllabaries/
1•ibobev•14m ago•0 comments

AI demands more engineering discipline. Not less

https://charity.wtf/2026/06/15/ai-demands-more-engineering-discipline-not-less-xpost/
7•RyeCombinator•15m ago•0 comments

Kan Extensions in Double Categories

https://bartoszmilewski.com/2026/06/13/kan-extensions-in-double-categories/
1•ibobev•15m ago•0 comments

Donald Trump's blocking of Anthropic is capricious and chaotic

https://www.economist.com/business/2026/06/14/donald-trumps-blocking-of-anthropic-is-capricious-a...
1•doener•16m ago•0 comments

Fox is buying Roku for $22B

https://www.cnn.com/2026/06/15/business/fox-roku
2•everybodyknows•16m ago•0 comments

Writing static checks to an unsuspecting library with Liquid Haskell

https://www.tweag.io/blog/2026-06-11-diff-package-static-checks/
1•ingve•17m ago•0 comments

Founder.best – A startup launch platform focused on visibility

https://www.founder.best
1•anujshashimal•18m ago•0 comments

AI Isn't Slowing Down Page Builders

https://chuckgreenman.com/2026/06/14/ai-isnt-slowing-down-page-builders
1•chuckgreenman•20m ago•0 comments

Atom Exhaustion Is Not a Footgun. It's One Third of Our CVEs

https://erlef.org/blog/security/atom-exhaustion
1•birdculture•20m ago•0 comments

Scaling Engineering: Ownership over Hiring

https://greenido.dev/2026/06/11/what-changes-at-20-50-and-200-engineers/
1•RyeCombinator•23m ago•0 comments

The mystery of the Solar Realms Elite title screen

https://breakintochat.com/blog/2026/06/14/the-mystery-of-the-solar-realms-elite-title-screen/
1•haeseong•23m ago•0 comments

Show HN: Kster.ai – Structured product context your coding agent reads over MCP

https://kster.ai
2•catalinviciu•23m ago•0 comments

Clojure is almost as fast as C (with some help)

https://ertu.dev/posts/4_clojure-reaching-c-performance/
2•haeseong•23m ago•0 comments

Atlassian "Data Contribution" – Privacy and Welfare

3•yells_jovially•24m ago•1 comments

Show HN: Boba, a one button platformer for PICO-8

https://zeta0134.itch.io/boba
2•zeta0134•26m ago•1 comments

Salesforce to Acquire Fin (formerly Intercom) for $3.6BN

https://www.salesforce.com/news/press-releases/2026/06/15/salesforce-signs-definitive-agreement-t...
5•colesantiago•27m ago•0 comments

Code Is a Message to the Future

https://webflow.com/blog/code-as-communication
1•ilreb•30m ago•0 comments

Show HN: StoryMotion – an editor for whiteboard explainer animations

https://storymotion.video
1•chunza2542•31m ago•0 comments

Sbt 2.0.0

https://eed3si9n.com/sbt-2.0.0
1•pregnenolone•31m ago•0 comments

3D Lissajous Figure Generator

https://www.simplenumbertools.com/calculators/wave-generator/
1•smdz•31m 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.