frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Malaysia's age verification rules for social media could be strictest

https://www.biometricupdate.com/202604/malaysias-age-verification-rules-for-social-media-could-be...
1•anonhaven•1m ago•0 comments

IBM 3270 Information Display System: Color and Programmed Symbols (1979) [pdf]

https://bitsavers.org/pdf/ibm/3278/GA33-3056-0_3270_Information_Display_System_Color_and_Programm...
1•hggh•2m ago•0 comments

Not all of this is new

https://www.natemeyvis.com/not-all-of-this-is-new/
1•Brajeshwar•4m ago•0 comments

Artificial Intelligence Will Die – and What Comes After

https://comuniq.xyz/post?t=912
2•01-_-•8m ago•0 comments

Astronomers Find a Third Galaxy Missing Its Dark Matter

https://www.universetoday.com/articles/astronomers-find-a-third-galaxy-missing-its-dark-matter-va...
1•gostsamo•9m ago•0 comments

The Token Price Discovery Problem in the AI Diffusion Debate

https://davefriedman.substack.com/p/the-price-discovery-problem-in-the
1•walterbell•13m ago•0 comments

What does Open Source mean?

https://nesbitt.io/2026/04/04/what-does-open-source-mean.html
1•zdw•15m ago•0 comments

Laid Off from Oracle(OCI). Looking for Software Roles (USA)

1•bemindful•15m ago•1 comments

Iran's Network of Cameras Bolsters Air Defenses, Expert Says

https://www.wsj.com/livecoverage/iran-war-news-2026/card/iran-s-network-of-cameras-bolsters-air-d...
1•uxhacker•16m ago•0 comments

Detecting Defects in Software Systems

https://lasse.hels.dk/detecting-defects-in-software-systems/
1•seagrassalert•16m ago•0 comments

Ask HN: Regarding app rejection on 3.1.1 Guidelines

1•binaryvigilante•18m ago•0 comments

The AI-Native Fork

https://www.howardgray.net/the-fork/
2•walterbell•19m ago•0 comments

Sonos Play Review: Performance Meets Convenience

https://www.wired.com/review/sonos-play/
1•joozio•20m ago•0 comments

AI Safety at the Frontier: Paper Highlights of February and March 2026

https://www.lesswrong.com/posts/ckKZFqfSQGMye4JeK/ai-safety-at-the-frontier-paper-highlights-of-f...
1•joozio•21m ago•0 comments

Artemis II SLS Rocket Unseen Onboard Camera Footage

https://www.youtube.com/watch?v=WnG9y0JIyIw
2•Betelbuddy•22m ago•0 comments

Txpay.app – Crypto Shareable payment links, cross-chain

https://txpay.app
1•maximoCorrea•23m ago•0 comments

LLM Wiki

https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f
1•tamnd•25m ago•0 comments

Razer Wolverine V3 Pro and Betop KP50 Controllers to Be Supported by Linux 7.0

https://www.phoronix.com/news/Linux-7.0-rc7-Input-Fixes
1•doener•26m ago•0 comments

Neovim TreeSitter plugin has been archived on GitHub

https://github.com/nvim-treesitter/nvim-treesitter
3•ComputerGuru•26m ago•1 comments

FAA prohibits SFO's parallel approaches

https://www.reuters.com/world/us/faa-imposes-restrictions-some-landings-san-francisco-airport-202...
3•elromulous•27m ago•1 comments

Show HN: Trading harness for Indian stock market

https://github.com/hopit-ai/india-trade-cli
8•Arkid•27m ago•0 comments

Show HN: Kaoslabs – High-intensity AI video and visual experiments

https://kaoslabs.org
2•wilhart•28m ago•0 comments

Why the Most Valuable Things You Know Are Things You Cannot Say

https://deadneurons.substack.com/p/why-the-most-valuable-things-you
6•nr378•33m ago•0 comments

Show HN: DocMason – Agent Knowledge Base for local complex office files

https://github.com/jetxu-llm/docmason
4•Jet_Xu•33m ago•0 comments

Turn safety data sheets into structured JSON via API

https://turninto.dev/
1•VelaA•34m ago•0 comments

Gemma 4 running client-side in WebGPU

https://huggingface.co/spaces/webml-community/Gemma-4-WebGPU
5•astlouis44•35m ago•0 comments

Neuronal APOE4-induced early hippocampal hyperexcitability in Alzheimers disease

https://www.nature.com/articles/s43587-026-01096-0
1•bookofjoe•35m ago•0 comments

Show HN: A game where you build a GPU

https://jaso1024.com/mvidia/
36•Jaso1024•36m ago•2 comments

12,000 AI-generated blog posts added in a single commit

https://github.com/OneUptime/blog/commit/30cd2384794c897d95aca77d173db44af51ca849
5•noslop•37m ago•1 comments

Meta: A Cautionary Tale [video]

https://www.youtube.com/watch?v=DNCQ5kV-cKs
1•raydev•38m 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.