frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ForgeLite-The Most Minimalized Git

1•david3289•39s ago•0 comments

I made this word find game

https://word.1200tech.com
1•bosco_camera•3m ago•0 comments

Tokenomics: Quantifying Where Tokens Are Used in Agentic Software Engineering

https://arxiv.org/abs/2601.14470
1•Anon84•3m ago•0 comments

Gaia2: Benchmarking LLM Agents on Dynamic and Asynchronous Environments

https://arxiv.org/abs/2602.11964
1•Anon84•4m ago•0 comments

Bitcoin is cratering, but there is a new Wall Street crypto HYPE

https://www.cnbc.com/2026/06/06/bitcoin-price-crash-crypto-hype-hyperliquid-etfs.html
2•KnuthIsGod•8m ago•0 comments

HateArena – A free and open source arena shooter

https://github.com/hatearena/hate
3•death_eternal•14m ago•0 comments

Ask HN: Where do you get the latest updates about AI?

2•d0able•15m ago•1 comments

An Ohio Valley 100k-Watt FM Signal Is Severed in Broad Daylight – Radio World

https://www.radioworld.com/news-and-business/headlines/an-ohio-valley-100000-watt-fm-signal-is-se...
2•pkaeding•16m ago•0 comments

ICE detainees across the US describe medical neglect

https://apnews.com/article/ice-immigration-detention-medical-neglect-dhs-32c3fbeef0c44dfb02fcab89...
2•petethomas•20m ago•0 comments

Super El Niño Events

https://en.wikipedia.org/wiki/Super_El_Ni%C3%B1o_events
2•rolph•22m ago•0 comments

When Can Amazon Block an Agentic AI Service?–Amazon vs. Perplexity

https://blog.ericgoldman.org/archives/2026/06/when-can-amazon-block-an-agentic-ai-service-amazon-...
3•HotGarbage•22m ago•0 comments

Passing DBs Through Continuations

https://remy.wang/blog/cps.html
2•remywang•22m ago•0 comments

Complete Guide to Everything El Niño

https://weather.com/science/weather-explainers/news/2026-02-19-el-nino-la-nina-neutral-enso-pacif...
2•rolph•23m ago•0 comments

Deepfake Detector Robustness Testing

https://huggingface.co/datasets/danb21/social-media-robustness-sdxl-instantid
2•danbabalola•27m ago•1 comments

Show HN: Word-by-word translation aligner tool

https://aligner.tinygods.dev/
2•danipolani•30m ago•0 comments

ChatGPT hallucinating images when asked to restore non existent photo

https://twitter.com/penguinweb3/status/2063196355011424582
3•blumomo•32m ago•0 comments

Ultra-High-Speed Cutting for High-Performance Difficult-to-Machine Composites

https://www.mdpi.com/2075-1702/14/5/468
2•PaulHoule•32m ago•0 comments

FreeBSD 15.1 Delayed to Mid-June Due to Critical x86 Bug Fixes

https://www.phoronix.com/news/FreeBSD_15.1-RC3-Released
3•daesorin•37m ago•0 comments

I don't like computer anymore. [video]

https://www.instagram.com/reel/DZGC6EChvGK/
2•mastazi•40m ago•0 comments

AI Criticism

https://dennisforbes.ca/blog/microblog/2026/06/on_ai_criticism/
2•llm_nerd•43m ago•0 comments

Show HN: DomainTasker – avoid losing domains and surprise renewals

https://domaintasker.com/
7•si_164•50m ago•3 comments

Armed Forces Recipe Service [pdf]

https://www.marines.mil/portals/1/Publications/MCO%20P10110.42B.pdf
2•kmstout•51m ago•1 comments

The Guix Nix Abomination: Leveraging Guix Derivations in Nix

https://fzakaria.com/2026/06/05/the-guix-nix-abomination-leveraging-guix-derivations-in-nix
3•dagenix•1h ago•0 comments

Show HN: Persist – an AI agent that follows up accrued channels till they reply

https://persist.chat
3•Robelk1•1h ago•1 comments

CS Trivia: computer science crosswords

https://cstrivia.com/
2•bluejulius•1h ago•1 comments

A modular impact diverting mechanism for football helmets [pdf]

https://www.sfu.ca/~gwa5/pdf/2020_04.pdf
3•luu•1h ago•0 comments

Is AI Anxiety Causing the Vibecession? An Investigation

https://kevinonthemargin.com/is-ai-anxiety-causing-the-vibecession-an-investigation/
2•m-hodges•1h ago•0 comments

Up-to-Date Evidence Reviews of Health and Longevity Interventions

https://evipedia.ai/
2•negura•1h ago•0 comments

Public Domain Image Archive

https://pdimagearchive.org/
10•davidbarker•1h ago•1 comments

Immortality

https://aabiji.github.io/html/immortality.html
4•aabiji•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.