frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Startup ideas from customer complaints, in seconds instead of months

https://blink-ideas-web.onrender.com/
1•drewgallagher•2m ago•0 comments

Disney+ Cracks Open the Door to TikTok Creator Videos

https://www.nytimes.com/2026/08/05/business/media/disney-tiktok-videos.html
1•bookofjoe•3m ago•1 comments

Show HN: VS Code Extension – Semantic Code Search (Semble)

https://github.com/SeanPedersen/vscode-semble
1•sean_pedersen•5m ago•0 comments

The Moon is Down; I have not heard the clock (2021)

https://www.lesswrong.com/posts/7nAvPLfidGG54XquJ/the-moon-is-down-i-have-not-heard-the-clock
2•Ariarule•6m ago•0 comments

OpenDoctrines, open source grand strategy game moddable via WASM in 13 languages

https://github.com/Pr1nted/Open-Doctrines
2•Pr1nted•12m ago•1 comments

I built fingerprint unlock for Mac (no Magic Keyboard) [video]

https://www.youtube.com/watch?v=tB3lk-PNA6I
1•Timothee•18m ago•0 comments

How much faster could racehorses get?

https://www.worksinprogress.news/p/why-horses-have-stopped-getting-faster
1•jprs•19m ago•0 comments

Show HN: Plan Review – independent review for Claude Code plans

https://github.com/dachev/plan-review
1•blago•19m ago•0 comments

Show HN: BlazeRules – YAML rule engine for streaming data, upto 5M records/SEC

1•jspuri•21m ago•0 comments

What it takes to build agent infrastructure yourself

https://twitter.com/harsehaj/status/2079593790814527998
1•gmays•25m ago•0 comments

Simon Willison on Technical Blogging

https://writethatblog.substack.com/p/simon-willison-on-technical-blogging
3•herbertl•26m ago•1 comments

Open source Cloud AI agents

https://www.krowoc.com/
1•nikonruslan7•30m ago•0 comments

The following is a valid DOS COM executable

https://oldbytes.space/@gloriouscow/117045701876951834
1•birdculture•30m ago•0 comments

PLS Try My OS

https://sites.google.com/view/taco-so-test/home
3•TACOCODER•35m ago•1 comments

New Orleans will use AI to answer 911 calls instead of a human

https://www.shreveporttimes.com/story/news/local/louisiana/2026/07/28/is-new-orleans-using-ai-to-...
11•champagnepapi•39m ago•4 comments

Equity Is Worth More Than Cash Because of Optionality

https://peter.website/equity-beats-cash
1•shachaf•39m ago•0 comments

The Investors Whose SpaceX Shares Vanished Before They Could Cash In

https://www.wsj.com/finance/stocks/spacex-ipo-spv-investors-2698a174
2•chirau•39m ago•2 comments

Space to cook: notes on engineering leadership

https://ianmccrystal.com/posts/notes-on-engineering-leadership/
1•ogundipeore•44m ago•0 comments

Hardware Devices That Support GNU/Linux

https://www.fsf.org/resources/hw/
1•Vanessaroulette•44m ago•0 comments

Obviously, DOGE Did Not Save Money

https://www.nationalreview.com/corner/obviously-doge-did-not-save-money/
3•petethomas•45m ago•0 comments

Dictionary Compression in Materialize

https://materialize.com/blog/dictionary-compression-in-materialize/
1•nate_stewart•45m ago•0 comments

I got a 1998 CD-ROM world atlas running on Windows 11

https://trevmex.com/post/824245295374303232/my-son-found-a-world-atlas-in-a-thrift-store-so-i
1•ilimllza•46m ago•0 comments

Meta fined $567M in largest child safety ruling against social media giant

https://www.bbc.com/news/articles/cd7lz3wr2rlo
5•tartoran•46m ago•0 comments

New Mexico court orders Meta to pay $567M over harms to children's mental health

https://www.theguardian.com/technology/2026/aug/06/new-mexico-court-meta
3•devonnull•46m ago•0 comments

Curating Crime and Punishment: What 10 Images Reveal About American Justice

https://www.themarshallproject.org/2026/08/06/crime-punishment-america-photos-archive
1•greenie_beans•47m ago•0 comments

European firms afraid of US tech kill switch but haven't made an escape plan

https://www.theregister.com/off-prem/2026/08/06/european-firms-afraid-of-us-tech-kill-switch-but-...
1•gpi•47m ago•0 comments

All Agent Skills

https://allagentskills.com
3•Diablo556•48m ago•0 comments

Tracely – Turn AI agent production failures into CI regression tests

https://tracely-studio.xyz/
2•jwuthri•51m ago•0 comments

The Code Shackle

https://codeshackle.com
2•kallisti5•56m ago•1 comments

I launched a fake deodorant brand to see if AI would notice

https://xcancel.com/antibot/captcha
3•glaslong•58m 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.