frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Solving the Partridge square packing problem using MiniZinc

https://zayenz.se/blog/post/partridge-packing/
1•fanf2•21s ago•0 comments

AGI is not possible even in 10 years

https://medium.com/@anwarzaid76/agi-is-not-possible-even-in-10-years-013a1aec0d9c
1•MindBreaker2605•3m ago•0 comments

Apple's 1976 formation papers could fetch $4M at auction

https://appleinsider.com/articles/25/11/26/apples-1976-formation-papers-could-fetch-4-million-at-...
1•giuliomagnifico•5m ago•0 comments

Hachi: An (Image) Search Engine

https://eagledot.xyz/hachi.md.html
1•warangal•7m ago•0 comments

What to Buy That Improves Quality of Life

https://www.developing.dev/p/what-to-buy-that-improves-quality
1•skadamat•9m ago•0 comments

Can Vibe Coding Beat Graduate CS Students? An LLM vs. Human Coding Tournament

https://arxiv.org/abs/2511.20613
1•geox•9m ago•0 comments

Haskell Weekly – Issue 500

https://haskellweekly.news/issue/500.html
1•amalinovic•9m ago•0 comments

Shahed-107 UAV Components

https://war-sanctions.gur.gov.ua/en/page-shahed-107
1•IndrekR•13m ago•0 comments

Ask HN: How to Find Investors?

3•karanveer•17m ago•0 comments

Tiny tweak for Pi OS, big makeover for the Imager

https://www.theregister.com/2025/11/27/new_raspberry_pi_imager/
1•rbanffy•17m ago•0 comments

Can you share how your team handles FinOps and cloud cost optimization?

https://qualtricsxm6y7fnpxlk.qualtrics.com/jfe/form/SV_3t9duUd1bWwJrn0
1•avinashgaurav_•20m ago•1 comments

CIA Menu Collection

http://ciadigitalcollections.culinary.edu/digital/collection/p16940coll1/search
3•pseudolus•20m ago•0 comments

Ask HN: Would you use a fast/cheap "prior art" service instead of a patent?

1•shaheeniquebal•21m ago•0 comments

R.O.B. Robotic Operating Buddy

https://en.wikipedia.org/wiki/R.O.B.
2•debo_•21m ago•0 comments

There's still no free lunch in information retrieval

https://www.getbluemorpho.com/blog/there-s-still-no-free-lunch-in-information-retrieval
1•matthieu_bl•23m ago•0 comments

Super-recognizers sample visual information for facial recognition

https://royalsocietypublishing.org/doi/10.1098/rspb.2025.2005
2•mfld•27m ago•0 comments

Rust

https://en.wikipedia.org/wiki/Rust_(video_game)
1•tosh•29m ago•0 comments

Docker Superpowers You Forget to Use

https://oneuptime.com/blog/post/2025-11-27-ten-docker-superpowers-youre-probably-not-using/view
5•ndhandala•35m ago•0 comments

Show HN: Ioc-Arise

https://ioc-arise.notjustcoders.com/
1•stormsidali2001•35m ago•0 comments

Cross ratio to define a metric on the hyperbolic plane

https://www.johndcook.com/blog/2025/11/26/hyperbolic-metric/
1•ibobev•35m ago•0 comments

OBR calls in cyber expert over botched release of Budget analysis

https://www.bbc.co.uk/news/articles/cgmn991pz9jo
2•adrianhon•36m ago•1 comments

Hey there You are using WhatsApp: Enumerating Three Billion Accounts [pdf]

https://github.com/sbaresearch/whatsapp-census/blob/main/Hey_there_You_are_using_WhatsApp.pdf
2•miniBill•36m ago•0 comments

Brief thoughts on the recent Cloudflare outage

https://surfingcomplexity.blog/2025/11/26/brief-thoughts-on-the-recent-cloudflare-outage/
1•gpi•39m ago•0 comments

Implementing Drift Search with Neo4j and LlamaIndex

https://neo4j.com/blog/developer/drift-search-with-neo4j-and-llamaindex/
1•tsenturk•39m ago•0 comments

China launches an emergency lifeboat to bring three astronauts back to Earth

https://arstechnica.com/space/2025/11/china-launches-an-emergency-lifeboat-to-bring-three-astrona...
1•taubek•45m ago•0 comments

Ask HN: To Bring your project in front of 4000 people, how much should I charge?

1•karanveer•46m ago•0 comments

I Made Playing Cards to Teach English

https://landenlove.xyz/i-made-playing-cards-to-teach-english/
2•LandenLove•46m ago•4 comments

We are all mosaics: genetic diversity found between cells in a single person

https://www.nature.com/articles/d41586-025-03768-0
5•bookofjoe•47m ago•1 comments

Managing Side Effects: A JavaScript Effect System in 30 Lines or Less

https://lackofimagination.org/2025/11/managing-side-effects-a-javascript-effect-system-in-30-line...
1•birdculture•49m ago•0 comments

Books by Bitfield Consulting

https://bitfieldconsulting.com/books
2•chautumn•50m 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•7mo ago

Comments

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

https://reportmill.com/SnapCode

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