frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Shadcn/UI now defaults to Base UI instead of Radix

https://ui.shadcn.com/docs/changelog
2•dabinat•4m ago•0 comments

Binary Coverage the Wrong Way

https://redvice.org/2026/coverage-the-wrong-way/
1•matt_d•10m ago•0 comments

Oxc (popular front-end tooling) forked my parser but removed my copyright notice

https://github.com/oxc-project/oxc-css-parser/issues/92
1•gplane•19m ago•0 comments

Moby Dick Workout

https://www.hogbaysoftware.com/posts/moby-dick-workout/
2•helloplanets•19m ago•1 comments

My ASN Journey series (2024)

https://www.animmouse.com/p/my-asn-journey/
2•antonalekseev•21m ago•1 comments

The Electricity: Why Google may be trying to make intelligence disappear

https://manasbihani.substack.com/p/the-electricity
1•manasb25•23m ago•0 comments

Reading Minds with Ultrasound: Less-Invasive Technique for Brain's Intentions (2021)

https://www.caltech.edu/about/news/reading-minds-with-ultrasound-a-less-invasive-technique-to-dec...
1•mgh2•31m ago•0 comments

HarnessMonkey – claude mods to show hidden tokens & improve vibes!

https://github.com/hackerbara/harnessmonkey
1•hackerbara•34m ago•1 comments

RTS a TypeScript-to-Native Compiler/Runtime in Rust (Cranelift JIT and AOT)

https://github.com/UrubuCode/rts
1•azx0025•38m ago•0 comments

Show your hands honor for the power they bring you

https://aresluna.org/show-your-hands-honor/
1•aua•40m ago•0 comments

Show HN: Inches to CM converter with charts and screen size references

https://inches-to-cm.net
1•robot1996•47m ago•2 comments

Perchlorate

https://en.wikipedia.org/wiki/Perchlorate
1•soupspaces•50m ago•0 comments

Show HN: How do you guys keep your journey diaries?

https://journeydiaries.vercel.app/
1•dutay05•1h ago•1 comments

Drawbridge – Design Editor for Claude Code and Cursor

https://github.com/breschio/drawbridge
1•javatuts•1h ago•0 comments

Spotify deletes 500K Malcolm Todd streams for suspected prediction manipulation

https://mashable.com/tech/spotify-deletes-malcolm-todd-streams-manipulation-prediction-markets
1•gnabgib•1h ago•0 comments

President pardons 9 for Clean Air violations for 'fixing their car'

https://www.msn.com/en-us/news/crime/trump-pardons-9-for-clean-air-violations-for-fixing-their-ca...
13•OutOfHere•1h ago•0 comments

Writing Blogs or News Articles? Free and Fast Word Counter -Accurate and Private

https://fastwordcount.com/
1•rajkverma123•1h ago•0 comments

I Accidentally Started a Small Business Three Weeks Ago

https://extelligence.substack.com/p/i-accidentally-started-a-small-business
3•shpat•1h ago•1 comments

Sea Surface Temperature, Live

https://www.maps.com/earth-in-action/sea-surface-temperature/
1•akashwadhwani35•1h ago•0 comments

Global earthquake detection and warning using Android phones (2025)

https://www.science.org/doi/10.1126/science.ads4779
1•whycome•1h ago•0 comments

America Is More

https://thelisowe.substack.com/p/america-is-more
1•Mockapapella•1h ago•0 comments

Android phones knew Venezuela earthquake was coming

https://www.youtube.com/watch?v=Hi432PXwAZE
1•whycome•1h ago•1 comments

The Preemptive Draw and Preemptive Grip in the Cash-in-Transit Sector

https://gutsgatesguards.wordpress.com/2026/06/23/the-preemptive-draw-and-preemptive-grip-in-the-c...
2•stmw•1h ago•0 comments

In AI-exposed jobs, the youngest workers are losing ground

https://www.randalolson.com/2026/06/22/ai-jobs-hit-youngest-workers/
2•samspenc•1h ago•1 comments

The tool layer for developers and AI agents

https://www.utilix.tech/
1•negiadventures•1h ago•1 comments

Homelab Chronicles: A Dusty Gaming PC and a 2AM Basement Spiral

https://www.droppedasbaby.com/posts/hl1/
1•offbyone42•1h ago•0 comments

University of Oxford Is Older Than the Aztec Empire and Other Facts of History (2013)

https://www.smithsonianmag.com/smart-news/university-oxford-older-than-aztec-empire-other-facts-w...
36•thunderbong•1h ago•8 comments

The Log Is the Agent

https://arxiv.org/abs/2605.21997
5•iacguy•1h ago•0 comments

Backon – Python retry (zero deps, circuit breaker, async native)

https://github.com/Llucs/backon
4•Llucs•1h ago•0 comments

Show HN: Local MCP – Claude/ChatGPT read your iMessage, Teams, files on-device

https://www.local-mcp.com/en
2•lanchuske•2h 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.