frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Canada launched its local alternative to PayPal

https://konek.ca/en/
1•dgudkov•1m ago•0 comments

Why Movies Just Don't Feel "Real" Anymore

https://www.youtube.com/watch?v=tvwPKBXEOKE
2•doener•2m ago•0 comments

Email: FTC Prime Subscription Settlement Fund has sent you $0.99 USD

1•denuoweb•4m ago•0 comments

Ask HN: Low hanging fruit projects for gaining open source clout

1•fud101•5m ago•0 comments

Russia Outproduces NATO: A Forensic Investigation

https://aaronlee.substack.com/p/russias-total-victory-over-nato-all
2•aajailee•6m ago•0 comments

Visual Thought AGI Blueprint 424 pages

https://visualthoughtagi.com
1•user2342ca•12m ago•0 comments

Choosing a vector database for ANN search at Reddit

https://old.reddit.com/r/RedditEng/comments/1ozxnjc/choosing_a_vector_database_for_ann_search_at/
2•jonbaer•19m ago•0 comments

Billionaire warns 'last time to buy' as Bitcoin crashes

https://finance.yahoo.com/news/billionaire-warns-last-time-buy-172037475.html
1•MarcoDewey•20m ago•0 comments

Valar Atomics Says It's the First Nuclear Startup to Achieve Criticality

https://www.wired.com/story/valar-atomics-says-its-the-first-nuclear-startup-to-achieve-criticality/
2•MarcoDewey•23m ago•0 comments

Intuit signs $100M+ deal with OpenAI to bring its apps to ChatGPT

https://techcrunch.com/2025/11/18/intuit-signs-100m-deal-with-openai-to-bring-its-apps-to-chatgpt/
5•jimt1234•31m ago•1 comments

Crypto Could Trigger the Next Financial Crisis

https://www.theatlantic.com/ideas/2025/11/cryptocurrency-economy-financial-crisis/684960/
3•JumpCrisscross•36m ago•0 comments

Loose wire on ship may have led to Baltimore Key Bridge collision and collapse

https://www.cbsnews.com/baltimore/news/ntsb-key-bridge-collapse-probable-cause-dali-maryland/
3•1659447091•39m ago•0 comments

Crypto got everything it wanted. Now it's sinking.

https://www.economist.com/finance-and-economics/2025/11/18/crypto-got-everything-it-wanted-now-it...
4•petethomas•41m ago•0 comments

How the $128M Balancer Exploit Happened

https://harrydonnelly.substack.com/p/how-the-128m-balancer-exploit-happened
1•gowthamhn10•44m ago•0 comments

Show HN: Startup Simulator

https://startup-simulator-phi.vercel.app/
1•paperplaneflyr•47m ago•0 comments

Startup Mode Engineering

https://moduloware.ai/blog/engineering-approach-startup-mode-vs-big-tech-mode/
1•zuzuen_1•49m ago•0 comments

New method spots signs of Earth's primordial life in ancient rocks

https://www.reuters.com/science/new-method-spots-signs-earths-primordial-life-ancient-rocks-2025-...
2•c420•49m ago•0 comments

Baby Shark: How a 90-second clip created a $400M business

https://www.bbc.com/news/articles/cn8xzgw623go
4•RickJWagner•50m ago•1 comments

The Hot New Dubai Restaurant Run by an AI Chef

https://www.bloomberg.com/news/articles/2025-11-18/dubai-s-hottest-new-restaurant-woohoo-is-run-b...
1•petethomas•55m ago•0 comments

Meth Rx

https://desoxyn.com/
3•brianhama•58m ago•2 comments

Honest Take on Amazon Layoffs

https://old.reddit.com/r/amazonemployees/comments/1ox0zwj/honest_take_on_layoffs
6•gpi•1h ago•0 comments

Don't Refactor Like Uncle Bob (Second Edition)

https://theaxolot.wordpress.com/2025/11/18/dont-refactor-like-uncle-bob-second-edition/
1•Axol•1h ago•0 comments

Max Out Your 401k

https://awealthofcommonsense.com/2025/11/max-out-your-401k/
2•raw_anon_1111•1h ago•0 comments

Top 200 Most Common Passwords 2025

https://nordpass.com/most-common-passwords-list/
5•ChrisArchitect•1h ago•0 comments

Valar Atomics: First Startup to Split Atom in Cold Criticality Test

https://news.ycombinator.com/from?site=twitter.com/isaiah_p_taylor
1•mariecurie•1h ago•1 comments

AWS announces flat-rate pricing plans for website delivery and security

https://aws.amazon.com/about-aws/whats-new/2025/11/aws-flat-rate-pricing-plans/
10•arkon_hn•1h ago•6 comments

Game Boy Advance SP with 162Wh Replaceable Battery

https://old.reddit.com/r/Gameboy/comments/1oiwk9g/gba_sp_with_162000mwh_replaceable_battery/
2•gnabgib•1h ago•0 comments

Zoomers are officially worse at passwords than 80-year-olds

https://www.theregister.com/2025/11/18/zoomer_passwords/
7•pseudolus•1h ago•2 comments

Middle-class pulls back, alarming retailers: 'signs of real distress'

https://www.businessinsider.com/middle-class-shoppers-pull-back-warning-signs-economy-home-depot-...
8•zerosizedweasle•1h ago•0 comments

SupaPwn: Hacking Our Way into Lovable's Office and Helping Secure Supabase

https://www.youtube.com/watch?v=jAWDq6bSOBw
3•zeyu1337•1h 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•6mo ago

Comments

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

https://reportmill.com/SnapCode

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