frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Software Architecture Is More Important [video]

https://www.youtube.com/watch?v=k4xHQpKyLWY
1•fallinditch•23s ago•0 comments

How to Use Claude Code: A Complete Beginner's Guide (2026)

https://dest.host/b/how-to-use-claude-code/
1•snorbleck•2m ago•0 comments

Australia doubles the maximum penalty for its social media ban

https://www.engadget.com/2203358/australia-doubles-maximum-penalty-social-media-ban/
2•01-_-•5m ago•0 comments

Show HN: Bash4LLM+ – A lightweight, dependency-free Bash wrapper for LLM APIs

https://github.com/kamaludu/bash4llm/
3•kamaludu•5m ago•2 comments

1M Passports Leaked Online

https://www.schneier.com/blog/archives/2026/06/one-million-passports-leaked-online.html
2•garo-pro•5m ago•0 comments

Show HN: NanoEuler – GPT-2 scale model in pure C/CUDA from scratch

https://github.com/JustVugg/nanoeuler
3•vforno•10m ago•1 comments

TOP500 at ISC'26: We Have a New Number 1 – By George Cozma

https://chipsandcheese.com/p/top500-at-isc26-we-have-a-new-number
3•rbanffy•10m ago•0 comments

Ante: A New Way to Blend Borrow Checking and Reference Counting

https://verdagon.dev/blog/ante-blending-borrowing-rc
3•g0xA52A2A•11m ago•0 comments

Researchers Set Hybrid Bonding Records

https://spectrum.ieee.org/hybrid-bonding-2677022836
2•rbanffy•12m ago•0 comments

Nourish: A New Wayland Compositor Powered by Vulkan with Infinite Scrolling

https://www.phoronix.com/news/Nourish-Wayland-Compositor
2•okso•12m ago•1 comments

Ford rehires 'gray beard' engineers after AI falls short

https://techcrunch.com/2026/06/28/ford-rehires-gray-beard-engineers-after-ai-falls-short/
9•rbanffy•13m ago•3 comments

Enough Numbers to Build a Universe

https://www.stephendiehl.com/posts/universe/
2•tmach32•14m ago•0 comments

Cloudflare cut 1,100 jobs and then grew its engineering team by 45 percent

https://thenextweb.com/news/cloudflare-builders-sellers-measurers-engineering-surge-ai-layoffs
3•karlmush•14m ago•0 comments

Show HN: Use-zerostack – delegate any task to a lightweight coding agent

https://github.com/gi-dellav/use-zerostack/
2•gidellav•15m ago•0 comments

Cold War Erosion Simulation

https://github.com/ajsbsd/ajsbsd-jwst-cli
2•ajsBSDdotnet•17m ago•1 comments

Asciigraph: Go pkg to make lightweight ASCII graph in CLI with zero dependencies

https://github.com/guptarohit/asciigraph
2•atkrad•18m ago•0 comments

Mercury – Open-source, local-first agentic harness for Android

https://github.com/Yene96/Mercury
2•yene96•21m ago•0 comments

Release v1.27.0 · go-delve/delve

https://github.com/go-delve/delve/releases/tag/v1.27.0
2•atkrad•23m ago•0 comments

The Curious Case of Aa.ns.charter.com

https://mikehowells.com/2026/06/21/the-curious-case-of-aa-ns-charter-com/
2•sashk•23m ago•0 comments

A conversation with Marc Andreessen (2000-10-02)

https://charlierose.com/videos/5018
2•andreyazimov•26m ago•0 comments

Show HN: I built an opinionated minimalist ePub/pdf online reader

https://epub.mirror.forum
2•Imustaskforhelp•27m ago•0 comments

A wire-faithful, browser-based re-creation of the Atari ST game MIDI Maze

https://github.com/diegoparrilla/midi-maze-js
6•logronoide•31m ago•0 comments

WinPE as a stateless harness for Windows driver testing and fuzzing

https://bednars.me/blog/winpe-harness
3•piotrbednarsalt•31m ago•0 comments

Your Kids’ School Bus Is About to Become a Roaming Surveillance Vehicle

https://www.thedrive.com/news/your-kids-school-bus-is-about-to-become-a-roaming-surveillance-vehicle
3•voxadam•36m ago•0 comments

Show HN: Snarl – Fast Shacl Validator

https://github.com/trivyn/snarl
2•jcadam•36m ago•0 comments

SISU: The Feeling of Perseverance

https://finland.fi/emoji/sisu/
1•jruohonen•40m ago•1 comments

The US Used to Demand the Best Tech. Now We Ban It

https://www.pcmag.com/opinions/the-us-used-to-demand-the-best-tech-now-we-ban-it
8•mwexler•41m ago•1 comments

What I Do Not Understand, (A)I Cannot Create

https://medium.com/@joshua.sparaga/what-i-do-not-understand-a-i-cannot-create-740d335e33fb
1•psteitz•41m ago•0 comments

Show HN: Prose or Con, can you detect AI writing?

https://prose-or-con.com/
1•SwellJoe•42m ago•1 comments

Keyless, Identity-Aware Access to Any AI

https://netbird.ai/
1•braginini•42m 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.