frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Computer science enrollment fell for the first time in 20 years

https://www.businessinsider.com/computer-science-enrollment-fell-after-chatgpts-rise-economist-sa...
1•EasternEuroDev•1m ago•0 comments

Show HN: 100% Free, private meeting notes that never leave your Mac

https://oatsnote.com/
2•jarvisceo•2m ago•0 comments

HN: FlowShelf –free,native macOS shelf/clipboard/screenshot app,on-device AI

https://flowshelf.app/
1•abukadery•2m ago•0 comments

Frontpages of the EU

https://frontpages.eu
1•brnt•4m ago•1 comments

AI coding agents should optimize for less owned code

https://www.openenergytransition.org/posts/ai-coding-agents-should-optimize-for-less-owned-code
1•lyoncy•5m ago•0 comments

Kimi K3 found 19 0days in latest Redis 8.8.0 in 1.5hrs

https://github.com/berabuddies/redis-poc
1•doanbactam•5m ago•1 comments

Snake fossil sheds light on why lizards lost their limbs and started slithering

https://theconversation.com/80-million-year-old-snake-fossil-sheds-light-on-why-lizards-lost-thei...
2•janandonly•8m ago•0 comments

Show HN: Sealos – deploy a full-stack GitHub repo and troubleshoot the live app

https://sealos.io/
2•dedicate•9m ago•0 comments

AI Overviews could push Reddit to end its $60M-a-year deal with Google

https://www.neowin.net/news/ai-overviews-could-push-reddit-to-end-its-60-million-a-year-deal-with...
1•01-_-•9m ago•0 comments

Amazon and Microsoft pivot cloud gaming strategies to target different players

https://www.cnbc.com/2026/07/23/amazon-microsoft-cloud-gaming.html
2•01-_-•10m ago•0 comments

Jolt: Clojure on Chez Scheme

https://yogthos.net/posts/2026-07-02-jolt.html
1•ephaeton•12m ago•1 comments

Show HN: Jharu – Open-Source AI and Dev Junk Cleaner for Mac and PC

https://github.com/riponcm/Jharu
1•riponcm•13m ago•0 comments

The Ever-Receding Pocket

https://zhenyi.gibber.blog/the-ever-receding-pocket
2•zhenyi•13m ago•0 comments

About the August 2026 Total Solar Eclipse

https://www.timeanddate.com/news/astronomy/10-things-aug-2026-eclipse
1•chmaynard•15m ago•0 comments

Agent Sabotage with Deceitful Commit Message;

https://github.com/MasihMoafi/Elpis
1•masihmoafi•15m ago•0 comments

On AI

https://jcs.org/2026/07/23/ai
2•ingve•16m ago•0 comments

Reaction: Scan Logs for Patterns and Take Action

https://reaction.ppom.me/intro/
1•joahua•17m ago•0 comments

Nathan Barley

https://en.wikipedia.org/wiki/Nathan_Barley
1•ustad•28m ago•0 comments

Leaky Language Models: Stealing Architecture and Inference Optimizations

https://arxiv.org/abs/2607.20723
1•sbulaev•29m ago•0 comments

The Hardest Way to Make a GIF

https://blog.willgrant.org/2026/07/23/the-hardest-way-to-make-gif.html
1•plaguna•30m ago•0 comments

Show HN: Continuum – switch AI coding agents without re-explaining your project

https://github.com/AnasNafees1802/continuum
1•AnasNafees101•31m ago•0 comments

The PImpl idiom and the C++26 std:indirect type

https://mariusbancila.ro/blog/2026/07/23/the-pimpl-idiom-and-the-cpp26-stdindirect-type/
10•signa11•33m ago•2 comments

Making a Watch from Scratch [video]

https://www.youtube.com/watch?v=-Hvn4-NMYg8
2•thunderbong•34m ago•0 comments

Supercooled kidneys have been transplanted into pigs in a "landmark achievement"

https://www.technologyreview.com/2026/07/23/1140765/supercooled-kidneys-have-been-transplanted-in...
2•joozio•35m ago•0 comments

A Pragmatic Approach to LLMs

https://gracefulliberty.com/articles/pragmatic-llms/
4•signa11•36m ago•0 comments

AMD's Instinct MI455X: Aiming for the Sun

https://chipsandcheese.com/p/amds-instinct-mi455x-aiming-for-the
3•ingve•37m ago•0 comments

Local Kubernetes on Mac: A Multi-Node Cluster with UTM

https://blog.qstars.nl/posts/macos-local-kubernetes-cluster-with-utm/
2•victorbrink•45m ago•0 comments

Open Erdos problems solved with the help of GPT-5.6 Sol

https://twitter.com/qiaoqiao2001/status/2080003441821163958
2•vhiremath4•45m ago•0 comments

Show HN: Tool to validate your HTTP-message-signatures-directory

https://sitedex.dev/tools/keycheck
3•zeppelin_7•46m ago•0 comments

SodaSlim Releases Updated 2026 Highlights Soda Slim Capsules Ingredient

https://finance.yahoo.com/healthcare/articles/sodaslim-releases-updated-2026-highlights-122400710...
3•tagysaly•48m 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.