frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ghost jobs

https://www.columbialawreview.org/content/ghost-jobs/
1•hhs•1m ago•0 comments

People I Met in Tulum

https://twitter.com/heshie/status/2062938235454542117
1•heshiebee•1m ago•0 comments

Wildfires have worsened ozone pollution in the United States

https://now.uiowa.edu/news/2026/06/wildfires-have-worsened-ozone-pollution-united-states
1•hhs•6m ago•0 comments

Show HN: Jeju – a local-first agent harness with inspectable runs

https://github.com/cosmtrek/jeju
1•cosmtrek•7m ago•0 comments

AI is the major driver of innovation in Canada and around the world

https://ised-isde.canada.ca/site/ised/en/canadas-national-artificial-intelligence-strategy-ai-all
1•megamike•7m ago•0 comments

Will OpenAI and Anthropic Service?

https://medium.com/@paul.bernard_80815/beyond-inference-why-the-future-of-ai-may-belong-to-millio...
1•paulbernard•9m ago•0 comments

Satellite data show trees delay budburst across landscapes to escape herbivores

https://www.nature.com/articles/s41559-026-03071-9
1•PaulHoule•12m ago•0 comments

Dutch solar owners asked to switch off during peak to ease distribution crisis

https://www.pv-magazine.com/2026/06/05/grid-connection-delays-affect-thousands-of-dutch-customers...
1•ndr42•12m ago•0 comments

Researchers show how brain rewires itself to enable true multitasking

https://medicine.georgetown.edu/news-releases/georgetown-researchers-show-how-brain-rewires-itsel...
1•hhs•14m ago•0 comments

Model alleges retailer used AI to generate likeness under 'minor edits' clause

https://medium.com/human-offset/minor-edits-09ad99aad0f4
1•gdessau•17m ago•0 comments

Aswath Damodaran on SpaceX: Revisiting the SpaceX Valuation: An Update

https://aswathdamodaran.blogspot.com/2026/06/a-weeks-ago-i-assessed-value-of-spacex.html
2•aanet•20m ago•1 comments

Anthropic warns Claude AI is building itself faster than expected

https://www.tomshardware.com/tech-industry/artificial-intelligence/anthropic-says-claude-now-writ...
1•corvettez0606•21m ago•0 comments

Understand how you build with AI

https://paxel.ycombinator.com/
2•simonpure•24m ago•0 comments

EU CRA compliance management tool

https://github.com/cra-norm-engine/crane
1•amh1036•25m ago•0 comments

30-year study finds sweet spot for cardio and strength training for longer life

https://www.medicalnewstoday.com/articles/want-to-live-longer-study-finds-sweet-spot-for-cardio-a...
2•akyuu•27m ago•0 comments

GNUtrition 0.33

https://lists.gnu.org/archive/html/info-gnu/2026-06/msg00002.html
2•amcclure•28m ago•0 comments

Why Stone-Faced Fascists Keep Getting Antiquity Wrong

https://www.thebulwark.com/p/why-stone-faced-fascists-keep-getting-antiquity-wrong-x-twitter-elon...
1•enaaem•28m ago•0 comments

Sony's age verif company Yoti; threatening users who use GrapheneOS

https://old.reddit.com/r/privacy/comments/1txn8di/did_i_just_got_threatened_by_yoti_age/
4•mystraline•34m ago•0 comments

Autohost – spin up websites seconds after someone points a domain at them

https://github.com/Safebots/Autohost
1•EGreg•34m ago•0 comments

Training-Free Single-Image Diffusion Models

https://haojunqiu.github.io/efficient-SID/
2•E-Reverance•39m ago•0 comments

Safe Made Easy Pt.1: Single Ownership Is (Not) Optional

https://ergeysay.me/safe-made-easy-pt1.html
1•birdculture•39m ago•0 comments

How Artemis II livestreamed hi-def videos and images from the moon to Earth

https://news.mit.edu/2026/how-artemis-ii-livestreamed-hi-def-videos-images-from-moon-to-earth-0605
2•gnabgib•43m ago•0 comments

Show HN: Honest Privacy Policies – We Read the Fine Print So You Don't Have To

https://honestprivacypolicies.org/
2•LuD1161•49m ago•0 comments

I built a music suite to replace five apps, all in one and free (Tauri/Rust)

https://github.com/EgleAudioSuite/egle/releases/tag/v1.1.0
2•EgleAudio•49m ago•0 comments

Show HN: I created a RAW to HDRI stacker in (mostly) Common Lisp

https://github.com/IBL-tools/rawtohdri
3•aaronestrada•49m ago•0 comments

Microsoft wants users to be addicted to Scout, their AI personal assistant

https://disassociated.com/microsoft-users-addicted-ai-personal-assistant/
13•berlianta•54m ago•11 comments

A floating solar plant using vertical panels

https://www.vozpopuli.com/indux/en/a-floating-solar-plant-using-vertical-panels-is-flipping-the-u...
3•e2e4•54m ago•1 comments

HRM-Text: Efficient Pretraining Beyond Scaling

https://arxiv.org/abs/2605.20613
2•cubefox•54m ago•0 comments

A Framework for Confident Model Migration in Production Systems

https://arxiv.org/abs/2604.27082
1•PaulHoule•56m ago•0 comments

Hermes Agent – Open-Source AI Agent with Persistent Memory

https://hermes-agent.org/
3•SeriousM•57m 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.