frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claper: Turns your presentations into interactive and engaging experience

https://github.com/ClaperCo/claper
1•teleforce•44s ago•0 comments

The Anatomy of a Robbing Event

https://beeculture.com/the-anatomy-of-a-robbing-event/
1•wawayanda•5m ago•0 comments

Mini-Hyper-Golf

https://gfody.substack.com/p/mini-hyper-golf
1•gfody•5m ago•0 comments

Ajeya Cotra – Inside the OpenAI agent swarm that hacked Hugging Face

https://www.dwarkesh.com/p/ajeya-cotra
2•yurivish•6m ago•0 comments

MathArt Studio – turn mathematical formulas into visual art, real-time

https://www.mathartstudio.art/
1•yanjunnf•8m ago•0 comments

HybridInfer: Local-first LLM router that falls back to cloud on failure

https://github.com/SimranKoul2026/HybridInfer-Python-tool
1•bookworm10•9m ago•0 comments

GoPro Says It's Moving into Data Centers as Part of a $285M Merger

https://www.engadget.com/2248633/gopro-says-its-moving-into-ai-data-centers-as-part-of-a-dollar28...
1•m463•15m ago•0 comments

Apple's official X account has unfollowed Tim Cook

https://twitter.com/landiantech/status/2094824431671734494
3•uneven9434•15m ago•0 comments

Show HN: Rust compiler converting CPGs to Nuclei YAML

https://github.com/Tito0015/cpg-nuclei-compiler
1•Tarek-M•19m ago•0 comments

Bazel's UX is really, really, really bad

https://blog.appliedcomputing.io/p/bazels-ux-is-really-really-really
2•thunderbong•19m ago•0 comments

YC Summer '26 Batch

https://www.neweconomies.co/p/y-combinator-summer-26-batch
2•ollieforsyth•20m ago•1 comments

How much of your coding is done by AI coding agents these days?

https://slashdot.org/poll/3284/how-much-of-your-coding-is-done-by-ai-coding-agents-these-days
1•e12e•20m ago•0 comments

JetBrains says Cadence was breached after a critical TeamCity patch was missed

https://blog.jetbrains.com/pycharm/2026/08/cadence-security-incident-august-2026/
1•lbw1215•22m ago•0 comments

Show HN: Life Compass – A life planning app built on The 7 Habits

https://lifecmp.com
1•michaelwang100•23m ago•0 comments

Rooting a fire hd 10 because apparently I have problems

https://voidnullvalue.github.io/SnuSnuRoot/
1•voidnullvalue•29m ago•0 comments

Slopmancer

https://slopmancer.com
1•pj4533•31m ago•1 comments

Crossplane AI Contribution Policy

https://github.com/crossplane/crossplane/blob/main/AI_POLICY.md
1•gpi•32m ago•0 comments

Claude Fable 5.1 tightens restrictions on reusing thinking blocks

https://platform.claude.com/docs/en/build-with-claude/thinking
2•firexcy•32m ago•0 comments

BotEmbed – a site-aware chatbot you embed with one script tag

https://www.botembed.ai
1•tuckerzd•39m ago•0 comments

Claude Fable 5.1 made me a nice animated pelican

https://simonwillison.net/2026/Sep/1/claude-fable-5-1/
12•elsewhen•40m ago•2 comments

Cognition Set to Raise Around $1B at a $47B Valuation

https://www.bloomberg.com/news/articles/2026-09-02/ai-startup-cognition-set-to-raise-around-1-bil...
1•gk1•45m ago•0 comments

Apple Maps Changes Lake Ontario to Lake America After Trump Order

https://www.bbc.com/news/articles/cddvyyz0e47o
4•andsoitis•46m ago•2 comments

Pivotal CEO left the eVTOL company

https://techcrunch.com/2026/09/01/larry-pages-flying-car-company-pivotal-loses-its-ceo/
1•paaloeye•48m ago•2 comments

Offering Zero Data Retention for frontier models

https://openai.com/index/offering-zero-data-retention-for-frontier-models/
3•gmays•55m ago•0 comments

Intel replaces Intel Fellow title after nearly 50 years

https://www.oregonlive.com/silicon-forest/2026/09/intel-drops-fellow-designation-for-its-top-scie...
3•osnium123•58m ago•0 comments

Important Security Update for Plex Media Server v1.43.2 and Earlier

https://forums.plex.tv/t/important-security-update-for-plex-media-server-v1-43-2-and-earlier/942319
2•akersten•1h ago•0 comments

Anthropic banned me for "suspicious signals"

https://kix.codes/anthropic-banned-me-for-suspicious-signals/
2•kixpanganiban•1h ago•0 comments

State of Local AI Report

https://www.basecompute.co/stateoflocalai
3•lukasonedge•1h ago•1 comments

$64B of data center projects have been blocked or delayed amid opposition

https://www.datacenterwatch.org/report
3•sensanaty•1h ago•0 comments

The ZX Spectrum sound chip hidden in a 1992 DOS game's Tandy driver

https://utopia.platesteel.net/phantom/
3•duncanbowring•1h 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.