frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Auto-balancing and load-testing Ridiculous Space Battles

https://www.positech.co.uk/cliffsblog/2026/03/21/auto-balancing-and-load-testing-ridiculous-space...
1•speckx•15s ago•0 comments

Powering Product Discovery in ChatGPT

https://openai.com/index/powering-product-discovery-in-chatgpt/
1•babelfish•27s ago•0 comments

My First LLM Experiment

https://www.scottrlarson.com/publications/publication-my-first-llm-experiment/
1•trinsic2•38s ago•0 comments

So I Created an AI project to Waste Spam Callers' Time that kept calling me [video]

https://www.youtube.com/watch?v=AldNjRm4gzQ
1•mknweb•45s ago•1 comments

Google open sources Android Automotive for core car functions

https://blog.google/products-and-platforms/platforms/android/android-automotive-os/
1•xnx•50s ago•0 comments

Agents and Ants Antagonists in Assembly – The Swarm Challenge

https://hallofdreams.org/posts/agents-and-ants/
1•TheCog•2m ago•1 comments

Introduction to Compilers and Language Design

https://dthain.github.io/books/compiler/
1•ibobev•2m ago•0 comments

First Ever Antiproton Transport

https://www.uni-hannover.de/en/universitaet/aktuelles/presseinformationen/presseinfo-singleview/n...
1•FinnKuhn•2m ago•0 comments

Meta's Rogue AI Agent Gave Engineers Access They Shouldn't Have Had

https://grith.ai/blog/meta-ai-agent-unauthorized-access?march24=
1•edf13•3m ago•0 comments

Details That Make Interfaces Feel Better

https://jakub.kr/writing/details-that-make-interfaces-feel-better
1•eustoria•4m ago•0 comments

Shortest-Path on the GPU: Two buckets is all you need

https://www.execfoo.de/blog/nearfar.html
1•softwarehippie•4m ago•0 comments

The HTML Review 05

https://thehtml.review/05/
1•eustoria•4m ago•0 comments

Fast regex search: indexing text for agent tools

https://cursor.com/en-US/blog/fast-regex-search
1•davikr•5m ago•0 comments

Idempotent Slices with Applications to Code-Size Reduction

https://arxiv.org/abs/2603.09726
1•matt_d•5m ago•0 comments

Mining of Datasets

http://www.mmds.org/
1•ibobev•5m ago•0 comments

Someone left the company and I inherited a part of their vibe coded work

https://twitter.com/JonasBadalic/status/2036454746916339855
5•tosh•5m ago•1 comments

ShowTracker – Free social tracker for TV, movies, anime, and manga

https://eu-west-1a.online.tableau.com/#/site/3visionshowtracker/views/ShowTracker-NewDesign/HomePage
1•brigen•6m ago•0 comments

Show HN: Email.md – Markdown to responsive, email-safe HTML

https://www.emailmd.dev/
2•dancablam•6m ago•0 comments

Emerging AI dev tool categories, market map, and meditations on the space

https://12gramsofcarbon.com/p/agentics-6-emerging-agent-dev-tool
1•theahura•6m ago•0 comments

Stop "Vibe Coding" – Give your AI Agents structured context from messy docs

https://knowhereto.ai/
1•Cindy_Yingxin•7m ago•1 comments

Improv Comedy Sucks. and Everyone Should Try It

https://www.nytimes.com/2026/03/24/magazine/yes-improv-comedy-sucks-and-everyone-should-try-it.html
1•lucidplot•8m ago•0 comments

NL How Netflix Killed BlockBuster (2006) [video]

https://www.youtube.com/watch?v=3cPHp9Gs0WU
1•mooreds•8m ago•0 comments

Show HN: TopMail – LaunchFest Winner, $20/Mo Unlimited Email, Coding Agents API

https://www.topmail.so
1•njarecki•10m ago•1 comments

SSH Reverse Prompt Forwarding

https://tgalal.com/blog/ssh-reverse-prompt-forwarding
1•tgalal•10m ago•0 comments

The Apple AppStore is drowning in AI slop

https://twitter.com/shiri_shh/status/2036307020396241228
2•napolux•11m ago•1 comments

Show HN: Sudo Hold Me

https://linuxtoaster.com/blog/emergent.html?show
1•dirk94018•11m ago•1 comments

Client side Vector Search using EmbeddingGemma – WebGPU accelerated

https://github.com/jasonmayes/VectorSearch.js
1•WebAIGuy•12m ago•0 comments

Nvidia CEO tries to explain why DLSS 5 isn't just "AI slop"

https://arstechnica.com/gaming/2026/03/nvidia-ceo-tries-to-explain-why-dlss-5-isnt-just-ai-slop/
2•Brajeshwar•13m ago•0 comments

Cat Scientist Job Listing

https://careers.cats.org.uk/job/851046
1•mooreds•14m ago•0 comments

Epic Games to cut 1k jobs, seek $500M in savings as Fortnite slows

https://www.wral.com/business/epic-games-cary-layoffs-1000-500m-cost-savings-fortnite-decline-mar...
2•Noaidi•14m 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.