frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Social Listening for Agents

https://sociallisteningapi.com/
1•shash7•1m ago•1 comments

Teen drops lawsuit against Meta, Google, and Snap ahead of trial

https://www.msn.com/en-us/news/world/us-teen-drops-lawsuit-against-meta-google-and-snap-ahead-of-...
1•anigbrowl•3m ago•0 comments

Show HN: Argentic – An L402 Lightning toll booth for AI scraping agents

https://Argentic.network
1•Ag0146•7m ago•0 comments

AI CMS with WebMCP tools for agents in admin panel

https://aliothpress.com/cms-for-ai-agents-webmcp-built-in
1•nikariguel•11m ago•0 comments

The /Wayfinder Skill: Navigating the "Fog of War" of Planning

https://www.latent.space/p/wayfinder-skill
1•swyx•11m ago•0 comments

First giant tuna caught off Yorkshire since 1960s

https://www.bbc.com/news/articles/c9w04005veqo
2•teleforce•14m ago•0 comments

Robot Comment Classifier

https://entropicthoughts.com/ai-comment-classifier
2•kqr•14m ago•0 comments

Repository Is Your Swarm

https://nicktrevino.com/your-repository-is-your-swarm.html
1•Hyperlisk•20m ago•0 comments

Open Sourcing the YC Application

https://metorial.com/blog/open-sourcing-the-yc-application
1•LYFMail•22m ago•0 comments

Hilbert Curve

https://en.wikipedia.org/wiki/Hilbert_curve
2•pykello•24m ago•0 comments

Why Do We Feed Wildlife?

https://thetyee.ca/News/2026/08/20/Why-Do-We-Feed-Wildlife/
3•wertyk•27m ago•0 comments

Schooling Has a Meaning Crisis. Paradoxically, AI Can Help

https://blog.comini.in/p/schooling-has-a-meaning-crisis-paradoxically
1•vismit2000•27m ago•0 comments

GitHub Actions vs. GitLab Pipeline

https://medium.com/playground-tech/github-actions-vs-gitlab-pipeline-2368e9a27f68
1•caulagi•34m ago•0 comments

AWS Bedrock AgentCore enforces user context to prevent hijacked AI agents

https://techupdate24.com/aws-bedrock-agentcore-hijacked-ai-security/
2•sysadmin_diarie•34m ago•0 comments

Elven Rope, Ultra-High Molecular Weight Polyethylene, and LLMs (2025)

https://vgel.me/posts/elven-rope-and-llms/
2•networked•35m ago•0 comments

Testing CUDA kernel execution with GPU correctness harness

https://github.com/IshwaryaRavichandran/gpu-correctness-harness
2•laxmena•36m ago•0 comments

Show HN: Open source math games and puzzles

https://theorem.games/
3•Zebfross•40m ago•1 comments

Thousands of years of indoor air pollution

https://www.slowboring.com/p/thousands-of-years-of-indoor-air
4•neehao•40m ago•0 comments

A Man Who Proved the Blue Zones Are Fake – Saul Newman [video]

https://www.youtube.com/watch?v=1ZE5ml7a6rE
2•neehao•41m ago•1 comments

OpenAI Is Backing Away from Reddit as Reddit Tries to Become OpenAI?

https://gizmodo.com/openai-is-backing-away-from-reddit-as-reddit-tries-to-become-openai-2000800060
5•helsinkiandrew•41m ago•1 comments

Pitfalls of Benchmarking on Modern Systems

https://stefan-marr.de/2026/08/pitfalls-of-benchmarking-on-modern-systems/
2•matt_d•42m ago•0 comments

Escaping the Quicksand: A Call to Arms

https://arxiv.org/abs/2608.19674
1•ahsillyme•44m ago•0 comments

The Religious Experience of Philip K. Dick by R. Crumb (1986)

https://philipdick.com/resources/miscellaneous/the-religious-experience-of-philip-k-dick-by-r-cru...
8•wise_blood•51m ago•1 comments

Cognition and consciousness arise from analog computations, says new theory

https://picower.mit.edu/news/cognition-and-consciousness-arise-analog-computations-says-new-theory
5•XzetaU8•53m ago•0 comments

Stop Making TUIs

https://sockpuppet.org/blog/2026/08/20/stop-making-tuis/
3•underdeserver•53m ago•2 comments

The superfast and compatible < 100kb pure HTML/oldJS Jellyfin front-end

https://www.reddit.com/r/jellyfin/comments/1vtcltb/meet_jellydinosaur_the_superfast_very_compatible/
1•wise_blood•59m ago•0 comments

Japan tried to build an operating system for the world, the US intervened

https://www.xda-developers.com/japan-tried-build-operating-system-entire-world-us-government-inte...
23•rdmuser•59m ago•5 comments

Meta's Global Playbook for Fighting Child Safety Laws

https://www.techtransparencyproject.org/articles/inside-metas-global-playbook-for-fighting-child-...
2•femto•1h ago•0 comments

Submit privacy-focused companies and projects on PrivBid.com

https://privbid.com/
1•CR1337•1h ago•0 comments

Code Doesn't Speak – It Compiles: Why Small Models Win

https://www.innerkore.com/blog/code-doesnt-speak-it-compiles-small-models-win/
1•gagan2020•1h 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.