frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Verflink, a link checker that catches affiliate tags stripped in redirects

https://verflink.com/
1•verflink•18s ago•0 comments

Show HN: Mador – Make any DOM reactive with a tiny 80-line Proxy state tuple

https://github.com/marsbos/mador
1•bosmarcel•25s ago•0 comments

XCancel is available again

https://xcancel.com/about
1•1matin•39s ago•0 comments

Show HN: Byosynch – Continuous two-way file sync over SSH for Mac and Linux

https://byosynch.com/
1•hamiltonc•1m ago•0 comments

The CINT C/C++ Interpreter

https://web.archive.org/web/20081226231317fw_/http://root.cern.ch/twiki/bin/view/ROOT/CINT
1•GaryBluto•6m ago•0 comments

Salt Men of Iran (2011)

https://web.archive.org/web/20140317115651/http://www.pasthorizonspr.com/index.php/archives/06/20...
1•joebig•7m ago•0 comments

Ask HN: Show your micro-SaaS (September 2026)

1•genekrapivin•8m ago•0 comments

browser_image.png shows different text in the image if you open it in Safari

https://lr0.org/browser_image.png
1•lr0•11m ago•1 comments

It took a year to ship WebAssembly in Anubis

https://anubis.techaro.lol/blog/2026/anubis-wasm/
2•xena•13m ago•0 comments

Watch GPT 6 play NetHack

https://www.twitch.tv/vaguely_aligned
1•kenforthewin•13m ago•0 comments

Harnessing the Universal Geometry of Embeddings

https://arxiv.org/abs/2505.12540
2•ur-whale•14m ago•0 comments

The 4KB Trick That Still Divides Old-School Programmers Decades Later

https://comuniq.xyz/Programming/post?t=1649
1•01-_-•16m ago•0 comments

AI Code Share Tracker: Percent of Code Written by AI

https://provenbrief.com/story/the-ai-code-share-tracker-every-verified-public-number-on-ai-writte...
1•bnsaid•17m ago•0 comments

Google AI Pro vs. ChatGPT Plus: Which Is Better in 2026?

https://provenbrief.com/story/google-ai-pro-vs-chatgpt-plus-which-is-better-in-2026
1•bnsaid•18m ago•0 comments

Internet2.edu

https://internet2.edu/
1•gurjeet•20m ago•0 comments

Show HN: Sol, my macOS music player and jukebox app, is now free and open source

https://github.com/FulltimeFeline/Sol
1•fulltimefeline•20m ago•0 comments

GrapheneOS Overhauled Default Apps and Secure Clipboard

https://grapheneos.social/@GrapheneOS/117225539756835649
4•Cider9986•21m ago•1 comments

See Windows CE Running on the N64

https://retrododo.com/see-windows-ce-running-on-the-n64/
1•rbanffy•23m ago•0 comments

"The Heroic Ideal – A Personal Odyssey" by Diana Wynne Jones

https://petson.livejournal.com/200935.html
1•barry-cotter•25m ago•0 comments

Artifactor: Visual HTML editor for AI-generated artifacts

https://colliber.com/artifactor/
1•welsenesbros•25m ago•0 comments

Human archive: They were only human

https://sayyss.github.io/human-archive/
2•jonwinstanley•28m ago•1 comments

The Leaked Audit That Exposes OpenAI's Real Financial Crisis [video]

https://www.youtube.com/watch?v=UVKmPMTwglI
4•__natty__•31m ago•0 comments

Pre-auth RCE on MikroTik: exploited before the patch, rebuilt in three hours

https://blog.tolmo.com/p/pre-auth-rce-on-mikrotik-exploited
1•ecares•32m ago•0 comments

Which came first, Windows 95's taskbar or NeXT's Dock? Neither

https://www.theregister.com/os-platforms/2026/09/03/which-came-first-windows-95s-taskbar-or-nexts...
2•rbanffy•32m ago•0 comments

Firefox extension that makes Reddit Old again, no account required

https://github.com/moomou/reddit-classic
3•ppymou•36m ago•1 comments

They're Made Out of Meat

https://www.eastoftheweb.com/short-stories/UBooks/TheyMade.shtml
4•embedding-shape•37m ago•0 comments

Show HN: VODForge – a free local desktop UI for YouTube video/playlist downloads

https://getvodforge.com/
2•coopernusbaum•38m ago•0 comments

Show HN: Agentic OS: one Rust Linux binary, one SQLite and sandbox per entity

https://github.com/mmeyerlein/meclaw
1•mmeyerlein•38m ago•0 comments

Single-slot low-profile 75W RTX 3060 with no power connectors disappoints

https://www.tomshardware.com/pc-components/gpus/single-slot-low-profile-75w-rtx-3060-with-no-powe...
1•sbulaev•38m ago•0 comments

Dark Forest: SETI at Home for Agent Swarms

https://github.com/mobdotso/darkforest-plugin
1•david_shi•38m 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.