frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Apple's Passwords App Becomes Agentic

https://www.heise.de/en/news/Apple-s-Passwords-App-Becomes-Agentic-11328901.html
1•Tomte•1m ago•0 comments

Claude Opus is more performant on OpenCode than Claude Code

https://artificialanalysis.ai/agents/coding-agents
2•log101•3m ago•0 comments

The Slack Notifications Flowchart Explained

https://www.magicbell.com/blog/slack-notifications-flowchart
2•ColinWright•4m ago•0 comments

Mac OLM to PST Outlook Converter Software

https://apps.microsoft.com/detail/9n7jk7z3546j?hl=en-US&gl=US
1•tieanderson•5m ago•0 comments

BYD is bringing its 5-min 'Flash' electric car charging to Canada

https://electrek.co/2026/06/10/byd-flash-charging-canada-5-minute-ev-charging-network/
1•breve•5m ago•0 comments

Can $100 ChatGPT and Claude Fable Solve PhD Math? [video]

https://www.youtube.com/watch?v=M_sOV7ErX7Q
1•Topfi•6m ago•0 comments

Science confirms: Cats help you only when there's something in it for them

https://www.scientificamerican.com/article/cats-unlike-dogs-and-toddlers-help-you-only-when-it-he...
1•haltingproblem•7m ago•1 comments

Ask HN: Is there a metric for AI code quality?

1•fractalf•7m ago•0 comments

The story behind Argentina's new World Cup jersey

https://www.rte.ie/brainstorm/2026/0611/1577523-argentina-world-cup-2026-alternative-jersey-filet...
1•austinallegro•7m ago•0 comments

The U.S. Is Terrorizing Cuba to Make Rich Men Richer

https://www.currentaffairs.org/news/the-u.s.-is-terrorizing-cuba-to-make-rich-men-richer
3•robtherobber•12m ago•0 comments

Sitemaps and robots.txt – Practical guide for SEOs and developers

https://mysevenstars.com/articles/SEO-SiteMaps-Robots-Google.html
1•mssblogs•13m ago•0 comments

Steve Jobs in Exile is a fine profile of Jobs' years at NeXT

https://arstechnica.com/apple/2026/06/steve-jobs-in-exile-is-a-fine-profile-of-jobs-years-at-next/
2•initramfs•14m ago•0 comments

Why tracking ports is better than tracking vessels for supply chain data

https://coloneltoad.substack.com/p/the-hard-part-of-alternative-data
1•tolugenius•15m ago•0 comments

Passports and photo IDs were left unprotected on the public internet

https://www.theverge.com/tech/947157/passports-data-breach-cannabis-club-systems-nefos-puffpal
2•SockThief•16m ago•0 comments

Miz Framework

https://eazymizy.com
1•sajjadws•18m ago•0 comments

AI Boom Stokes Inflation with Memory Chips at 'Insane' Prices

https://www.bloomberg.com/news/articles/2026-06-11/us-inflation-driven-partly-by-ai-boom-fueling-...
1•emot•18m ago•0 comments

Human migration has surged since 2000 – these maps reveal where people are going

https://www.nature.com/articles/d41586-026-01796-y
9•tzury•20m ago•2 comments

Show HN: I applied Lyapunov stability theory to detect when LLM agents spiral

https://github.com/vishal-dehurdle/state-harness
2•visha1v•25m ago•0 comments

WSP WordPress MCP – Connect AI Coding Agents to WordPress

https://github.com/bilalnaseer/wsp-wordpress-mcp
1•ibrarmaikah•26m ago•0 comments

The Illusion of Determinism

https://www.normallydistributed.dev/the-illusion-of-determinsim/
3•jillcates•26m ago•0 comments

DiffFlow: Developer-Grade Website Change Monitoring

https://diffflow.com/blog/announcing-diffflow/
1•7rin0•27m ago•0 comments

Andrew Neil's new podcast [video]

https://www.youtube.com/watch?v=cfF-susbboI
1•mellosouls•31m ago•0 comments

Feds will abruptly dismantle system monitoring climate change, oceans

https://www.usatoday.com/story/news/nation/2026/06/11/climate-change-ocean-monitoring-system-dism...
4•OutOfHere•34m ago•0 comments

Stadium Selfie

https://apps.apple.com/us/app/stadium-selfie/id6776387163
2•IAmbarbosa•35m ago•1 comments

Ranking the random voice chat apps/platforms

https://mindfuse.io/random-voice-chat
2•Joeribon•35m ago•0 comments

Bye-bye Butterflies

https://europeancorrespondent.com/en/r/byebye-butterflies
2•stared•35m ago•0 comments

Show HN: Realtime voice agent that sees, hears, and interrupts – on a CPU laptop

https://github.com/kouhxp/cheap-im
1•mrkn1•38m ago•0 comments

American capitalism is run by millionaires, not billionaires

https://www.economist.com/business/2026/06/10/american-capitalism-is-run-by-millionaires-not-bill...
3•bazzmt•39m ago•3 comments

Show HN: A skill to audit your dbt project for what an AI agent will get wrong

https://github.com/GetCassis/dbt-agent-readiness
2•matthieu_bl•40m ago•0 comments

Show HN: Claumon – forecasting Claude Code usage limits with a Gamma process

https://github.com/fabioconcina/claumon
2•fabioconcina•41m 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.