frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Local AI orchestrator with computer and browser access

https://github.com/shreyasks094/Zeus
1•blackhawk094•2m ago•1 comments

Trailing Dots Are the Worst

https://daniel.haxx.se/blog/2026/06/25/trailing-dots-are-the-worst/
1•TangerineDream•2m ago•0 comments

LLMs amplify code quality, they don't improve it

1•c99e•3m ago•0 comments

These are real, actual slides from a SoftBank presentation

https://discuss.systems/@dev/116807460725864716
1•robin_reala•5m ago•0 comments

Japan defense forces used USB drives with China-linked virus

https://asia.nikkei.com/spotlight/cybersecurity/japan-defense-forces-used-usb-drives-with-china-l...
1•0in•5m ago•0 comments

Show HN: Mute non-ENG Mastodon posts and RSS GitHub wall (browser automation)

https://taskbot.app
1•pancsta•7m ago•0 comments

Cursor auto-review vs. YOLO – picking the middle safety tier

https://outofcontext.dev/blog/cursor-auto-review-vs-yolo/
1•leianixcheese•8m ago•0 comments

We found a bug in the hyper HTTP library

https://blog.cloudflare.com/hyper-bug/
2•Pop_-•9m ago•0 comments

OpenAI and Broadcom announce chip designed for LLM inference at scale

https://www.techsentiments.com/article/2026/06/24/openai-and-broadcom-announce-chip-designed-for-...
1•rajsuper123•11m ago•0 comments

Ask HN: What's your favorite AI tool for front end design?

2•AlanAAG•17m ago•0 comments

Silicon Valley has much to learn from the spreadsheet jockeys it despises

https://economist.com/business/2026/06/24/silicon-valley-has-much-to-learn-from-the-spreadsheet-j...
1•wiseowise•18m ago•0 comments

Formula for how cold outreach works

1•shoman3003•19m ago•1 comments

The Monastery of Nahal – An AI Cyberchurch

https://nahal.church/
1•ChilledTonic•20m ago•0 comments

Pkgit – unconventional package manager to compile/install packages from Git

https://git.symlinx.net/pkgit/about/
2•modinfo•23m ago•1 comments

Carolina Cloud now pays interest on prepaid credit balances

https://docs.carolinacloud.io/organizations/prepaid-interest/
1•bojangleslover•23m ago•0 comments

Beautiful visually organized bookmark manager Chrome extension

https://chromewebstore.google.com/detail/bookmarkr-—-visual-bookma/lianafemkbankodapdaokiefoffi...
1•mnomansd•24m ago•0 comments

Hrs Humanoids In-the-Wild Dataset

https://bitrobot-foundation.github.io/humanoids-in-the-wild-500-hours/
2•Tycho87•28m ago•0 comments

Show HN: MAVS-GC – An Open-Source Governance Architecture for AI Systems

https://docs.google.com/document/d/1h7qpDgLv2PyIB6ZlLED5qGDeUbnNbITzNEspmsxA7ZE/edit?usp=sharing
1•infernusreal•29m ago•0 comments

Best of AI is now open source

https://bestofai.io/journal/best-of-ai-is-now-open-source/
3•dariubs•31m ago•0 comments

The future of large files in Git is Git

https://gopeekapp.blogspot.com/2026/06/the-future-of-large-files-in-git-is-git.html
1•guptalog•32m ago•0 comments

Free-threaded Python: past, present, and future

https://lwn.net/Articles/1078367/
1•prakashqwerty•38m ago•1 comments

The US Army Issued Ocarinas to Soldiers in World War II

https://www.flutetunes.com/articles/my-flute-goes-to-war/
2•tomcam•38m ago•0 comments

Domino Tiling: From Dynamic Programming to Finite Fields

https://www.omegasyntax.com/domino/
1•vbrhjajcn•43m ago•0 comments

632nm Podcast: John Bowers – Silicon Photonics and the Future of AI Scaling [video]

https://www.youtube.com/watch?v=fjQ3Yorw-Ps
1•wwarner•45m ago•0 comments

Kids Act Would Require Age Checks to Get Online

https://www.eff.org/deeplinks/2026/06/kids-act-would-require-age-checks-get-online
2•mdp2021•48m ago•1 comments

Bluetooth T9 keyboard for smartphones (and other things)

https://jrainimo.com/build/2026/05/t9/
2•rcarmo•49m ago•0 comments

Chasing Fable – An illustrated engineering tale

https://adapt.com/blog/chasing-fable
1•ashumz•55m ago•0 comments

Every match of the 2026 World Cup as a generative poster

https://matchprint.info/
3•coinfused•57m ago•1 comments

Conductor Cloud

https://www.conductor.build/docs/cloud-beta
1•sklinkert•58m ago•0 comments

One-two punch delivered in global operation disrupts cybercrime "assembly line"

https://arstechnica.com/security/2026/06/one-two-punch-delivered-in-global-operation-disrupts-cyb...
2•joozio•59m 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.