frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Enterprise AI Operating System

https://devnavigator.com/2026/08/25/enterprise-ai-operating-system/
1•devnavigator•57s ago•0 comments

Russian drone guided by AI kills civilians in Ukraine

https://www.aerotime.aero/articles/russian-drone-guided-entirely-by-ai-kills-civilians-in-ukraine
1•r2sk5t•8m ago•1 comments

I turned a crappy movie tracking spreadsheet for my friends into website

https://jesse.id/blog/my-friends-and-i-take-turns-picking-movies-to-watch-i-converted-our-crappy-...
1•jesse_dot_id•9m ago•0 comments

Some purchased movies on AppleTV are no longer accessible

https://twitter.com/AntoineRichard/status/2091845412151771449
2•erickhill•15m ago•0 comments

The Great Blood Pressure Scam – By a Midwestern Doctor

https://www.midwesterndoctor.com/p/the-great-blood-pressure-scam
1•bilsbie•17m ago•0 comments

Data Centre Slumlord

https://binary-mirror.itch.io/data-centre-slumlord
1•minimaxa•24m ago•0 comments

Nvidia says Groq racks will be online this year following $20B purchase

https://www.cnbc.com/2026/08/24/nvidia-says-groq-racks-will-be-online-this-year-after-20-billion-...
2•geoffbp•24m ago•0 comments

Runway Ruby

https://twitter.com/runwayml/status/2090807248402682101
1•handfuloflight•24m ago•0 comments

Flex: Let the Model Write the Code

https://www.cmpnd.ai/blog/let-the-model-write-the-code.html
1•gmays•26m ago•0 comments

Facial recognition mandatory in New South Wales gaming rooms under proposal

https://www.smh.com.au/politics/nsw/facial-recognition-mandatory-in-nsw-gaming-rooms-under-latest...
2•milderworkacc•31m ago•0 comments

I built an agent-skill that turns your texts into diagrams and BI-visuals

https://github.com/imshaikot/render-visual-skill
2•imshaikot•31m ago•0 comments

Spinifex: Production Cloud Deployments Where the Cloud Can't Reach

https://github.com/mulgadc/spinifex
3•toddyholiday•31m ago•0 comments

Migrating the SEO on page from custom codeto Laravel/head for Laraplugins

https://danielpetrica.com/laravel-head-package-migration/
2•danielpetrica•34m ago•0 comments

What languages are agent skills written in?

https://plicara.ai/research/agent-skill-languages/
3•3Mathematicians•34m ago•0 comments

Show HN: Pyrift – static analyser for silent Python/PyPy behaviour differences

https://github.com/BHUVANSH855/pyrift
2•BHUVANSH855•39m ago•0 comments

We Probably Can't Terraform Mars [video]

https://www.youtube.com/watch?v=mJF3JiwQk0g
2•binyu•42m ago•0 comments

Nvidia wants to 'copy China's homework' and China welcomes this

https://www.globaltimes.cn/page/202608/1368937.shtml
4•Alien1Being•42m ago•0 comments

DK Digital SEO

https://dkdigitalseo.online/
2•davidochieng•43m ago•0 comments

SiFive Accelerates RISC-V Datacenter Adoption with the BigSky Development Server

https://www.businesswire.com/news/home/20260824644642/en/SiFive-Paves-the-Path-to-Accelerated-Ado...
2•fork-bomber•45m ago•0 comments

Headlong: Microharness Featuring Persistent Agency

https://github.com/laude-institute/headlong
3•handfuloflight•47m ago•1 comments

Whatever Happened to End BeOS?

https://www.youtube.com/watch?v=5m9mzxRXOBA
2•cable2600•47m ago•0 comments

Vetta: Long-Horizon Agents

https://www.vetta.sh/
2•handfuloflight•49m ago•0 comments

OAuth for Agents

https://blog.exe.dev/oauth-for-agents
2•terryds•49m ago•0 comments

How to write a thesis, according to Umberto Eco

https://thereader.mitpress.mit.edu/umberto-eco-how-to-write-a-thesis/
3•teleforce•51m ago•0 comments

Google Fuchsia Testing on Pixel Watch

https://www.reddit.com/r/Fuchsia/comments/1vs6zce/fuchsia_testing_on_pixel_watch/
3•i23942ok•52m ago•0 comments

Who will decide that level AI you have access to?

https://guustaaf.substack.com/p/governments-will-decide-what-level-ai-you-have-access-to
3•Guustaaf•52m ago•3 comments

Vancouver Coastal Sea Wolf

https://en.wikipedia.org/wiki/Vancouver_Coastal_Sea_wolf
2•thunderbong•53m ago•0 comments

Goove-bar – A menu app bar for managing Goove lights and devices

https://github.com/dashersw/govee-bar
2•arbayi•53m ago•0 comments

Gavin Newsom Has an $18B Plan to Shore Up California's Utilities

https://www.wsj.com/finance/california-gavin-newsom-utilities-plan-eedff9eb
1•newsomix9xl•58m ago•2 comments

How Much to Charge-Freelance/Contracting – Web/UX/Dev/Marketing Any Niche (2026)

2•Yeagerist•59m 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•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.