frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Today I disabled IPv6 on my home router entirely

https://xcancel.com/geerlingguy/status/2063803351343472992
1•commandersaki•1m ago•0 comments

Jevons Paradox

https://en.wikipedia.org/wiki/Jevons_paradox
1•chynkm•1m ago•0 comments

I paid someone to hack my Meta glasses

https://thenewthings.com/p/i-paid-someone-to-hack-my-meta-glasses
1•dmitrygr•2m ago•0 comments

Practical Doomsday Book

https://lcamtuf.blogspot.com/2021/08/practical-doomsday.html
1•gurjeet•15m ago•0 comments

Show HN: Posara, visual-audio with early macOS aesthetics but modernized

https://github.com/KHN190/Posara
1•knh190•17m ago•0 comments

Google Maps Scraper

https://gmapscraper.io/
1•qwikhost•23m ago•1 comments

Webc.site/math: Ultralight, fast Markdown math renderer

https://www.npmjs.com/package/@webc.site/math#en
1•rmw-link•29m ago•0 comments

How to fix a laptop that reboots randomly

https://j11g.com/how-to-fix-a-laptop-that-reboots-randomly
1•jandeboevrie•31m ago•0 comments

Google's Unique Approach to Getting Data Centers Built

https://www.wsj.com/tech/ai/googles-unique-approach-to-getting-data-centers-built-2cfae652
1•maxloh•34m ago•0 comments

"AI is someone else's GPU"

https://waterpigs.co.uk/notes/5cVMNm/
1•jruohonen•39m ago•1 comments

Show HN: Web Speed – A shared web-map registry for AI agents (MCP, open source)

https://www.getwebspeed.io/
2•Dominic_P•43m ago•2 comments

Ask HN: Is ChatGPT suppose to spit out its own instructions that easy?

1•ipster_io•48m ago•0 comments

Richard Scolyer Has Died

https://www.bbc.com/news/articles/c14yz5jg476o
2•nicwilson•49m ago•1 comments

Centuries-old logbooks reveal how bowhead whales are recovering from near-extin…

https://theconversation.com/centuries-old-logbooks-reveal-how-bowhead-whales-are-recovering-from-...
1•rbanffy•50m ago•0 comments

We Are in the Anthropocene–Now What?

https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2025EF007730
1•littlexsparkee•50m ago•0 comments

What we know about the plan to give Americans an equity stake in AI

https://www.ft.com/content/8559a3f9-86de-4a1c-8a75-6623e83e6a00
1•samvher•50m ago•1 comments

Show HN: Avibe – your AI agent lives on your machine, reachable from your phone

https://github.com/avibe-bot/avibe
1•alex_metacraft•51m ago•0 comments

Subscribe to My Substack:)

https://bionorthtech.substack.com/subscribe
1•hellocock•52m ago•0 comments

Qanah – WireGuard-Like P2P VPN

https://github.com/xlmnxp/qanah
1•xlmnxp•55m ago•0 comments

KNN early termination in Manticore Search

https://medium.com/@s_nikolaev/knn-early-termination-in-manticore-search-39e55ac18d62
1•snikolaev•55m ago•0 comments

Show HN: Agam – Activation-based memory for Claude Code, not retrieval

https://github.com/CrypticCortex/agam
1•aghoraguru•58m ago•0 comments

Nithya Raman knocks Spencer Pratt off second place in LA mayor's race

https://nypost.com/2026/06/07/us-news/nithya-raman-knocks-spencer-pratt-off-second-place-in-la-ma...
3•SilverElfin•1h ago•1 comments

Show HN: SoundScope - PS1 Audio Visualizer in your Browser

https://soundscope.greg.technology/
1•gregsadetsky•1h ago•0 comments

AI for the Operator

https://github.com/cerebrocybersolutions/cerebro-whitepaper
1•cerebrocyber•1h ago•0 comments

You Can Walk to the World Cup in New Jersey. But Should You?

https://www.nytimes.com/2026/06/07/opinion/world-cup-new-york-new-jersey-transit-walk.html
1•berns•1h ago•0 comments

Reward Hacking, the Loophole Lesson: Winning the Signal, Losing the Reason

https://medium.com/@yassien/reward-hacking-the-loophole-lesson-winning-the-signal-losing-the-reas...
1•yassien•1h ago•0 comments

Show HN: My home server got unplugged, so I built a recovery CLI

https://homebutler.dev
2•swq115•1h ago•0 comments

The deadliest poison known to AI

https://iocaine.madhouse-project.org/
1•jruohonen•1h ago•0 comments

Show HN: I put my Claude Code rate-limit burndown in the status line

https://www.aimhuge.com/blog/claude-code-status-line
5•fotoflo•1h ago•2 comments

Show HN: Organizer Timelines for everything you want to remember

https://www.useorganizer.com/
1•mcapodici•1h 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.