frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How AI Is Reshaping Human Reasoning and the Rise of Cognitive Surrender

https://www.researchgate.net/publication/399711077_Thinking-Fast_Slow_and_Artificial_How_AI_is_Re...
1•akbarnama•1m ago•0 comments

A Wild Netflix Lawsuit Shows Why Drugs and Alcohol Don't Mix with Work

https://www.wsj.com/lifestyle/careers/a-wild-netflix-lawsuit-shows-why-drugs-and-alcohol-dont-mix...
1•petethomas•2m ago•0 comments

How fast is C++26's std:hive?

https://lemire.me/blog/2026/08/02/how-fast-is-c26s-stdhive/
1•ingve•5m ago•0 comments

Foldables are sort of boring now – and that's great news for Apple

https://www.theverge.com/column/972937/foldable-phones-boring-apple
1•ramn7•7m ago•0 comments

More German than many Germans

https://mertbulan.com/more-german-than-many-germans/
1•mertbio•17m ago•0 comments

Japanese Matcha Price Tracker 2026: Live Auction and Wholesale Data

https://onewithtea.com/pages/japanese-matcha-price-tracker
1•vector_spaces•20m ago•0 comments

Company Offering Printed Books to Train AI Stops After 404 Media Coverage

https://www.404media.co/ai-company-training-scanning-books-database-isbndb/
1•HelloUsername•21m ago•0 comments

Show HN: MPEdb a drop in replacement for SQLite3 with concurrency support

https://github.com/punnerud/mpedb
1•punnerud•22m ago•0 comments

The Math Superstar Who's Terrified of AI–and Just Took a Job at OpenAI

https://www.wsj.com/tech/ai/openai-jacob-tsimerman-fields-medal-ai-safety-391d0f79
1•apparent•29m ago•0 comments

Alternative Versioning

https://altver.org/
1•tomodachi94•32m ago•0 comments

Show HN: NoCrap – Gamifying porn addiction recovery

https://nocrap.vercel.app/
1•uioio•40m ago•0 comments

Compile Zod schemas into zero-overhead validation functions at build time

https://github.com/wakita181009/zod-aot
1•ryuuseijin•43m ago•0 comments

Five Takeaways from the Times Investigation into Larry Ellison's A.I. Gamble

https://www.nytimes.com/2026/07/31/magazine/takeaways-larry-ellison-oracle-ai.html
2•achow•45m ago•0 comments

The Ancient Roots of Modern Winemaking

https://nautil.us/the-ancient-roots-of-modern-winemaking-1281970
1•the-mitr•52m ago•0 comments

Return-to-office mandates are killing workplace trust

https://thehill.com/opinion/technology/5992056-office-attendance-backlash/
2•dmitrygr•59m ago•0 comments

Only 1/8 turbines in Hungarian Paks NPP still operational, shutdown imminent

https://index.hu/gazdasag/2026/08/03/paksi-atomeromu-leallas-kormany-atomenergia-energia-veszelyh...
2•Markoff•1h ago•2 comments

Go json/v2

https://pkg.go.dev/encoding/json/v2
1•tosh•1h ago•0 comments

Dijkstra: The End of Computing Science (2000) [pdf]

https://www.cs.utexas.edu/~EWD/ewd13xx/EWD1304.PDF
1•emptybits•1h ago•0 comments

Show HN: Open-sourcing my market mental map

https://research.oguzbilgic.com
1•obilgic•1h ago•1 comments

lexicon of computing (2001)

https://web.archive.org/web/20011128152100/http://www.cs.washington.edu/homes/klee/misc/lexicon.html
1•jruohonen•1h ago•0 comments

Netflix sued for $105M after unreleased Nicolas Cage movie is stolen

https://www.nbcnews.com/pop-culture/pop-culture-news/netflix-sued-105-million-unreleased-nicolas-...
2•xvxvx•1h ago•3 comments

Show HN: Kwayk – Reimplementing Quake in Qt Quick3D with Jolt Physics

https://github.com/glazunov999/Kwayk
1•glazunov999•1h ago•0 comments

How Go Players Disempower Themselves to AI

https://www.lesswrong.com/posts/nR3DkyivzF4ve97oM/how-go-players-disempower-themselves-to-ai
2•zetalyrae•1h ago•1 comments

How Cursor sets up their cloud agent environment

https://cursor.com/blog/cloud-agent-environment
2•inferhaven•1h ago•0 comments

Spain to put containment fence round Ceuta after deadly border rush from Morocco

https://www.cbsnews.com/news/spain-ceuta-morocco-migrants-border-crossings/
2•SilentM68•1h ago•1 comments

Email compromise that wiped half a billion $

https://ravenmail.io/blog/bank-of-baroda-leak
5•abishekr•1h ago•0 comments

Show HN: N3MO better ROI than CodeRabbit

https://www.n3mo.shop/
1•RajX_dev•1h ago•1 comments

Servitor (Simple way to run local dev containers)

https://github.com/sndsabin/servitor
3•havu12•1h ago•0 comments

Show HN: New Parts for Old Computers

https://newold.computer/
2•joshu•1h ago•0 comments

AI Mentions in Job Descriptions – August 2026

https://corvi.careers/blog/ai_jobs_aug_2026/
2•sp1982•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.