frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

City and Flock Manipulate Security Scores

https://ipvm.com/reports/flock-review-dunwoody
1•jhonovich•2m ago•0 comments

Hackers earning millions from hijacked cargo, FBI says

https://therecord.media/hackers-earning-millions-from-hijacked-cargo-fbi
2•PaulHoule•4m ago•0 comments

Classic Trollyology but you've been Ransomwared

https://actlikeabreach.online/
1•splintersio•4m ago•1 comments

2028: Two scenarios for global AI leadership

https://www.anthropic.com/research/2028-ai-leadership
2•mmq•7m ago•0 comments

Show HN: Visualizing Tiny LLMs from OpenAI's Parameter Golf

https://leebutterman.com/2026/05/01/visualizing-tiny-llms-in-parameter-golf.html
1•lsb•7m ago•0 comments

The AI Layoff Bill Is Coming Due, and CTOs Are Going to Pay It Twice

https://www.forbes.com/councils/forbestechcouncil/2026/05/14/the-ai-layoff-bill-is-coming-due-and...
5•cdrnsf•9m ago•0 comments

Video codecs are a nightmare for game developers

https://www.gamedeveloper.com/programming/video-codecs-are-a-nightmare-for-game-developers-but-th...
1•ledoge•9m ago•0 comments

German intelligence offices snub Palantir software

https://www.dw.com/en/german-intelligence-offices-snub-us-based-palantir-software/a-77160897
2•abawany•10m ago•0 comments

Amazon Ditches Rufus for Alexa

https://www.aboutamazon.com/news/retail/alexa-for-shopping-ai-assistant
3•jxyxfinite•11m ago•0 comments

Emergence World

https://world.emergence.ai/
1•DeathArrow•12m ago•0 comments

Overworked AI Agents Turn Marxist, Researchers Find

https://www.wired.com/story/overworked-ai-agents-turn-marxist-study/
3•ceejayoz•12m ago•0 comments

We open sourced Enclave's MLS Protocol encryption SDK

https://github.com/Enclave-Social/enclave-mls-sdk
1•JbraxtonEnclave•12m ago•0 comments

Why did Clovis toolmakers choose difficult quartz crystal?

https://phys.org/news/2026-04-clovis-toolmakers-difficult-quartz-crystal.html
2•PaulHoule•16m ago•0 comments

Show HN: OpenSpec – OpenAPI/Swagger explorer with a contract linter

https://openspec.vercel.app/
2•geox•19m ago•0 comments

How to Achieve Truly Serverless GPUs

https://modal.com/blog/truly-serverless-gpus
1•birdculture•19m ago•0 comments

70 years of love, empowerment, and freedom. A look at Eurovision by its lyrics

https://puntofisso.net/eurovision/
1•sebg•20m ago•0 comments

AlanLukacovic

1•AlanLukacovic•20m ago•0 comments

The AI Zombification of Universities

https://www.thenewcritic.com/p/the-great-zombification
4•rmdmphilosopher•23m ago•0 comments

Anthropic moves Claude Code SDK and claude -p out of subscription plans

https://twitter.com/ClaudeDevs/status/2054610152817619388
4•deviantintegral•23m ago•0 comments

Hoot 0.9.0 Released

https://spritely.institute/news/hoot-0-9-0-released.html
11•birdculture•24m ago•0 comments

Ask HN: Anyone have experience with infomaniak.com? Are they a scam?

1•OhMeadhbh•24m ago•1 comments

AMD will bring FSR 4 to RDNA 3 and RDNA 2 GPUs

https://twitter.com/jackhuynh/status/2054904153013387273
1•LorenDB•24m ago•0 comments

The Power of a Free Popsicle (2018)

https://www.gsb.stanford.edu/insights/power-free-popsicle
4•NaOH•26m ago•0 comments

Docker demystified: create your own containers in five minutes

https://discourse.openrobotics.org/t/what-are-you-using-for-containerization-in-ros-deployments/5...
1•chfritz•27m ago•0 comments

Just Aim the Cannon Correctly

https://www.jmduke.com/posts/difficulty-scores.html
2•speckx•27m ago•0 comments

Early Access Grok Build CLI

https://x.ai/cli
10•skp1995•27m ago•0 comments

SQLite affinity is stranger than it looks, a peek inside

https://theconsensus.dev/p/2026/05/06/sqlite-affinity.html
2•eatonphil•29m ago•0 comments

Brazil markets rattled by report linking Flavio Bolsonaro to disgraced banker

https://www.reuters.com/world/americas/brazil-markets-rattled-by-report-linking-flavio-bolsonaro-...
1•CXSHNGCB•34m ago•0 comments

Understanding the Linux Kernel: The Linux Kernel Startup

https://internals-for-interns.com/posts/linux-kernel-startup/
7•valyala•35m ago•0 comments

First public macOS kernel memory corruption exploit on Apple M5

https://blog.calif.io/p/first-public-kernel-memory-corruption
9•quadrige•35m ago•2 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.