frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

RSA-896

https://saweis.net/posts/rsa-896.html
2•madars•3m ago•1 comments

Lattice enumeration: O(R^N) complexity reduced to O(R^2) with no floating point

https://github.com/Andrew-J-Morris/orthotropic-parity-and-discrete-pi
1•MorrisAndrewJ•5m ago•0 comments

Using system-one models inside high-throughput data pipelines

https://www.southbridge.ai/blog/jev-entity-resolution
2•hrishi•9m ago•0 comments

TanStack supply-chain attack exposed ~170 private CrowdSec repos

https://www.crowdsec.net/blog/tanstack-supply-chain-attack-analysis
3•fourfire•14m ago•1 comments

Is It a Flatpak? Is It an AppImage? No It's AppJail

https://www.youtube.com/watch?v=EBSMHBC0Phc
2•DtxdF•18m ago•1 comments

AI Bubble: 'They're coming to the end of this' – Eli the Computer Guy [video]

https://www.youtube.com/watch?v=0YIczZDCgsM
2•baranul•18m ago•0 comments

Show HN: Bastardica – Create bastard web fonts

https://bastardica.mitpit.com
2•MitPitt•20m ago•0 comments

Comparing reflection capabilities of C++, Zig and C3

https://nyr24.github.io/blog/reflection-comparison/
2•ManuLinares•22m ago•0 comments

Do you separate the reviewer's window from the author's

2•Marvin_RunAI•28m ago•1 comments

The Giza Project

https://giza.fas.harvard.edu/
2•Mr_Minderbinder•30m ago•0 comments

Why are AI leaders calling for a slow down? [audio]

https://www.cbc.ca/listen/cbc-podcasts/209-front-burner/episode/16237327-why-are-ai-leaders-calli...
1•BiraIgnacio•30m ago•0 comments

End the H-1B Program

https://end-h1b.com/
10•sergiotapia•31m ago•7 comments

A2E AI – an all-in-one AI video generator for text, images and avatars

https://textideo.com/model/a2e-ai
1•Yummiy•32m ago•0 comments

Pdfcn: Beautiful pdf components, built on Takumi and Forme, by Shadcn

https://github.com/shadcn-labs/pdfcn
3•nateb2022•46m ago•0 comments

Open-source free meme generator, friendly for AI agents and humans

https://github.com/terryds/memegenscript
1•terryds•47m ago•2 comments

Pure Code: What remains with developers after AI writes the code?

https://pure-code-essay.vercel.app/
1•kofdai•49m ago•0 comments

Ask HN: Are LLMs the antithesis of Hegel's universal spirit?

1•Avicebron•49m ago•0 comments

How to handle manager adding AI bs to our codebase/designs etc.

3•LandOfMightDev•1h ago•1 comments

Lisp.md: System Instructions for Lisp

http://funcall.blogspot.com/2026/09/lispmd-system-instructions-for-lisp.html
1•prestonlibby•1h ago•0 comments

How the Berkeley Overmind won the 2010 StarCraft AI competition (2011)

https://arstechnica.com/gaming/2011/01/skynet-meets-the-swarm-how-the-berkeley-overmind-won-the-2...
2•promiseofbeans•1h ago•1 comments

Portable Fruit Blender

https://www.instructables.com/Portable-Fruit-Blender/
1•sudo_cowsay•1h ago•0 comments

Trump to Name AI Czar While Rejecting Safety Risks as a Hoax

https://www.bloomberg.com/news/articles/2026-09-19/trump-to-name-ai-czar-while-rejecting-safety-r...
4•sbulaev•1h ago•0 comments

PhotoGIMP – The Photoshop Like Experience on GIMP

https://photogimp.com/
2•the-mitr•1h ago•0 comments

Bret Victor: Inventing on Principle (2012) [video]

https://vimeo.com/906418692
1•anpep•1h ago•0 comments

The National ID Nobody Voted For

https://thedreydossier.substack.com/p/the-national-id-nobody-voted-for
4•kickofline•1h ago•0 comments

More Floating Point Alternatives

https://wizardzines.com/comics/floating-point-alternatives/
2•vismit2000•1h ago•1 comments

AI investment, govt borrowing drive global cost of capital higher: Goldman Sachs

https://www.tribuneindia.com/news/business/ai-investment-government-borrowing-drive-global-cost-o...
2•vismit2000•1h ago•0 comments

Perception of Time Is, in Fact, Warped

https://www.noemamag.com/your-perception-of-time-is-in-fact-warped/
2•miqkt•1h ago•0 comments

Ten days that changed the course of AI

https://www.reuters.com/business/media-telecom/ten-days-that-changed-course-ai-2026-09-19/
2•Andrex•1h ago•0 comments

Generating levels in real time with the Jev model

https://www.spritefusion.com/blog/generating-game-level-in-real-time-with-jev
2•azhenley•1h 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.