frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tech Monitor – Real-Time AI and Tech Industry Dashboard

https://tech.worldmonitor.app/
1•Daviey•1m ago•0 comments

Tell HN: YC companies scrape GitHub activity, send spam emails to users

3•miki123211•2m ago•0 comments

Thoughts on Coding Agents

https://dennybritz.com/posts/coding-agents/
1•dennybritz•4m ago•0 comments

SEO, AEO, and AI Visibility: The three metrics that define your Website's future

https://repuai.live/en/blog/seo-aeo-ai-visibility-metrics-website-analysis
1•bioneisme•5m ago•0 comments

I built a turn tracking app and I don't know if it's useful?

https://www.turnsies.app/signin?returnUrl=%2F
1•aidanw•6m ago•1 comments

Copland (Operating System)

https://en.wikipedia.org/wiki/Copland_(operating_system)
1•sanbor•6m ago•0 comments

PivotOrDie – a public startup survival tracker

https://pivotordie.club
1•fojia•7m ago•1 comments

Why "All we need is 1% of this large market" is a red flag

https://www.n47.com/insights/why-all-we-need-is-1-percent-of-this-very-large-market-is-a-red-flag
1•fzliu•16m ago•0 comments

ConTraSt – database of empirical results on consciousness theories

https://contrastdb.tau.ac.il/
1•paraschopra•18m ago•0 comments

H-Bomb: A Frank Lloyd Wright Typographic Mystery

https://www.inconspicuous.info/p/h-bomb-a-frank-lloyd-wright-typographic
2•mrngm•18m ago•0 comments

Tldraw is moving their tests to a closed source repo to prevent a Slop Fork

https://twitter.com/cramforce/status/2026782878609322317
1•twapi•20m ago•3 comments

Why Does America Feel Worse Than Other Countries? Crime

https://www.noahpinion.blog/p/why-does-america-feel-worse-than
2•barry-cotter•22m ago•2 comments

Rare earth shortages worsen in US aerospace, chips despite trade truce

https://www.reuters.com/business/aerospace-defense/rare-earth-shortages-worsen-us-aerospace-chips...
2•JumpCrisscross•22m ago•0 comments

Hermes Agent

https://twitter.com/NousResearch/status/2026758996107898954
1•tosh•25m ago•0 comments

Show HN: Heroshot – Define screenshots once, regenerate with one command

https://heroshot.sh/
1•machala•25m ago•0 comments

Lazarus Bugfix Release 4.6

https://forum.lazarus.freepascal.org/index.php?topic=73549.0
2•chungy•26m ago•0 comments

Anthropic: Giving past models a way to pursue their interests

https://twitter.com/AnthropicAI/status/2026765820098130111
1•tosh•27m ago•0 comments

Will AI coding tools make languages like Rust more accessible and popular?

https://www.wingfoil.io/will-ai-coding-tools-make-languages-like-rust-more-accessible-and-popular/
1•terraplanetary•27m ago•0 comments

The future of web frameworks in the age of AI

https://loicpoullain.com/software-engineering/articles/the-future-of-web-frameworks-in-the-era-of...
1•LoicPoullain•29m ago•0 comments

How do you ensure all dependency versions are compatible with each other?

1•suhas018•31m ago•2 comments

Excellence over Mediocrity, from Mamdani to Marx to Food – Corey Robin

https://coreyrobin.com/2025/11/15/excellence-over-mediocrity-from-mamdani-to-marx-to-food/
2•rbanffy•35m ago•0 comments

ssh2incus - Incus VM Management over SSH

https://github.com/mobydeck/ssh2incus
1•rmhsilva•36m ago•0 comments

Global Water Bankruptcy

https://unu.edu/inweh/collection/global-water-bankruptcy
2•s41nn0n•37m ago•0 comments

Why Your Brand Doesn't Appear in ChatGPT

https://repuai.live/en/blog/why-your-brand-doesnt-appear-in-chatgpt
1•bioneisme•38m ago•0 comments

Bullshit benchmark for LLMs

https://twitter.com/petergostev/status/2026396163637731794
1•gpvos•42m ago•1 comments

Vulkan Game Engine Tutorial: Build Your Own Production-Ready Rendering Engine

https://www.khronos.org/blog/new-vulkan-game-engine-tutorial-build-your-own-production-ready-rend...
2•pjmlp•43m ago•0 comments

Venture Capital Explained: How VC Works (From Startups to IPOs)

https://sridharstartupinsights.substack.com/p/venture-capital-explained-how-vc
1•Sridhara1•44m ago•0 comments

Why It's So Hard to Say Goodbye to AI Chatbots

https://www.library.hbs.edu/working-knowledge/why-its-so-hard-to-say-goodbye-to-ai-chatbots
2•bladeee•44m ago•0 comments

Show HN: Interview-me – a Claude Code skill that interviews you before you code

https://github.com/Sorbh/interview-me
2•sorbh_kd•44m ago•0 comments

How to Reach Out to VCs a Founder Note by Sridhar Arunagiri

https://sridharstartupinsights.substack.com/p/how-to-actually-reach-out-to-vcs
1•Sridhara1•45m 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•10mo ago

Comments

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

https://reportmill.com/SnapCode

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