frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pamir AI Launches the Lapis One Linux Computer with Built-In Agent KVM Feature

https://www.hackster.io/news/pamir-ai-launches-the-lapis-one-linux-computer-2c5446b94a23
1•teleforce•1m ago•0 comments

The Nexus of Critical Citizenship and Social Media (2020)

https://citejournal.org/volume-19/issue-4-19/social-studies/the-nexus-of-critical-citizenship-and...
2•biscuits1•4m ago•0 comments

One Morning, a Discord Agent, and Five Years of Tech Debt

https://saddlebagexchange.com/blog/coderabbit-discord-frontend-upgrade
3•eyehurtsme•4m ago•0 comments

Show HN: I built a Cap Table app for myself, now you can use it too for free

https://cap-table.io/
2•ent101•4m ago•0 comments

Forgejo <=16.0.3 Critical RCE

https://codeberg.org/forgejo/forgejo/src/branch/forgejo/release-notes-published/16.0.4.md
2•weierstass•4m ago•0 comments

Secret systems used by Israel in mass killings of Gaza civilians revealed

https://www.theguardian.com/world/2026/sep/10/secret-systems-used-by-israel-in-mass-killings-of-g...
2•Betelbuddy•5m ago•0 comments

Influencers Can Create Instagram Captions with AI – Best Tool

2•horitechsolutio•5m ago•0 comments

A Series of Unfortunate Jobs

https://oussama-mater.tech/laravel-queue-gotchas/
1•theanonymousone•5m ago•0 comments

Perhaps the universe isn't accelerating (and thus we don't need dark matter)

https://academic.oup.com/mnras/article/549/3/stag844/8701424
1•gumby•6m ago•0 comments

A 35B language model running on an iPhone using only 1–2.5 GB of peak memory

https://github.com/Edge0-AI/edge0/
1•rajtilakjee•7m ago•0 comments

Casablanca: How An Unproduced Play Marched into Movie History

https://www.thecollector.com/casablanca-unproduced-play-movie-history/
3•mdp2021•10m ago•0 comments

Serverless DTLS

https://proxylity.com/docs/listeners/dtls.html
3•mlhpdx•12m ago•1 comments

Show HN: I built an AI 'Fog of War' to kill my 3AM Notion templates

https://www.tryworthit.app/about
2•AvityN•13m ago•1 comments

Genuinely useful set of free tools for any dev

https://kirkdiamond.com/tools/
1•turkeykd•14m ago•0 comments

Neki by PlanetScale

https://neki.dev/
5•handfuloflight•14m ago•0 comments

Silicon Valley Is Transforming the Military-Industrial Complex

https://costsofwar.watson.brown.edu/paper/how-big-tech-and-silicon-valley-are-transforming-milita...
1•paimapi•14m ago•1 comments

A Design Space Exploration of Async/Await

https://cel.cs.brown.edu/blog/design-space-async-await/
1•alpaylan•15m ago•0 comments

SWE-2

https://twitter.com/cognition/status/2098069235733823965
1•tosh•16m ago•0 comments

Show HN: ObserverBench – Test internal AI monitors by the harm they miss

https://kwisatzh.github.io/observerbench/try/
2•kwisatzh•17m ago•0 comments

Open Design 0.22.0 – Introducing OpenDesign Arena

https://github.com/nexu-io/open-design/releases/tag/open-design-v0.22.0
2•doener•18m ago•0 comments

Neki

https://planetscale.com/blog/introducing-neki
8•simon_weber•18m ago•0 comments

Apple is no longer thinking different

3•othmanosx•18m ago•0 comments

Neki – Horizontal Sharding for Postgres

https://planetscale.com/docs/neki
5•jaredlt•20m ago•0 comments

Security lab finds agents will exploit vulnerabilities without prompt to hack

https://www.theregister.com/security/2026/03/12/rogue-ai-agents-can-work-together-to-hack-systems...
2•ForHackernews•20m ago•0 comments

Show HN: EterDB, a Postgres fork that makes it easy to recover from incidents

https://eterdb.com/
2•fdeth•20m ago•0 comments

Aliens Are Not Crazy Unlikely

https://www.overcomingbias.com/p/aliens-are-not-crazy-unlikely
2•surprisetalk•21m ago•0 comments

Show HN: An app for passively watching Product Hunt launches as a video playlist

https://github.com/OlegIGalkin/ProductTrailers
2•cantouch•23m ago•0 comments

I build a mechanical watch face: a real gear train for a watch with no gears

https://myday24.com/blog/how-a-mechanical-watch-face-is-built/
3•tomasslavicek•26m ago•0 comments

Show HN: Subnet Calc, visual subnet planning for teams

https://www.subnetcalc.com
2•RossMason•27m ago•1 comments

Show HN: Matcha Filter Remover – browser-first green cast correction

https://matchafilterremover.net/
2•robot1996•28m 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.