frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Performance of LLMs on Advent of Code 2024

https://www.jerpint.io/blog/2024-12-30-advent-of-code-llms/
1•ingve•1m ago•0 comments

Exercise Added to Standard Care Promising for Adult ADHD

https://www.medscape.com/viewarticle/exercise-added-standard-care-promising-adult-adhd-2025a1000woc
1•wjb3•3m ago•1 comments

Effective Altruists Use Threats and Harassment to Silence Their Critics

https://www.realtimetechpocalypse.com/p/how-effective-altruists-use-threats
1•konmok•4m ago•1 comments

A pretty good email scam

https://cassidoo.co/post/email-settings-scam/
1•cassidoo•8m ago•0 comments

I applied 14 physics laws to computing – here's what happened – Humotica

https://www.humotica.com
1•jaspertvdm•9m ago•0 comments

FDA: Qualified Health Claim for Yogurt and Reduced Risk of Type 2 Diabetes

https://www.fda.gov/food/hfp-constituent-updates/fda-announces-qualified-health-claim-yogurt-and-...
1•wjb3•13m ago•2 comments

Free yourself from the Spotify desktop client with spotifyd

https://jonathanchang.org/blog/setting-up-spotifyd-on-macos/
1•fanf2•13m ago•0 comments

The wild and lucrative world of live stream sellers

https://www.businessinsider.com/live-selling-streaming-tiktok-whatnot-palmstreet-ecommerce-entrep...
1•geox•13m ago•0 comments

Will Psilocybin Have Its Day in Clinical Psychiatry?

https://www.medscape.com/viewarticle/will-psilocybin-finally-have-its-day-clinical-psychiatry-202...
1•wjb3•15m ago•0 comments

Building the Perfect Linux PC with Linus Torvalds

https://youtu.be/mfv0V1SxbNA
2•geerlingguy•15m ago•0 comments

AoC is starting! This project will help you bootstrap in C++

https://github.com/jphjsoares/aoc-cpp-template
1•unkn0wnUlv•20m ago•0 comments

Write Your Own Obituary – Then live up to it

https://jeffreylminch.substack.com/p/write-your-own-obituary
1•rmason•22m ago•0 comments

Google Starts Sharing All Your Text Messages with Your Employer

https://www.forbes.com/sites/zakdoffman/2025/11/30/google-starts-sharing-all-your-text-messages-w...
4•healsdata•23m ago•0 comments

Ty

https://docs.astral.sh/ty/
1•dvrp•24m ago•0 comments

Show HN: Tracktrip, Travel Expense Tracker

https://tracktrip.app/
1•fuegoio•25m ago•1 comments

The Fundamental Theorem of System Architecture and Change Management

https://pastebin.com/P14SUSFm
1•d4rkn0d3z•25m ago•0 comments

Pentagon's social media rules can't keep up with viral military influencers

https://www.businessinsider.com/military-influencers-social-media-pentagon-ethics-policy-gray-are...
2•gnabgib•25m ago•0 comments

Stackoverflow Is Down

https://stackoverflow.com/
1•ahmetozer•27m ago•0 comments

Be Nice to Recruiters

https://natashajaffe.substack.com/p/be-nice-to-recruiters
2•mooreds•29m ago•0 comments

Europe's water reserves drying up due to climate breakdown

https://www.theguardian.com/environment/2025/nov/29/climate-crisis-depleting-europe-groundwater-r...
4•mooreds•30m ago•0 comments

Stackoverflow Outage

https://www.stackstatus.net/
4•ga_to•31m ago•0 comments

Wikifunctions

https://www.wikifunctions.org/wiki/Wikifunctions:Catalogue
2•3rd3•32m ago•0 comments

The Enforced Conformity

https://smartmic.bearblog.dev/enforced-conformity/
1•smartmic•32m ago•0 comments

Online Documentation for Qt 6, KDE Frameworks, etc. for C and Zig

https://gist.github.com/rcalixte/63757948a7bf4190b469ff09c5ad7a67
1•rcalixte•34m ago•0 comments

How to Learn Something New

https://newsletter.bphogan.com/archive/issue-47-a-personal-learning-plan/
1•mooreds•35m ago•0 comments

Foundry IQ: a knowledge layer for agents

https://techcommunity.microsoft.com/blog/azure-ai-foundry-blog/foundry-iq-unlocking-ubiquitous-kn...
2•pmc00•36m ago•0 comments

Tell HN: Taking a Time Capsule Through HN

1•chistev•36m ago•0 comments

Husband and wife accused of using spycam and earpieces to win almost £600k at

https://www.bbc.co.uk/news/articles/c075zd0j2j3o
3•chrisjj•41m ago•2 comments

Aristotle from Harmonic has solved this Erdos problem

https://www.erdosproblems.com/forum/thread/124#post-1892
1•cjbarber•41m ago•0 comments

Git Your Freedom Back: A Beginner's Guide to Sourcehut

https://btxx.org/posts/beginners-guide-sourcehut/
1•zdw•46m 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.