frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: An index of indie web/blog indexes

https://theindex.fyi
1•rocketpastsix•1m ago•0 comments

Sum-Check as an Algebraic Tensor Reduction: Part II

https://blog.zksecurity.xyz/posts/tensor-reductions-2/
2•marcobesier•4m ago•0 comments

Flu a and B Viral Shedding in Adults Who Get Live Attenuated Flu Vax

https://academic.oup.com/cid/advance-article/doi/10.1093/cid/ciag294/8672548
1•susiecambria•4m ago•0 comments

Wonky Software Supply Chains

https://simonramstedt.com/blog/2026-04-09-wonky-software-supply-chains/
1•rmst•4m ago•0 comments

Global reorganization of genome architecture at the transition to gametogenesis

https://www.nature.com/articles/s41594-026-01747-1
1•bookofjoe•6m ago•0 comments

Executable notebook for testing earthquake-event concentration (Colab)

https://colab.research.google.com/drive/1tDXBOOZAhngHJDXj_ZPmW2kcF7_Ysg0-
1•hiroakiaizawa•6m ago•1 comments

Anthropic and OpenAI are launching joint ventures for enterprise AI services

https://techcrunch.com/2026/05/04/anthropic-and-openai-are-both-launching-joint-ventures-for-ente...
1•gmays•7m ago•0 comments

Claude Code edits YouTube videos

https://blog.bunnyhoneyclub.com/posts/claude-code-video-editing-youtube
1•shadowinbox•8m ago•0 comments

Why Dunkin' Failed in India

https://timesofindia.indiatimes.com/life-style/food-news/why-dunkin-failed-in-india/articleshow/1...
1•HR01•8m ago•0 comments

Brain scans reveal a difference between psychopaths and other people

https://www.sciencedaily.com/releases/2026/05/260510030946.htm
1•Noaidi•11m ago•1 comments

Let's Build a Compiler

https://compilers.iecc.com/crenshaw/
1•tosh•13m ago•0 comments

Only one of Berkshire Hathaway and SoftBank can survive

https://www.economist.com/business/2026/05/06/only-one-of-berkshire-hathaway-and-softbank-can-sur...
3•1vuio0pswjnm7•17m ago•1 comments

Language is primarily a tool for communication rather than thought [pdf]

https://colala.berkeley.edu/papers/fedorenko2024language.pdf
1•pythonic_hell•17m ago•1 comments

LUKSbox – Store sensitive files in the cloud without trusting the host

https://github.com/PentHertz/LUKSbox
1•danborn26•19m ago•0 comments

AI Gilfoyle

1•peterpommes•21m ago•0 comments

DuckDB-Delta Grows Up: Writes, Unity Catalog and Time Travel

https://duckdb.org/2026/05/07/delta-uc-updates
2•szarnyasg•22m ago•0 comments

Suits in 5 Nations Allege Apple Quashed "Watch Room" Competition

https://www.law.com/2026/05/08/suits-in-5-nations-allege-apple-quashed-watch-room-competition/
1•1vuio0pswjnm7•22m ago•0 comments

Accessibility of date formats (and superiority of YYYY-MM-DD)

https://mina86.com/2026/on-a11y-of-date-formats/
1•OuterVale•22m ago•0 comments

Trying a few ideas with rust and Python

https://github.com/KevinKenya/nairobi-connector-open-source/tree/main
1•kevinkenya•24m ago•1 comments

FCC Proposes Requiring Government-Issued ID for Phone Service [pdf]

https://docs.fcc.gov/public/attachments/DOC-421309A1.pdf
1•diogenes_atx•27m ago•1 comments

In search of wasted bits: how much information do LLM weights carry?

https://fergusfinn.com/blog/weight-entropy/
1•gmays•27m ago•0 comments

Sql2md – Zero-dependency SQL to Markdown converter (open source)

https://github.com/hyperbob/sql2md
1•sqlfans_qmejpi•29m ago•0 comments

Become the Place People Follow

https://www.researchterminal.ai
2•ipachanga•29m ago•0 comments

Rprom 7-fold Amiga 500/600/2000 from 6a/4.3 Kickstart Switcher configurable

https://www.retrobuddys.com/en/shop/amiga-hw-mods/amiga-2000-en/rprom-7-fold-amiga-500-600-2000-f...
1•doener•31m ago•0 comments

Show HN: I made an AI tool to keep my browser tabs clean

https://www.uncluttr.net
1•Nair0•36m ago•0 comments

Pinball Dreams

https://en.wikipedia.org/wiki/Pinball_Dreams
1•doener•36m ago•0 comments

The mangled remains of probes sent to Venus may still be there

https://www.scientificamerican.com/article/the-mangled-remains-of-probes-sent-to-venus-may-still-...
2•beardyw•37m ago•0 comments

Pentagon Wants Innovation. Small Businesses Want to Deliver. What's the Problem?

https://www.inc.com/issie-lapowsky/pentagon-wants-innovation-small-nimble-businesses-want-to-deli...
1•malloryerik•37m ago•0 comments

Do you take after your dad's RNA?

https://knowablemagazine.org/content/article/living-world/2026/epigenetic-effects-of-sperm-on-off...
2•Brajeshwar•38m ago•0 comments

Malware Found in Trending Hugging Face Repository "Open-OSS/Privacy-Filter"

https://www.hiddenlayer.com/research/malware-found-in-trending-hugging-face-repository-open-oss-p...
1•aa_is_op•40m 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.