frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: HookBell – Turn any webhook into a push notification on your phone

1•akshitkrnagpal•3m ago•0 comments

Using DNA as a method to encrypt sensitive messages has become possible

https://www.cnrs.fr/en/press/dna-cryptography-new-french-japanese-approach-has-proven-its-worth
1•matthieu_bl•3m ago•0 comments

Quantum computers need fewer resources than thought to break vital encry

https://arstechnica.com/security/2026/03/new-quantum-computing-advances-heighten-threat-to-ellipt...
1•joozio•4m ago•0 comments

Art schools are being torn apart by AI

https://www.theverge.com/tech/903954/art-schools-generative-ai-education-creative-jobs
1•bundie•8m ago•0 comments

Grist (spreadsheets) v1.7.12 adds Automations

https://support.getgrist.com/automations/
1•raybb•9m ago•0 comments

Delve – Fake Compliance as a Service – Part II – Day 1 of 5

https://substack.com/home/post/p-192144506
1•nickvec•9m ago•1 comments

Ask HN: What is the best software IDE to program with a local LLM and GPU?

1•roschdal•10m ago•0 comments

Open Multi-Agent: Multi-agent orchestration framework for TypeScript

https://github.com/JackChen-me/open-multi-agent
1•JackChen_me•13m ago•0 comments

Cutia: An AI-native, open-source video editor and free alternative to CapCut

https://cutia.msgbyte.com/en
1•moonrailgun•15m ago•0 comments

Manual SRE – For Artisanal Infrastructure Care

https://manual-sre.pro/
1•ilan34•19m ago•0 comments

The End of the "I Am Not a Robot" Box

https://formidable.care/tools/healthcaptcha
1•vincentxplore•23m ago•0 comments

The Everest scandal: poisonings and fraud on the roof of the world

https://www.thetimes.com/uk/crime/article/the-everest-scandal-poisonings-and-fraud-on-the-roof-of...
2•petethomas•24m ago•0 comments

Booklore and the Bus Factor Problem in Open Source

https://www.xda-developers.com/single-maintainer-open-source-ticking-time-bomb/
1•raihankr•25m ago•0 comments

The German state (Schleswig-Holstein) trying to break free from Microsoft

https://www.ft.com/content/95bd87c8-a112-49a5-9b80-c280a6bb4283
7•throwaway2037•25m ago•0 comments

Software Engineering Is Becoming Civil Engineering

https://christophermeiklejohn.com/ai/engineering/2026/04/01/software-engineering-is-becoming-civi...
2•cmeiklejohn•25m ago•0 comments

I Built a CLI for Ghost

https://john.onolan.org/i-built-a-cli-for-ghost/
1•Curiositry•26m ago•0 comments

You Don't Need to Pay $200/Month

https://www.jannis.io/do-we-still-need-proprietary-coding-llms/
1•Curiositry•27m ago•0 comments

The Startup That Used AI and OpenClaw to Automate Its Own Developers

https://www.wsj.com/tech/ai/meet-the-startup-that-used-ai-and-openclaw-to-automate-its-own-develo...
1•harambae•29m ago•0 comments

AI's ability to see 'mirages' shows how alien machine brains are

https://www.msn.com/en-us/news/technology/ai-s-ability-to-see-mirages-shows-how-alien-machine-bra...
2•galaxyLogic•30m ago•0 comments

50 years of thinking differently

https://www.apple.com/50-years-of-thinking-different/
1•boltzmann_•31m ago•0 comments

TinyGPU – Use AMD and Nvidia GPUs on macOS with Tinygrad

https://docs.tinygrad.org/tinygpu/
3•h4ch1•32m ago•1 comments

Lambada is now the official dance of the US

http://www.lambadaforever.com/news/2026/03/31
2•iugtmkbdfil834•32m ago•0 comments

Show HN: WordBattle – Daily word game where AI agents compete against humans

2•bradleybeddoes•34m ago•0 comments

Show HN: RFC Esolang – RFCs as executable programs

https://seriot.ch/rfc/
1•beefburger•36m ago•0 comments

Apple's 50 Years of Integration

https://stratechery.com/2026/apples-50-years-of-integration/
1•jonbaer•36m ago•0 comments

Mistral AI Workflows

https://docs.mistral.ai/workflows/getting-started/introduction
2•pember•38m ago•0 comments

Paris redesigned itself to be a city of bikes–not cars

https://www.fastcompany.com/91509506/how-paris-redesigned-itself-to-be-a-city-of-bikes-not-cars
3•camkego•38m ago•0 comments

GitHub DMCA Notices to Anthropic Claude Code Repos

https://github.com/github/dmca/blob/master/2026/03/2026-03-31-anthropic.md
2•alexpadula•39m ago•3 comments

Chess in Pure SQL

https://www.dbpro.app/blog/chess-in-pure-sql
2•jonbaer•39m ago•0 comments

Caltech Researchers Claim Compression of High-Fidelity AI Models

https://www.wsj.com/cio-journal/caltech-researchers-claim-radical-compression-of-high-fidelity-ai...
2•jonbaer•40m ago•2 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.