frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Xkcd X

https://xkcd.com/1647/
1•basilikum•55s ago•0 comments

NovAST

https://github.com/sharkkyyy10/NovAST
1•sharkkyyy10•7m ago•0 comments

The Apprehension Engine (2022)

https://guitar.com/features/interviews/the-apprehension-engine-most-terrifying-musical-instrument/
1•turtleyacht•7m ago•1 comments

A self was never flat

https://parrik.com/puzzles/know-thyself/
1•parrik•11m ago•0 comments

Martian Glaciers with Drones

https://nautil.us/uncovering-hidden-martian-glaciers-with-drones-1280400
1•Brajeshwar•11m ago•0 comments

talkie-coder: From 1930 to SWE-bench

https://github.com/RicardoDominguez/talkie-coder
1•Philpax•11m ago•0 comments

Clojurists Together – Q2 2026 Open Source Funding Announcement

https://www.clojuriststogether.org/news/q2-2026-funding-announcement/
1•dragandj•12m ago•0 comments

Hostis Humani Generis

https://hostis.black/
1•g4k•14m ago•0 comments

Chinese Government Just Got Largest Digital Rights Conference Canceled

https://www.wired.com/story/the-chinese-government-pressured-zambia-to-cancel-the-worlds-largest-...
1•thesmtsolver2•15m ago•0 comments

Show HN: Headcam - head tracking & streaming app (iOS) [video]

https://www.youtube.com/watch?v=s8khQ_-6aM8
1•itsloopyo•17m ago•0 comments

How the vinyl revival fills the gaps streaming left behind

https://restofworld.org/2026/vinyl-revival-streaming-gaps/
3•billybuckwheat•19m ago•0 comments

Show HN: Plannotator for Codex

https://twitter.com/plannotator/status/2050683552581468172
2•ramoz•19m ago•1 comments

Show HN: State of the Art of Coding Models, According to Hacker News Commenters

https://hnup.date/hn-sota
4•yunusabd•22m ago•1 comments

Mistral Medium 3.5 YaRN bug fix

https://huggingface.co/mistralai/Mistral-Medium-3.5-128B/discussions/18
1•danielhanchen•24m ago•0 comments

Frizbee is a tool you may throw a tag at and it comes back with a checksum

https://github.com/stacklok/frizbee
1•mooreds•24m ago•0 comments

Silicon Valley's Brightest Parents Broke Their Own School

https://www.wsj.com/us-news/education/how-silicon-valleys-brightest-parents-broke-their-own-schoo...
5•sanj•25m ago•0 comments

Problem with Counterfeit People

https://www.theatlantic.com/technology/archive/2023/05/problem-counterfeit-people/674075/
2•tu7001•26m ago•0 comments

The agent harness belongs outside the sandbox

https://www.mendral.com/blog/agent-harness-belongs-outside-sandbox
5•shad42•26m ago•0 comments

Six Years Perfecting Maps on WatchOS

https://www.david-smith.org/blog/2026/04/29/maps-on-watchos/
22•valzevul•33m ago•0 comments

Shigeru Miyamoto: Better Coder Than Most Without Ever Writing Code

https://indiepixel.de/blog/posts/shigeru-miyamoto-has-probably-never-compiled-a-line-of-code-in-h...
2•birdculture•33m ago•0 comments

CISA, NSA & Five Eyes publishes guide on how to safely deploy AI agents

https://cyberscoop.com/cisa-nsa-five-eyes-guidance-secure-deployment-ai-agents/
1•lschueller•36m ago•0 comments

/peek is a new slash command to use subagents to check out your other sessions

https://github.com/sachio222/cc-peek
1•sachio222•37m ago•0 comments

Show HN: Rotato – Node.js proxy that rotates LLM API keys on 429 errors

https://github.com/p32929/rotato
1•heliskyr2•38m ago•0 comments

Show HN: I Built a Museum Exhibit

https://knhash.in/built-an-exhibit/
1•kn81198•39m ago•0 comments

Testing Vue Components in the Browser

https://jvns.ca/blog/2026/05/02/testing-vue-components-in-the-browser/
1•chmaynard•40m ago•0 comments

Lessons from Debugging GLM-5 at Scale

https://z.ai/blog/scaling-pain
1•pbowyer•43m ago•0 comments

Farewell to a Giant of Botany

https://nautil.us/farewell-to-a-giant-of-botany-1280409
3•Brajeshwar•43m ago•0 comments

Apple raises Mac Mini starting price $599 to $799, 256GB storage discontinued

https://www.macrumors.com/2026/05/01/mac-mini-now-starts-at-799/
3•pak•46m ago•0 comments

A GitHub for Maintainers

https://nesbitt.io/2026/05/02/a-github-for-maintainers.html
1•jamietanna•47m ago•0 comments

Disagreeing with Google, Postgres, Future Problems – Mike Stonebraker [video]

https://www.youtube.com/watch?v=YPObBOwIrHk
1•da02•49m 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•1y ago

Comments

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

https://reportmill.com/SnapCode

palata•1y 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•1y 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•1y 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•1y 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•1y 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•1y 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•1y 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.