frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Rebase – weekly live gameshow for devs

https://rebase.tv/
1•thdxr•7m ago•0 comments

What If the Youth Crisis of Mental Health and Attention Never Happened?

https://grimoiremanor.substack.com/p/what-if-the-youth-crisis-of-mental
3•paulpauper•8m ago•0 comments

eBay is down this looks like a global incident 07142026

3•megamike•9m ago•1 comments

Opensourcing Multiplayer AI in Discord

https://bunnyandcloud.com/
1•mehdim•13m ago•0 comments

Ongoing changes to Android security patches due to AI vulnerability discovery

https://discuss.grapheneos.org/d/40286-ongoing-changes-to-android-security-patches-due-to-ai-vuln...
1•Cider9986•19m ago•0 comments

Meta's AI Glasses Will Activate the Camera Without Indicator Light

https://www.privacyguides.org/news/2026/07/13/the-next-version-of-metas-ai-glasses-will-activate-...
1•Cider9986•20m ago•0 comments

Open-sourced a dataset of companies and their detected tech stacks (CSV/JSON)

https://github.com/leadita/tech-stack-datasets
2•haynajjar•23m ago•0 comments

Library Catalog (Card Catalog)

https://en.wikipedia.org/wiki/Library_catalog
2•RetroTechie•25m ago•1 comments

Data centers have hiked electricity prices on the public by $23B

https://fortune.com/2026/07/14/data-centers-23-billion-electricity-bills/
6•measurablefunc•25m ago•0 comments

Beyond Nerva Nuclear Propulsion for Humanity's Expanse into the Cosmos

https://beyondnerva.wordpress.com/
1•pinewurst•29m ago•1 comments

Solving 20 Erdős Problems with 20 Codex Accounts Running in Parallel

https://www.starfleetmath.com/
1•colin7snyder•29m ago•0 comments

Vancouver PD website features Quick Escape button that wipes itself from history

https://vpd.ca/
2•LookAtThatBacon•29m ago•1 comments

Why Huge Pages matter for Postgres

https://clickhouse.com/blog/huge-pages-clickhouse-managed-postgres
1•thunderbong•35m ago•0 comments

Show HN: Digital De-Centralized Internship

https://lab.cedarridge.capital/
1•joey9prints•36m ago•0 comments

Amazon rolled back its monetization effort for its Selling Partner APIs

https://www.fivetran.com/blog/no-walled-gardens-amazon-reversed-its-seller-partner-api-fees
1•mogili•38m ago•0 comments

ChatGPT Remote Connection Failure

2•tumidpandora•40m ago•2 comments

Russian Artists Imagined in 1914 What Moscow Would Look Like in 2259

https://www.openculture.com/2026/07/russian-artists-imagined-what-moscow-would-look-like-in-2259....
2•gslin•41m ago•0 comments

IBM stock drops the most since 1987

https://finance.yahoo.com/markets/stocks/article/ibm-stock-closes-down-more-than-25-after-preanno...
3•mathattack•43m ago•1 comments

Free-form thermal cloaks in three dimensions

https://www.nature.com/articles/s41467-026-73167-0
1•T-A•45m ago•0 comments

Silicon Valley has a science fiction problem

https://aeon.co/essays/silicon-valley-has-a-science-fiction-problem
4•ohjeez•46m ago•0 comments

Legal AI, not a coding agent with scaffolding

https://lexifina.com/blog/legal-ai-not-a-coding-agent-with-scaffolding
2•alansaber•53m ago•0 comments

Is ChatGPT Down?

7•behindai•53m ago•4 comments

ChatGPT Is Down

https://chatgpt.com/
12•distrill•56m ago•11 comments

Why organizing knowledge in the age of AI sucks, and how I solve it

https://jordangreen.bearblog.dev/why-organizing-knowledge-in-the-age-of-ai-sucks-and-what-i-built/
2•enteigss•57m ago•1 comments

Show HN: Asciitopia – a library of animated ASCII art patterns

https://github.com/flawnn/asciitopia
1•flawn•58m ago•0 comments

Show HN: Self-hosted Minecraft multi-server panel for vanilla and modpacks

https://github.com/anefzaoui/minecraft-server-manager
1•ahmednefzaoui•1h ago•0 comments

House passes bill to make daylight saving time permanent

https://www.cbsnews.com/news/daylight-saving-time-permanent-house-vote/
1•m348e912•1h ago•5 comments

OpenAI and Anthropic warning about a future they're building at breakneck speed

https://www.businessinsider.com/openai-anthropic-warning-about-future-they-are-building-2026-6
3•falcor84•1h ago•0 comments

We Demand Perfect Machines yet Tolerate Human Carnage

https://www.noemamag.com/why-we-demand-perfect-machines-yet-tolerate-human-carnage/
5•mikelgan•1h ago•1 comments

Maincode launches Matilda, an AI assistant running on Australian infrastructure

https://blog.maincode.com/introducing-matildas-open-beta-australian-ai-built-for-trust/
1•huey77•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.