frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I Don't Want My Life to Be an Act of Letting Go

https://medium.com/@ruthodu/i-dont-want-my-life-to-be-an-act-of-letting-go-36e0b928dbe0
1•gmays•1m ago•0 comments

Show HN: PseudoRun – I built a pseudocode runner by yelling at AI

https://pseudorun.tech
1•crypt0phage•1m ago•0 comments

AWS Glue zero-ETL for self-managed Database Sources

https://aws.amazon.com/about-aws/whats-new/2025/11/glue-zero-etl-selfmanaged/
1•polskibus•4m ago•0 comments

Show HN: Horizontal Cylinder Chess

https://deanalvero.github.io/horizontal-cylinder-chess/
2•deanalvero•14m ago•0 comments

Show HN: SunshinePal – Track your actual sunlight exposure with Apple Watch

https://apps.apple.com/app/id6755173558
1•elevenapril•15m ago•3 comments

How to Never Get Overstimulated Again

https://substack.com/home/post/p-177511410
2•gmays•16m ago•0 comments

What a cranky new book about progress gets right

https://www.theatlantic.com/books/2025/11/paul-kingsnorth-against-the-machine/684848/
1•gyomu•18m ago•0 comments

"Blissfully Happy" or "Ready to Fight": Varying Interpretations of Emoji [pdf]

https://cdn.aaai.org/ojs/14757/14757-28-18275-1-2-20201228.pdf
1•knuckleheads•19m ago•1 comments

Topological turning points across the human lifespan

https://www.nature.com/articles/s41467-025-65974-8
1•nis0s•20m ago•0 comments

Automatic Bonnell Spring Coiling and Assembly Machine [video]

https://www.youtube.com/watch?v=PqnHAKuDy-0
1•kimkoo•21m ago•1 comments

Investigating a Possible Scammer in Journalism's AI Era

https://thelocal.to/investigating-scam-journalism-ai/
1•encomiast•23m ago•0 comments

Series Resistor

1•ycombele•25m ago•0 comments

Show HN: oeis-tui – A TUI to search OEIS integer sequences in the terminal

https://github.com/hako/oeis-tui
1•wesleyhill•26m ago•0 comments

Docker Desktop 4.50: Indispensable for Daily Development

https://www.docker.com/blog/docker-desktop-4-50/
1•clarkmaxwell•27m ago•0 comments

Users brutually reject Microsoft's "Copilot for work" in Edge and Windows 11

https://www.windowslatest.com/2025/11/28/you-heard-wrong-users-brutually-reject-microsofts-copilo...
3•robtherobber•27m ago•0 comments

Why do companies lie about uptime?

https://bashify.io/i/t0fLUg
1•haar•29m ago•1 comments

Smuggled North Korean phones reveal a dark reality

https://m.economictimes.com/magazines/panache/smuggled-north-korean-phones-reveal-5-chilling-feat...
1•gscott•36m ago•0 comments

Favourite influencer hasn't got a dozen dachshund dogs. It's just AI

https://www.bbc.co.uk/news/articles/c7vm5d42r8mo
1•spzb•36m ago•0 comments

Room temperature carbon capture in graphene

https://www.nature.com/articles/s41467-025-65336-4
2•bookofjoe•37m ago•0 comments

Underground AI models promise to be hackers 'cyber pentesting waifu'

https://cyberscoop.com/malicious-llm-tools-cybercrime-wormgpt-kawaiigpt/
1•thm•39m ago•0 comments

Show HN: Traffic, funding rounds, and chai – Bangalore startup life as a game

https://xagi-labs.github.io/siliconhalli
1•sauravt•42m ago•0 comments

What to Do When Creating Your CodeQL Database Fails – and How to Report the Per

https://intrigus.org/research/2025/11/28/what-to-do-when-codeql-database-creation-fails/
1•todsacerdoti•44m ago•0 comments

Show HN: Lightweight macOS menu bar Pomodoro Timer

https://github.com/berkaycit/pomodo-timer
1•berkaycit•45m ago•0 comments

The Biggest Causes of Medical Device Recalls

https://spectrum.ieee.org/medical-device-recalls
2•quapster•45m ago•0 comments

Tell HN: Telegram App iOS Woes

1•op7•48m ago•0 comments

U.S. peace plan for Ukraine formulated months ago by Kremlin operative

https://theins.ru/en/politics/287159
2•ironyman•49m ago•0 comments

Show HN: Self-hosted RAG for docs and code (FastAPI, Docling, ChromaDB)

https://github.com/2dogsandanerd/Knowledge-Base-Self-Hosting-Kit
1•2dogsanerd•54m ago•1 comments

MasonEffect – Particle-based text morphing library (now supports Svelte)

1•fe-hyunsu•54m ago•0 comments

Taking Jaggedness Seriously

https://helentoner.substack.com/p/taking-jaggedness-seriously
1•imjacobclark•55m ago•0 comments

It Is Possible to Spend Too Much on AI

https://www.wsj.com/tech/it-really-is-possible-to-spend-too-much-on-ai-7bb68df1
2•1vuio0pswjnm7•57m 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•7mo ago

Comments

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

https://reportmill.com/SnapCode

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