frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Big Tech piles on $350B in debt to fuel AI data center race

https://www.latimes.com/business/story/2026-07-10/big-tech-piles-on-350-billion-in-debt-to-fuel-a...
1•1vuio0pswjnm7•1m ago•0 comments

Credit Sleeves Collapse Bubbles

https://medium.com/@mcgrathrpm/credit-sleeves-are-the-bubble-6c57a54b9cff
1•piyh•1m ago•0 comments

Can't Read Slop Anymore

https://blog.imraniqbal.org/cant-read-slop-anymore/
1•HotGarbage•3m ago•0 comments

Chipmakers have 67,000 unfilled jobs. An old training trick won't work this time

https://qz.com/semiconductor-workforce-1970s-training-fab-hiring-070626
1•edg5000•4m ago•0 comments

AI boom puts Big Tech's transparency to the test

https://www.axios.com/2026/07/10/ai-big-tech-transparency-electricity-water-use
1•1vuio0pswjnm7•5m ago•0 comments

Guide to the circular deals underpinning the AI Boom

https://www.bloomberg.com/graphics/2026-ai-circular-deals/
1•leonidasrup•16m ago•0 comments

Cottage Computer Programming (1984)

https://www.atariarchives.org/deli/cottage_computer_programming.php
1•lioeters•21m ago•0 comments

Landmark – an algorithmic index of relevant names, unclaimed at launch

https://landmarkindex.org
1•javierqac•27m ago•0 comments

I made a free PDF Editor that runs in a browser

https://www.pdfsimplified.com/
1•sanusihassan•28m ago•2 comments

Rejected by LessWrong for "Yellow Flags"

https://zenodo.org/records/21312304
1•tintweezl•31m ago•0 comments

Digital Dispensary and Headshop

https://shop.omeweed.com/
1•mmorga71•33m ago•0 comments

HubSpot transactional email: route through your domain with MailKite – MailKite

https://mailkite.dev/blog/hubspot-transactional-email-domain/
2•gabe_karina•34m ago•0 comments

'Hysteria' Grips San Francisco's Housing Market as A.I. Wealth Pours In

https://www.nytimes.com/2026/07/08/technology/san-francisco-home-sales-openai-anthropic-ipo.html
1•1vuio0pswjnm7•35m ago•0 comments

Why Write Code in 2026

https://softwaredoug.com/blog/2026/07/09/write-code.html
10•zdw•35m ago•2 comments

the history of the human face

https://economist.com/culture/2026/07/09/the-history-of-the-human-face-is-more-than-skin-deep
2•andsoitis•44m ago•0 comments

The Work of Helping A.I. Destroy Work

https://www.nytimes.com/2026/07/10/business/ai-white-collar-jobs.html
1•thm•44m ago•0 comments

Show HN: Chameleon – shows Claude a real file from your repo before it edits

https://github.com/crisnahine/chameleon
1•crisnahine•46m ago•0 comments

Under federal rule, colleges must leave grads better off or lose financial aid

https://www.npr.org/2026/06/30/nx-s1-5835631/turner-camhi-do-no-harm-college-loans
20•nradov•50m ago•7 comments

A Captive Audience

https://seths.blog/2026/07/a-captive-audience/
2•herbertl•57m ago•0 comments

In defense of not understanding your codebase

https://www.seangoedecke.com/in-defense-of-not-understanding-your-codebase/
1•herbertl•58m ago•0 comments

Cloudflare Threatens to Cut Google Off from Their Publishers in Searches

https://www.nakedcapitalism.com/2026/07/cloudflare-threatens-to-cut-google-off-from-their-publish...
4•hackandthink•1h ago•0 comments

Show HN: Dgxtop: Rust Monitor for DGX or need to monitor GPU status

https://github.com/DennySORA/dgxtop
1•dennysora-main•1h ago•0 comments

Run Claude and Codex in the Browser [video]

https://www.youtube.com/watch?v=wgNbFRgQXwU
4•Ellis_dev•1h ago•2 comments

The Mind-Bending Company That Gets a Million Job Applications–and Rejects 99.9%

https://www.wsj.com/business/bending-spoons-jobs-hiring-stock-eaed2b8e
1•Stratoscope•1h ago•1 comments

Notion database based form builder

https://ndbforms.com/
2•nookeshkarri7•1h ago•0 comments

Martin van Creveld Interview

https://www.sonshi.com/martin-van-creveld-interview.html
1•fisheuler•1h ago•0 comments

The Entire History of Tetris Game Design

https://www.youtube.com/watch?v=mGuYUEuVDYc
1•euthymiclabs•1h ago•0 comments

Negotiating AI in Open Source Software Communities: A Case Study of LLVM Project

https://gupea.ub.gu.se/server/api/core/bitstreams/ad9b523e-f6d5-4dc2-b632-64f9734484cf/content
1•matt_d•1h ago•0 comments

What do you do when your to-do list gets out of hand?

https://www.taskloco.com/
2•taskloco_nyc•1h ago•1 comments

I built my DREAM New York City apartment from SCRATCH in 93 days [video]

https://www.youtube.com/watch?v=9hL4V3KFTKQ
1•tekacs•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.