frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Best resources to learning how to build a forum back end?

1•jupr•23s ago•0 comments

Bulgaria Licensed Surveillance Exports to Rights Violators

https://www.hrw.org/news/2026/06/18/bulgaria-licensed-surveillance-exports-to-rights-violators
1•aa_is_op•59s ago•0 comments

Deegen: A JIT-Capable VM Generator for Dynamic Languages [pdf]

https://fredrikbk.com/publications/deegen.pdf
1•gjvc•1m ago•0 comments

The Sword Juggling Fallacy

https://hugotunius.se/2026/06/15/the-sword-juggling-fallacy.html
1•speckx•4m ago•0 comments

Memanto; open-source memory agent that remembers, recalls and answers

https://github.com/moorcheh-ai/memanto
3•majidfekri•4m ago•0 comments

Windows and Linux users: The deadline to update Secure Boot keys is near

https://arstechnica.com/security/2026/06/windows-and-linux-users-the-deadline-to-update-secure-bo...
2•everybodyknows•5m ago•0 comments

Ask HN: How do you decide what goes in a changelog vs. internal notes?

2•beratbozkurt0•5m ago•0 comments

Show HN: Cost-Xray – per-token cost attribution, by tool, skill, prompt and more

https://github.com/tigerless-labs/cost-xray
2•ruihanli•6m ago•0 comments

Social media menagement tool with API for AI agents

https://schedpilot.com/
2•schedpilot•8m ago•1 comments

Geriatric butterfly species lives nearly three times as long as their relatives

https://phys.org/news/2026-06-geriatric-butterfly-species.html
2•gmays•8m ago•0 comments

"The Age of the Car Is Over": Fewer and Fewer Private Cars in Berlin

https://www.morgenpost.de/berlin/article412306798/die-zeit-des-autos-ist-vorbei-berlin-bei-autobe...
4•doener•8m ago•1 comments

New VPN rules for UK households on table from July after government update

https://www.birminghammail.co.uk/news/midlands-news/new-vpn-rules-uk-households-34129495
2•rzk•9m ago•0 comments

Ask HN: Whats the best and small open source model?

2•hairymouse•9m ago•0 comments

Immortals

https://immortals.com/
2•simonebrunozzi•9m ago•0 comments

We Got Anthropic's Glasswing at Home (Who Needs Mythos 5 or Fable 5?)

https://blog.attacks.ai/we-got-glasswing-at-home
2•Seventeen18•10m ago•0 comments

Show HN

https://github.com/Saptarshi2001/AsyncLoad
3•Saptarshi_Dutta•10m ago•0 comments

China's EV Price War Was Built on Cars Sold at a Loss

https://www.autoblog.com/features/chinas-ev-price-war-was-built-on-cars-sold-at-a-loss
4•TMWNN•11m ago•0 comments

Grand Theft Auto VI: Official Cover Art Reveal [video]

https://www.youtube.com/watch?v=EiQEBYDox_k
2•mikhael•11m ago•1 comments

Color Picking OKLCH for Mortals

https://hugodaniel.com/posts/color-picking-oklch/
2•birdculture•11m ago•0 comments

Show HN: Loomabase – Offline-first column-level CRDT sync for SQLite + Postgres

https://github.com/JustVugg/loomabase
2•vforno•11m ago•0 comments

Exploiting GPU Tensor Cores from Java Using Babylon

https://openjdk.org/projects/babylon/articles/hat-tensors/hat-tensors
2•0x54MUR41•14m ago•0 comments

Archaeology team unearths 'prototype' of Stonehenge just a few miles away

https://apnews.com/article/stonehenge-britain-discovery-summer-solstice-36f8517159a9e750c1042bebd...
2•geox•15m ago•0 comments

Civil Servants in the UK Were Paid to Play GTA Online

https://www.thegamer.com/gta-online-civil-servants-paid-uk/
3•theanonymousone•16m ago•0 comments

Neuralink competitor Paradromics just implanted its first brain-chip device

https://www.businessinsider.com/paradromics-brain-chip-implant-first-human-patient-speech-restora...
2•lareau•16m ago•0 comments

We Ran the Numbers. Remote Work Is Bad for Us

https://www.nytimes.com/2026/06/17/opinion/remote-work-depression.html
2•mooreds•17m ago•1 comments

Manus original investors plan to buy back AI firm from Meta for $2B

https://www.reuters.com/world/asia-pacific/manus-original-investors-plan-buy-back-ai-firm-meta-2-...
3•thm•20m ago•1 comments

Blink on iOS prototype beats Safari by 28%

https://open-web-advocacy.org/blog/28-percent-faster--the-blink-prototype-that-shows-why-apples-i...
2•pentagrama•20m ago•0 comments

The machine translation newsletter is back

https://newsletter.machinetranslate.org/p/the-machine-translation-newsletter-5c0
2•cefoo•21m ago•0 comments

Data at Scale: large-scale data processing conference (Amsterdam, 7 July)

https://www.dataatscale.dev/
2•tylerhannan•24m ago•0 comments

Show HN: Shout for Drinks – Don't scream your drinks order at festivals/bars

https://www.shoutfordrinks.com/app
2•MarkBekooy•26m 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.