frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fat Tire Brakes Get Wireless Upgrade

https://hackaday.com/2026/08/29/fat-tire-brakes-get-wireless-upgrade/
1•lostlogin•9m ago•0 comments

Xylitol Linked to Strokes and Heart Attacks, Study Finds

https://www.theguardian.com/society/2026/aug/28/sweetener-xylitol-used-in-chewing-gum-and-jam-lin...
1•m463•12m ago•0 comments

OpenRouter is advertising popular Chinese models as based in Singapore

https://openrouter.ai/providers
1•K3N0B1•16m ago•0 comments

MIT student claims to synthesize dangerous chemical, prompting hazmat response

https://www.nbcboston.com/news/local/mit-chemical-hazmat-building-18/4006077/
1•rbanffy•16m ago•0 comments

Create QR codes for $1/month

https://www.createqrcodes.io
1•mattmerrick•17m ago•0 comments

Renderformer V2 (Full neural rendering)

https://renderformer.github.io/v2/
2•E-Reverance•24m ago•0 comments

Use of 'Reasonable' in Gun Control Advocacy

https://firearmsresearchcenter.org/working_papers/use-of-reasonable-in-gun-control-advocacy/
2•delschlangen•24m ago•0 comments

Mcptestkit

https://pypi.org/project/mcp-testkit/
2•opiniateddev•30m ago•0 comments

Fast Unicode (UTF-8) validation with autovectorization

https://nitely.github.io/2026/08/30/fast-unicode-utf-8-validation.html
1•nitely•42m ago•0 comments

I ran out of AI tokens in one app while holding unused tokens in another

1•nextma•46m ago•1 comments

40k Pounds of Pabst Blue Ribbon Beer Reported Stolen in California

https://www.nytimes.com/2026/08/29/business/pabst-beer-truck-stolen-california.html
2•ChrisArchitect•46m ago•0 comments

Tell HN: STOP making Vibe Slop websites that LAG on my MBP and workstation

2•moomoo11•48m ago•1 comments

Establishing the United States Space Academy – The White House

https://www.whitehouse.gov/presidential-actions/2026/08/establishing-the-united-states-space-acad...
3•rbanffy•49m ago•1 comments

Dancing Bot (Stepmania)

https://dominickp.github.io/dancing-bot/
2•dominick-cc•50m ago•2 comments

How Wingman is able to be client agnostic

https://docs.wingman.actor/concepts/clients/
1•ChaseRensberger•50m ago•1 comments

California lawmakers unanimously pass Linux exemption from age-verification law

https://www.tomshardware.com/software/linux/california-lawmakers-unanimously-pass-linux-exemption...
4•shscs911•51m ago•0 comments

You have to beat the models at something

https://www.seangoedecke.com/you-have-to-beat-the-models-at-something/
4•sam_bristow•55m ago•0 comments

There's no such thing as Just a Tool

https://deadsimpletech.com/blog/no-such-thing-as-just-a-tool
2•cratermoon•59m ago•0 comments

Ask HN: Hard Mode for LLMs

1•Harlekuin•1h ago•0 comments

Show HN: Memnest, local-first memory shared by pi, Claude Code and Codex

https://github.com/Blue-B/memnest
1•blue-b•1h ago•0 comments

China's AI Revolution and the Ideology of Xi Jinping

https://kevinrudd.com/media/anu-centre-for-china-in-the-world-annual-lecture-2026
1•verdverm•1h ago•1 comments

The Engineer as a Learning-System Builder

https://eug.github.io/posts/engineer-as-learning-system-builder.html
2•eugf_•1h ago•0 comments

World's first battery-powered self-unloading bulk carrier starts in Australia

https://www.bunkerindex.com/articles/article.php?a=23396&h=worlds-first-battery-powered-self-unlo...
3•thunderbong•1h ago•0 comments

LibreOffice 28.8

https://en.libre-office.fr/article.php/libreoffice-26-8-release-key-features-you-need-to-know
3•linuxkernal•1h ago•1 comments

Best AI Quiz Generator?

https://quizroom.ai
1•taimurkazmi•1h ago•1 comments

No Country for Mediocre Mathematicians

https://garvvee.substack.com/p/no-country-for-mediocre-mathematicians
10•reasonableklout•1h ago•2 comments

Popular code generator for TanStack Query hit by supply chain worm

https://www.aikido.dev/blog/popular-code-generator-for-tanstack-query-hit-by-supply-chain-worm
4•lbw1215•1h ago•0 comments

Algorithmic Rent-Pricing Litigation Expands Under New State and Local Laws

https://www.morganlewis.com/pubs/2026/08/algorithmic-rent-pricing-litigation-expands-under-new-st...
14•toomuchtodo•1h ago•5 comments

Show HN: TypeGPU Realtime Physics Sandbox

https://typegpu-sandbox.pages.dev
1•theRealestAEP•1h ago•0 comments

SkillRepo – Skillsets: Skill Governance for Teams

https://skillrepo.dev/blog/introducing-skillsets
2•atxpace•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.