frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Webhix – Self-hosted webhook.site alternative in a single Go binary

https://github.com/GaIsBax/Webhix
1•Joseph_SPF•2m ago•0 comments

Show HN: RainBreak App – The AI doesn't need a break. But you do

https://rainbreak.franzai.com/
1•franze•3m ago•0 comments

Treating LLMs as Programming Books

https://jola.dev/posts/treating-llms-as-programming-books
2•shintoist•4m ago•0 comments

Linear Tape-Open

https://en.wikipedia.org/wiki/Linear_Tape-Open
1•CGMthrowaway•4m ago•0 comments

Repro-Bot, our GitHub issue triage agent

https://www.metabase.com/blog/reprobot-github-issue-triage-agent
2•mooreds•5m ago•0 comments

Toyota uses superconducting motor in race for first time

https://www.asahi.com/ajw/articles/16626731
1•Tor3•6m ago•0 comments

Lego Education SPIKE portfolio retiring

https://education.lego.com/en-us/spike-update-2026/
2•etruong42•6m ago•0 comments

Reorgs Happen

https://ben.balter.com/2026/06/07/reorgs-happen/
1•mooreds•6m ago•0 comments

Premature Optimization is Fun Sometimes (2025)

https://invlpg.com/posts/2025-06-19-premature-optimization.html
1•birdculture•8m ago•0 comments

Steve Yegge

https://yegge.ai/
1•tosh•11m ago•1 comments

AI Traffic Grew 6.5x Faster Than Human Traffic This Year

https://www.fastly.com/blog/ai-traffic-grew-6-5x-faster-than-human-traffic-this-year
1•HieronymusBosch•11m ago•0 comments

Non-Alcoholic Beer Sold Out Before the Booze

https://medium.com/@dmitry_titov/spatanism-a-photo-zone-with-coffins-and-wrestling-how-i-attended...
1•Dmitry_Titov•13m ago•0 comments

Is music a distraction for my teenager while they revise?

https://www.bbc.co.uk/bitesize/articles/zx228p3
1•mmarian•13m ago•0 comments

xAI Taps Starlink Staffer to Run Grok Training Team

https://www.bloomberg.com/news/articles/2026-06-09/musk-s-xai-taps-starlink-staffer-to-run-grok-t...
1•petethomas•14m ago•0 comments

Show HN: Standing Questions – agent memory that stores questions, not answers

https://github.com/Rocco-alt/standing-questions
1•Kadiwar•16m ago•0 comments

Visualizing and identifying electrophysiological cell types in vivo

https://www.nature.com/articles/s41467-026-71331-0
1•PaulHoule•16m ago•0 comments

Loop Engineering

https://addyo.substack.com/p/loop-engineering
1•RyeCombinator•16m ago•0 comments

Career Isn't Eroding – You're Just Holding the Wrong Moat

https://blog.herlein.com/post/domain-plus-software-superpower/
3•speckx•17m ago•1 comments

Why SQLite succeeded as a database (2016)

https://changelog.com/podcast/201
2•downbad_•19m ago•0 comments

Show HN: First Batch – A pay-per-campaign QA testing sandbox

https://firstbatch.io/
1•bryden_cruz•20m ago•0 comments

Maplid: Place identification using data supplied by mobile network operators

https://www.tandfonline.com/doi/full/10.1080/13658816.2026.2617932
2•PaulHoule•20m ago•0 comments

Federal judge strikes down $100k fee on new H-1B visas

https://www.npr.org/2026/06/09/nx-s1-5851474/federal-judge-fee-h1b-visa
1•geox•22m ago•0 comments

Donut Lab's solid-state battery claim debunked by Ziroth

https://www.theverge.com/science/946608/donut-labs-debunk-solid-state-battery
2•timpera•23m ago•0 comments

Exposing the Solid State Donut Battery. It's over [video]

https://www.youtube.com/watch?v=j5oyVNjrUPI
2•xbmcuser•24m ago•0 comments

How to Use Claude Better Than 90% of Marketers

https://aiforcontentmarketing.ai/how-to-use-claude-better-than-90-of-marketers/
1•pakostina•24m ago•0 comments

DeepSeekV4 1.6T Day 0 to Day 43 Performance Over Time

https://newsletter.semianalysis.com/p/deepseekv4-16t-day-0-to-day-43-performance
1•nsoonhui•25m ago•0 comments

NomadTracks – A GPS tracker that syncs through your own iCloud, no server

https://apps.apple.com/us/app/nomadtracks/id6764303399
1•donkeycat•25m ago•0 comments

Should You Mock the Database?

https://dominik.info/blog/mocking-the-database
2•EspressoGPT•25m ago•0 comments

Show HN: OfferUnlock – Check if your tech job offer is underpaid

https://offerunlock.app
2•tino8383•26m ago•0 comments

Fedora 44 RISC-V Images Released, "Omni" Kernel for Broader RISC-V Support

https://www.phoronix.com/news/Fedora-44-RISC-V-Images
1•rbanffy•27m 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.