frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Waymo called the cops on teen riders, raising privacy concerns

https://www.npr.org/2026/07/10/nx-s1-5886113/waymo-police-privacy-driverless-autonomous-vehicles
1•sxp•2m ago•1 comments

The Art of Asking Questions

https://asteriskmag.com/issues/04/the-art-of-asking-questions
1•andsoitis•5m ago•0 comments

Selling Abstraction

https://asteriskmag.com/issues/14/selling-abstraction
1•andsoitis•6m ago•0 comments

GPT 5.6 chart analysis tool

http://derac.org/gpt56charts/
1•derac•12m ago•1 comments

Persistent memory for Claude Code that survives context compaction

https://mentedb.com
1•mentedb•12m ago•0 comments

Show HN: BoundFlow – an open-source control plane for AI agents

https://github.com/boundflow/boundflow
1•alama24•12m ago•0 comments

Show HN: The Quiet Map – Earth's quietest place, measured by seismometers

https://thequietmap.org/
1•theceka•12m ago•0 comments

Where did my segfault go?

https://rmpr.xyz/Where-did-my-segfault-go/
2•RMPR•13m ago•0 comments

Blocking Distracting News Links

https://retout.co.uk/2026/07/10/blocking-distracting-news-links/
1•edward•17m ago•0 comments

Here's Why Some Humans Can Hear Super Low-Frequency Sounds

https://nautil.us/heres-why-some-humans-can-hear-super-low-frequency-sounds-1282626
2•Brajeshwar•18m ago•0 comments

GitByBit

https://gitbybit.com/
1•neochief•18m ago•0 comments

Madame Semver Will See You Now

https://nesbitt.io/2026/05/10/madame-semver-will-see-you-now.html
2•birdculture•20m ago•0 comments

LLMs are adapting their environments to themselves

https://ianbarber.blog/2026/07/11/who-is-walking-who/
2•phpencil•21m ago•0 comments

Show HN: Document Scanner for Freight Verification

https://www.cipherandrow.com/
1•jnowlan21•24m ago•0 comments

Being part of one of the biggest wealth creation events in history (AI)

https://www.washingtonpost.com/technology/2026/07/11/ais-soon-to-be-billionaires-want-know-what-d...
1•bookofjoe•25m ago•1 comments

Bluesky has an official CEO again

https://www.engadget.com/2212928/bluesky-official-ceo-toni-schneider/
1•cdrnsf•25m ago•0 comments

Cuban Missile Crisis II – Cuban Has Drones Capable of Striking the USA

https://jeffreylminch.substack.com/p/cuban-missile-crisis-ii-cuban-has
1•rmason•27m ago•1 comments

Harmonic Contour Integration: Compact, distributed edge detection algorithm

https://github.com/RenderBear/hci
1•RenderBear•27m ago•1 comments

Bitemporal provenance in agent memory: What did we believe, when, and why

1•shanrizvi•27m ago•0 comments

Construction workers, electricians, couriers: ICE disguises to detain migrants

https://english.elpais.com/usa/2026-07-11/construction-workers-electricians-couriers-how-ice-agen...
4•hn_acker•28m ago•2 comments

Restoring and Demoing 1960s Vintage Computers at the Computer History Museum [pdf]

https://ibm-1401.info/pictures/Proc-MIW-2017-Garner-1401PDP1.pdf
2•rbanffy•28m ago•0 comments

Show HN: OpenBenchmarks – Helping agents discover and pick the right SaaS APIs

https://openbenchmarks.com
4•fenilsuchak•29m ago•2 comments

Entire Is building a Git network for agents

https://thenewstack.io/entire-git-for-agents/
1•rmason•30m ago•0 comments

The code review is dead, long live the code review

https://www.thoughtworks.com/en-us/insights/blog/testing/code-review-dead-long-live-code-review
1•backlit4034•30m ago•0 comments

OpenAI Forked Git on GitHub

https://github.com/openai/git
22•rahlokzero•30m ago•16 comments

Why does Opus 4.8 think it's morally superior

1•hughmcinnis•34m ago•1 comments

I built TradingSpy: local, privacy-first AI trading assistant(First Open Source)

https://github.com/mrhustlex/TradingSpy-TradingAgentService
1•mrhustlex•35m ago•0 comments

GPT-5.6-Sol just accidentally deleted almost ALL of my Mac's files

https://xcancel.com/mattshumer_/status/2075657271401390161
3•theanonymousone•35m ago•0 comments

QuickJS: An Embeddable JavaScript Engine

https://bellard.org/quickjs/
1•azhenley•37m ago•0 comments

Modern Design Headache: A Cerebral Basis for Visual Discomfort and Visual Stress

https://www.mdpi.com/2411-5150/10/2/34
1•rawgabbit•43m ago•1 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.