frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Try not to get scammed while looking for work

https://trysound.io/try-not-to-get-scammed-while-looking-for-work/
1•TrySound•15m ago•0 comments

US Job Market Visualizer

https://karpathy.ai/jobs/
3•chizkidd•27m ago•0 comments

Health Effects of Coffee

https://en.wikipedia.org/wiki/Health_effects_of_coffee
1•pinkmuffinere•30m ago•0 comments

Show HN: Port42 – AI companions that build and act on your Mac (v0.5.0)

https://port42.ai/
2•gordonmattey•34m ago•0 comments

TripBoard – Stop scrolling the group chat for that one booking link

https://tripboard.fortheplot.today
1•atharvashembe•39m ago•0 comments

The Agentic Workload

https://opencomputer.dev/blog/the-agentic-workload
1•iacguy•39m ago•0 comments

What Is an Agent Harness?

https://parallel.ai/articles/what-is-an-agent-harness
1•vismit2000•41m ago•0 comments

Solve Toronto

1•basileafe•41m ago•0 comments

FSF threatens Anthropic over infringed copyright: share your LLMs freely

https://news.slashdot.org/story/26/03/16/0539240/fsf-threatens-anthropic-over-infringed-copyright...
3•MilnerRoute•42m ago•0 comments

EU axes AI, semiconductors, and quantum from the Industrial Accelerator Act

https://www.sdxcentral.com/news/eu-axes-ai-chips-and-quantum-from-strategic-tech-list-in-proposed...
2•alephnerd•43m ago•3 comments

Save 70-90% in tokens per session

1•hasna•48m ago•2 comments

We built a GRC tool after watching SMBs fail ISO audits for the dumbest reasons

https://mitigata-grc-tfukpqvn.manus.space/
1•Areena_28•48m ago•1 comments

Panopticon

https://en.wikipedia.org/wiki/Panopticon
2•simonebrunozzi•52m ago•0 comments

Strait of Hormuz Update 15 March 2026 – Update on Other Maritime Stories – US De [video]

https://www.youtube.com/watch?v=0SELRtaciaI
1•kamaraju•1h ago•0 comments

Pgtui, a Postgres TUI Client

https://kdwarn.net/programming/blog/227
2•salkahfi•1h ago•0 comments

Symfony 8.0.6 Released

https://symfony.com/blog/symfony-8-0-6-released
2•ms7892•1h ago•0 comments

Race on to establish globally recognised 'AI-free' logo

https://www.bbc.com/news/articles/cj0d6el50ppo
1•voxadam•1h ago•2 comments

10-Minute Description of How Judy Arrays Work and Why They Are So Fast

https://judy.sourceforge.net/doc/10minutes.htm
1•prakashqwerty•1h ago•0 comments

Apollo's John Zito Sounds Off on 'Arrogance' in Private Markets

https://www.wsj.com/finance/investing/top-apollo-executive-sounds-off-on-arrogance-in-private-mar...
1•petethomas•1h ago•0 comments

Productizing the Meta

https://nick.cloud/posts/productizing-the-meta/
1•npad•1h ago•0 comments

Agentic Trust Framework (ATF)

https://github.com/massivescale-ai/agentic-trust-framework
1•teleforce•1h ago•0 comments

Tool to visualize everything between your keypress and the kernel

https://shellcraft.vercel.app
2•uphiago•1h ago•0 comments

I made an app to create beautiful thumbnail from screenshots

https://www.beautifulscreenshots.com/
1•siv_io_•1h ago•1 comments

Show HN: Crowd-sourced LPG cylinder availability tracker for India's gas crisis

https://www.gasnearme.in/
1•smankoo•1h ago•1 comments

Performance: 53% faster parse+render, 61% fewer allocations

https://github.com/Shopify/liquid/pull/2056
1•prakashqwerty•1h ago•0 comments

Various Novel iOS Apps by Elvure

https://elvure.app
2•mening12001•1h ago•2 comments

BotStadium – AI agents compete on live sports predictions in real-time

https://botstadium.ai
3•veeceey•1h ago•2 comments

Open Source, Open Mind: The Cost of Free Software (2024)

https://freeasinweekend.org/open-source-open-mind
3•pabs3•1h ago•0 comments

Free as in Weekend

https://freeasinweekend.org/
1•pabs3•1h ago•0 comments

ShellScribe: AI-powered terminal session logger for your whole dev life

https://luinbytes.github.io/shellscribe/
3•0x6c75•2h 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•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.