frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Scanning 7.6 Petabytes of HuggingFace Training Data for Secrets

https://trufflesecurity.com/blog/scanning-7-6-petabytes-of-ai-training-data-for-secrets
1•882542F3884314B•2m ago•0 comments

To Find Happiness, I Stopped Talking. It Helped

https://www.nytimes.com/2026/08/01/opinion/happiness-silent-retreat.html
1•saikatsg•3m ago•0 comments

Random thoughts while gazing at the misty AI Frontier

https://blog.eladgil.com/p/random-thoughts-while-gazing-at-the
1•FinnKuhn•3m ago•0 comments

Why Fortran Is Still Used

https://www.matecdev.com/posts/why-fortran-still-used.html
1•leephillips•3m ago•0 comments

Supabase Evals: Benchmark for testing how well AI agents build using Supabase

https://supabase.com/blog/introducing-supabase-evals
1•maxloh•4m ago•0 comments

The Data Center Water Crisis Nobody's Talking About

https://comuniq.xyz/post?t=1476
1•01-_-•5m ago•1 comments

Lack of FISA reform lets federal govt surveil 'entire communities' with AI

https://www.thecentersquare.com/national/article_1e430e4c-82e5-48f7-aed1-681998d2cb02.html
1•01-_-•6m ago•0 comments

Why 95%+ of Startups Get the Forward Deployed Engineer Role Wrong

https://www.flybridge.com/ideas/the-bow/why-95-of-startups-get-the-forward-deployed-engineer-role...
2•nlpnerd•8m ago•0 comments

Show HN: SteerPlane – Deterministic runtime guardrails for AI agents

https://github.com/vijaym2k6/SteerPlane
1•vijaym2k6•15m ago•0 comments

How Google helped destroy adoption of RSS feeds (2023)

https://openrss.org/blog/how-google-helped-destroy-adoption-of-rss-feeds
2•pudgywalsh•17m ago•0 comments

Can a computer run [solely] on [unbacked] VRAM? (2016)

https://www.reddit.com/r/hardware/comments/4ooxyg/can_a_computer_run_on_vram/
1•peter_d_sherman•18m ago•0 comments

Ask HN: Should organizations be allowed to have all types of personl data(X.com)

1•dfps•21m ago•0 comments

Reddit Stock Collapses 23% as AI Eats Away at User Growth

https://www.barchart.com/story/news/3584357/reddit-stock-collapses-23-as-ai-eats-away-at-user-growth
5•thm•21m ago•1 comments

I Built Ziggers: A Marketplace to Hire Verified Gig Workers in Minutes

https://www.indiehackers.com/post/i-built-ziggers-a-marketplace-to-hire-verified-gig-workers-in-m...
1•Subanesh•22m ago•0 comments

NetBSD 11.0 Released

https://blog.netbsd.org/tnf/entry/netbsd_11_0_released
2•jaypatelani•27m ago•0 comments

Show HN: MakerStack: a pay-once maker page (SSR, OG images, custom domains)

https://makerstack.altuzar.dev/
1•altuzar•33m ago•0 comments

The Rise of Zero Fertility Desire in China

https://www.researchsquare.com/article/rs-8921502/v1
2•toomuchtodo•34m ago•2 comments

An honesty-first pipeline for AI-transcribing a small letter archive

https://aboxofletters.com/
1•tangentdesignco•36m ago•0 comments

Sovereign and European AI where your Data Stays under European law

https://melious.ai/
1•marcfrommelious•36m ago•0 comments

Freelance front end and GenAI dev, open for client work

http://upwork.com/freelancers/surajg3
1•gsuraj•37m ago•0 comments

BorrowSanitizer Status Update – July 2026

https://borrowsanitizer.com/status/july_2026.html
1•arto•37m ago•0 comments

2026 Europhysics Prize honors discovery of third fundamental class of magnetism

https://www.eurekalert.org/news-releases/1137502
4•bookofjoe•41m ago•0 comments

Why Casper forked Rust's rand crate

https://casualhacks.net/blog/2026-07-27-why-i-forked-rand.html
3•fanf2•42m ago•0 comments

Show HN: Free AI Prompt Gen – A local-first, open-source prompt engineering tool

https://freeaipromptgen.com/
2•linuxterminal•43m ago•0 comments

Visa to Cut 7% of Workforce

https://www.bloomberg.com/news/articles/2026-07-28/visa-to-cut-7-of-workforce-as-ceo-seeks-to-rev...
4•tosh•46m ago•0 comments

An Odd Kind of Sympathy

https://willthefirst.github.io/synchronizing-metronomes/
1•willthefirst•46m ago•0 comments

Nimdai: Renowned British Gurkha climber and Netflix star confirmed dead

https://news.sky.com/story/nirmal-purja-former-british-special-forces-soldier-dead-after-avalanch...
1•frogfish•46m ago•0 comments

HTML Day 2026 Shanghai

https://rect.repair/html-2026/
1•adrianhon•48m ago•0 comments

Show HN: AllMCPs – Directory of MCP Servers

https://allmcps.com
1•ghosts_•55m ago•0 comments

U.S. lawmakers request information from DoorDash on use of Chinese AI models

https://www.cnbc.com/2026/07/31/us-lawmakers-doordash-chinese-ai-models.html
1•tito•55m 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.