frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Servo 0.5.0: more platforms, faster canvas, web fonts in SVG, and more

https://servo.org/blog/2026/08/31/july-in-servo/
1•ErenayDev•27s ago•0 comments

How to Build a Shopify Store Using AI

https://www.hostiqen.com/2026/08/how-to-build-shopify-store-using-ai.html
1•reviewhub•47s ago•0 comments

IFA 2026: Motorola teases a darker Swarovski Razr

https://forgeeks.net/ifa-2026-motorola-swarovski-razr/
1•kuuuzya•1m ago•0 comments

Even Linux Cannot Cope with Slop

https://techrights.org/n/2026/08/30/Even_Linux_Cannot_Cope_With_Slop.shtml
1•amcclure•1m ago•0 comments

Gafam Bots Are Not "Good Bots"

https://techrights.org/n/2026/06/08/GAFAM_Bots_Are_Not_Good_Bots.shtml
1•amcclure•2m ago•0 comments

WaveSmith – SNES Music Studio

https://wavesmith.online
1•msephton•3m ago•0 comments

Make your Data AI ready quick

https://www.dataconvo.app
1•Mody88•3m ago•0 comments

Instagram will demote AI influencers if they don't clearly label their account

https://www.engadget.com/2246914/instagram-will-demote-ai-generated-influencers-if-they-dont-clea...
1•thm•4m ago•0 comments

ChatGPT Work Tool and Skill Reference

https://codex-tool-reference.simonw.chatgpt.site/
1•ijidak•4m ago•0 comments

Scientists found the sweet spot for dumping iron into the ocean

https://www.anthropocenemagazine.org/2026/08/scientists-found-the-sweet-spot-for-dumping-iron-int...
1•speckx•5m ago•0 comments

Does Computer Science Need Computers?

https://www.quantamagazine.org/does-computer-science-need-computers-20260828/
1•pseudolus•5m ago•0 comments

Show HN: AI Tattoo Design and Planning Tools – TattooIdeas

https://tattooideas.app/
1•liulangtutu•6m ago•0 comments

Debian votes to let contributors code with AI

https://www.theregister.com/ai-and-ml/2026/08/30/debian-votes-to-let-contributors-code-with-ai/52...
1•pseudolus•6m ago•0 comments

ChatGPT Work Features and Internals

https://twitter.com/simonw/status/2094214737957691854
1•ijidak•7m ago•0 comments

DHCP Option 81 in systemd-networkd: The Undocumented Behavior

https://opscode.io/posts/dhcp-option81/
1•malcolmfrazier•8m ago•0 comments

Envoy's ZSTD filter leaves 77% of small JSON payloads on the wire

https://github.com/Rishikesh-glitch/z-egress
1•Rishikesh-glitc•10m ago•0 comments

Mpvkt-fork mkvkt Kotlin Android Player with key fixes and changes

https://imdanielkendall.com/mpvkt-fork-rebuilding-the-best-video-player-on-android-modern-ui-bug-...
1•Expletive4138•11m ago•1 comments

Flipper Busy Bar

https://xn--gckvb8fzb.com/flipper-busy-bar/
2•surprisetalk•11m ago•1 comments

Colorado and California Exempt Open Source from Age Attestation

https://system76.com/blog/post/co-and-ca-exempt-open-source-from-age-attestation?from_theconsensus=1
3•NamlchakKhandro•12m ago•0 comments

I Dislike the Scoville Scale

https://bengodfrey.dev/blog/units/
1•sudo-bendg•12m ago•0 comments

Show HN: A file-based router for Cloudflare Workers

https://github.com/yusuke99/vite-plugin-cloudflare-router
1•yusuke99•12m ago•0 comments

Show HN: Clicking a React element shouldn't stop at the first component

https://blog.crossui.com/2026/08/drill-down-all-the-way
1•linb•13m ago•0 comments

Japan Births Edge for first half of 2026

https://www.nippon.com/en/japan-data/h02872/
1•silver92bullet•13m ago•0 comments

Civilization's Blind Spot

https://kunnas.com/articles/civilizations-blind-spot
1•ekns•13m ago•0 comments

Jazz, Now Playing in CrowdStrike Falcon

https://www.jazz.security/blog/jazz-now-playing-in-crowdstrike-falcon
1•demand_sarah•14m ago•0 comments

LLM inference FHE homomorphic encryption: 1s/token interactive, 6min/token full

https://forums.developer.nvidia.com/t/llm-inference-under-ckks-fhe-on-one-dgx-spark-1-s-token-int...
1•vkaufmann•15m ago•0 comments

Claude 20x usage is only for the 5 hour window, not for the weekly limit

3•vmg12•15m ago•0 comments

A Policy Algebra for Trust-Preserving Agentic AI Execution

https://arxiv.org/abs/2608.16402
1•gmays•15m ago•0 comments

Omarchy: 1Password and 37signals become Distinguished Corporate Patrons

https://omarchy.org/news/2026/08/1password-and-37signals-become-distinguished-corporate-patrons/
3•tosh•15m ago•0 comments

A frozen LLM with external memory found a novel 26 circle packing structure

https://blankline.org/research/extrapolation-under-an-exact-verifier
1•DarenWatson•16m 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.