frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Store speed and conversion: what the data shows

https://www.shopify.com/enterprise/blog/store-speed-conversion
1•mxstbr•53s ago•0 comments

Ask HN: Annoyed with managing i3/tmux/vim. What can I do better?

1•madewithdrama•2m ago•0 comments

Ask HN: Where is my UX after all those billions spent on LLM codegen?

2•tzury•9m ago•1 comments

The Psychology of Human Misjudgment (2005) [pdf]

http://web.archive.org/web/20151004200748/http://law.indiana.edu/instruction/profession/doc/16_1.pdf
1•downbad_•9m ago•1 comments

The open standard for agent readiness

https://www.agentready.org/
1•geueuudyhdwj•9m ago•0 comments

ICANN opens applications for new generic top-level domains first time since 2012

https://www.theregister.com/2026/05/01/icann_new_gtld_applications/
2•Bender•10m ago•0 comments

The Persian Polycrisis

https://thehonestsorcerer.substack.com/p/the-persian-polycrisis
1•OgsyedIE•10m ago•0 comments

Women sue the men who used their Instagram feeds to create AI porn influencers

https://www.wired.com/story/ai-porn-lawsuit-arizona/
2•Bender•11m ago•0 comments

Minnesota passes ban on fake AI nudes; app makers risk $500K fines

https://arstechnica.com/tech-policy/2026/05/minnesota-set-to-be-first-state-to-ban-nudification-a...
2•Bender•12m ago•0 comments

WolfCOSE vs. the Field: The Smallest, Most Complete COSE Implementation

https://aidangarske.github.io/wolfCOSE/blog/wolfcose-vs-the-field/
1•aidangarske•12m ago•1 comments

Fredis: A simple in-memory Redis compatible server in Rust

https://gitlab.com/foscogab/fredis
1•gfosco•16m ago•1 comments

AI as Infrastructure

https://cunderwood.dev/2026/05/01/ai-as-infrastructure/
2•speckx•16m ago•0 comments

How to speed up clinical trials (Works in Progress Podcast)

https://podcasts.apple.com/us/podcast/how-to-speed-up-clinical-trials/id1819488714?i=1000763007270
2•marojejian•17m ago•1 comments

Top AI companies agree to work with Pentagon on secret data

https://www.washingtonpost.com/technology/2026/05/01/pentagon-ai-deals-microsoft-amazon-google-cl...
1•geox•18m ago•0 comments

Musk Warns of Killer AI, While He and Silicon Valley Cash in on AI That Kills

https://theintercept.com/2026/05/01/elon-musk-openai-lawsuit-trial/
2•cdrnsf•18m ago•0 comments

The California Government Is Coming for Your E-Bikes

https://sfstandard.com/2026/04/30/e-bike-regulation-license-plates-laws-dmv/
3•m463•19m ago•0 comments

Using "underdrawings" for accurate text and numbers

https://samcollins.blog/underdrawings/
4•samcollins•20m ago•1 comments

Claude Code can now /perceive

https://github.com/machinepulse-ai/world2agent
2•WayLonWen•20m ago•0 comments

An Interview with Josh Fisher – Inventing VLIW, Multiflow, Itanium [video]

https://www.youtube.com/watch?v=ZF8ohzWmuzI
1•dataviz1000•23m ago•0 comments

Show HN: Blotter, a live map of police radio activity

https://blotter.fm
1•s_e__a___n•24m ago•1 comments

Andrej Karpathy's Sequoia talk, I agree with most but not this

https://twitter.com/xing101/status/2050271353983598630
4•xingwu•25m ago•2 comments

Show HN: BeautyShot – easy macOS promo screenshots

https://bendansby.com/apps/beautyshot/
1•webwielder2•25m ago•0 comments

Farrell vs. LinkedIn Corporation 4:26-CV-02953-KAW (ND Cal Apr 6, 2026) [pdf]

https://ia601503.us.archive.org/33/items/gov.uscourts.cand.467271/gov.uscourts.cand.467271.1.0.pdf
1•1vuio0pswjnm7•26m ago•0 comments

LLM-eval-kit: Distributed LLM evaluation framework (v0.3.0)

https://github.com/benmeryem-tech/llm-eval-kit
1•benmeryem_ai•28m ago•0 comments

Achi RPC: An RPC library for workers on the web and node JavaScript

https://www.npmjs.com/package/achi-rpc
1•stiles11•29m ago•0 comments

"I suck" -theprimeagen [video]

https://www.youtube.com/watch?v=V-ZvAw_VNk4
1•eamag•30m ago•0 comments

Ganglion: Hostile-network reachability for robot fleets, built on libp2p

https://github.com/TafyLabs/ganglion
1•karma0•31m ago•1 comments

Y Combinator alum Skio sells for $105M cash, only raised $8M, founder says

https://techcrunch.com/2026/04/30/y-combinator-alum-skio-sells-for-105m-cash-only-raised-8m-found...
3•Brajeshwar•34m ago•0 comments

TypeKro: Write TypeScript. Deploy Kubernetes

https://typekro.run
3•ManWith2Plans•35m ago•0 comments

Pentagon reaches agreements with top AI companies, but not Anthropic

https://www.reuters.com/business/retail-consumer/pentagon-reaches-agreements-with-leading-ai-comp...
2•mikhael•39m 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.