frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The US lifts its block on Mythos 5

https://twitter.com/Techmeme/status/2070638481265905837
2•bobrenjc93•1m ago•0 comments

Ask HN: Any OSS models as good as GPT-4o-mini?

1•ra0x3•4m ago•0 comments

Mankato Unofficial Website

http://city-mankato.us/
1•limbicsystem•4m ago•0 comments

Why does kinetic energy increase quadratically, not linearly, with speed? (2011)

https://physics.stackexchange.com/questions/535/why-does-kinetic-energy-increase-quadratically-no...
1•ProxyTracer•6m ago•0 comments

I built a tiny free app to track money saved by skipping small purchases

https://skipd.coffee/
1•dariyam•8m ago•0 comments

Show HN: Imap2gmail – A self-contained mass-migrations orchestrator for Gmail

https://github.com/overflowy/imap2gmail
1•overflowy•10m ago•0 comments

Workbench: A TUI for parallel coding agents

https://github.com/erikqu/workbench-cli
2•erikqu•10m ago•1 comments

Assessing GPT-5.6 Sol Against Cybersecurity Benchmarks

https://www.irregular.com/research/assessing-gpt-5.6-sol
1•edanm•12m ago•0 comments

Show HN: Skillmaxxing – make every agent self-evolving

https://github.com/Bennyoooo/skillmaxxing
2•bennyjiang•12m ago•0 comments

AI in Mathematics Is Forcing Big Questions

https://spectrum.ieee.org/ai-in-mathematics
2•rbanffy•12m ago•0 comments

Inference Cards

https://cmart.blog/inference-cards/
1•zdw•14m ago•0 comments

Heavener: What happens when you can't afford EDR licenses

https://blog.otterpwn.com/projects/heavener
1•hexagr•16m ago•0 comments

GeoSpoof vs. Geoceptor – comparing two iOS location spoofing tools

https://geospoof.com/blog/geoceptor-vs-geospoof
1•sgro•19m ago•0 comments

Ask HN: Model access depends on citizenship. What should Non-US founders do?

1•recsv-heredoc•19m ago•1 comments

Structured Primary Keys

https://modern-sql.com/blog/2026-06/structured-primary-keys
1•birdculture•20m ago•0 comments

Tell Zillow: Fee-Simple vs. Leasehold Filter

2•HoldOnAMinute•24m ago•0 comments

How to Make the World's Best Black Shirt [video]

https://www.youtube.com/watch?v=u_BdsucFI9E
1•riknos314•28m ago•0 comments

Show HN: All-in-one memory for AI Agents

https://parcle.ai/second-brain
1•longtermop•28m ago•0 comments

iOS 27 Adds Mac-Like Recovery Mode for iPhone and iPad

https://www.macrumors.com/2026/06/22/ios-27-adds-mac-like-recovery-mode/
1•antfarm•29m ago•0 comments

Show HN: RAG Vector DB Cost Calculator

https://tools.superml.org/calculators/rag-vector-db-cost-calculator
1•bps1418•30m ago•0 comments

Academy Software Foundation Launches New Wayland for Artists Working Group

https://www.aswf.io/blog/academy-software-foundation-launches-new-wayland-for-artists-working-group/
2•agluszak•31m ago•0 comments

I've built an iOS app to spoof location, no PC needed

1•alienshello•37m ago•0 comments

Skill for generating cheatsheet PDF optimized for the reMarkable eink

https://github.com/Deca/remarkable-cheatsheet
1•Decag•39m ago•0 comments

How much compute does the world need?

https://www.ft.com/content/a5475746-510b-4b3f-8039-3fea1fb7c207
1•1vuio0pswjnm7•39m ago•0 comments

US strikes Iran in response to drone strike on commercial ship

https://www.aljazeera.com/news/2026/6/26/us-strikes-iran-in-response-to-drone-strike-on-commercia...
8•thisislife2•39m ago•5 comments

OpenTag: An open-source alternative to Claude in Slack

https://github.com/CopilotKit/OpenTag/
3•davidmckayv•40m ago•0 comments

Anthropic Moves Toward Deal with US to Lift Curbs on AI Models

https://www.bloomberg.com/news/articles/2026-06-26/anthropic-moves-toward-deal-with-us-to-lift-cu...
2•mfiguiere•50m ago•0 comments

The action is off-balance sheet

https://marginpoints.substack.com/p/the-action-is-off-balance-sheet
1•historian1066•51m ago•0 comments

The Long-Term Threat to the Memory Chip Boom Is Innovation

https://www.wsj.com/finance/the-long-term-threat-to-the-memory-chip-boom-is-innovation-bb289488
3•bookofjoe•53m ago•1 comments

The open source DOCX editor submitted to HN a few weeks ago has been deleted

19•gcanyon•54m ago•12 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.