frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

TweetyBERT parses canary songs to better understand how brains learn language

https://techxplore.com/news/2026-03-tweetybert-parses-canary-songs-brains.html
1•PaulHoule•46s ago•0 comments

Antidote

https://newsletter.vickiboykis.com/archive/antidote/
1•exolymph•53s ago•0 comments

FBI warns Iran aspired to attack California with drones in retaliation for war

https://abcnews.com/US/fbi-warns-iran-aspired-attack-california-drones-retaliation/story?id=13097...
1•jaredwiener•1m ago•0 comments

IEA to carry out largest ever oil stock release amid market disruptions

https://www.iea.org/news/iea-member-countries-to-carry-out-largest-ever-oil-stock-release-amid-ma...
1•geox•3m ago•0 comments

Marine Hose Cartel (2014)

https://en.wikipedia.org/wiki/Parker_ITR_Srl_v_Commission
1•rglover•3m ago•0 comments

Repotype – Linting for your repository and to clean your Agent's rooms'

https://supernalintelligence.github.io/repotype/
1•supernalai•3m ago•1 comments

LaneConductor – Gemini conductor and Claude Code superpowers meets on Kanban

https://github.com/meller/laneconductor
1•meller_a•4m ago•1 comments

Re: Is Lutris Slop Now

https://github.com/lutris/lutris/issues/6529
1•yamabiko•5m ago•0 comments

Output-Maximizing Long-Context Programming: 14k lines of code for $0.58

https://zenodo.org/records/18963411
1•JasonViviers•5m ago•1 comments

Douglas Adams would love NIS2

https://www.heise.de/en/news/Douglas-Adams-would-love-NIS2-11204397.html
1•doener•7m ago•0 comments

The Evolution of Access: Smarter Profiles, Stronger Security

https://www.cyberark.com/resources/blog/identity-governance-gaps-how-ai-profiles-move-security-be...
1•alokDT•7m ago•0 comments

Nvidia is reportedly planning its own open source OpenClaw competitor

https://arstechnica.com/ai/2026/03/nvidia-is-reportedly-planning-its-own-open-source-openclaw-com...
2•mikece•8m ago•0 comments

AI Caller Exposed When Asked for Cupcake Recipe

https://twitter.com/MyLordBebo/status/2031721081657037290
1•hackerbeat•10m ago•0 comments

Spanish police arrest hacker who booked luxury hotels for one cent

https://www.france24.com/en/live-news/20260218-spanish-police-arrest-hacker-who-booked-luxury-hot...
1•mooreds•12m ago•0 comments

Anthropic PBC vs. U.S. Department of War Exhibit 1 – Document #34

https://www.courtlistener.com/docket/72379655/34/1/anthropic-pbc-v-us-department-of-war/
2•JumpCrisscross•13m ago•0 comments

Re-thinking candidate take-homes in the AI Era: transcripts over code

https://rootly.com/blog/re-thinking-candidates-take-homes-in-the-ai-era-transcripts-over-code
1•mooreds•13m ago•0 comments

Show HN: Linggen – Open agent system in Rust, any model, file-based

https://linggen.dev/
2•linggen•17m ago•1 comments

Why Do They Want to Get Rid of Software Engineers?

https://jrswab.com/blog/why-do-they-want-to-get-rid-of-software-engineers/
4•abnercoimbre•20m ago•2 comments

What Entertainment Might Look Like in 20 Years

https://www.wsj.com/arts-culture/entertainment-in-20-years-d6d5ac9b
2•fortran77•21m ago•1 comments

BookGraph: Moving beyond naive RAG with graph-native AI reasoning

https://github.com/sumant1122/bookgraph
3•paperplaneflyr•22m ago•2 comments

Keep Your Intuition Sharp While Using AI Coding Tools

https://spectrum.ieee.org/ai-for-coding-intuition
2•quapster•23m ago•0 comments

The Obvious Is Taking Its Revenge on Trump

https://www.theatlantic.com/international/2026/03/iran-war-trump/686314/
4•Jtsummers•24m ago•1 comments

Tenstorrent TT-QuietBox 2

https://tenstorrent.com/waitlist/tt-quietbox
1•LorenDB•24m ago•0 comments

Show HN: Launching Our XR-Native Operating System

https://explore.getxeneva.com/
1•ayush_xeneva•24m ago•0 comments

Nvidia's Huang argues AI creates jobs, not destroys them

https://www.coindesk.com/tech/2026/03/10/nvidia-s-huang-argues-ai-creates-jobs-not-destroys-them-...
3•Vaslo•24m ago•1 comments

Ask HN: What are your favorite alternate history scenarios?

2•StartupsWala•26m ago•2 comments

Simple, fast and open-source PHP framework frozen in C-extension

https://www.iceframework.org/
1•mooreds•29m ago•0 comments

Show HN: Fast-Axolotl – Rust extensions that make Axolotl fine-tuning 77x faster

https://github.com/neul-labs/fast-axolotl
1•ticktockten•29m ago•0 comments

How to Design Antibodies

https://press.asimov.com/articles/antibody-design
3•mailyk•31m ago•0 comments

Extend Protobuf/FlatBuffers Schema IDL with Shared/Circular Reference Support

https://fory.apache.org/blog/extend_protobuf_flatbuffers_with_shared_circular_refs/
1•chaokunyang•32m ago•3 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•10mo ago

Comments

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

https://reportmill.com/SnapCode

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