frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cognoscenti: A Benchmark for Trustworthy AI Memory

https://github.com/Achiral-AI/cognoscenti
1•marvindanig•10s ago•0 comments

Latest BGP Hijack Targets Hosting Software Vendor

https://www.kentik.com/blog/latest-bgp-hijack-targets-hosting-software-vendor/
1•oavioklein•1m ago•0 comments

Gemini 3.8 Flash

https://ai.google.dev/gemini-api/docs/models/gemini-3.8-flash
1•vinhnx•1m ago•0 comments

Panic Room, a local zero-dependency sandbox for agents

https://github.com/storesm/panicroom
1•watchdog408•2m ago•0 comments

Artificial Deadlines (Part 2): Retrograding Ariely and Wertenbroch (2002)

https://datacolada.org/139
1•oldgradstudent•4m ago•0 comments

Gemini 3.8 Flash benchmark scores

https://twitter.com/synthwavedd/status/2095166019010494891
1•dataking•5m ago•0 comments

Gemini 3.8 Flash

https://deepmind.google/models/model-cards/gemini-3-8-flash/
2•bratao•5m ago•0 comments

GLM-5.3-Flash at 1000 tok/s on RTX PRO 6000

https://www.localmaxxing.com/en/models/zai-org/GLM-5.3-Flash?run=cmtk0maew03mrp701oyaivvka
1•davedx•6m ago•0 comments

Mistral Vibe Code: GLM 5.2 is now available

https://twitter.com/mistralvibe/status/2094705817450606725
1•tosh•7m ago•0 comments

All 16 New Russian Starlink-Rival Satellites Short of Target Orbit

https://www.businessinsider.com/all-16-new-russian-starlink-rival-satellites-short-target-orbit-2...
1•pavel_lishin•7m ago•0 comments

The North Sea Gas is not just about the North Sea Gas

https://edconway.substack.com/p/the-north-sea-is-not-just-about-the
1•baud147258•7m ago•0 comments

Industry Standard Tools

https://industrystandard.tools/
1•colinprince•7m ago•0 comments

Are We Approaching "Peak Ship"?

https://edconway.substack.com/p/are-we-approaching-peak-ship
1•baud147258•8m ago•0 comments

What's new in Claude Fable 5.1

https://platform.claude.com/docs/en/models/fable-5-1/whats-new-fable-5-1
1•Bluestein•8m ago•0 comments

Getting hitched? Protect your finances with a prenup (2023)

https://text.npr.org/1196872794
1•mooreds•8m ago•0 comments

Kubernetes Is No Longer Just a Container Platform, It's Your AI Infrastructure

https://cloudelligent.com/blog/kubernetes-ai-infrastructure/
1•mooreds•9m ago•0 comments

Show HN: Build a Computer from a Distributed Network

https://github.com/FawcettJohnW/FrogNet-Living-Network
1•jfawcett•10m ago•1 comments

Researchers trick Fortune-500 AI agents into running arbitrary code via llms.txt

https://www.tomshardware.com/tech-industry/artificial-intelligence/researchers-easily-trick-fortu...
1•sbulaev•11m ago•0 comments

Your agents are in the field. Give them their orders.

https://theagencyhq.dev/
1•mooreds•12m ago•0 comments

JointJS vs. React Flow – The Comparison of Two React Diagramming Libraries

https://neoteric.eu/blog/jointjs-vs-react-flow-comparison/
1•durman•12m ago•0 comments

Retake the Lake: A Chrome Plug-In That Corrects "Lake America" to "Lake Ontario"

https://www.globalnerdy.com/2026/08/31/retake-the-lake-a-chrome-browser-plug-in-that-corrects-lak...
1•conner_bw•13m ago•0 comments

New York City Public Schools banning AI use through middle school

https://abcnews.com/Technology/new-york-city-public-schools-banning-ai-middle/story?id=136134872
1•MallocVoidstar•15m ago•0 comments

Is Russia's rival to Starlink failing?

https://arstechnica.com/space/2026/09/rassvet-russias-rival-to-starlink-is-getting-off-to-a-slow-...
2•pinewurst•16m ago•0 comments

Solar Power Is Booming in Emerging Markets

https://oilprice.com/Alternative-Energy/Solar-Energy/Solar-Power-Is-Booming-in-Emerging-Markets.html
5•thelastgallon•17m ago•0 comments

A paradigm shift in text selection

https://ishmael.textualize.io/blog/shift-select/
2•willm•18m ago•0 comments

Gemini 3.8 Flash Model card [pdf]

https://storage.googleapis.com/deepmind-media/Model-Cards/Gemini-3-8-Flash-Model-Card.pdf
7•sva_•18m ago•0 comments

Gemini 3.8 Flash appears to be rolling out now

https://www.reddit.com/r/GeminiAI/comments/1w5c4dd/38_flash_released_in_webui
6•notdian•19m ago•1 comments

The Highest Point in the Netherlands

https://ipv6.hanazo.no/posts/anniversary-personal/
2•haasted•19m ago•0 comments

Double Blind Evals: Resolving the Dual Confidentiality Dilemma in AI Safety...

https://storage.googleapis.com/deepmind-media/DeepMind.com/Blog/piloting-the-worlds-first-double-...
2•williamtrask•19m ago•0 comments

We built a tool that lets Claude edit videos in one prompt

https://github.com/veedstudio/open-edit
2•hackerabi•20m 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.