frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What if The Million Dollar Homepage was built in 2026?

https://merca.earth/
2•cremer•5m ago•0 comments

How Image Compression Works

https://www.makingsoftware.com/chapters/image-compression
1•MatthewBF•8m ago•0 comments

Astaxanthin: Sources, Extraction, Stability, Biology and Commercial Use

https://pmc.ncbi.nlm.nih.gov/articles/PMC3917265/
2•walterbell•11m ago•0 comments

Show HN: Solectio – design, compare and share rooftop solar configurations

https://solectio.ottimai.com/
1•leomos•11m ago•0 comments

A Short History of Nearly Everything

https://en.wikipedia.org/wiki/A_Short_History_of_Nearly_Everything
1•chistev•13m ago•0 comments

YouTuber Recreates 'Star Wars' with Cardboard

https://petapixel.com/2026/05/05/youtuber-recreates-star-wars-with-cardboard/
2•PaulHoule•13m ago•0 comments

Differences Between Lodash and Ramda

https://stackoverflow.com/questions/71401443/differences-between-lodash-and-ramda
1•tosh•15m ago•0 comments

Fantasy-land: interoperability of common algebraic structures in JavaScript

https://github.com/fantasyland/fantasy-land
1•tosh•16m ago•0 comments

Show HN: Sourcelibrary.org Is Translating the Renaissance

https://sourcelibrary.org
2•dr_dshiv•20m ago•0 comments

Show HN: Sudo Report – Drudge clone for tech / AI / product

https://sudoreport.com/
2•ataturkle•22m ago•0 comments

Using OpenAI's Whisper to transcribe videos

https://byandrev.dev/en/blog/using-whisper-to-transcribe-videos/
1•mcormik•23m ago•1 comments

Show HN: GentleOS – A pair of hobby OSes for vintage 32-bit and 16-bit PCs

https://github.com/luke8086/gentleos32
2•luke8086•27m ago•0 comments

The One Meaningless Word That We All Say Too Much (2016)

https://time.com/4308036/meaningless-word-interesting/
1•ulyssys•27m ago•0 comments

When intelligence stops being as slow as we are

https://andreaturchet.github.io/blog/riflessioni_sri.html?lang=en
2•ciwrl•29m ago•0 comments

Agents, Agile, Communism, Coercion

https://elliotmorris.net/agents-agile-communism-coercion
5•demorro•30m ago•0 comments

Iran Severely Damaged US Air Ops Center in Qatar Soon After War Began

https://www.airandspaceforces.com/us-air-operations-center-qatar-severely-damaged-iran/
5•ilamont•30m ago•0 comments

Anatomy of a Learning Stall – How LLM Hallucinations Become Human Hallucinations

https://tagide.com/blog/llm/the-anatomy-of-a-learning-stall/
2•potbelly•39m ago•2 comments

I Built a Dashboard for Every 2026 World Cup Squad

https://emot.substack.com/p/what-i-learned-analyzing-1248-world
3•emot•41m ago•0 comments

From Jupyter Notebook to production: How to ship AI systems that work

https://thenewstack.io/notebook-to-production-ai/
2•Brajeshwar•43m ago•0 comments

AI and the Desire to Destroy the Rival

https://minervaatdusk.substack.com/p/ai-and-the-desire-to-destroy-the
2•minervaatdusk•44m ago•0 comments

Thinking and Explaining Mathematics (2010)

https://mathoverflow.net/questions/38639/thinking-and-explaining
3•vismit2000•48m ago•0 comments

Marketing Clerks

https://seths.blog/2026/06/marketing-clerks/
2•herbertl•52m ago•0 comments

Scott Pelley on the Bari Weiss Era and His Last Days at '60 Minutes'

https://www.nytimes.com/2026/06/07/magazine/scott-pelley-interview.html
5•ohjeez•52m ago•2 comments

Show HN: A parser for the ISO 10303 EXPRESS language for its 40th anniversary

https://github.com/rochus-keller/EXPRESS
3•Rochus•55m ago•0 comments

Show HN: Roadbar – Gantt-style Jira deadline tracker

https://roadbar.net
2•roadbar•59m ago•0 comments

Gdf: Git Diff Merge

https://github.com/mbarlow/gdf
2•moo-jason•59m ago•1 comments

We moved our growth analytics back into Tinybird

https://www.tinybird.co/blog/why-we-moved-our-growth-analytics-back-into-tinybird
3•adastral•59m ago•0 comments

Show HN: Achu.app – turns raw captures into polished visual, with AI Issue Agent

https://www.achu.app/
2•qainsights•1h ago•0 comments

Trump doesn't rule out giving Jan. 6 rioters who attacked police payouts

https://www.nbcnews.com/politics/donald-trump/trump-jan-6-rioters-attacked-police-payouts-anti-we...
9•tcp_handshaker•1h ago•0 comments

Git: The Fabric of Software

https://ocodista.com/en/posts/git-the-fabric-of-software/
5•codista•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.