frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Synapse – local codebase indexer and MCP server for Claude Code

https://github.com/nrkoka786/synapse
1•nrkoka1•3m ago•0 comments

Overload and insight look identical from the outside

https://pilgrima.ge/p/what-the-wire-knows
1•momentmaker•6m ago•0 comments

Show HN: Free car spec db to defeat the paywalls

https://openlaborproject.com/
1•chackleman•10m ago•1 comments

Madison Square Garden Sues Wired Magazine over L.G.B.T.Q. Tracking Report

https://www.nytimes.com/2026/07/18/business/media/msg-entertainment-sues-wired-magazine.html
1•ChrisArchitect•11m ago•1 comments

How Word Count Is Important for Social Media Posts

https://medium.com/@thesuperrepemail/how-word-count-is-important-for-social-media-posts-87372645377c
2•rajsuper123•22m ago•0 comments

William Gaddis and William H. Gass: A Literary Conversation and Reading (1995)

https://www.92ny.org/archives/william-gaddis-and-william-h-gass-a-literary-conversation-and-reading
1•ofalkaed•27m ago•0 comments

Trump Media pitched $100K monthly fee for fastest feed of US president's posts

https://www.reuters.com/business/media-telecom/trump-media-pitched-100000-monthly-fee-fast-feed-u...
3•geox•29m ago•1 comments

Disney Has Started Feeding Your Kids AI Slop

https://kotaku.com/disney-has-started-feeding-your-kids-ai-slop-2000717222
3•wslh•36m ago•0 comments

Lawyers risk being sued for failing to use AI

https://www.legalcheek.com/2026/07/lawyers-risk-being-sued-for-failing-to-use-ai/
3•Tomte•37m ago•0 comments

LLM-Integrated Multivariable Calculus Course

https://calculus.academa.ai/
4•sinaatalay•43m ago•1 comments

Topographical Collection of King George III

https://www.flickr.com/photos/britishlibrary/collections/72157719509637544/
1•Eridanus2•43m ago•0 comments

XRPLink – Cryptographically Verified XRP Payment Receipts, Powered by Flare FDC

https://github.com/joverman/xrplink
1•joverman•57m ago•0 comments

FDA approves new kind of cholesterol pill

https://www.fda.gov/news-events/press-announcements/fda-approves-first-oral-pcsk9-inhibitor-lower...
2•mgh2•58m ago•0 comments

Useless Use of Cat Award

https://porkmail.org/era/unix/award
1•gregsadetsky•1h ago•1 comments

Novo Space builds modular computers for satellite constellations

https://runtimewire.com/article/startup-spotlight-novo-space-builds-modular-computers-for-satelli...
1•ryanmerket•1h ago•0 comments

Gaming Sickness and Its Impact on Players' Experiences with Games

https://dl.acm.org/doi/10.1145/3670653.3677494
2•BiraIgnacio•1h ago•0 comments

I built a browser-based P2P file transfer tool using WebRTC

https://airdows.com/
2•SamOkampo•1h ago•1 comments

Jordan Ellenberg explains how geometry helps us understand the world

https://www.cbc.ca/lite/story/1.6448326
1•colinprince•1h ago•0 comments

Retry is not a loop, its a data structure

https://siddhantkhare.com/writing/retry-is-not-a-loop
2•meetpateltech•1h ago•0 comments

Association Between Low/No-Calorie Artificial Sweeteners and Cognitive Decline

https://www.neurology.org/doi/10.1212/WNL.0000000000214023
2•corvad•1h ago•0 comments

PersonalDrive: Personal Cloud Storage

https://personaldrive.xyz/
2•thunderbong•1h ago•1 comments

Implementation of "Writing a C compiler" in Zig

https://github.com/igor84/wcc
2•rguiscard•1h ago•0 comments

Toyota pump tech could be key to hydrogen-combustion practicality

https://www.autocar.co.uk/car-news/technology/toyota-pump-tech-could-be-key-hydrogen-combustion-p...
1•breve•1h ago•0 comments

Track you Claude Code usage in dollars

https://www.claudeusage.com/leaderboard
2•bazarkua•1h ago•1 comments

Seamless iPad (or any device that can run a web browser) drawing into org-mode

https://github.com/larrasket/org-pad.el
1•lr0•1h ago•0 comments

China cracks down on AI companions, forcing millions to break up

https://www.abc.net.au/news/2026-07-19/china-cracks-down-on-artificial-intelligence-companions/10...
3•defrost•1h ago•1 comments

Archaeologists found Homer's Iliad inside a 1,600-year-old Egyptian mummy

https://www.sciencedaily.com/releases/2026/07/260713084918.htm
4•NordStreamYacht•1h ago•0 comments

IceCream – Never use print() to debug again

https://github.com/gruns/icecream
1•gregsadetsky•2h ago•0 comments

Claude Is Painful

5•kderbyma•2h ago•3 comments

Deepsec

https://github.com/vercel-labs/deepsec
2•handfuloflight•2h 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.