frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Poland now 6th-largest EU economy, ahead of Switzerland and Belgium

https://www.euronews.com/business/2026/08/09/poland-now-sixth-largest-eu-economy-ahead-of-switzer...
2•andrewstetsenko•1m ago•0 comments

Therapy Needs to Get Help

https://www.nytimes.com/2026/08/09/opinion/therapy-neuroscience-perception.html
1•yonibot•5m ago•0 comments

Show HN: Whetstone – 20 Claude Code skills, each distilled from one real failure

https://whetstone.akbarsha.dev/
1•iamakbarsha1•6m ago•0 comments

Greenland issues 'strong warning' as Trump-linked oil firm prepares to drill

https://www.theguardian.com/world/2026/aug/08/greenland-iwarning-trump-linked-oil-firm-prepares-d...
3•rbanffy•7m ago•0 comments

Deletes all instances of Microsoft's GDID and prevents minting of new ones

https://github.com/yegors/deGDID
2•campuscodi•8m ago•0 comments

Multistack Concatenative Programming Languages

https://www.sheeeeeeeep.art/multistack-catlangs.html
2•birdculture•12m ago•0 comments

Show HN: Run your GitHub Actions locally or self-hosted in isolated microvms

https://preloop.dev
1•Bnjoroge•19m ago•0 comments

Show HN: See how long it takes ChatGPT Sol 5.6 to send a byte across the LAN

https://robss2020.github.io/sol-vnc-elapsed/
1•logicallee•20m ago•0 comments

Virus reactivation in acute and long Covid-19

https://www.nature.com/articles/s41586-026-10740-z
3•thenerdhead•27m ago•0 comments

Tracking down a Zsh history data loss bug – Michael Stapelberg

https://michael.stapelberg.ch/posts/2026-08-09-zsh-history-truncation-bug/
2•tambourine_man•29m ago•0 comments

Employees Do Not Want Your AI

https://substack.com/sign-in
2•Airealist•29m ago•2 comments

The tragedy of the commons, AI edition

https://www.economist.com/britain/2026/08/06/the-tragedy-of-the-commons-ai-edition
4•simonpure•31m ago•0 comments

Beacon: A self-hosted error tracking and LLM observability in one place

https://github.com/Tboworst/beacon
2•Tboworst•32m ago•0 comments

Code Review Assumes an Author

https://blog.raed.dev/posts/ai-code-review/
2•Raed667•32m ago•0 comments

Two wheels, a few tradeoffs, and gas prices

https://blog.raed.dev/posts/motocycle/
4•Raed667•33m ago•0 comments

The AI safety test is becoming a safety risk

https://techcrunch.com/2026/08/09/the-ai-safety-test-is-becoming-a-safety-risk/
3•ashurandi•34m ago•0 comments

Greenfield and the Cost of Amnesia

https://thechris.in/articles/greenfield-and-the-cost-of-amnesia/
2•theanonymousone•35m ago•0 comments

CRT-TV-Emulator

https://github.com/AARomanov1985/CRT-TV-Emulator/tree/main
2•xterminal•35m ago•1 comments

Something Is Wrong on the Internet

https://medium.com/@jamesbridle/something-is-wrong-on-the-internet-c39c471271d2
2•aloknnikhil•36m ago•1 comments

TPU: Tensor-Processing-Unit – Open-Source Verilog TPU

https://github.com/leo47007/TPU-Tensor-Processing-Unit
2•peter_d_sherman•36m ago•0 comments

US banning Chinese networking tech in data centers

https://www.tomshardware.com/tech-industry/data-centers/us-mulling-ban-on-key-chinese-networking-...
1•Lucasoato•36m ago•0 comments

The Four Core Areas of Responsibility for an Engineering Manager

https://softwareleads.substack.com/p/the-four-pillars-of-engineering-management
1•abiodunjames•36m ago•1 comments

Tiny-GPU – A minimal open-source GPU design in Verilog to learn how GPUs work

https://github.com/adam-maj/tiny-gpu
1•peter_d_sherman•39m ago•0 comments

Anthropic is turning Claude Code's auto mode on by default

https://techcrunch.com/2026/08/09/anthropic-is-turning-claude-codes-auto-mode-on-by-default/
4•ashurandi•41m ago•3 comments

Harvesting rainwater from rooftops could cut the number of heatwave days

https://www.euronews.com/2026/08/09/harvesting-rainwater-from-rooftops-could-cut-the-number-of-he...
3•devonnull•45m ago•1 comments

Show HN: Remaking Unreal engine in Rust for coding agents

https://machinesatplay.com
1•kevo1ution•46m ago•0 comments

The OpenAI and Hugging Face incident, explained in simple terms

https://ashu1461.com/posts/openai-hugging-face-incident-in-simple-terms/
4•ashu1461•49m ago•0 comments

A permanent freezing in of wealth is just one of many possible ASI scenarios

https://www.milanmecklenburg.com/p/a-permanent-freezing-in-of-wealth
2•milanmeck•52m ago•1 comments

Nuclear Reactor//Martin Gendell [video]

https://www.youtube.com/watch?v=gwRWRDrfrvA
1•audreyfei•52m ago•0 comments

Ransomware gangs skip the CEO, head straight for the 40-something IT manager

https://www.theregister.com/security/2026/08/09/ransomware-gangs-skip-the-ceo-head-straight-for-t...
16•joebuckwilliams•54m 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.