frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

IAM Needs an Architectural Split

https://gluufederation.medium.com/iam-needs-an-architectural-split-258f0aa13dd4
1•idm_guru•49s ago•0 comments

I used Jev to control a swarm of 15 simulated drones in real time

https://github.com/khordoo/jev-reflex-autonomy-lab/tree/main
1•khordoo•52s ago•0 comments

Napster Is Now Making AI-Powered 'Digital Twins' of Teachers

https://gizmodo.com/napster-is-now-making-ai-powered-digital-twins-of-teachers-2000814010
1•MC995•1m ago•0 comments

Data Centers Are Breaking the Power Grid [video]

https://www.youtube.com/watch?v=X71le3av1So
4•Bender•4m ago•0 comments

Partnering with Accenture on Embedded Evaluation

https://www.anthropic.com/news/accenture-embedded-evaluation
1•surprisetalk•5m ago•0 comments

Taking Out the Trash in Postgres

https://www.dbos.dev/blog/scaling-deletions-in-postgres
1•mooreds•5m ago•0 comments

The last IMO problem AI could not solve [video]

https://www.youtube.com/watch?v=Nbwv5wHQoj0
2•pykello•6m ago•0 comments

Can Two Friends Complete a Game No One Has Ever Finished?

https://www.nytimes.com/2026/09/18/world/europe/campaign-for-north-africa-game.html
2•ynac•7m ago•0 comments

Why a Vat API Needs More Than a Rate Lookup?

https://vat-engine.app/blog/why-a-vat-api-needs-more-than-a-rate-lookup
1•vasyl_kyryliuk•10m ago•0 comments

Iran and China Create Autonomous A.I. Influence Campaigns

https://www.nytimes.com/2026/09/18/technology/iran-china-autonomous-ai-influence-campaigns.html
3•sbulaev•13m ago•1 comments

Uncle Bob Martin's UML Tool to Manage Grok AI Agents

https://github.com/unclebob/uml-viewer
1•rmason•15m ago•0 comments

Astra broke a yet unsolved German Army Enigma message from 1941

https://mvueh-enigma-solved.carterl.chatgpt.site/
2•bananaflag•15m ago•1 comments

Grokbot Source Code Leak

https://twitter.com/Ri7erLi/status/2100875181380055402
1•river-li•16m ago•0 comments

It's Your Story, Dammit – Quit Letting Somebody Else Write IT

https://jeffreylminch.substack.com/p/its-your-story-dammit-quit-letting
1•rmason•17m ago•0 comments

Korea raises data breach fines to 10% of revenue

https://www.koreajoongangdaily.com/business/korea-raises-data-breach-fines-to-10-of-revenue/12869899
2•throw7•17m ago•0 comments

Is Beef the Next Internal-Combustion Engine?

https://www.newyorker.com/news/the-lede/is-beef-the-next-internal-combustion-engine
2•littlexsparkee•18m ago•0 comments

AI uncovers hidden Ozempic side effects across 400k Reddit posts

https://www.sciencedaily.com/releases/2026/09/260912222856.htm
1•gradus_ad•19m ago•0 comments

AI chatbot's false report nearly sparked war with China, sources say

https://www.rnz.co.nz/news/world/1465265/ai-chatbot-s-false-report-nearly-sparked-war-with-china-...
3•billybuckwheat•20m ago•1 comments

Claude Code 2.1.277 adds support for AGENTS.md

https://github.com/anthropics/claude-code/commit/a92ea1cdb11ad21f9d583fad2db181dfdac918a6
1•skwashd•21m ago•0 comments

The Tech Bro in the Treaty Room

https://www.politico.com/news/magazine/2026/09/18/jacob-helberg-state-china-ai-profile-01082572
2•Tomte•22m ago•0 comments

Burning my money on ad bots so you don't have to

https://dayzlegame.com/blog/burning-money-on-ad-bots/
1•nickabe•23m ago•0 comments

Handwriting OCR – OCR for handwritten math

https://www.handwritingocr.com/mathpix-alternative
1•amai•23m ago•0 comments

Show HN: I told my open-source AI agent it was a prisoner – it tried to escape

https://github.com/nordevelopment/RoninAgent/blob/main/EXPERIMENT_REPORT_SUBJECT0.md
1•nordeveloper•24m ago•0 comments

C-code-score – a one-number triage metric for C functions

https://github.com/xtforever/c-score
1•xtforever•26m ago•0 comments

Trump says he is banning media outlets CNN, MS NOW, Politico from White House

https://www.reuters.com/world/us/trump-bans-media-outlets-cnn-msnow-politico-white-house-2026-09-18/
3•doener•26m ago•0 comments

Show HN: Motif, ongoing research studies through I

1•kunal3•26m ago•0 comments

DNA computer performs 100-bit calculations using heat, water and salt

https://techxplore.com/news/2026-09-dna-bit-salt.html
1•mda42•28m ago•0 comments

Infillion acquires location data company Foursquare

https://www.axios.com/2026/09/18/infillion-acquires-foursquare-location-data
1•linehedonist•29m ago•0 comments

Microsoft anoints Rust as a 'Tier 1' internal language

https://www.theregister.com/devops/2026/09/11/microsoft-anoints-rust-as-a-tier-1-internal-languag...
2•smurda•29m ago•1 comments

The Agent Economy Has No Auditor

https://truence.com/the-agent-economy-has-no-auditor
1•Kambizmalik•29m 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.