frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Wikipedia Is Battling for the Soul of the Internet

https://www.nytimes.com/2026/07/05/business/media/wikipedia-ai-elon-musk.html
1•cainxinth•1m ago•0 comments

Durian Montong

https://blog.cloudflare.com/welcome-to-connectivity-cloud/
1•basri•3m ago•0 comments

Was Homer's Ithaca an Island?

https://antigonejournal.com/2026/07/in-search-of-ithaca/
1•Hardy_Boy•3m ago•0 comments

I built a Figma for traders and investors – all in on tab

https://fynca.io/
1•adiabramov•4m ago•0 comments

Show HN: Skred – my opinionated sound/pattern engine and live coding thingy

https://octetta.github.io/pulp/doc/show-hn-1.html
2•octetta•12m ago•0 comments

Show HN: Runtime and install-time enforcement for NPM dependencies`

https://github.com/kratex-security/kratex
2•jackbeck•12m ago•0 comments

ActHub – EU AI Act compliance toolkit for small businesses (PHP, no framework)

https://sevinhub.com/acthub/
2•sergiuv•18m ago•0 comments

EPP spreading false claims on Chat Control

https://digitalcourage.social/@echo_pbreyer/116866154678577185
3•latexr•18m ago•0 comments

All Your Favorite Gadgets Are Getting More Expensive Again

https://www.wired.com/story/we-are-in-the-knockout-round-of-price-increases-for-consumer-electron...
2•joozio•20m ago•0 comments

Show HN: PES Benchmark v0.2 – Detecting AI-generated motion (Cohen's d=10.4)

https://github.com/myshapeprotocol/myshape-protocol
2•myshapeprotocol•20m ago•0 comments

Europe's air conditioning culture wars heat up

https://www.theguardian.com/environment/2026/jul/05/europe-air-conditioning-culture-wars-heat-up
2•tosh•23m ago•0 comments

Confidential computing's core trust mechanism is broken. The fix may not exist

https://www.theregister.com/security/2026/07/04/confidential-computings-core-trust-mechanism-is-b...
3•Logans_Run•26m ago•1 comments

Codex ticket: first-class Jujutsu support

https://github.com/openai/codex/issues/31167
3•xlii•26m ago•1 comments

Returning to Zig after losing trust in Rust's governance

https://gracefulliberty.com/articles/return-to-zig/
10•jonathandeamer•27m ago•3 comments

Instagram running ads promoting child abuse material in India [video]

https://www.youtube.com/watch?v=6-y726qvZ6Q
2•mgh2•30m ago•1 comments

Show HN: Open-source phone calling infra for AI agents

https://github.com/AgentLineHQ/AgentLine
3•sameersri2004•32m ago•0 comments

Pi square is nearly 10

https://mihai.page/pi-square-is-10/
3•freediver•33m ago•0 comments

Ukraine striking Russian energy infrastructure at unprecedented rate

https://www.ft.com/content/13687b48-9e54-44a1-bd4d-600bbc052baf
3•JumpCrisscross•39m ago•0 comments

Ford rehires human engineers after AI fails to match quality checks

https://www.bbc.com/news/articles/cgrkd41n2v9o
11•JumpCrisscross•41m ago•1 comments

Suezmax

https://en.wikipedia.org/wiki/Suezmax
2•thunderbong•46m ago•0 comments

Show HN: Design Patterns for AI

https://verificationdesign.com/
2•verify-ai•47m ago•1 comments

OpenAI's apparent failure to visit key site raises questions over UK investment

https://www.theguardian.com/technology/2026/jul/04/openai-apparent-failure-visit-key-site-questio...
2•YeGoblynQueenne•48m ago•0 comments

Show HN: Pixtrava – Public Profiles for Our Persistent 3D Voxel World

https://pixtrava.com/blog/public-profiles-launch
2•sbcom•49m ago•0 comments

Common 3D Benchy Problems, Causes and Fixes

https://bambu3design.com/13-common-3d-benchy-problems-causes-fixes/
4•ehsanamel•49m ago•2 comments

Japan's Hayabusa2 probe to conduct flyby of Torifune asteroid

https://www3.nhk.or.jp/nhkworld/en/news/20260705_01/
2•dvh•50m ago•0 comments

Show HN: Selbstbild – What Fable 5 thinks of your HN comment history

https://selbstbild.eu
3•Topfi•1h ago•1 comments

Skill > ~2.5-3X PNG > OCR > paint in QR

https://github.com/YogiSotho/dense-image-gen
3•yogisotho•1h ago•0 comments

New Weekly Space and Hypersonics Engineering Newsletter

https://buttondown.com/MaxQFrontier/archive/from-orbital-data-farms-to-hypersonic-prints-this/
3•chadsutter•1h ago•1 comments

Teaching Claude to Write Like Zweig

https://rornic.dev/posts/teaching-claude-to-write-like-zweig/
5•rornic•1h ago•2 comments

Sedentarism Exhibits a Distinct Mitochondrial Bioenergetic Phenotype

https://www.mdpi.com/3042-5158/2/3/10
3•bookofjoe•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.