frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AGI brain project. I wonder whether anybody would like to join in and help me?

2•AGIEnthusiast•3m ago•0 comments

Public Schools' Eye of Sauron

https://www.educationnext.org/public-schools-eye-of-sauron-student-surveillance-merrill-v-marana-...
1•Tomte•4m ago•0 comments

MCP server integration for DaVinci Resolve Studio

https://github.com/samuelgursky/davinci-resolve-mcp
1•rldjbpin•4m ago•0 comments

Show HN: AgentPulse – Claude Code and Codex status in tmux

https://github.com/jerriclynsjohn/tmux-agent-pulse
1•jerriclynsjohn•6m ago•0 comments

Claude, change the "Add to Cart" button to blue

https://opusfived.dev/
2•matthieu_bl•9m ago•0 comments

What's New in Houdini 22

https://www.sidefx.com/products/whats-new-in-h22/
1•embedding-shape•9m ago•0 comments

CopyWheel – a radial snippet menu for macOS (native, 1 MB)

https://github.com/weselski/copywheel
1•kweselski•10m ago•0 comments

OpenClaw v2026.9.3: Live browser automation, persistent skills, and cloud work

https://docs.openclaw.ai/releases/2026.9.3
1•CoderLim110•15m ago•0 comments

MemCP – Faster than MySQL and Postgres by up to 90x

https://github.com/launix-de/memcp
1•carli2•16m ago•1 comments

Losing control of AI is the plan

https://www.theargumentmag.com/p/losing-control-of-ai-is-actually
3•DGAP•17m ago•0 comments

Show HN: Agent payments by social handles (not Stripe-based, not on bank rails)

https://github.com/Quidli/connect-mcp
1•jahn716•17m ago•0 comments

Tokendiet – see what your Claude Code session costs, for zero tokens

https://github.com/mcancellotti/tokendiet
1•mcancellotti•18m ago•0 comments

Solving the Dilemma of Screen Time

https://www.gse.harvard.edu/ideas/ed-magazine/26/04/solving-dilemma-screen-time
1•Tomte•19m ago•0 comments

Booting Linux [pdf]

https://www.almesberger.net/cv/papers/ols2k-9.pdf
1•ankitg12•20m ago•0 comments

Silicon Valley-backed Covenant unveils low-cost, mass-producible cruise missile

https://www.reuters.com/business/aerospace-defense/silicon-valley-backed-covenant-unveils-low-cos...
1•Hoasi•22m ago•0 comments

The Reinvention of Liberal Arts Colleges

https://www.educationnext.org/reinvention-of-liberal-arts-colleges-higher-education-brandeis-univ...
1•Tomte•25m ago•0 comments

Anthropic aligment lead warns about extinction by AI

https://twitter.com/EvanHub/status/2097497037956891126
1•margorczynski•26m ago•1 comments

Amazon Profitability Calculator

https://clarisix.com/amazon-profitability-calculator
1•claudiuclement•27m ago•0 comments

Mapped: Europe's Biggest Budget Deficits

https://www.visualcapitalist.com/mapped-europes-biggest-budget-deficits/
1•leonidasrup•28m ago•0 comments

Y Combinator, Mapped

https://dashboard.vclense.ch/ycglobe
1•plurby•29m ago•0 comments

PHP is Dead (and AI is to blame)

https://www.lifeofguenter.de/2026/09/php-is-dead-and-ai-is-to-blame
1•lifeofguenter•34m ago•0 comments

Show HN: Impress your boss with interactive Scikit-Learn Decision Tree

https://github.com/mljar/supertree
2•pplonski86•37m ago•0 comments

What makes $BigTechCompany's products bad, anyway?

https://herecomesthemoon.net/2026/09/why-is-big-tech-bad/
2•birdculture•38m ago•0 comments

Show HN: Project Estimator – a free, no sign-up software cost estimator

https://project-estimator.webround.net/
1•LucaSiviero•39m ago•0 comments

US claims Chinese AI firms are carrying out 'industrial-scale' theft

https://www.cnn.com/2026/09/08/politics/us-accuses-china-of-stealing-ai-technology
4•jllyhill•39m ago•1 comments

Primework by Kunst X

https://kunstx.online/primework/
2•kunstx•39m ago•1 comments

Bristol Myers' blood cancer cell therapy succeeds in mid-stage trial

https://www.reuters.com/business/healthcare-pharmaceuticals/bristol-myers-blood-cancer-cell-thera...
2•thunderbong•40m ago•0 comments

How Much of the Internet Is Written with AI?

https://www.pewresearch.org/data-labs/2026/08/20/how-much-of-the-internet-is-written-with-ai/
3•dp-hackernews•41m ago•0 comments

Steam now requires Australian users to verify their age with a credit card

https://www.reddit.com/r/Games/comments/1wbauz5/steam_now_requires_australian_users_to_verify/
2•haunter•41m ago•0 comments

Show HN: CreepyLink: A fun tool to turn safe URLs into suspicious looking links

https://www.creepylink.online
1•tangjei•43m 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.