frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

China Accuses US of Cyberattack on National Time Center

https://www.securityweek.com/china-accuses-us-of-cyberattack-on-national-time-center/
1•Bender•1m ago•0 comments

When yesterday's code becomes today's threat

https://www.scworld.com/perspective/when-yesterdays-code-becomes-todays-threat
1•Bender•2m ago•0 comments

Can you make the slippery road sign in real life

https://www.youtube.com/watch?v=_eL_r7NbAvA
1•lifeisstillgood•5m ago•0 comments

Should We Look on New Technologies with Awe and Dread?

https://www.newyorker.com/culture/open-questions/should-we-look-on-new-technologies-with-awe-and-...
1•fortran77•5m ago•1 comments

John Titor

https://en.wikipedia.org/wiki/John_Titor
1•cryptoz•5m ago•0 comments

Fake home invasion vid lands woman in real trouble

https://www.theregister.com/2025/10/21/woman_pranks_husband_ai_intruder/
1•Bender•5m ago•0 comments

M5 iPad Pro: An AI and Gaming Upgrade for AI and Games That Aren't There Yet

https://www.macstories.net/stories/m5-ipad-pro-review/
1•walterbell•6m ago•0 comments

My Computing Prayer

https://ryansepassi.com/notes/computing-prayer
1•prngl•6m ago•0 comments

Guide to Authentication for the OpenAI Apps SDK

https://stytch.com/blog/guide-to-authentication-for-the-openai-apps-sdk/
1•bobbiechen•10m ago•0 comments

3 years post grad in AI, is now the optimal time to job hop?

1•fishmeat•11m ago•0 comments

Dan Wang's Breakneck

https://hollisrobbinsanecdotal.substack.com/p/dan-wangs-breakneck-review
1•HR01•12m ago•0 comments

YouTube is rolling out likeness detection tool to combat deepfakes

https://www.engadget.com/entertainment/youtube/youtube-is-rolling-out-likeness-detection-tool-to-...
3•bobertdowney•12m ago•1 comments

The China Tech Canon

https://asteriskmag.com/issues/12-books/the-china-tech-canon
2•jger15•13m ago•0 comments

The natural clocks that can pinpoint someone's time of death

https://www.bbc.com/future/article/20250926-the-natural-clocks-that-can-pinpoint-the-time-of-death
1•pseudolus•14m ago•0 comments

Tomorrow Corporation Tech Demo [video]

https://www.youtube.com/watch?v=72y2EC5fkcE
1•nmilo•16m ago•0 comments

Why more people are going to gigs, festivals and clubs alone

https://www.theguardian.com/music/2025/oct/21/why-more-people-going-gigs-festivals-clubs-alone
1•pseudolus•17m ago•0 comments

Suzanne Somers' widower is trying to recreate her with AI

https://ew.com/suzanne-somers-widower-is-trying-to-recreate-her-with-ai-11834409
1•geox•19m ago•0 comments

Perplexity at Work: A Guide to Getting More Done [pdf]

https://r2cdn.perplexity.ai/pdf/pplx-at-work.pdf
1•theonionspeaks•20m ago•0 comments

Illinois utility tries using electric school buses for bidirectional charging

https://insideclimatenews.org/news/03102025/illinois-electric-school-bus-vehicle-to-grid-program/
2•PaulHoule•27m ago•0 comments

Chris Paik: A Taxonomy of Innovation – Capacity, Coordination, and Connectivity

https://docs.google.com/document/d/1unzEKQG0MD85JjZCPtjvwtvjZI8Sen8mEp1-Gn3JHDY/edit?tab=t.0
1•jger15•28m ago•0 comments

Show HN: LunaRoute – a high-performance local proxy for AI coding assistants

https://github.com/erans/lunaroute
3•erans•28m ago•1 comments

ShieldAI Launches the X-Bat

https://www.cnbc.com/2025/10/21/exclusive-first-look-at-shield-ais-x-bat-ai-piloted-fighter-drone...
1•robgourley•33m ago•0 comments

No Appointments, No Nurses, No Private Insurance Needed

https://www.theatlantic.com/health/2025/10/medicaid-mango-house/684488/
2•JumpCrisscross•35m ago•0 comments

Cursor Launched on HN in 2023 and got flamed

https://news.ycombinator.com/item?id=35285047
2•zachperkel•38m ago•0 comments

AI Video Maker – Generate videos from text or images using Sora, Veo, and more

https://apps.apple.com/rs/app/ai-video-generator-aivideo/id6736862905
3•virtualminds•38m ago•2 comments

15M Budget Line That Doesn't Exist – Certificates

https://blog.axonshield.com/the-15-million-budget-line-that-doesnt-exist/
2•dc352•41m ago•0 comments

A billionaire has rebuilt downtown Detroit

https://www.economist.com/united-states/2025/10/15/a-billionaire-has-rebuilt-downtown-detroit
3•yakkomajuri•45m ago•1 comments

Knowledge Transfer from High-Resource to Low-Resource Languages for Code LLMs (2023)

https://arxiv.org/abs/2308.09895
1•peatmoss•46m ago•0 comments

C++26: Printing `std:tuple` with expression templates

https://www.cppstories.com/2025/tuple-iteration-cpp26/
2•ashvardanian•49m ago•0 comments

"Butt breathing" might soon be a real medical treatment

https://arstechnica.com/science/2025/10/butt-breathing-might-soon-be-a-real-medical-treatment/
4•zdw•51m 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•6mo ago

Comments

palata•6mo 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•6mo 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•6mo 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•6mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•6mo 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•6mo 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•6mo 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•6mo 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•6mo 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•6mo 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•6mo 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.