frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Munich Court Proposes €1.05 Monthly Codec Royalty for Netflix Premium Users

https://streaminglearningcenter.com/articles/munich-court-proposes-e1-05-monthly-codec-royalty-fo...
1•cisc•50s ago•0 comments

What 219 AI evals job postings that publish a salary pay

https://aievalsjobs.com/ai-evals-salary-report/
1•willhannay•1m ago•0 comments

Show HN: Open-source AMDGCN kernels for optimizing LLM inference

https://github.com/NetraRuntime/netra-kernel
1•rbisri•1m ago•0 comments

Canada can save Americans and defeat America

https://pluralistic.net/2026/08/24/elbows-really-up/#peoples-revolutionary-front-of-carneyism
1•samizdis•3m ago•0 comments

AI Can See Optical Illusions

https://nautil.us/ai-can-see-optical-illusions-1284064
1•bookofjoe•4m ago•1 comments

What you won't code, you pay for in tokens

https://gabriel.axm-protocols.io/en/blog/cloudifying-development/
1•jarryga•4m ago•0 comments

Cryptographic Context Injection

https://arstechnica.com/security/2026/08/grok-exfiltrates-user-data-when-malicious-instructions-a...
1•noashavit•4m ago•0 comments

Share your verified subscriber count for free

https://www.trustsubcount.com/
1•mattmerrick•4m ago•0 comments

PingParrot – alerts that repeat until someone acknowledges them

https://pingparrot.app/
1•endless_shift•4m ago•0 comments

Sammons Distances Itself from Guggenheim in Call with Lenders

https://www.bloomberg.com/news/articles/2026-08-24/sammons-distances-itself-from-guggenheim-in-ca...
1•petethomas•5m ago•0 comments

BitTime: The only solution that replaces currency to restrain AI

https://github.com/builder0821/BitTime
1•builder0821•5m ago•1 comments

A year of Org Social, my social network

https://en.andros.dev/blog/5fcf45a2/a-year-of-org-social-my-social-network/
1•JNRowe•5m ago•0 comments

Shein targets a $27B IPO after its peak valuation

https://forgeeks.net/shein-27-billion-hong-kong-ipo/
1•kuuuzya•5m ago•0 comments

Luffu Link – health and safety band from Fitbit founders

https://luffu.com/products/luffu-link
2•mmaia•6m ago•0 comments

Show HN: A distributed agent runtime with SWIM mesh and zero-trust keys

https://github.com/Prescott-Data/jarviscore-framework
3•askmuyukani•7m ago•0 comments

Motherduck Acquires Tower

https://motherduck.com/blog/motherduck-acquires-tower/
3•socksy•8m ago•0 comments

Show HN: MIT Beer Game free in the browser

https://beergame.endash.us/
1•naniel•8m ago•1 comments

Paradise, California, leader says utility group 'duped' him into wildfire ad

https://www.eenews.net/articles/paradise-california-leader-says-utility-group-duped-him-to-appear...
1•newsomix9xl•8m ago•1 comments

EPA aims to exempt datacenters from disclosing air pollution, advocates warn

https://www.theguardian.com/us-news/2026/aug/25/datacenters-air-pollution-epa
3•pseudolus•9m ago•0 comments

Confidential tokens: Routing is coming for the Frontier AI Labs

https://www.axios.com/2026/08/25/routing-is-coming-for-the-frontier-ai-labs
1•ljlolel•10m ago•0 comments

Show HN: Zoetrope – Watch a Claude Code session as a live flow graph

https://github.com/furkankly/zoetrope
1•furkankly•10m ago•0 comments

Key takeaways from investigation into Edison's role in the deadly Eaton fire

https://www.latimes.com/business/story/2026-08-20/key-takeaways-from-investigation-into-edisons-r...
1•newsomix9xl•12m ago•0 comments

Sablejs 2.0 – An AOT sandbox for AI-generated JavaScript

https://github.com/ErosZy/sablejs
2•zyeros•12m ago•0 comments

Resolving Energy Bottlenecks

https://nomagicpill.site/knowledge/energybottlenecks.html
2•surprisetalk•14m ago•0 comments

Show HN: Candlebar – crypto and stock prices in the Mac menu bar

https://candlebar.app
1•toddynho•14m ago•0 comments

Linux 7.3 Device Mapper Sees Many Fixes, Including Code Cleanups by Claude Opus

https://www.phoronix.com/news/Linux-7.3-Device-Mapper
2•DemiGuru•15m ago•0 comments

Codec Wars Get Real: Lessons from Disney's European 4K Blackout

https://www.streamingmedia.com/Articles/ReadArticle.aspx?ArticleID=176155
1•cisc•15m ago•0 comments

Ask HN: There is current insistence upon learning what LLM's do under the hood

2•joebig•15m ago•1 comments

I ran deconvolution on my own redaction output – here is what came back

https://nexoradia.com/blog/gaussian-blur-is-not-redaction/
1•farshid_dev•16m ago•0 comments

Trump considers renaming Lake Ontario to 'Lake America' as trade war escalates

https://www.theglobeandmail.com/canada/article-trump-considering-renaming-lake-ontario-to-lake-am...
7•bellgrove•16m ago•1 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.