frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI Isn't Making Everyone a Creator

https://story.vjy.me/83
1•latexr•5m ago•0 comments

ChatGPT desktop app bundles a full copy of the LibreOffice

https://twitter.com/simonw/status/2094864223683903800
1•pretext•8m ago•0 comments

Show HN: WhisprNote – Dictation and autocomplete for macOS, no cloud or account

https://whisprnote.com/
1•nkrrish•10m ago•0 comments

ECCV Art Gallery

https://eccv-art-26.github.io/
1•nirvael•12m ago•0 comments

Beyond Lambdas: Raising the Abstraction Level of Functional Code

https://adamtornhill.substack.com/p/beyond-lambdas-raising-the-abstraction
1•theanonymousone•13m ago•0 comments

Show HN: TravelMap, my trips on a MapLibre globe

https://clem.travelmap.net/
2•clementmas•14m ago•1 comments

Exoquad Off Road Wheelchair – Technical Rundown [video]

https://www.youtube.com/watch?v=U4c3Z2PmNOc
1•karussell•15m ago•0 comments

Show HN: Aster Disk – see what's filling your Mac and what's safe to delete

https://apps.apple.com/us/app/aster-disk/id6769705763?mt=12
1•nerique•22m ago•0 comments

How to Protect Yourself from Workslop

https://www.seangoedecke.com/how-to-protect-yourself-from-workslop/
1•vcfgdev•22m ago•0 comments

Wasmi 2.0: engineering of the fastest WASM interpreters

https://wasmi-labs.github.io/blog/posts/wasmi-v2.0/
1•fanf2•23m ago•0 comments

Show HN: Run or get eaten: a GPS zombie chase app [video]

https://www.youtube.com/watch?v=_2tuiNEGfBY
1•julienreszka•27m ago•0 comments

Commodore 64 released September 1, 1982

https://dfarq.homeip.net/commodore-64-released-september-1-1982/
2•giuliomagnifico•28m ago•0 comments

Google Pics

https://pics.new
2•ms7892•28m ago•0 comments

Show HN: CoolDeck – keyboard-first terminal UI for Coolify

https://github.com/Resetnak/cooldeck
1•resetneac•28m ago•0 comments

Is Minifying CSS Necessary? (2023)

https://shivjm.blog/is-minifying-css-necessary/
2•birdculture•29m ago•0 comments

Celebrating 500 Releases of Construct

https://www.construct.net/en/blogs/construct-official-blog-1/celebrating-releases-construct-1905
1•AshleysBrain•30m ago•0 comments

Acto – Delegate tasks via link (assignee needs no account)

https://actohub.com
1•aralewalles•31m ago•0 comments

Complicated vs. Complex – From IC Software Engineer to CTO

https://www.henryarmburgjennings.com/blog/complicated-vs-complex
1•jenningsh•35m ago•0 comments

Show HN: Image3d AI-One interface for multiple image to 3D models

https://www.aiimageto3d.com/
1•cairnechou•36m ago•0 comments

HOM-AIMOS – Auditable persistent memory for agent security

https://github.com/wallidsaydi-creator/HOM-AIMOS
1•walldad2•43m ago•0 comments

Show HN: Comparing eight LLMs on 38 Berlin election questions

https://bensk1.github.io/berlin-wahllm/en/
1•bensk1•43m ago•0 comments

Build a Reasoning Model Scratch 1: Motivation, Code Setup [Sebastian Raschka] [video]

https://www.youtube.com/watch?v=Kh9mqTzjuEQ
1•mdp2021•43m ago•0 comments

OpenAI gates cyber defense in 44 ChatGPT markets with a 1996 US export list

https://lubaretsi.com/en/writing/openai-tac-country-gate/
1•Bluestein•45m ago•0 comments

A Single Flaw Lets Untrusted Repos Run Code in Claude Code, Codex, Cursor, Grok

https://www.manifold.security/blog/ai-coding-agents-git-hijack
2•axsharma•50m ago•3 comments

"I have the code and Claude AI – why would I pay you?" [video]

https://www.youtube.com/watch?v=1L48dy4Lyjo
1•AzZtro•53m ago•1 comments

Tracing np.add, all the way down

https://blog.veitheller.de/numpy.html
1•hellerve•54m ago•0 comments

The Singularity Is Not What It Seems: Whatever the AI Future Is, We're in It Now

https://www.theatlantic.com/technology/2026/09/ai-future-reckoning-singularity/688487/
2•ryan_j_naughton•55m ago•0 comments

Show HN: Campsend – open-source Alternative to WeTransfer

https://campsend.app/
2•bakimosadi•55m ago•0 comments

Farmanix – An AI agent that can use your Mac like a human

https://farmanix.com/
1•Amirali_•56m ago•0 comments

Study reveals substantial misdirection in EU automotive regulation

https://techxplore.com/news/2026-09-reveals-substantial-misdirection-eu-automotive.html
4•mdp2021•58m ago•1 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.