frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Serve Markdown to LLMs from your Next.js app

https://github.com/kasin-it/next-md-negotiate
1•kasin-it•22m ago•1 comments

Idea Hunting Is Dead. Databases Like This Are Replacing It

1•briebella•24m ago•0 comments

Magawa the HeroRAT

https://en.wikipedia.org/wiki/Magawa
1•KolmogorovComp•26m ago•0 comments

The Lazy Way to Find Your Next SaaS Idea

1•DownCreater•29m ago•1 comments

Pentagon puts Scouts 'on notice' over DEI and girl-centered policies

https://www.npr.org/2026/02/27/nx-s1-5729159/pentagon-scouts-hegseth-dei-deal
1•iamflimflam1•31m ago•0 comments

We Will Be Divided

https://we-are-divided.com
2•shiftybitshiftr•32m ago•0 comments

Social media use/mental wellness links in youth are artifact of other factors [pdf]

https://www.christopherjferguson.com/Brainwaves.pdf
1•mpweiher•36m ago•0 comments

Agentic Engineering Patterns

https://simonwillison.net/guides/agentic-engineering-patterns/
1•vinhnx•41m ago•0 comments

Might Be the Most Underrated Resource for Early Stage Founders

1•vibecoder21•44m ago•0 comments

Kakveda open source-level AI, Infra observability agent

https://www.kakveda.com/
1•prateekdalal•44m ago•1 comments

What Is It That Makes Today's Homes So Different, So Appealing?

https://smarthistory.org/richard-hamilton-just-what-is-it/
1•Torwald•45m ago•0 comments

How LDAP Works

https://growingswe.com/blog/ldap
1•vismit2000•46m ago•0 comments

How you invent math: From counting to complex numbers

https://growingswe.com/blog/inventing-math
1•vismit2000•46m ago•0 comments

Stop Burning Your Context Window – How We Cut MCP Output by 98% in Claude Code

https://mksg.lu/blog/context-mode
1•mksglu•47m ago•1 comments

Zerobyte

https://github.com/nicotsx/zerobyte
1•Erenay09•48m ago•0 comments

Researchers praise 'stunning' results of new prostate cancer treatment

https://www.theguardian.com/society/2026/feb/28/researchers-praise-stunning-results-of-new-prosta...
2•sandebert•49m ago•0 comments

Robotic Land Drone holds positions in Ukraine frontline for 45 days

https://www.youtube.com/watch?v=JMTSH1U44cw
2•lifeisstillgood•55m ago•0 comments

The Missing Piece of AI Discourse Is Trust

https://philipptanlak.com/the-missing-piece-of-ai-discourse-is-trust/
1•philippta•56m ago•0 comments

Modula-2

https://en.wikipedia.org/wiki/Modula-2
3•tosh•59m ago•0 comments

US Customs destroy a rare floppy disk containing demo version of Tsukihime

https://www.timeextension.com/news/2026/02/literally-crying-right-now-50-copies-of-this-adult-onl...
2•FMecha•59m ago•0 comments

ErsatzTV Has Been Archived

https://github.com/ErsatzTV/ErsatzTV/issues/2839
1•kassner•1h ago•0 comments

The Ml.energy Leaderboard

https://ml.energy/leaderboard/
1•kgolubic•1h ago•0 comments

Jeffrey Epstein saw promise in Bitcoin – and its far-right supporters

https://www.theverge.com/tech/885252/jeffrey-epstein-bitcoin-cryptocurrency-connections
1•robtherobber•1h ago•0 comments

Surface-Stable Fractal Dithering

https://runevision.com/tech/dither3d/
1•fanf2•1h ago•0 comments

Show HN: I Turned My CV into a Space Invaders Game (Rust and WASM)

https://breezko.dev
1•breezk0•1h ago•0 comments

Show HN: JobSeek Expat – a CLI tool to scrape English speaking jobs on LinkedIn

https://github.com/electricalgorithm/jobseek-expat
2•gyokhan•1h ago•0 comments

Accuracy vs. Speed in Local LLMs: Finding Your Sweet Spot

https://grigio.org/accuracy-vs-speed-in-local-llms-finding-your-sweet-spot/
1•grigio•1h ago•0 comments

Silent March (2021)

https://tobiaskucera.art/en/tichy-brezen/
1•theobias•1h ago•0 comments

Nano Banana 2 AI Image Generator – Pro Quality, Flash Speed

https://veevid.ai/nano-banana-2
1•jacksteven•1h ago•0 comments

Czinger 21C review: flat out in America's £1.6M, 3D-printed hypercar

https://www.topgear.com/car-reviews/czinger/21c/first-drive
1•teleforce•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•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.