frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA

https://global.fujitsu/en-global/pr/news/2026/09/14-02
1•my123•1m ago•0 comments

Qector-mega 2.2.1 – Sub-ms QEC decoding on a 2-core CPU with zero GPU needs

https://zenodo.org/records/22773113
1•QECTOR•1m ago•0 comments

Ask HN: Harness for Learning – Thoughts?

1•arvindm1991•1m ago•0 comments

Why Personal Websites Are Coming Back

https://deadparrotbbs.com/why-personal-websites-are-coming-back/
1•speckx•2m ago•0 comments

M6 Mac Mini on Geekbench

https://browser.geekbench.com/v7/cpu/354109
2•tosh•3m ago•0 comments

Pulley Is Shutting Down

https://pulley.com/guides/faq-what-is-happening-with-pulleys-shutdown
1•covi•4m ago•1 comments

PyMalbolge: Malbolge Interpreter in Python

https://github.com/Aiaid/pyMalbolge
1•notagoodidea•5m ago•0 comments

Intel Secures AI Agents at the Edge for Autonomous Ride Performance

https://www.sdxcentral.com/news/intel-secures-ai-agents-at-the-edge-for-autonomous-ride-performance/
1•Jenijen•6m ago•0 comments

Why I'm Not Worried About AI Killing Us All

https://www.hackyexperiments.com/blog/why-im-not-worried-about-ai-killing-us-all
1•bilater•6m ago•0 comments

Show HN: Kobra – a Shadcn alternative focused on design quality

https://kobra.systems/components/input-otp
1•haarshsingh•6m ago•0 comments

A study of sequence weighting at scale

https://blog.janestreet.com/a-study-of-sequence-weighting-at-scale/
1•hubraumhugo•9m ago•0 comments

What I keep in my Dock as an iPhone app dev in 2026

https://mattbraun.co/blog/what-i-use-for-iphone-dev-in-2026/
2•magnate•10m ago•0 comments

'Nick Sharpening' my UniFi setup

https://alec.is/posts/nick-sharpening-my-unifi-setup/
1•arm32•11m ago•0 comments

DaiDocs: AI memory as a plain-text file format, not a service

https://github.com/Kerneta/daidocs
2•Amin_Rigi•11m ago•0 comments

Trying to Understand Freedom – By Maciej Cegłowski

https://mceglowski.substack.com/p/trying-to-understand-freedom
1•pavel_lishin•12m ago•0 comments

Show HN: Local static analysis for coding agents

https://blog.codacy.com/introducing-codacy-skills-part-4-scan-and-fix-your-code-before-you-push
1•claudiacsf•14m ago•0 comments

I'm Worried about the Web

https://patrickbrosset.com/articles/2026-09-15-im-worried-about-the-web/
3•speckx•14m ago•0 comments

Mecatl: A Cloud Native Harness

https://mecatl.dev/
1•jbeda•15m ago•0 comments

GM to Offer Apple CarPlay After Shift Away from the System

https://www.bloomberg.com/news/articles/2026-09-15/gm-s-new-user-interface-includes-apple-carplay...
2•apparent•15m ago•1 comments

Man threatens to shoot fish if his meme coin doesn't reach 1M market cap

https://twitter.com/DefiantLs/status/2099877650135433557
1•lando2319•15m ago•0 comments

EthosLM – natural language to walkable Minecraft cities

https://github.com/chaitbuilds/EthosLM
2•chaitbuildz•17m ago•0 comments

GEFS on OpenBSD: A Early Preview

https://marc.info/?l=openbsd-tech&m=178948744271633&w=2
4•sippingabonedry•17m ago•1 comments

Gemini 3.8 Live Extended Thinking audio-to-audio

https://ai.google.dev/gemini-api/docs/models/gemini-3.8-live-extended-thinking
2•thisisauserid•18m ago•1 comments

I'm a doctor. Here's why I wouldn't get a full-body MRI scan

https://www.washingtonpost.com/wellness/2026/09/14/im-doctor-heres-why-i-wouldnt-get-full-body-mr...
3•bookofjoe•18m ago•1 comments

Does Code Matter Anymore?

https://jimmyislive.dev/posts/does-code-matter-anymore/
2•jimmyislive•18m ago•0 comments

Metastatic Cancer Disappeared After Two Doses of Experimental Therapy

https://www.sciencealert.com/a-3-year-olds-metastatic-cancer-disappeared-after-two-doses-of-exper...
2•speckx•18m ago•0 comments

Show HN: AirmailAI, a BYOK LLM chat app with a browser extension backend

https://airmailai.net/
2•blake__dev•19m ago•2 comments

New sign-ups and upgrades to the ChatGPT Pro $200 plan are temporarily paused

https://help.openai.com/en/articles/9793128-about-chatgpt-pro-tiers
2•nkmnz•20m ago•0 comments

A labor forecasting approach built to keep pace with AI and robotics

https://endoflabor.org/
2•abaharmast•21m ago•0 comments

Ho Chi Minh City offers free bus routes

https://en.baochinhphu.vn/hcmc-to-offer-free-bus-travel-from-july-through-year-end-11126061914494...
2•minimal3•21m 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.