frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Kremlometr - Using NLP to spot pro-Russian propaganda in czech media comments

https://kremlometr.cz/?lang=en
1•kekqqq•1m ago•0 comments

Show HN: I made AI bets for all World Cup games – bet against or with them

https://www.getaiso.com/tools/world-cup-ai-challenge
1•bentannen•4m ago•0 comments

Show HN: Material Hack – Reboot of the Hacker News Client Materialistic

https://github.com/mxmilkiib/material-hack
1•mxmilkiib•4m ago•0 comments

Canyon HUD helmet for road riding

https://media-centre.canyon.com/en-INT/266866-new-canyon-heads-up-display-helmet-could-be-a-safet...
1•zh3•5m ago•0 comments

US-Iran memorandum of understanding in full

https://www.bbc.com/news/articles/c4gy700j0eko
1•thisislife2•5m ago•0 comments

FIDE AI – Research and public infrastructure for faith-facing AI

https://fideai.substack.com/p/introducing-fide-ai
1•alexchaomander•7m ago•0 comments

Show HN: Web-Based FPGA Viewer

https://edacation.github.io/nextpnr-viewer/
1•malmeloo•7m ago•0 comments

Show HN: Forecastion – A forecasting workbench for analysts and operators

https://forecastion.com/
2•PrimeMentat•10m ago•0 comments

Anthropic build AI so safe the Gov made them delete it (YouTube) – Patrick Boyle

https://www.youtube.com/watch?v=AJP6K2_rr90
1•ziptron•14m ago•0 comments

Why do developers choose one programming language over another? (2002)

https://web.archive.org/web/20020803183731/http://www.joelonsoftware.com/news/20020505.html
1•tosh•18m ago•0 comments

Show HN: FOSS sandbox platform that hides infra secrets from devs and AI agents

https://github.com/octelium/cordium
1•geoctl•19m ago•0 comments

Pandas vs. DuckDB vs. Polars: 20M rows, 10 operations, benchmarked

https://thedatabytes.substack.com/p/pandas-vs-duckdb-vs-polars-i-ran
1•badhayaru•19m ago•0 comments

The Emerging AI Governance Space

https://www.threedeep.tech/ai-governance-stack
1•ethigent•19m ago•0 comments

Show HN: Criterion Closet as a website – pull any of 1,247 films off the shelf

https://the-criterion-closet.vercel.app
1•olievans•20m ago•0 comments

The Agentic Resource Discovery Specification

https://developers.googleblog.com/announcing-the-agentic-resource-discovery-specification/
2•simonpure•23m ago•0 comments

Gotique – AI that gives a first-read appraisal on antiques from photos

https://gotique.ai/en/community
2•gotique•25m ago•0 comments

Five Worlds (2002)

https://www.joelonsoftware.com/2002/05/06/five-worlds/
2•tosh•26m ago•0 comments

Two production Next.js apps, built solo with Cursor+Claude, $13,945

https://technicalstrat.com/articles/enterprise-app-vibecode-recipe
4•matttek•27m ago•0 comments

Getting over Your Skills Issues

https://theoryvc.com/blog
2•sambcui•31m ago•0 comments

India Calls in Military, Blocks Telegram App to Lock Down College-Entrance Exam

https://www.wsj.com/world/india/india-calls-in-military-blocks-app-to-lock-down-college-entrance-...
4•bookofjoe•32m ago•1 comments

Changes that cut our LLM pipeline costs more than model-switching did

2•Abbas_Maka•33m ago•0 comments

Ag.ide Index, rank, and refactor your repo's worst code

https://agide.dev/
2•navs•33m ago•0 comments

Most Affordable Cities to Buy a Home

https://wallethub.com/edu/most-affordable-cities-for-home-buyers/121950
4•panny•52m ago•3 comments

Convert your landing pages to powerful visuals for social media

3•umeshmr•54m ago•0 comments

The IPv4 Parser AI Couldn't Have Written

https://extractingcycles.com/blog/the-ipv4-parser-ai-couldnt-have-written/article/
5•csno•55m ago•0 comments

The ERoadBook – Rally-Inspired GPS Device for Riders and Adventurers [video]

https://www.youtube.com/watch?v=1KoQ-l3-tg8
3•arbayi•55m ago•0 comments

The Music Industry is broken (by Drew Gooden) [video]

https://www.youtube.com/watch?v=Yx7baJMQuVA
2•Imustaskforhelp•57m ago•0 comments

Longterm use of intracortical brain–computer interface for speech&cursor control

https://www.nature.com/articles/s41591-026-04414-6
3•bookofjoe•1h ago•0 comments

Looking Ahead to Postgres 19

https://www.snowflake.com/en/blog/engineering/postgresql-19-features-beta/
3•plaur782•1h ago•0 comments

How Russia's Skyfall Nuclear-Powered Cruise Missile Works

https://www.twz.com/nuclear/here-how-russias-skyfall-nuclear-powered-cruise-missile-actually-works
4•pcestrada•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.