frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Photo Gallery Without JavaScript

https://ricobeck.de/photostream.html
1•ricobecks•2m ago•0 comments

The VLA and High-Frequency SETI: Expanding the Search for Life

https://arxiv.org/abs/2608.18275
1•root-parent•7m ago•0 comments

Show HN:Tool that checks if your AI-generated content are marked AI Act Art. 50

https://aiactverify.edenlabs.eu
1•lucapersichini•8m ago•0 comments

Cursor beat Git's scalability shortcomings

https://www.theregister.com/devops/2026/08/23/how-cursor-beat-gits-scalability-shortcomings/5291421
2•sbulaev•11m ago•0 comments

Optimizing memory use in a Markdown parser

https://blog.kowalczyk.info/a-n8wf/optimizing-memory-use-in-markdown-parser.html
1•blueshoess•15m ago•0 comments

Wallpaper Engine On Linux (native translation layer library)

https://github.com/shdwmtr/wallpiper
1•shadowmonster•18m ago•0 comments

Leyline: KV Cache Directives for Agentic Inference

https://arxiv.org/abs/2606.01065
3•Bluestein•21m ago•0 comments

Cicada.os – Graphene.os for Your Laptop

https://kpres12.github.io/Cicada.OS/
1•kpres62•22m ago•1 comments

Show HN: A way to let agents reliably pay for things

https://shopstack.ai/
1•windyVector•26m ago•0 comments

IXUI: A Proxmox/ESXi-Style Web UI for Incus

https://github.com/xlmnxp/ixui
1•xlmnxp•28m ago•0 comments

Residential proxies scraping your site? Drain their bandwidth

https://layer3intel.com/blog/residential-proxy-bandwidth-drain
3•Rasbora•28m ago•0 comments

The Summer of Open Weights

https://martinalderson.com/posts/the-summer-of-open-weights/
1•garo-pro•30m ago•0 comments

Declarative WebGPU with S-Expressions

https://hugodaniel.com/posts/declarative-webgpu-with-s-expressions/
2•hugodan•30m ago•0 comments

Bolt Graphics' Advanced GPU to Take on Nvidia – Architosh

https://architosh.com/2026/07/bolt-graphics-advanced-gpu-to-take-on-nvidia/
2•rbanffy•34m ago•0 comments

Ask (Your Terminal)

https://github.com/benja/ask
1•handfuloflight•34m ago•0 comments

Nss-userhosts: a name service switch module allowing unprivileged users to have

https://codeberg.org/felixs/nss-userhosts
1•fanf2•36m ago•0 comments

Making LEDs in the Home Fab

https://hackaday.com/2026/08/23/making-leds-in-the-home-fab/
1•rmason•38m ago•0 comments

Does Chess Make You Smarter? What Chess Can Teach Us

https://www.psychologytoday.com/us/blog/finding-a-new-home/202608/does-chess-make-you-smarter-wha...
2•amichail•39m ago•0 comments

Slash Pages

https://slashpages.net/
1•jcbhmr•40m ago•0 comments

Paul Graham on X: if I were 17. I'd learn how to build LLMs from scratch

https://twitter.com/paulg/status/2091544343589060625
2•bilsbie•40m ago•0 comments

Show HN: Khaos – Kafka traffic and failure simulator, rewritten in Go

https://github.com/aleksandarskrbic/khaos
1•skrbic_a•40m ago•0 comments

Cybernetics and Ghosts

https://robinrendle.com/notes/cybernetics-and-ghosts/
1•robin_reala•42m ago•0 comments

Show HN: Clothes Patterns You Can Make Based on Photo

https://github.com/Ag3497120/photoloset
1•pakupaku•42m ago•0 comments

Engineerification

https://eug.github.io/posts/engineerification.html
1•eugf_•45m ago•0 comments

OpenStar demonstrates dipole fusion reactor concept

https://www.world-nuclear-news.org/articles/openstar-demonstrates-dipole-fusion-reactor-concept
1•mpweiher•47m ago•0 comments

Rural Village in Spain Is Welcoming Digital Nomads with Open Arms

https://www.cntraveler.com/story/this-rural-village-in-spain-is-welcoming-digital-nomads-with-ope...
2•simonebrunozzi•47m ago•1 comments

Meowzip: Cat Logic Puzzle (Android)

https://play.google.com/store/apps/details?id=com.nekodu.zipgame&hl=en_US
1•cgoksu•48m ago•0 comments

Wiki Is Not Enough [Information Architecture for LLMs]

https://replicated.live/blog/wiki.html
1•gritzko•48m ago•0 comments

Georgia police are searching for an elderly man who found $30 and kept it

https://twitter.com/Polymarket/status/2091240990720110701
1•bilsbie•48m ago•0 comments

Show HN: Loading GitHub PRs in 50ms instead of 1–3s+

https://github.com/theolundqvist/pr-cockpit
3•theolundqvist•50m 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.