frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Agriculture relies on fossil fuels. It's costing us

https://www.technologyreview.com/2026/09/03/1143320/fertilizer-prices-fossil-fuels/
1•joozio•25s ago•0 comments

I built a small arena where AI write robot brains and then fight each other

https://github.com/nigrosimone/llms-robot-arena
3•nsimone•1m ago•0 comments

The Pelican Collection – Simonw Pelican Bicycle Gallery (2024-2026)

https://pelican-model-gallery.alienfluid.chatgpt.site/
3•dv35z•3m ago•0 comments

Hot Chips 2026: Irrational Recap

https://irrationalanalysis.substack.com/p/hot-chips-2026-irrational-recap
2•akshayt•11m ago•0 comments

CobaltC Programming Language Specification

https://strawberry9.github.io/the-wrong-memory/Appendix_06.html
2•VolatileRegiste•12m ago•0 comments

Celebrating Kazakhstan's first wild-born Przewalski's horse in 200 years

https://www.fauna-flora.org/news/celebrating-kazakhstans-first-wild-born-przewalskis-horse-in-200...
4•thunderbong•17m ago•1 comments

MCP server for 340k SVG icons

https://github.com/LeulAria/Aria-Icons
4•leularia•23m ago•0 comments

Our Suggestion Box

https://medium.com/luminasticity/our-suggestion-box-247d754ae1ad
2•bryanrasmussen•23m ago•0 comments

Show HN: Slock – A one-bit messenger inside your capslock key

https://github.com/jonaraphael/slock
3•jonaraphael•29m ago•2 comments

Archival Resource Keys (ARKs) serve as persistent identifiers

https://arks.org/
2•Tomte•30m ago•0 comments

Reimagining projections for the interactive maps era (2021)

https://www.mapbox.com/blog/adaptive-projections
4•gherkinnn•36m ago•1 comments

Site Is Closed on Sundays

https://v7.robweychert.com/
6•edent•39m ago•0 comments

I built an interactive networking lab for learning network engineering

https://net-forge-kappa.vercel.app/
3•OmarAfnan•41m ago•0 comments

An advanced attacker is targeting Salesforce and ServiceNow instances worldwide

https://www.reco.ai/blog/city-forum-campaign-salesforce-servicenow
4•daretograsp•43m ago•0 comments

Show HN: Public message board for limited systems

https://anystation.net/
3•jonahss•47m ago•0 comments

Switzerland's invisible skyline: why Zug towers over the rest

https://prospex.ch/blog/switzerlands-invisible-skyline-companies-by-building/
1•theanonymousone•55m ago•0 comments

A Figma clone built by GPT-6 Astra

https://wieslawsoltes.github.io/Vellum/
5•aghuang•59m ago•5 comments

Ask HN: Do you route only certain websites through a VPN?

1•dennysora-main•1h ago•1 comments

The Structured Vacuum: Thinking about Nothing [pdf]

https://rafelski.com/~johann/Books/StructVacuumE.pdf
3•rramadass•1h ago•0 comments

Revealing a Hidden Class of Task-in-Prompt Adversarial Attacks on LLMs

https://aclanthology.org/2025.acl-long.334/
1•aghuang•1h ago•0 comments

Show HN: Rust and Box2D browser physics game – build destructive machines

https://v-yanakiev.itch.io/machina
2•v-yanakiev•1h ago•0 comments

MyNoise – Custom Soundscapes for Focus, Relaxation and Sleep

https://mynoise.net/index.php
1•pan69•1h ago•0 comments

interpretation to AI agents

https://ag3497120.github.io/call-me-vera/
1•pakupaku•1h ago•0 comments

Robot writes in languages it has never seen before

https://www.wired.com/story/robot-writing/
3•euanming•1h ago•0 comments

The biggest problem in buying AI compute is credit

https://twitter.com/gpugene/status/2096427973893411312
1•MrBuddyCasino•1h ago•0 comments

Anthropic IPO launch shifts toward mid-October

https://www.cnbc.com/2026/09/05/anthropic-ipo-launch-shifts-toward-mid-october-reuters.html
3•aghuang•1h ago•0 comments

Show HN: Assist (Voice Screenshot)

https://assistapp.dev
1•abhishekucs•1h ago•1 comments

TR-106

https://en.wikipedia.org/wiki/TR-106
2•num42•1h ago•0 comments

LA District Bans Most A.I. For Students

https://www.nytimes.com/2026/09/03/us/lausd-schools-ban-ai-artificial-intelligence.html
3•narenst•1h ago•1 comments

Greenland forces Trump's US oil firm to delay drilling

https://www.theguardian.com/world/2026/aug/12/trump-greenland-oil
8•Alien1Being•1h 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.