frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI's Rogue-Agent Incident Has Become a Test of Its Safety Culture

https://ai-updates.net/openai-rogue-agent-incident-safety-culture-test/
1•ashurandi•46s ago•0 comments

Show HN: NotABot – A game to help train human-vs-bot detection models

https://notabot-five.vercel.app
1•zefparis•2m ago•0 comments

Open-sourcing the For You timeline in X.com

https://twitter.com/i/status/2087951962004230428
1•yarapavan•5m ago•0 comments

Show HN: WinCore – Open-Source Windows Utilities for AI and PyTorch

https://github.com/FWKMultiverse/WinCore
1•FWK_Multiverse•8m ago•0 comments

Apple Pay Chief Jennifer Bailey Retiring in October

https://www.macrumors.com/2026/08/11/apple-pay-chief-retiring/
1•ksec•9m ago•1 comments

The Lens structured patent database

https://www.lens.org/lens/search/patent/structured
1•q7m•11m ago•0 comments

RIP Claude – Aggressively writer-hostile

https://randsinrepose.com/archives/rip-claude/
1•LexSiga•16m ago•1 comments

Twenty Years of My Open Source Project

https://nemanjatrifunovic.substack.com/p/twenty-years-of-my-open-source-project
1•ingve•17m ago•0 comments

Looking for Techinal Experts

https://joinsyndicate.netlify.app/
1•PrimalOrigins•19m ago•0 comments

Z.ai Security

https://cvd.z.ai/
1•whwhyb•22m ago•0 comments

History of Flagellation (1926)

https://gutenberg.org/cache/epub/79361/pg79361-images.html
1•petethomas•23m ago•0 comments

Modelio 6.2 ported to native Apple Silicon ARM64 with Codex

https://github.com/sertitech/Modelio
1•rvlsnjk•24m ago•0 comments

Ruby 4.0 Universal RCE Deserialization Gadget Chain

https://www.elttam.com/blog/ruby-4-0-universal-rce-deserialization-gadget-chain
1•pentestercrab•25m ago•0 comments

Show HN: XFlux – X/Twitter read API and account monitors (free tier)

https://www.xfluxapi.com
1•xflux•25m ago•0 comments

Poems. by William Blake (1911)

https://gutenberg.org/cache/epub/79363/pg79363-images.html
1•petethomas•26m ago•0 comments

Agent Safety Should Be a Runtime Contract

https://arxiv.org/abs/2608.11274
1•sbulaev•27m ago•0 comments

China-linked hackers hit Taiwan in 'autonomous' AI cyber attack

https://www.ft.com/content/7d2ab3e0-9085-48f6-b38a-d90260d58795
1•sbulaev•27m ago•0 comments

Anthropic's Agent Tests Turned Shared Work into a Turf War

https://ai-updates.net/anthropic-agent-tests-shared-work-turf-war/
1•ashurandi•30m ago•0 comments

A simple fix for LLM tail latency

https://engineering.myhoai.com/posts/a-simple-fix-for-llm-tail-latency/
1•oskrim•36m ago•0 comments

Why Does Claude.md Keep Growing? Catastrophic Remembering in Agentic Coding

https://arxiv.org/abs/2608.11095
1•oskrim•36m ago•1 comments

Watermarking AI Text Is Fundamentally Flawed

https://negativestarinnovators.com/blog/watermarking-ai-text-is-fundamentally-flawed
1•pizzly•40m ago•0 comments

Homeland Security spied on Minnesotans who spoke out against ICE

https://www.mprnews.org/story/2026/08/13/attorney-says-homeland-security-spied-on-minnesotans-who...
6•_tk_•40m ago•0 comments

I might have solved computer use

https://github.com/lahfir/agent-desktop/releases/tag/v0.8.1
1•lahfir•41m ago•1 comments

A Preview of Roc 0.1.0

https://www.youtube.com/watch?v=a7qEOtkkDb8
1•torrance•42m ago•0 comments

Is HTTPS://status.claude.com loading for you all?

3•soorajsanker•43m ago•3 comments

Cory Doctorow on Why AI Won't Replace Workers, but Will Crash the Economy [video]

https://www.youtube.com/watch?v=rRRmUuxJolY
2•b800h•44m ago•2 comments

Tether Clears First Full Audit from KPMG Without Publishing the Statements

https://thedefiant.io/converge/cefi/tether-clears-first-full-audit-from-kpmg-without-publishing-t...
2•negura•47m ago•0 comments

Oxford Electric Bell

https://en.wikipedia.org/wiki/Oxford_Electric_Bell
1•gurjeet•48m ago•0 comments

Speeding Up (Small) Ruby Hashes

https://byroot.github.io/ruby/performance/2026/08/13/speeding-up-ruby-hashes.html
1•arto•49m ago•0 comments

The Master of Consilience

https://asindu.blog/posts/the-master-of-consilience
1•asxndu•49m 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.