frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

There's a Good Reason You Can't Concentrate

https://www.nytimes.com/2026/03/27/opinion/technology-mental-fitness-cognitive.html
1•saikatsg•8m ago•0 comments

Show HN: I built a substrate with no AI inside that discovers software by itself

https://pastebin.com/54QhPiwZ
1•promptfluid•11m ago•1 comments

I Built CLI for Bullmq

https://github.com/quanghuynt14/bullmq-dash
1•quanghuynt14•15m ago•0 comments

Is Systemd Bloat Real? Dinit vs. Systemd: Which Session Uses Less Memory?

https://grigio.org/is-systemd-bloat-real-dinit-vs-systemd-which-session-uses-less-memory-with-labwc/
1•grigio•20m ago•0 comments

The Future of Text Layout Is Not CSS

https://twitter.com/_chenglou/status/2037713766205608234
1•california-og•25m ago•1 comments

How Accurate is this? [No Access to X:(]

https://twitter.com/CLG98264897/status/2037312460433109106
1•SilentM68•26m ago•0 comments

While one partner sleeps, another vibe codes

https://www.businessinsider.com/claude-gap-relationship-vibe-code-couples-2026-3
1•mlaretallack•29m ago•0 comments

The United States is driving a public health emergency of international concern

https://www.bmj.com/content/392/bmj-2026-089474
2•KnuthIsGod•33m ago•0 comments

EU Commission, Enisa, and DG Digital Services Breached by ShinyHunters

https://twitter.com/IntCyberDigest/status/2038038430752374888
1•CountGeek•33m ago•0 comments

Why question-space can't be baked into LLM weights (preprint)

https://zenodo.org/records/19305025
2•h_hasegawa•37m ago•1 comments

Narcissistic grandiosity predicts greater involvement in LGBTQ activism

https://www.psypost.org/narcissistic-grandiosity-predicts-greater-involvement-in-lgbtq-activism/
1•Tomte•38m ago•0 comments

Zuck's obsession with VR lost him AI leadership

https://twitter.com/futurejurvetson/status/2037925810208960965
1•MrBuddyCasino•40m ago•0 comments

Former NJ AG's Firm Challenges Big Tech's 'Profit Ahead of Public Safety' Ethos

https://www.law.com/therecorder/2026/03/20/openai-targeted-as-former-new-jersey-ags-new-firm-chal...
1•1vuio0pswjnm7•44m ago•0 comments

Disgraced fraudster Elizabeth Holmes caught a break; prosecutors aren't happy

https://nypost.com/2026/03/27/business/disgraced-theranos-fraudster-elizabeth-holmes-just-caught-...
3•1vuio0pswjnm7•57m ago•0 comments

Whats the most surprising business process you've automated with OpenClaw?

1•dhruvkar•1h ago•0 comments

List of Common Misconceptions

https://en.wikipedia.org/wiki/List_of_common_misconceptions
4•thedrexster•1h ago•0 comments

Human brain operates near, but not at, the critical point

https://phys.org/news/2026-03-human-brain-critical.html
2•yoquan•1h ago•0 comments

Fedora 44 will automatically make your Windows games run faster

https://www.xda-developers.com/fedora-44-will-automatically-make-your-windows-games-run-faster-no...
2•Alupis•1h ago•0 comments

WTO reforms talks stalled amid U.S.-India digital services taxation deadlock

https://www.reuters.com/world/india/wto-talks-stalled-going-into-final-day-amid-us-india-e-commer...
2•alephnerd•1h ago•0 comments

Hertz and Hearts – PC HRV biofeedback for chest-strap ECG (OpenHRV fork)

https://github.com/JoelAtHome/HertzAndHearts
1•J_Kobe•1h ago•0 comments

Apple issues urgent lock screen warnings for unpatched iPhones and iPads

https://securityaffairs.com/190109/security/apple-issues-urgent-lock-screen-warnings-for-unpatche...
3•WaitWaitWha•1h ago•0 comments

Emergency Microsoft, Oracle patches point to wider cyber issues

https://www.computerweekly.com/news/366640648/Emergency-Microsoft-Oracle-patches-point-to-wider-c...
2•smurda•1h ago•0 comments

Pentagon prepares for weeks of ground operations in Iran

https://www.washingtonpost.com/national-security/2026/03/28/trump-iran-ground-troops-marines/
6•Jimmc414•1h ago•2 comments

ReadyPC – open-source Rust PC Optomizer

https://github.com/Gloom-Team/ReadyPC/releases/tag/Latest
1•asdadaZ•1h ago•0 comments

Improving My C Build System with Zig

https://louislefebvre.net/tech/zig-gcc-replace/
1•louislef299•1h ago•0 comments

OpenYak – An open-source Cowork that runs any model and owns your filesystem

https://github.com/openyak/desktop
34•wangzhangwu•1h ago•8 comments

The Fastest Man Alive? [video]

https://www.youtube.com/shorts/R7OoEXaOVY0
1•SilentM68•1h ago•0 comments

How to Do Any Work

https://drive.google.com/uc?id=1wurJsO1vZYiynrTxDLroiQX2fBnKmldo&export=download
1•waseyjamal•1h ago•1 comments

Generalized Linear Model

https://en.wikipedia.org/wiki/Generalized_linear_model
2•azhenley•1h ago•0 comments

Data Centers Under Fire: A Systemic Security Challenge

https://www.datacenterknowledge.com/physical-security/data-centers-under-fire-a-growing-critical-...
1•WaitWaitWha•1h 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•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.