frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Aphantasia Beginner's Guide

https://aphantasia.com/guide
1•ksec•44s ago•0 comments

A self-hostable MCP for all your connections, memory, skills, and secrets

https://www.npmjs.com/package/@lanes-sh/link
3•s-xyz•1m ago•0 comments

US Government Designates Host of Noblogs.org a "Global Terrorist"

https://crimethinc.com/2026/08/27/us-government-designates-host-of-noblogsorg-a-global-terrorist
2•robtherobber•2m ago•0 comments

Show HN: BirthdayVideoAI – AI birthday video maker for wishes, invitations

https://birthdayvideo.ai
1•BirthdayVideo•3m ago•0 comments

Building my first SaaS without a coding background

https://www.indiehackers.com/post/building-my-first-saas-without-a-coding-background-ba8468081a
1•zahvox•3m ago•0 comments

Hot Chips 2026: Fujitsu's Monaka CPU – By Chester Lam

https://chipsandcheese.com/p/hot-chips-2026-fujitsus-monaka-cpu
1•rbanffy•5m ago•0 comments

Hot Chips 2026: Intel's Crescent Island – By George Cozma

https://chipsandcheese.com/p/hot-chips-2026-intels-crescent-island
1•rbanffy•5m ago•0 comments

No moving average wins twice

https://turnmarks.com/filters
1•tapweights•7m ago•0 comments

MIT's Ad Hoc Committee on AI Use in Teaching, Learning, and Research Training

https://aiandeducation.mit.edu/report/
1•pbui•7m ago•0 comments

Shieldprompt – test your LLM against prompt injection – no dependencies

https://github.com/Jograph17/shieldprompt
1•Jograoh17•7m ago•0 comments

Confdiff – semantic diff for config files (JSON/YAML/TOML) that redacts secrets

https://github.com/esperanza-volkov/confdiff
1•esperanzavolkov•7m ago•0 comments

Another Webpage Screenshot and OG Image Generation API

1•foodpad•7m ago•0 comments

The difference orbit inclination makes

https://www.johndcook.com/blog/2026/08/22/inclination/
1•ibobev•8m ago•0 comments

Poisson Rate Limiting (2024)

https://louisabraham.github.io/articles/poisson-rate-limiting
1•Bluestein•8m ago•0 comments

Coming Soon

https://www.johndcook.com/blog/2026/08/22/coming-soon/
1•ibobev•9m ago•0 comments

How would you know whether an ancient culture had zero?

https://www.johndcook.com/blog/2026/08/21/ancient-number-system/
1•ibobev•9m ago•0 comments

Are You Sure You Want a Car with a Giant Touch Screen?

https://www.theatlantic.com/technology/2026/08/car-prices-memory-ram-ai/688329/
1•vcfgdev•9m ago•0 comments

Show HN: MP4 to Transcript – Convert MP4 to Text Online

https://mp4transcript.com/
1•BirthdayVideo•9m ago•0 comments

Show HN: Diff Glance – CLI that turns a Git diff into a summary and a diagram

https://github.com/alvynmcq/diff-glance
1•alvynmcq•9m ago•0 comments

PEP 805 – Safe Parallel Python

https://peps.python.org/pep-0805/
3•fleetfox•9m ago•0 comments

Show HN: Filiz – A resume builder for software engineers

https://filiz.app
1•coskun-cakir•10m ago•0 comments

Show HN: Sumday – make an equation from today's date

https://www.playsumday.com/
1•buzzy_hacker•11m ago•0 comments

Show HN: Derive – An open home for AI artifacts and workflows

https://github.com/derive-to/derive
3•robmoore•12m ago•1 comments

Commodore 64 – Introduction to Programming [video]

https://www.youtube.com/watch?v=h3bDa5z_B1M
2•mickael-kerjean•12m ago•0 comments

Ask HN: Dear LinkedIn, do you want to do business, yes or no?

2•stefanos82•12m ago•1 comments

Show HN: Slaunt – Know what your agents are doing

https://slaunt.ai
1•Kerode0•13m ago•0 comments

Show HN: Baldur – Reliability layer for Python (one decorator)

https://github.com/baldurhq/baldur
1•mcbg1541•13m ago•0 comments

What Most People Miss About Performance Reviews

https://news.theuncommonexecutive.com/p/how-calibration-sessions-mess-with
1•fagnerbrack•14m ago•0 comments

Anthropic's Opus 4.6 is a smut-machine

https://techcrunch.com/2026/08/21/anthropics-opus-4-6-is-a-smut-machine/
3•deepmem•15m ago•1 comments

Show HN: Open Session, the open-source cloud agent-orchestrator

https://www.opensession.com
3•9ranty•17m 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.