frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Proudly Pathetic

https://craigatallahfrost.com/post/2025/08/17/proudly-pathetic/
1•herbertl•55s ago•0 comments

NASA to increase CLPS contract to support surge of lunar lander missions

https://spacenews.com/nasa-to-increase-value-of-clps-contract-to-support-surge-of-lunar-lander-mi...
1•rbanffy•2m ago•0 comments

America's Expanding Domestic Surveillance

https://www.wsj.com/articles/americas-expanding-domestic-surveillance-08b73187
2•Brajeshwar•6m ago•0 comments

The Fake Hawaii CTO Who Fooled Everyone

https://dallasexpress.com/national/from-vegas-stages-to-official-warnings-the-fake-hawaii-cto-who...
1•greenchair•7m ago•0 comments

Apple Stores Targeted in $16.2M Counterfeit Device Scheme

https://pasadenanow.com/main/pasadena-apple-store-among-locations-targeted-in-16-2-million-counte...
1•kid64•7m ago•0 comments

Docker vs. Podman: Which Containerization Tool Is Right for You – DataCamp

https://www.datacamp.com/blog/docker-vs-podman
1•abdelhousni•10m ago•0 comments

Ask HN:Do people configure Claude Code to use other models

https://openrouter.ai/apps/claude-code
1•ripvanwinkle•10m ago•1 comments

LibreLocal 2026 – Global Meetups Across Six Continents

https://tux.re/forum/viewtopic.php?t=217
1•tuxyz•11m ago•0 comments

We Forgot How to Write

https://www.timwehrle.de/blog/we-forgot-how-to-write/
1•timwehrle•12m ago•0 comments

Sebastian Proactive: a local‑first AI companion that initiates conversations

https://github.com/DaroHacka/proactive-sebastian-ai-companion
1•darohacka•14m ago•0 comments

Chinese AI models are ~8 months behind and falling further behind

https://twitter.com/scaling01/status/2050395242663223751
1•enraged_camel•15m ago•1 comments

Path to Vibe Engineering

https://leandronsp.com/articles/path-to-vibe-engineering
1•leandronsp•15m ago•0 comments

Zig's issue tracker got 3k spam issues in 20 minutes

https://codeberg.org/ziglang/zig/issues
2•qilme•17m ago•1 comments

B.C. researcher taps magic of Dungeons and Dragons to help kids

https://www.cbc.ca/news/canada/british-columbia/dungeons-and-dragons-kids-therapy-neurodivergence...
1•empressplay•18m ago•0 comments

Tim Cook, the interview: Running Apple 'is sort of a lonely job' (2016)

https://www.washingtonpost.com/sf/business/2016/08/13/tim-cook-the-interview-running-apple-is-sor...
1•downbad_•18m ago•2 comments

Here's Looking at Euclid: 3D Paper Models of Oliver Byrne's Euclid's Elements

https://www.helenfriel.com/heres-looking-at-euclid
1•the-mitr•18m ago•0 comments

Judgment Cannot Be Prompted

https://www.tsoon.com/posts/judgment-cannot-be-prompted/
2•mooreds•20m ago•0 comments

Field vs. Google, Inc

https://en.wikipedia.org/wiki/Field_v._Google,_Inc.
1•altilunium•21m ago•0 comments

Grok 4.3 is way cheaper and better than before

https://felloai.com/grok-4-3-review/
1•LV14•21m ago•0 comments

OWASP Agent Security Regression Harness

https://github.com/OWASP/Agent-Security-Regression-Harness
1•mertsatilmaz•21m ago•0 comments

Screw You Realtek

https://www.growse.com/2026/05/02/screw-you-realtek.html
1•fanf2•21m ago•0 comments

Data theft: Teen arrested over hacking of French government website

https://www.france24.com/en/data-thieft-a-15-year-old-minor-arrested
1•RockstarSprain•22m ago•0 comments

Things I Think I Think About Data Privacy

https://blogs.newardassociates.com/blog/2026/titit-data-privacy.html
1•mooreds•23m ago•0 comments

Claude Code, Copilot and Codex got hacked. Attackers went for the credentials

https://venturebeat.com/security/six-exploits-broke-ai-coding-agents-iam-never-saw-them
1•mooreds•23m ago•0 comments

24 Years Ago Today, Bethesda Changed Open World RPG Video Games Forever

https://www.mensjournal.com/entertainment/24-years-ago-today-bethesda-changed-open-world-rpg-vide...
1•Alupis•23m ago•0 comments

sRGB profile comparison

https://ninedegreesbelow.com/photography/srgb-profile-comparison.html
1•Retr0id•27m ago•0 comments

Roll your own local AI coding agents to save money

https://www.theregister.com/2026/05/02/local_ai_coding_agents/
1•samizdis•29m ago•0 comments

How a dose of MDMA transformed a white supremacist

https://www.bbc.com/future/article/20230614-how-a-dose-of-mdma-transformed-a-white-supremacist
3•hochmartinez•30m ago•0 comments

Show HN: Vdiff – CLI to help you review AI-generated code

1•fforbeck•33m ago•0 comments

The cruelty of teaching computing science (EWD 1036)

https://www.cs.utexas.edu/~EWD/transcriptions/EWD10xx/EWD1036.html
1•tosh•36m 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.