frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Germany's Kai Havertz: 'I make runs that look pointless but I'm creating space'

https://www.theguardian.com/football/2026/jun/24/kai-havertz-germany-world-cup-2026-interview
1•bookofjoe•16s ago•0 comments

Ask HN: How much coding should beginners learn in the AI era?

2•JohnDSDev•1m ago•0 comments

Show HN: Empowering codex/Claude Code with Aswath Damodaran valuation thinking

https://github.com/stockvaluation-io/stockvaluation_io
1•pradeep1177•1m ago•0 comments

Building a LoFi Radio

https://cieslak.dev/en/blog/2026-06-24-lofi/
1•cieslak•3m ago•1 comments

Show HN: Metaspec: The DpANS3R Common Lisp Spec in S-Expr and HTML Format

https://metaspec.dev/#
1•dlowe-net•4m ago•0 comments

Show HN: Browser based tool for programming ch57x macro-pads

https://pollrobots.com/cheese-tax.html
1•pacaro•5m ago•0 comments

Create cross-platform mobile apps with Ruby

https://ruflet.dev/
2•AdamMusaAly•6m ago•0 comments

Show HN: Spotlight/Raycast for Web Search not local) && (compare AI responses)

https://uberninja.co/
1•healersource•7m ago•0 comments

How to Measure the ROI of FDE

https://jaygoel.com/posts/building-an-fde-motion/
2•memset•8m ago•0 comments

Show HN: LinkedIn Remote jobs by technology and country Map. Joint effort.

https://remote-trends.com/
1•Hanqaqa•9m ago•0 comments

Seoul: AWS and Google Cloud Kept Failing the Same Network Path?

https://webbynode.com/articles/seoul-vs-seoul
1•gsgreen•10m ago•0 comments

Human Dignity – On the Perils of Indifference

https://www.nubero.ch/blog/017/
2•ChrisArchitect•12m ago•0 comments

Claude Agents in Notion

https://www.notion.com/help/use-claude-agents-in-notion
1•alvis•12m ago•0 comments

Fable – Is it ever coming back?

https://www.youtube.com/watch?v=cOxC0t8DqYk
2•peter422•12m ago•0 comments

Retracted: Paper claiming immunochemotherapy more effective in morning

https://www.nature.com/articles/s41591-026-04508-1
3•connorboyle•12m ago•0 comments

Agentic Design Patterns

https://blog.danwald.me/agentic-design-patterns
1•danwald•13m ago•1 comments

ModelFit – find the cheapest LLM that can back up your main coding model

https://github.com/kwadwoadu/modelfit
1•kwadwoadu•13m ago•1 comments

Predicting AI Job Exposure

https://www.ben-evans.com/benedictevans/2026/5/24/ai-job-exposure
1•karakoram•14m ago•0 comments

Show HN: Deja – zsh that predicts your next command from sequence patterns

https://github.com/Giammarco-Ferranti/deja
1•giammiferr•14m ago•1 comments

Show HN: Cascade – A bare-metal C++ proxy that cuts LLM API bills by 70%

https://cascade-router.github.io/cascade-router/
1•AmixxM•14m ago•0 comments

Sandy Petersen on how Quake ruined id Software

https://xcancel.com/SandyofCthulhu/status/2069592209645785294
2•OneDonOne•14m ago•0 comments

Why the word "mead" shows up in Chinese

https://www.deadlanguagesociety.com/p/why-the-word-mead-shows-up-in-chinese
1•kevinphy•15m ago•0 comments

Do you know your founder-personality type? (research-bassed)

https://www.didon.app/test/founder-personality
1•babakzy•16m ago•2 comments

Building Frontier AI in Japan

https://sakana.ai/
3•rguiscard•19m ago•0 comments

AI Engine Kernel and Graph Programming Guide (UG1079)

https://docs.amd.com/r/en-US/ug1079-ai-engine-kernel-coding/Overview?tocId=Tetu2r4JIGY8FJGQ42AsGA
1•rolph•19m ago•0 comments

Show HN: Explore popular go codebases visually

https://arcaide.foo/app/projects
1•aqula•20m ago•0 comments

Ex-Meta CTO Says It's a Great Time to Build a Hard Tech Company

https://news.crunchbase.com/venture/hard-tech-infrastructure-moat-schroepfer-gigascale/
4•wslh•22m ago•0 comments

NUMA: Cores, memory, and the distance between them

https://edera.dev/stories/numa-part-1-cores-memory-and-the-distance-between-them
3•sys_call•22m ago•0 comments

Show HN: Dodger – turns a feature idea into a PRD, wireframes, and user stories

https://dodger.ai/
1•YusufS•22m ago•0 comments

How to Write an Effective Software Design Document

https://refactoringenglish.com/excerpts/write-an-effective-design-doc/
2•mtlynch•22m ago•2 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.