frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

If You Take the Weasel Job Then You Must Be the Weasel

https://www.hamiltonnolan.com/p/if-you-take-the-weasel-job-then-you
1•eustoria•21s ago•0 comments

GPU probably isn't helping your retrieval system

https://strake.dev/blog/your-gpu-isnt-helping-your-retrieval-system
2•robshippr•2m ago•0 comments

Dropstone 1.5: Technical Report

https://blankline.org/research/dropstone-1-5
1•DarenWatson•3m ago•0 comments

DepsGuard – Guard your dependencies against supply chain attacks

https://depsguard.com/
1•eustoria•3m ago•0 comments

AI token streaming isn't about SSE vs. WebSockets

https://zknill.io/posts/ai-token-streaming-isnt-about-sse-vs-websockets/
1•zknill•3m ago•0 comments

Show HN: I built an on-chain economy where AI agents transact autonomously

https://agtchain.io/
1•winewarrior•4m ago•0 comments

A walking tour of surveillance infrastructure in Seattle

https://coveillance.org/a-walking-tour-of-surveillance-infrastructure-in-seattle/
1•eustoria•4m ago•0 comments

Show HN: I built a waitlist tool with Claude as a non-technical founder

https://waitspot.io
2•trungnx2605•4m ago•0 comments

Show HN: ASys – A typed binary protocol for AI agents to operate servers(no SSH)

https://github.com/vincentping/asys
1•vincentping•4m ago•0 comments

Lost in the Middle: Why LLMs Forget What They Just Read

https://cristobalsantana.substack.com/p/lost-in-the-middle-why-llms-forget
2•csantana_ml•5m ago•0 comments

Life saving / first aid posters

1•cpu_•6m ago•0 comments

Prove Alignment, Then Let the Agent Merge

https://isaackabuika.substack.com/p/let-the-agent-merge
1•kabuika•8m ago•0 comments

Open-source AI Sales Agent with Next.js 15 and Ollama – zero API costs

https://github.com/Dvbxtreme/ai-sales-agent
1•sdev99•8m ago•0 comments

Practicing What We Preach – Validating Our AI Assistant Content

https://lyfe.ninja/news/#we-practice-what-we-preach
1•lyfeninja•8m ago•0 comments

Code.org Rebrands as CodeAI

https://code.org/en-US/codeorg-is-now-codeai
1•njoyablpnting•8m ago•0 comments

No Linux support on free version of Vivado 2026.1

https://www.amd.com/en/products/software/adaptive-socs-and-fpgas/vivado/vivado-licensing-options....
1•birdculture•10m ago•0 comments

Show HN: AERF, signed receipts for AI agent actions

https://github.com/aerf-spec/aerf
1•keertahacker•11m ago•0 comments

Detecting fraud rings: the social-graph problem in disguise

https://analytics.fixelsmith.com/posts/fraud-rings/
2•analyticsfs•12m ago•0 comments

University of California Professors Are Begging Schools to Reinstate the SAT

https://www.wsj.com/us-news/education/university-california-sat-requirement-reinstate-c3e32712
1•fortran77•13m ago•1 comments

Social Cache Busting

https://www.autodidacts.io/social-cache-busting/
1•surprisetalk•14m ago•0 comments

Expanding Project Glasswing

https://www.anthropic.com/news/expanding-project-glasswing
3•surprisetalk•14m ago•0 comments

CISA flags two-year-old Oracle flaw as actively exploited in attacks

https://www.bleepingcomputer.com/news/security/cisa-orders-feds-to-patch-actively-exploited-oracl...
1•Brajeshwar•14m ago•0 comments

Book Review: Twelve Rules for Life

https://slatestarcodex.com/2018/03/26/book-review-twelve-rules-for-life/
1•MrBuddyCasino•15m ago•0 comments

Hammers Without Handles: Linux UX Sucks

https://gardinerbryant.com/hammers-without-handles-linux-ux-sucks/
2•HotGarbage•16m ago•0 comments

Twelve Ways to Be Wrong About AI-Assisted Coding

https://third-bit.com/2026/05/20/twelve-ways-to-be-wrong/
1•tatersolid•16m ago•0 comments

State of the Fossil-Free Internet Report

https://fossilfree.greenweb.org/2026/
1•speckx•17m ago•0 comments

Turn your voice into a waveform video, in the browser

https://voicetowaveform.com/
2•lukegabriel•18m ago•0 comments

Show HN: Rustgate – Bypassing Python's event loop for token-aware rate limiting

https://github.com/MordechaiHadad/rustgate
1•MordechaiHadad•18m ago•0 comments

Plant Your Seeds in the Radicle Garden

https://radicle.dev/2026/06/02/announcing-radicle-garden
1•Tmpod•19m ago•0 comments

Show HN: Parley – code review TUI for AI code

https://parley.cloudflavor.io
1•pi-victor•21m 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.