frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Unpatched vuln in RAGFlow allows for post-auth RCE

https://zeropath.com/blog/ragflow-rce-unpatched-vulnerability
1•NonStopOyster•28s ago•0 comments

Does Trump think he's God?

https://www.taxresearch.org.uk/Blog/2026/04/13/does-trump-think-hes-god/
1•only_in_america•1m ago•0 comments

Tell HN: Claude-code prompt-cache fix

1•g4cg54g54•2m ago•0 comments

Gas Town Notes and Spaced Repetition Prompts

https://www.meadow-notes.com/sites/v5v5wwby974a-gas-town-vGEa1tk/gt/Gas%20Town.html
1•gmccreight2•3m ago•1 comments

What Now (and What's Next)

https://www.strix.ai/blog/your-first-visitors-arent-users-theyre-bots
2•bearsyankees•4m ago•0 comments

The GPU Moat Has a Side Door: AI Research Outside the Frontier Labs

https://mangeshgupte.substack.com/p/the-gpu-moat-has-a-side-door
1•achllies•4m ago•0 comments

Agentic Search Leaderboard

https://www.algolia.com/llm-leaderboard/
1•matthieu_bl•6m ago•0 comments

Artemis II Is Back

1•anju-kushwaha•8m ago•0 comments

Did you notice the command error exit in the shell?

https://monzool.net/blog/2026/04/10/error-banner-in-shell/
1•birdculture•9m ago•0 comments

Beyond the Sky: How Jeffery Yan built Hyperliquid

https://colossus.com/article/beyond-the-sky-jeffrey-yan-hyperliquid/
1•firloop•9m ago•0 comments

Show HN: Turn Text into Beautiful Font

https://fontgeneratorx.com/
2•artiomyak•9m ago•0 comments

Cognitive science can help us design better software – CogZest

https://cogzest.com/2026/04/how-cognitive-science-can-help-us-design-better-software/
1•LucCogZest•12m ago•0 comments

137-Year-Old Piece of Eiffel Tower to Be Auctioned in Paris

https://www.nytimes.com/2026/04/09/world/europe/eiffel-tower-auction.html
1•paulpauper•12m ago•0 comments

Show HN: A Chatting Website That Uses Nostr

https://inbondz-chat.pages.dev
1•wasimsk•12m ago•1 comments

The Effects of Gender Integration on Men: Evidence from the U.S. Military

https://academic.oup.com/qje/advance-article/doi/10.1093/qje/qjag016/8551347?login=false
2•paulpauper•12m ago•0 comments

Show HN: Bloomberg Terminal for LLM ops – free and open source

2•amans9712•13m ago•0 comments

What explains heterogeneity in AI adoption?

https://www.siliconcontinent.com/p/what-explains-heterogeneity-in-ai
1•paulpauper•13m ago•0 comments

Draining Wallets via Prompt Injection in Coinbase AgentKit

https://457e884c.x402warden-blog.pages.dev/research/coinbase-agentkit-prompt-injection/
1•xxmrlnxx•15m ago•0 comments

The Process Is the Product

https://tylermaran.substack.com/p/the-process-is-the-product
1•themanmaran•15m ago•0 comments

The Rational Conclusion of Doomerism Is Violence

https://www.campbellramble.ai/p/the-rational-conclusion
5•thedudeabides5•16m ago•1 comments

Average Is All You Need

https://rawquery.dev/blog/average-is-all-you-need
1•AlexC04•16m ago•0 comments

Multiplicity

https://m-u-l-t-i-p-l-i-c-i-t-y.org/
1•marukodo•17m ago•0 comments

Consensus Formation and Change Are Enhanced by Neutrality

https://advanced.onlinelibrary.wiley.com/doi/10.1002/advs.202512301
1•PaulHoule•17m ago•0 comments

Warp DB

https://warp.thegeeksquad.io/
1•thunderbong•18m ago•0 comments

Gram 1.0 Released

https://gram.liten.app/posts/first-release/
1•DiabloD3•18m ago•0 comments

I Built an Autonomous Flying Umbrella [video]

https://www.youtube.com/watch?v=EYRrUiM_A6g
2•CharlesW•18m ago•0 comments

Show HN: Mcptube – Karpathy's LLM Wiki idea applied to YouTube videos

https://github.com/0xchamin/mcptube
1•0xchamin•19m ago•0 comments

Hermes Agent (by Nous Hermes) quickly ranked #1 on OpenRouter

https://twitter.com/Teknium/status/2043122514986139763
1•larodi•19m ago•1 comments

After Criticizing Pope, Trump Posts Image of Himself as a Jesus-Like Figure

https://www.nytimes.com/2026/04/13/us/politics/trump-jesus-pope-leo-truth-social-post.html
2•treetalker•20m ago•2 comments

Texas Tech cancels academic programs "centered on" sexual orientation, gender

https://www.texastribune.org/2026/04/10/texas-tech-ban-gender-identity-sexual-orientation-academics/
2•hn_acker•21m ago•1 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•11mo ago

Comments

palata•11mo 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•11mo 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•11mo 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•11mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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.