frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Trust Fall: a small browser game about spending trust

https://public.ilands.ai/agent-bundles/359731539929468928/f43a231a34cd9f3063e58dc78ebc301cb922ab6...
1•revian_makes•1s ago•0 comments

Meta's Muse Is Better at Surveilling Than Helping Me

https://www.wired.com/story/metas-muse-is-better-at-surveilling-than-helping-me/
1•thm•17s ago•0 comments

Networks Suspend Pool Coverage of Trump After White House Bans CNN

https://www.nytimes.com/2026/09/21/business/media/cnn-trump-press-pool-ban.html
1•biscuits1•2m ago•0 comments

Tokenizers v1

https://huggingface-tokenizers-v1.static.hf.space/index.html
1•kashifr•2m ago•0 comments

This is why we play

https://xeiaso.net/blog/2026/this-is-why-we-play/
1•Brajeshwar•2m ago•0 comments

When Galileo Calculated the Precise Dimensions of Hell in Dante's Inferno

https://www.openculture.com/2026/09/when-galileo-calculated-the-precise-dimensions-of-hell-in-dan...
1•Brajeshwar•2m ago•0 comments

Streamhouse: A shared data architecture for the age of AI

https://www.streamhouse.com/
1•chtefi•3m ago•0 comments

Squalk: A forum and chat built on Nostr

https://github.com/dtonon/squalk
1•dimonomid•4m ago•0 comments

Glux – Get your diabetes risk and a 90-day habit plan just for you

https://play.google.com/store/apps/details?id=com.glux.app&hl=en_US
1•mkaliraj•5m ago•1 comments

WWII Tank, Aircraft, and Ship Identification Guides

https://www.beautifulpublicdata.com/wwii-tank-aircraft-and-ship-identification-guides/
1•Brajeshwar•5m ago•0 comments

Make Math Automatic with Mathy

https://gmays.com/making-math-automatic-with-mathy/
3•gmays•7m ago•0 comments

Skills for AI agents to remove or prevent slop in UI design and written content

https://github.com/kmaida/deslop-skills
1•mooreds•7m ago•0 comments

Completing Programming Adventures with Jev

https://tomasp.net/blog/2026/completions-with-jev/
3•programLyrique•8m ago•0 comments

Rust has been the #1 language on Hacker News since 2019

https://www.orangecrumbs.com/stories/top-programming-languages
2•oyster143•10m ago•0 comments

Are we going to use the same Desktop UX forever [video]

https://www.youtube.com/watch?v=V7AfAcQwLW0
1•philo23•10m ago•0 comments

Show HN: Jev Chess – one shared board, the internet vs. a decision model

https://jevchess.com/
2•kulesh•11m ago•0 comments

Bessent Targets OpenAI Managers for Hugging Face Incident

https://www.bloomberg.com/news/articles/2026-09-21/bessent-targets-openai-managers-for-hugging-fa...
3•htrp•14m ago•2 comments

Robotics Is Harder

https://whattotelltherobot.com/p/robotics-really-is-harder
1•stefie10•15m ago•0 comments

Show HN: Sunday Drive

https://sundaydrive.dev/
1•fabrr•16m ago•0 comments

A quick overview of atomics in C

https://lemire.me/blog/2026/09/09/a-quick-overview-of-atomics-in-c/
1•surprisetalk•16m ago•0 comments

A weekend with Jev made my coding agents up to 31% faster

https://tyrpien.com/blog/oko-agent-search
2•bartlomein•18m ago•0 comments

Everything you need to know about Jev

https://vercel.com/i/what-is-jev
2•flashbrew•18m ago•0 comments

Show HN: I built a fictional computer and the web it browses

https://pulite.org/
1•lateatdesk•18m ago•0 comments

Assay – Open-source mechanical checker for web pages, no tests, no LLM

https://github.com/awss1i/assay
1•awss1i•18m ago•0 comments

CratePrep – browser-based BPM/key/genre detection for DJ libraries

https://crateprep.app/
1•ANdrwww•19m ago•0 comments

I got to see Google's wild ideas about the future of laptops

https://www.theverge.com/tech/997986/google-googlebooks-android-laptops-dell-hp-lenovo-acer-asus-...
2•shscs911•19m ago•0 comments

A.I. House Can Provide You with Connections. It Also Has a Dark Side

https://www.nytimes.com/2026/09/21/technology/agi-house-ai-culture.html
1•reaperducer•21m ago•1 comments

Google hit with $463M fine for EU location data rule breach

https://abcnews.com/Technology/wireStory/google-hit-463-million-fine-eu-location-data-136616044
4•TechTechTech•23m ago•0 comments

Are You a Money Transmitter

https://faisalkhan.com/resources/interactive-tools/money-transmitter-license-assessment
2•faisalkhan999•24m ago•0 comments

AMD becomes latest chipmaker to reach $1T valuation on AI demand

https://www.reuters.com/business/amd-becomes-latest-chipmaker-reach-1-trillion-valuation-ai-deman...
5•mfiguiere•24m 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.