frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

An AI-First, Censorship-Resistant Media Ecosystem

https://labnews.ai/manifesto/
1•VladDanGeorgesc•58s ago•0 comments

The BR essays that foresaw OpenAI's latest scandal

https://www.bostonreview.net/reading-list/ai-companies-come-for-mathematics/
1•bryanrasmussen•3m ago•1 comments

Hiignite – coaching platform (Rust/Axum and Expo)

https://hiignite.com/
1•kenanbalija•4m ago•1 comments

Nudl – strips tracking parameters from any link you copy

https://coreho.github.io/nudl/
1•KoreoKorp•4m ago•0 comments

Show HN: I built a 30-second breathing reset for the gaps between tasks

https://www.highroadsoftware.com/apps/pulsewave/reset/
1•highroadsoft•6m ago•0 comments

WonderSwan WonderWitch

https://vsrecommendedgames.miraheze.org/wiki/WonderSwan/WonderWitch
1•tosh•7m ago•0 comments

The Cryptographic World Computer

https://vitalik.eth.limo/general/2026/09/27/the_cryptographic_world_computer.html
1•mellosouls•7m ago•0 comments

Behold the pawpaw, the tropical 'alien banana' that grows right here in Canada

https://www.cbc.ca/lite/story/9.7356882
1•colinprince•13m ago•0 comments

Kremlin intends to accustom NATO to a baseline level of airspace violations

https://twitter.com/TheStudyofWar/status/2103922557917286824
1•doener•15m ago•0 comments

Show HN: An OpenAI-compatible, model-agnostic agent API

https://rebyte.ai/docs/agents-api/overview
1•sonicgg•15m ago•0 comments

The Rise and Fall of Tech Worker Power

https://www.bostonreview.net/articles/the-rise-and-fall-of-tech-worker-power/
2•bryanrasmussen•15m ago•0 comments

Florida death penalty: He executed prisoners. Then they came back to haunt him

https://www.cnn.com/2026/09/27/us/florida-executions-ron-mcandrew-profile
2•Tomte•25m ago•1 comments

YouTube and Meta Reverse Course, Will Accept 'Musk' Trailer Ad

https://www.hollywoodreporter.com/business/digital/youtube-meta-musk-trailer-ad-1236712540/
3•colinhb•25m ago•0 comments

The Poisoned Chalice

https://imgur.com/a/a6gKgjw
1•xkaymac•30m ago•0 comments

A world that remembers (8 bit AI game)

https://www.twitch.tv/genesisplanet
1•pro_methe5•31m ago•1 comments

CUDA Device Max Connections

https://leimao.github.io/blog/CUDA-Device-Max-Connections/
1•eigenBasis•32m ago•0 comments

Anthropic Is Building HAL 9000

https://j.jnord.workers.dev/articles/2026-09-27-anthropic-is-building-hal-9000
1•jtrn•34m ago•2 comments

Netflix Stratum Media Processing: Automated Container Right-Sizing

https://netflixtechblog.com/netflix-stratum-media-processing-automated-container-right-sizing-ddf...
1•violetta98•34m ago•0 comments

The Joys of Microadventures (2024)

https://www.noemamag.com/a-single-small-map-is-enough-for-a-lifetime/
1•Tomte•36m ago•0 comments

Tradition Is Smarter Than You Are (2018)

https://scholars-stage.org/tradition-is-smarter-than-you-are/
1•Tomte•36m ago•0 comments

Show HN: What about a no-SSH agentic access tool

https://getfda.dev/
1•laotree•42m ago•0 comments

'Things will never be chill again': The doomers who shaped AI safety freakout

https://www.msn.com/en-us/money/general/things-will-never-be-chill-again-the-doomers-who-shaped-t...
1•tolugenius•42m ago•0 comments

The World Needs Better Power Grids. Why Smaller May Be Better

https://www.nytimes.com/2026/09/25/business/power-grid-jonas-birgersson.html
1•thelastgallon•46m ago•0 comments

Anthropic's Secretive AI-Powered Wet Lab Breaks Cover and Makes First Discovery

https://www.the-scientist.com/anthropic-s-secretive-ai-powered-wet-lab-breaks-cover-and-makes-fir...
1•speerer•47m ago•0 comments

Show HN: Compliance Posture – free, searchable SaaS compliance directory

https://complianceposture.com/
1•godcrampy•49m ago•0 comments

Thieves Stole 'Nvidia' Trailers. They Got 20 Tons of Sand

https://www.wired.com/story/thieves-stole-nvidia-trailers-they-got-20-tons-of-sand/
1•joozio•50m ago•0 comments

Show HN: Llamora, a private journal that remembers with you

https://welcome.llamora.app/
1•anon1253•57m ago•1 comments

Fighting YouTube Addiction

https://buttondown.com/usaa.ma/archive/fighting-youtube-addiction/
1•usamasulaiman•1h ago•0 comments

From APIs to Languages: Generalising Method Names [using regular expressions]

https://blog.acolyer.org/2015/11/09/from-apis-to-languages-generalising-method-names/
1•ogogmad•1h ago•0 comments

How do you run System One decision models locally?

https://stackness.dev/blog/how-do-you-run-system-one-decision-models-locally-ollaya-laya-mlx-and-...
2•gosen•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.