frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The little-told story of the WWII pet cull (2013)

https://www.bbc.com/news/magazine-24478532
1•Teever•1m ago•0 comments

Cloudflare Wallet, developers who need it can reserve a name they like

https://cloudflare.pay/
1•BearBest•1m ago•0 comments

Show HN: Structured search for Who is hiring threads

https://gethnjobs.com/
1•hboon•2m ago•0 comments

All Knowledge Is Provisional (2024)

https://www.sebastianmellen.com/post/2024/all-knowledge-is-provisional/
2•andsoitis•4m ago•0 comments

Farewell Etaoin Shrdlu (1978) [video]

https://www.youtube.com/watch?v=1MGjFKs9bnU
2•mitthrowaway2•6m ago•0 comments

Seeing the World Through Your Field (2024)

https://www.sebastianmellen.com/post/2024/seeing-the-world-through-your-field/
1•andsoitis•7m ago•0 comments

BorrowSanitizer

https://borrowsanitizer.com/
1•vinhnx•7m ago•0 comments

Tests for a PDF

https://blog.lvmbdv.dev/posts/tests-for-a-pdf/
1•vinhnx•7m ago•0 comments

Show HN: Memcode launches a new terminal coding agent

https://www.memcode.ai/
1•timerwin•8m ago•0 comments

Telegram Briefly Removed from App Store

https://www.macrumors.com/2026/08/04/telegram-briefly-removed-from-app-store/
1•zdkaster•9m ago•0 comments

Show HN: MCP for building secured apps on SQL databases

https://www.dronahq.com/mcp-server/
1•kinj28•16m ago•0 comments

Who coined the term "spin doctor"?

https://www.theguardian.com/notesandqueries/query/0,5753,-1124,00.html
2•teleforce•22m ago•0 comments

Cyberattacks target water systems in at least 12 states

https://www.axios.com/2026/08/04/water-cyberattacks-us-iran
2•toomuchtodo•23m ago•0 comments

Sendspin: Open standard for the complete music listening experience

https://github.com/Sendspin
1•teleforce•26m ago•0 comments

Are Native Americans in the final stages of cultural eradication in the USA?

https://medium.com/freedomofthought/are-native-americans-in-the-final-stages-of-cultural-eradicat...
1•raynchad•29m ago•1 comments

The Moral Compass of AI: Why Fairness Shapes Our Future

https://medium.com/freedomofthought/the-moral-compass-of-ai-why-fairness-shapes-our-future-d2aed5...
1•raynchad•39m ago•0 comments

SpaceX hit by surging AI costs as insiders prepare to sell their shares

https://www.nbcnews.com/business/business-news/spacex-earnings-surging-ai-costs-rcna590682
3•mapping365•40m ago•0 comments

Funding found for free meals in Seattle schools

https://www.seattletimes.com/education-lab/funding-found-for-free-meals-in-seattle-schools/
2•petethomas•42m ago•0 comments

Do you find paid contribution on AI Annotation (e.g. DataAnnotation), moral?

1•moorcheh•43m ago•2 comments

Massive Worms, Tiny Bodies: Why Horsehair Worms Might Be Good for Nature [video]

https://www.youtube.com/watch?v=1VSeb-ZNRYY
1•thunderbong•43m ago•0 comments

Solving the Shortest Vector Problem in $2^{0.6039n}$ Time via Mid-Point Hessian

https://arxiv.org/abs/2608.02478
1•sbulaev•45m ago•0 comments

Trump administration drafting ban on Chinese data center devices, sources say

https://www.reuters.com/world/trump-administration-drafting-ban-chinese-data-center-devices-sourc...
2•mikhael•46m ago•0 comments

I built an AI tool that turns your photo into a Greek mythology character

http://blurb.cam/
1•gaoheyang•47m ago•0 comments

Rochelle Hudson

https://the-wanderling.com/hudson.html
1•petethomas•49m ago•0 comments

Nucleus – A lightweight dashboard for Linux dev environments (PHP and systemd)

https://github.com/LebToki/Nucleus
1•LebToki•51m ago•0 comments

The White House Is Keeping Its AI Cybersecurity Framework Secret

https://www.wired.com/story/the-white-house-is-keeping-its-ai-cybersecurity-framework-secret/
4•reasonableklout•52m ago•0 comments

The Bitwarden subscription is now $20 a year

https://bitwarden.com/pricing/
2•mikalauskas•55m ago•0 comments

Reliability Lessons from SQLite – Richard Hipp | SSW (2026) [video]

https://www.youtube.com/watch?v=V_qzqY1bb7I
1•mif•56m ago•1 comments

Learning BASIC Like It's 1983 (2018)

https://twobithistory.org/2018/09/02/learning-basic.html
1•downbad_•57m ago•0 comments

NPM Registry Protocol

https://github.com/npm/statusboard/issues/340
1•jcbhmr•59m 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.