frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Tailwind Business Ain't What It Used to Be

https://adams-morning-walk.transistor.fm/episodes/the-tailwind-business-aint-what-it-used-to-be
1•sawirricardo•1m ago•0 comments

Failure Is Required

https://theaiunderwriter.substack.com/p/failure-is-required
1•participant26•4m ago•0 comments

Shop's on Wheels

https://rodgercuddington.substack.com/p/shops-on-wheels
1•freespirt•8m ago•1 comments

Why faster coding doesn't mean faster software delivery

https://gradle.com/blog/developer-productivity-paradox-faster-coding-slower-delivery/
1•mooreds•9m ago•0 comments

The Death of One-Size-Fits-All SaaS

https://chatbotkit.com/reflections/the-death-of-one-size-fits-all-saas
2•_pdp_•9m ago•0 comments

How to gracefully handle resource variants in your REST API

https://www.stainless.com/blog/how-to-gracefully-handle-resource-variants-in-your-rest-api
1•mooreds•12m ago•0 comments

Trade Chaos Causes Businesses to Rethink Their Relationship with the U.S.

https://www.nytimes.com/2025/11/24/business/tariffs-trade-small-business.html
5•mooreds•13m ago•1 comments

Google Leapfrogged Rivals with New Gemini Rollout

https://www.wsj.com/tech/ai/google-gemini-3-ai-behind-scenes-e1787729
1•achow•14m ago•1 comments

Why Your AI Isn't Finding Great Ideas

https://app.brainhurricane.ai/blog/why-your-ai-isnt-finding-great-ideas
1•L1nefeed•14m ago•1 comments

WebRTC Survives When You Walk Out

https://pion.ly/blog/automatic-renomination/
3•kevmo314•15m ago•0 comments

Show HN: Mintlify Ignored This Feature Request for 6 Months. Here's My Solution

https://github.com/madrasly/madrasly
1•SamTinnerholm•16m ago•0 comments

Henry Todd, LSD Kingpin Turned Everest Guide, Dies at 80

https://www.nytimes.com/2025/11/19/world/asia/henry-todd-dead.html
1•bookofjoe•16m ago•1 comments

Issue tracker for your coding agent

https://pypi.org/project/issuedb
1•rodmena•17m ago•0 comments

Negative Mass (Part 1)

https://johncarlosbaez.wordpress.com/2025/09/28/negative-mass/
1•surprisetalk•20m ago•0 comments

Mapping the future with 3D-printed titanium Apple Watch cases

https://www.apple.com/newsroom/2025/11/mapping-the-future-with-3d-printed-titanium-apple-watch-ca...
1•surprisetalk•20m ago•0 comments

Airplanes Attach Advertising Banners After Takeoff

https://www.core77.com/posts/138817/The-Surprising-Way-Airplanes-Attach-Advertising-Banners-After...
1•surprisetalk•20m ago•0 comments

What Now? Handling Errors in Large Systems

https://brooker.co.za/blog/2025/11/20/what-now.html
1•surprisetalk•20m ago•0 comments

Created a Free Advanced Password Strength Analyzer and Saver

https://www.devglan.com/online-tools/password-analyzer
1•only2dhir•22m ago•1 comments

Technical Deflation

https://benanderson.work/blog/technical-deflation/
1•0x79de•22m ago•0 comments

This Slug Should Be Impossible [video]

https://www.youtube.com/watch?v=IH_uv4h2xYM
1•amichail•22m ago•0 comments

Ask HN: How do you spot AI writing?

1•allanmacgregor•22m ago•0 comments

Weaponised autism in online alt-right communities

https://chuniversiteit.nl/papers/weaponised-autism
1•ibobev•23m ago•0 comments

Scaling Kotlin Adoption Across Your Organization

https://blog.jetbrains.com/kotlin/2025/11/scaling-kotlin-adoption-across-your-organization/
1•quapster•23m ago•0 comments

Move Expressions

https://smallcultfollowing.com/babysteps/blog/2025/11/21/move-expressions/
1•ibobev•23m ago•0 comments

OpenEXR vs. Tinyexr

https://aras-p.info/blog/2025/11/22/OpenEXR-vs-tinyexr/
1•ibobev•24m ago•0 comments

Why night owls are more intelligent

https://www.sciencedirect.com/science/article/abs/pii/S0191886909002177
1•tzury•24m ago•0 comments

Bureau of Meteorology asked to examine $96.5M bill for website redesign

https://www.abc.net.au/news/2025-11-23/bureau-of-meteorology-new-website-cost-blowout-to-96-milli...
7•OuterVale•26m ago•2 comments

UK union accuses Rockstar Games of firing employees attempting to organise

https://www.theguardian.com/games/2025/nov/07/uk-union-accuses-gta-maker-rockstar-games-of-firing...
3•hexmiles•27m ago•0 comments

Docusaurus plugin that exposes your markdown as raw .md URLs. (For LLM's etc.)

https://github.com/FlyNumber/markdown_docusaurus_plugin
1•flynumber•30m ago•1 comments

"Go generate a bridge and jump off it": How video pros are navigating AI

https://arstechnica.com/features/2025/11/go-generate-a-bridge-and-jump-off-it-how-video-pros-are-...
1•fleahunter•30m 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•7mo ago

Comments

palata•7mo 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•7mo 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•7mo 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•7mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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.