frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How LLMs accelerated Cloudy development? not by typing code for me

https://cloudywithachanceoflatency.net/blog_02-how-llm-accelerated-cloudy-dev.html
1•rixed•1m ago•0 comments

South Korea, Taiwan top Japan in exports for first time on AI boom

https://asia.nikkei.com/business/tech/semiconductors/south-korea-taiwan-top-japan-in-exports-for-...
1•newusertoday•2m ago•0 comments

Swarm-forge: A simple tool for coordinating several AI agents

https://github.com/unclebob/swarm-forge
1•tosh•5m ago•0 comments

Google's Westinghouse Bet

https://asimovaddendum.substack.com/p/googles-westinghouse-bet
1•ashurandi•6m ago•0 comments

Cloudflare OS is an architecture of distrust

https://lord.technology/2026/08/05/cloudflare-os-is-an-architecture-of-distrust.html
1•gsky•9m ago•0 comments

Show HN: Airy – Free, fast, and simple voice content creation

https://airy.so
1•login588•20m ago•0 comments

Show HN: A Minimal Python CLI Implementation of Quick Share for Linux

https://github.com/adityatelange/quickshare-cli-py
1•adityatelange•22m ago•0 comments

Before the Breakthrough: Why Research and Engineering Need Different Cultures

https://chrhenning.com/blog/2026/before-the-breakthrough-research-engineering-cultures/
1•chrhenning•24m ago•0 comments

Signified and Signifier

https://en.wikipedia.org/wiki/Signified_and_signifier
1•soupspaces•32m ago•0 comments

Show HN: Find. Fix. Verify. Zero Guesswork

https://kinetixseo.com
1•wowinter15•39m ago•0 comments

Rethinking do_action(): Events as objects, hooks as class names

https://developer.wordpress.org/news/2026/08/rethinking-do_action-events-as-objects-hooks-as-clas...
1•firasd•47m ago•0 comments

Runware Squeezes A 1MW AI Data Center Into A 20-Foot Shipping Container

https://www.forbes.com/sites/gabrielalinzainescu/2026/08/08/runware-squeezes-a-1mw-ai-data-center...
3•01-_-•47m ago•2 comments

Solve math calculations directly in your Firefox address bar

https://support.mozilla.org/en-US/kb/solve-math-calculations-directly-your-firefox-addr
2•internet_points•48m ago•1 comments

DeepSeek V4 Flash 0731: 82.7% on Terminal-Bench 2.1 with a public harness

https://antigma.ai/eval
3•ubermon•1h ago•1 comments

Shrinking Ruby Hashes

https://byroot.github.io/ruby/performance/2026/08/05/shrinking-ruby-hashes.html
1•fanf2•1h ago•0 comments

S3-Compatible Object Storage. A MinIO Fork Maintained by Pgsty

https://github.com/pgsty/silo
3•EXHades•1h ago•0 comments

Abracadabra: How does Shazam work? (2022)

https://www.cameronmacleod.com/blog/how-does-shazam-work
2•downbad_•1h ago•0 comments

Different meanings of p-value (and how my thinking has changed) (2023)

https://statmodeling.stat.columbia.edu/2023/04/14/4-different-meanings-of-p-value-and-how-my-thin...
2•Tomte•1h ago•0 comments

The Origin of Death (1970)

https://www.elijahwald.com/origin.html
1•downbad_•1h ago•0 comments

Systemd Dynamic Users (2020)

https://ethulhu.co.uk/systemd-dynamicuser
2•birdculture•1h ago•0 comments

Show HN: Open-source binaural-beats engine

https://github.com/txus/farfield
1•txus•1h ago•0 comments

Understanding std:counting_semaphore and std:binary_semaphore from C++20

https://www.cppstories.com/2026/semaphore/
2•ygritte•1h ago•0 comments

How to create electronic Japanese hanko seals for Excel

https://sealkit.app/blog/excel-denshi-inkan-tsukurikata
3•sealkit•1h ago•1 comments

Qwen 3.8 and Claude Opus 5 show why raw benchmark scores don't predict the bill

https://venturebeat.com/orchestration/qwen-3-8-max-and-claude-opus-5-show-why-raw-benchmark-score...
3•ashurandi•1h ago•0 comments

Tracking down a Zsh history data loss bug

https://michael.stapelberg.ch/posts/2026-08-09-zsh-history-truncation-bug/
2•secure•1h ago•0 comments

ByteDance Pretraining 10T Parameter Model

https://arstechnica.com/ai/2026/08/bytedance-trains-massive-ai-model-in-bid-to-rival-anthropic/
4•Gecko4072•1h ago•0 comments

Toxic Media

https://bstgrp.notion.site/Reconverting-Streamer-University-From-Spectacle-to-Education-624f0d565...
1•mohgalastpaidei•1h ago•0 comments

China's Top AI Model Evaded Testing Environment, Researchers Say

https://www.bloomberg.com/news/articles/2026-08-07/china-s-top-ai-model-evaded-testing-environmen...
3•sbulaev•1h ago•1 comments

2025 set a record for global vegetation greenness

https://www.nature.com/articles/s43017-026-00776-0
4•vixen99•1h ago•0 comments

Time has started serving ads to AI agents

https://digiday.com/media/time-has-started-serving-ads-to-ai-agents/
5•theanonymousone•1h 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.