frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Rosenbjerg/local-review: Minimal webapp for local code review of branches

https://github.com/rosenbjerg/local-review
3•bhubert•4m ago•0 comments

Shopify CEO says employees' `slop grenades` making more work for everyone else

https://fortune.com/2026/09/17/shopify-tobias-lutke-ai-slop-grenades/
2•theanonymousone•5m ago•0 comments

Replacing an agentic classification loop with Jev: 7x faster

https://blog.r6i.it/typesafe-jev-vs-agentic-loop.html
1•sammy_rulez•5m ago•0 comments

Do Artifacts Have Politics? (1980)

https://www.jstor.org/stable/20024652?seq=1
1•shinryuu•7m ago•0 comments

Thoughts on a Typesafe Coding Agent

https://docs.google.com/document/d/1G61uUB0FifUnmmrPzFQojZ3KpczYKmXGpgEXDJ2l_Zg/preview?pli=1&pru...
1•tosh•17m ago•0 comments

North Korean Hackers Posed as Recruiters.They Infected 30k Devices Worldwide

https://www.inc.com/kevin-haynes/north-korean-hackers-posed-as-recruiters-infected-30000-devices-...
2•jnord•17m ago•0 comments

Should you trust Al to deliver financial advice?

https://www.saturnos.com/report/artificial-authority
1•7777777phil•17m ago•0 comments

Publications on Regality theory and cultural selection theory

https://agner.org/cultsel/
2•andsoitis•20m ago•0 comments

Models Watching Models

https://www.southbridge.ai/blog/jev-watching-the-agents
1•tosh•20m ago•0 comments

Software Optimization Resources

https://agner.org/optimize/
1•andsoitis•21m ago•0 comments

Simple and Efficient Row-Level Security

https://acadia.engineering/blog/simple-and-efficient-row-level-security
1•mfru•21m ago•0 comments

Slower than an SD card under heavy load: iPhone 18 Pro Max's QLC storage tested

https://www.notebookcheck.net/Slower-than-an-SD-card-under-heavy-load-iPhone-18-Pro-Max-s-QLC-sto...
1•virgildotcodes•23m ago•0 comments

Infinitely Recursive of Game of Life

https://oimo.io/works/life/
1•helloplanets•24m ago•0 comments

Evaluating Long-Term Memory for AI Agents: AML Cycle 2 Is Now Open

https://twitter.com/AgentMemoryL/status/2101515447816663222
1•IreneAI•24m ago•0 comments

Perennial Technical Reads

https://parallelprogrammer.substack.com/p/a-reading-list-for-metalheads
1•signa11•25m ago•0 comments

Why Are People Cancelling?

https://bankstatementconverter.com/blog/posts/2026-09-21-why-are-people-canceling/
2•4pkjai•26m ago•0 comments

BYD car was easily hacked by cybersecurity expert

https://www.abc.net.au/news/2026-09-21/byd-hacked-by-cybersecurity-expert-vehicle-sabotage-survei...
2•Cadwhisker•29m ago•0 comments

A computer scientist-novelist reflects on AI and our understanding of maths

https://scroll.in/article/1095809/how-ai-could-influence-our-understanding-of-mathematics-a-compu...
1•adityaathalye•31m ago•1 comments

International Observe the Moon Night

https://en.wikipedia.org/wiki/International_Observe_the_Moon_Night
1•ButlerianJihad•31m ago•0 comments

iPhone 18 Pro Teardown: What Changed Inside? [video]

https://www.youtube.com/watch?v=oS_HMre7vk0
1•lisper•31m ago•0 comments

The big ideas and tiny details behind Amazon's new recyclable mailer (2019)

https://www.aboutamazon.com/news/sustainability/the-big-ideas-and-tiny-details-behind-amazons-new...
1•usaphp•32m ago•0 comments

Jev's Architecture Unmasked

https://archerhume.com/posts/jevs-architecture-unmasked/
2•nlpnerd•38m ago•0 comments

The Toxicity of Sports Media

https://medium.com/freedomofthought/the-toxicity-of-sports-media-ee6003e241ff
1•raynchad•38m ago•0 comments

Lightweight Markdown Viewer/Editor for Linux and Windows

https://marklite.app
2•mchilson•40m ago•0 comments

Kanye West: A Civil Rights Leader?

https://medium.com/freedomofthought/kanye-west-a-civil-rights-leader-48174114ef3b
1•raynchad•41m ago•0 comments

Elektron Machinedrum in the Browser

https://machinedrum-study.pages.dev/
1•risktopark•41m ago•0 comments

Less Typing, More Work

https://nicolasdular.com/blog/2026/09/20/less-typing-more-work/
4•tosh•46m ago•0 comments

Understanding the European Cyber Resilience Act (CRA)

https://openssf.org/cra-ebook/
3•tapanjk•46m ago•0 comments

Postgres 19: What's new in monitoring?

https://clickhouse.com/blog/postgres-19-monitoring-whats-new
2•saisrirampur•49m ago•0 comments

Find-jevable-code – audit a repo for Jev-replaceable decisions

https://altslate-labs.github.io/jevable-code/
2•ss_y2n•51m 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.