frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fast-fashion giant Shein aims for $27B valuation in Hong Kong market debut

https://www.theguardian.com/business/2026/aug/24/fashion-giant-shein-27bn-valuation-hong-kong-mar...
1•Markoff•1m ago•0 comments

Attention is all we have: A conjectural theory of cognitive inequality

https://davidbessis.substack.com/p/attention-is-all-we-have
1•rzk•7m ago•0 comments

Compare robot recordings across runs

https://foxglove.dev/blog/compare-robot-recordings-across-runs
1•intrepidsoldier•8m ago•0 comments

Elevated Errors for Multiple Models

https://status.claude.com/incidents/vgz5psbjmt1h
4•rob•8m ago•0 comments

OpenAI web interface to Claude down, again

4•b112•10m ago•0 comments

Tether: iMessage, SMS, etc. on Linux

https://zackbartel.com/blog/2026/08/tether/
2•zackb•11m ago•0 comments

Show HN: Scalattice Modelmeter. OSS price and latency bench for open models

https://scalattice.com/blog/modelmeter/
1•RomulusHill•11m ago•0 comments

Show HN: Searchable Stripe test cards with one-click copy

https://checkoutpage.com/tools/stripe-test-cards
1•fishsander•16m ago•0 comments

I Rented a 96 GB GPU and Took Uncensored Qwen3.8 From 44 to 125 tok/s

https://aseemshrey.com/blog/running-qwen3-8-27b-uncensored/
2•LuD1161•16m ago•0 comments

Show HN: Open-source calculator for "will my GPU run this LLM?"

https://jaeseok614.github.io/llm-gpu-checker-ko/
2•jaeseok614•16m ago•0 comments

Claude Is Down?

6•tuleiff•20m ago•5 comments

Show HN: Turn everything you read into things you write

https://sidelong.app
2•whatcha•22m ago•0 comments

Texas Gov. says data centers deserve the backlash: 'They dug their own grave'

https://www.businessinsider.com/greg-abbott-texas-data-centers-backlash-2026-8
3•dgellow•26m ago•0 comments

5% of venture capitalists have generated roughly 90% of the industry's profits

https://www.thevccorner.com/p/100-best-performing-vc-firms-ranking-2026
1•koolhead17•30m ago•0 comments

Executable Is a SQLite Database

https://fzakaria.com/2026/08/23/your-executable-is-a-sqlite-database
2•setheron•32m ago•0 comments

The Absolute State of Management

https://infrequently.org/2026/07/state-management/
1•luu•33m ago•0 comments

Mourning Steve French

https://lwn.net/Articles/1090098/
2•mfrw•34m ago•0 comments

The agent that writes the code cannot read the tests that grade it

https://medium.com/@giladha/the-agent-that-writes-the-code-cannot-read-the-tests-that-grade-it-b4...
1•giladha•34m ago•0 comments

AI Is Quietly Draining the Public Internet of Thought

https://twitter.com/BrianRoemmele/status/2091127620431933780
8•nreece•39m ago•1 comments

Observare – one monitoring service instead of five

https://observare.co.uk/
1•5uth3r1ano•44m ago•0 comments

Tesla's Biggest Design Mistake May Be Hiding in Plain Sight

https://www.forbes.com/sites/peterlyon/2026/08/22/teslas-biggest-recall-yet-exposes-a-dangerous-p...
3•FireBeyond•48m ago•1 comments

Moonshine STT adds domain customization

https://moonshine-voice.readthedocs.io/en/latest/models/domain-customization/
1•Curiositry•51m ago•0 comments

Nearly 3M Teslas recalled in China over hidden door handles

https://www.bbc.com/news/articles/c4g6ggdg030o
38•chicken-stew•53m ago•27 comments

Show HN: AltCaption – generate HTML-ready image alt attributes

https://altcaption.com/alt-attribute-generator
1•hboon•54m ago•0 comments

Minimus Is Ending Operations

https://www.minimus.io
4•markiannucci•1h ago•0 comments

Six opportunities for scientists and engineers to learn programming with AI [pdf]

https://pg.ucsd.edu/publications/scientists-engineers-learning-programming-using-ai_CiSE-2023.pdf
3•azhenley•1h ago•0 comments

GitHub tag: "token-optimization" – List of token consumption reduction software

https://github.com/topics/token-optimization
1•peter_d_sherman•1h ago•0 comments

All-in-one tool and config for Claude-things

https://github.com/damusix/atomic-claude
3•daniloa•1h ago•0 comments

Tobi Lutke builds walgit in a weekend

https://twitter.com/tobi/status/2091678506992222258
3•cpstein•1h ago•0 comments

Sabatier Principle

https://en.wikipedia.org/wiki/Sabatier_principle
2•peter_d_sherman•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.