frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Stick Charts

https://en.wikipedia.org/wiki/Marshall_Islands_stick_chart
1•helterskelter•1m ago•0 comments

TipTour – AI-powered guided tours for any website

https://tiptour.io
1•milindsoni201•2m ago•0 comments

Six Selfish Reasons to Have Kids

https://kevinkelly.substack.com/p/six-selfish-reasons-to-have-kids
1•MetaMalone•3m ago•0 comments

Data from a phone becomes a death sentence

https://www.jpost.com/defense-and-tech/article-895697
1•iugtmkbdfil834•6m ago•0 comments

One Agent Sandbox Is Not Enough

https://multikernel.io/2026/03/25/sandlock-mcp-per-tool-sandboxing/
1•kjok•7m ago•0 comments

Researchers tune Casimir force using magnetic fields

https://phys.org/news/2024-06-tune-casimir-magnetic-fields.html
1•bilsbie•7m ago•0 comments

DMA: A Community Hackerspace in Seattle

https://dma.space/
1•bleeperblooper•11m ago•0 comments

YA3 – Yet Another 303 clone, that runs in the browser and as a DAW plugin

https://ya3.surge.sh/
2•stagas•11m ago•0 comments

Synthetic Exercise World – Fictional dataset for cyber exercises and standards

https://github.com/MISP/Synthetic-Exercise-World-Format
1•adulau•13m ago•0 comments

Humanoid Robots Are the Next Phase of the AI Hype Cycle

https://www.bloomberg.com/news/articles/2026-05-08/humanoid-robots-aren-t-as-advanced-as-the-ai-h...
2•wslh•15m ago•1 comments

Lies, damned lies, and Elastic's benchmarks

https://www.gouthamve.dev/lies-damned-lies-and-elastics-benchmarks/
1•gsky•19m ago•0 comments

Stoa – open substrate for agent-readable SaaS (spec, runtime, registry)

https://stoa.tryvext.com/
1•alayton•20m ago•0 comments

Ask HN: Would you use a verified social platform?

2•jacobwiseberg•23m ago•2 comments

Bottleneck – The Strait of Hormuz Crisis Game

https://bottleneck.jakubgornicki.com/en
1•smartmic•25m ago•0 comments

MIT researchers revive 40 year old triangular zipper concept

https://www.tomshardware.com/3d-printing/mit-researchers-revive-40-year-old-triangular-zipper-con...
2•MassPikeMike•28m ago•0 comments

Goblin Hunt

https://blog.leloew.com/goblin-hunt/
1•lysecret•33m ago•0 comments

Court Awards Aylo $4.2M, Not $84M, in Pornhits Piracy Case

https://torrentfreak.com/court-awards-aylo-4-2-million-not-84-million-in-pornhits-piracy-case/
2•Brajeshwar•33m ago•0 comments

Voyager FDS Emulator

https://zanehambly.com/voyager
1•vsrinivas•36m ago•1 comments

COBOL Is the Asbestos of Programming Languages

https://www.wired.com/story/cobol-is-the-asbestos-of-programming-languages/
3•birdculture•37m ago•0 comments

Show HN: Mosaic – sort iOS icons by color using an evolutionary algorithm

https://github.com/RTiK/mosaic
1•artkh•38m ago•0 comments

Hacking Tesla, so the doors open mechanically in an emergency

https://www.thestar.com/news/canada/i-couldnt-live-with-the-idea-of-my-kids-trapped-in-my-tesla-h...
2•ranit•40m ago•1 comments

Show HN: SimplyBudget, AI Finance Tracker

https://simplybudget.framer.ai/
1•zaintechsavvy•41m ago•0 comments

Show HN: KI im Mittelstand oder KI-Frustration? inkl. Demo

https://christopher-helm.com/einfuehrung-von-ki-im-mittelstand/
1•chelm•43m ago•1 comments

Adventures in Science Fiction Cover Art: Inside the Skull

https://sciencefictionruminations.com/2012/08/31/adventures-in-science-fiction-cover-art-inside-t...
1•jruohonen•43m ago•0 comments

There are only two paths left for software

https://www.a16z.news/p/there-are-only-two-paths-left-for
2•noashavit•44m ago•1 comments

Generative Recommendation for Large-Scale Advertising

https://arxiv.org/abs/2602.22732
1•mfiguiere•45m ago•0 comments

How FAANG Became General Electric

https://danunparsed.com/p/how-faang-became-general-electric
1•sambellll•51m ago•1 comments

ESP-IDF 6 Setup in VS Code: Blink and Debug an ESP32-S3 [video]

https://www.youtube.com/watch?v=y2pIqbZa-iA
1•iamflimflam1•51m ago•0 comments

Crack and Crab

https://languagelog.ldc.upenn.edu/nll/?p=73489
1•jruohonen•53m ago•0 comments

Beat – open-source screenwriting app for Mac/iOS

https://www.beat-app.fi/
1•tekkk•57m 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.