frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

People are vandalizing Flock surveillance cameras

https://www.npr.org/2026/08/21/nx-s1-5939851/flock-cameras-police-block-surveillance-vandalize
1•0in•2m ago•0 comments

Linus: And this was a debug session from hell, enormously helped by an AI

https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=818bebeb63dd6bf5f4e...
1•Garbage•2m ago•0 comments

Giving an LLM your prod database is easy. Taking access away is the hard part

https://deepsql.ai/blog/giving-an-llm-your-database-is-easy-taking-access-away-is-hard
1•venkat971•8m ago•1 comments

Show HN: A fruit fly on the web powered by the real FlyWire connectome

https://github.com/DustinBrett/daedalOS
1•DustinBrett•13m ago•0 comments

Open-source field operations system for construction

https://taskfleetai.github.io/fieldfleet/
1•iguardo•15m ago•0 comments

The Cognitive Barrier to Teaching

https://educationrealist.substack.com/p/the-cognitive-barrier-to-teaching
1•barry-cotter•18m ago•0 comments

Instinct on X

https://instinctonx.com/2026-08-21
2•ajwaxman•19m ago•0 comments

Direct light-to-token conversion with integrated 2D photosensitive memory

https://www.nature.com/articles/s44460-026-00122-3
1•eunos•20m ago•0 comments

Startup Founders Are Working Harder Than Ever to Keep Up with Their AI Agents

https://www.wsj.com/tech/ai/ai-agents-startup-work-culture-fa10494d
1•fortran77•21m ago•1 comments

Google MADE A MISTAKE – Pixel 11 Pro Fold durability test [video]

https://www.youtube.com/watch?v=jUT3rUZGqLA
1•canucker2016•24m ago•0 comments

Run frontier models on gaming GPUs

https://twitter.com/andy_shuoyang/status/2090856982383300898
1•eob•27m ago•0 comments

Guitar Tuner (2015)

https://aerotwist.com/blog/guitar-tuner/
1•kaycebasques•27m ago•0 comments

[BOOK REVIEW] The Escape Artist

https://www.astralcodexten.com/p/your-book-review-the-escape-artist
1•barry-cotter•28m ago•0 comments

How fast is C++26's std:hive?

https://lemire.me/blog/2026/08/02/how-fast-is-c26s-stdhive/
2•signa11•32m ago•0 comments

Próspera- libertarian utopia on Caribbean island off the coast of Honduras

https://www.abc.net.au/news/2026-08-22/honduras-prospera-libertarian-utopia-caribbean-roatan/1070...
1•defrost•33m ago•0 comments

Single file apps with Gleam and Bun

https://alistair.sh/gleam-bun-apps
1•alistaiir•37m ago•0 comments

Ask HN: How to Claude Like Anthropic

1•haint_•47m ago•1 comments

A Stronger Goldbach Conjecture

https://ewlevitt.com/goldbach
2•ggossel•52m ago•0 comments

Syntax

https://www.doc.cc/syntax
3•pentagrama•1h ago•0 comments

S&P 500 CEO median pay hits $17.3M, widening CEO-worker ratio to 312-to-1

https://finance.yahoo.com/markets/stocks/articles/p-500-ceo-median-pay-234900518.html
5•newsomix9xl•1h ago•0 comments

Early Humans Likely Ate Carbs and Sugary Foods

https://www.history.com/articles/early-human-ancestors-diet-sugar-carbs
6•gmays•1h ago•0 comments

Show HN: I let an subagent workflow refactor my codebase for three days

https://github.com/ringlochid/oh-my-subagents
4•ringlochid•1h ago•2 comments

New human genome has almost no gaps

https://cen.acs.org/biological-chemistry/genomics/single-complete-diploid-human-genome/104/web/20...
2•gmays•1h ago•0 comments

Robots running into walls go viral ahead of 2026 World Humanoid Robot Games

https://mashable.com/tech/world-humanoid-robot-games-2026-running-fall-accident
1•newsomix9xl•1h ago•0 comments

Tesla's Solar Roof is Dead – Here's what went wrong

https://techcrunch.com/2026/08/21/teslas-solar-roof-is-dead-heres-what-went-wrong/
1•freediddy•1h ago•1 comments

'Betrayal': Ranchers lash out at Donald Trump's plan to cut tax on beef imports

https://www.ft.com/content/7aabb591-ca73-4d87-96ad-dac9a210e1d0
4•petethomas•1h ago•2 comments

China's robots rock, box and mix drinks. Can they outperform humans?

https://www.ft.com/content/e16ded89-b618-4952-a0ab-96ef11d06582
1•newsomix9xl•1h ago•0 comments

Anthropic Could Aim to Raise $100B in Blockbuster IPO

https://www.nytimes.com/2026/08/21/technology/anthropic-ipo-100-billion.html
2•mfiguiere•1h ago•0 comments

Show HN: Anjadhe – privacy first AI assistant, no account, no server DB

https://www.anjadhe.com/demo
1•ram-bv•1h ago•1 comments

Execution Is the Moat

https://aspiringforintelligence.substack.com/p/execution-is-the-moat
3•navjeetgill307•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.