frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cross-stitch prep for math nerds

https://posh.wiki/blog/2026-07-20-hoop-sizing/
1•speckx•35s ago•0 comments

The linear algebra and calculus behind every model

https://stochastic.blog/the-linear-algebra-and-calculus-behind-every-model/
1•Anon84•1m ago•0 comments

A sidecar named desire (2007)

https://www.scmp.com/article/614660/sidecar-named-desire
1•YeGoblynQueenne•2m ago•0 comments

Show HN: A daily spatial number puzzle

https://notebeck.com/sequence/
1•aidanbeck•2m ago•0 comments

Show HN: Invisible color – Logic mini game

https://invisible-color.vercel.app/
1•wrongful1520•4m ago•0 comments

Ask HN: Has your typing gotten worse with AI?

1•aizk•5m ago•0 comments

Examples from sci-fi of voice interfaces that stay on task

https://interconnected.org/home/2026/07/11/on-task
2•surprisetalk•6m ago•1 comments

Frontier-Bench

https://www.frontierbench.ai/announcement
1•stared•7m ago•0 comments

Stop hard-wiring LLMs into your code

https://wso2.com/library/blogs/ai-mediation-layer-ai-gateway/
2•langur•8m ago•0 comments

Setting up a remote environment for agentic coding on a VPS

https://ma.ttias.be/remote-coding-environment-vps/
1•speckx•8m ago•0 comments

Curl Bitsets

https://eissing.org/icing/posts/curl-bitsets/
1•mattjhall•8m ago•0 comments

Where Good Engineers Come From

https://lamis73.substack.com/p/where-good-engineers-come-from
1•Lamis-A•9m ago•0 comments

Show HN: Extension that shows complaints and more on NYC apartment listings

https://streetleaky.com/
1•willmeyers•10m ago•0 comments

Show HN: equitycalculator.org

https://www.equitycalculator.org/
1•morninj•12m ago•0 comments

Oracle fires 21,000 employees to fund AI spending

https://www.jpost.com/business-and-innovation/tech-and-start-ups/article-903442
4•DemiGuru•13m ago•0 comments

Microsoft – Open Weights and American AI Leadership

https://www.microsoft.com/en-us/corporate-responsibility/topics/open-weight/
4•louiereederson•14m ago•0 comments

Spending judgement where it matters: how we structure AI-native delivery

https://www.moystard.com/blog/ai-native-delivery/
1•moystard•15m ago•0 comments

Make an Origami Circuit Board

https://spectrum.ieee.org/origami-circuit-boards
1•dpapathanasiou•16m ago•0 comments

Indian court says OpenAI did not violate news agency ANI's copyright

https://www.reuters.com/legal/litigation/indian-court-rules-favor-openai-copyright-lawsuit-brough...
1•SanjayMehta•18m ago•0 comments

Measuring the Performance Cost of High Availability in Postgres

https://clickhouse.com/blog/postgresbench-ha
1•saisrirampur•18m ago•0 comments

Can This New Enzyme Turn Back the Clock in the Human Body?

https://www.nytimes.com/2026/07/24/science/enzymes-aging-cmlase.html
1•jcfrei•19m ago•0 comments

Python package installations as an index of local AI adoption

https://www.unite.ai/python-package-installations-as-an-index-of-local-ai-adoption/
1•50kIters•19m ago•0 comments

LLMs Reward Expertise

https://www.seangoedecke.com/llms-reward-expertise/
1•meetpateltech•20m ago•0 comments

Show HN: Marrow – self-hosted semantic search over your Claude Code sessions

https://github.com/gnosislabstech/marrow
1•gnosislabs•22m ago•0 comments

AGI Singer: Pluto, Recursive Alignment and Hallucination Suppression

https://medium.com/@miho999lv/agi-singer-pluto-recursive-alignment-and-hallucination-suppression-...
1•miho999lv•23m ago•0 comments

Learngraphtheory.org – Free Interactive Platform for Learning Graph Theory

https://learngraphtheory.org/
1•hadjoudj•23m ago•0 comments

Dramas in Backyard

https://www.drmindle.com/dramas-in-my-backyard/
1•drmindle12358•23m ago•0 comments

Show HN: Horch – tracks todos, people, and topics from your meetings, on-device

https://horch.app
1•mm7490•24m ago•0 comments

Pair prompt with Claude/codex AI agents

https://liveshortly.com
1•malviyamukul•24m ago•0 comments

The balance-sheet is out of kilter with its economy

https://economist.com/finance-and-economics/2026/07/23/the-worlds-balance-sheet-is-out-of-kilter-...
1•andsoitis•24m 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.