frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Punched Card Tabulator

https://www.ibm.com/history/punched-card-tabulator
1•Bluestein•59s ago•0 comments

A Deep Dive into C++26 Std:Hive: The Ultimate Container for Active Data

https://towardsdev.com/cpp26-std-hive-deep-dive-tutorial-5bdaa44f4d94
1•ibobev•3m ago•0 comments

Atari Legacy Magazine

https://www.goto10retro.com/p/atari-legacy-magazine
1•ibobev•5m ago•0 comments

Claude Code context management: when to /clear and when to /compact

https://tim-schipper.nl/en/blog/claude-code-context-management
2•opwizardx•7m ago•0 comments

Using the Xteink X4, a minimalist e-reader

https://log.schemescape.com/posts/hardware/xteink-x4.html
2•speckx•7m ago•0 comments

Iceberg Collapses and Flips over in Ilulissat, Greenland (July 25, 2026) [video]

https://www.youtube.com/watch?v=UufMqwyO7pY
1•Bender•7m ago•0 comments

Software is about people, not code

https://letterstoanewdeveloper.com/2020/01/27/software-is-about-people-not-code/
3•venamresm__•7m ago•0 comments

99% of My Website Traffic Is Bots

https://patronview.com/news/99-percent-of-my-website-traffic-is-bots/
5•petercooper•11m ago•1 comments

China-Free Batteries Made from Salt Are Finally Here

https://www.wsj.com/business/energy-oil/china-free-batteries-made-from-salt-are-finally-here-cc1c...
2•Vaslo•11m ago•0 comments

Show HN: LettersPractice – Teach your child to read with a modified SRS engine

https://letterspractice.com/
1•NiloCK•11m ago•0 comments

Ultraviolet Bird Photography

https://uvbirds.com/
1•EndXA•11m ago•0 comments

Show HN: Wellsy: Health and Journal

https://www.wellsy.se/en
1•planting•12m ago•0 comments

Local AI Stack Planner

https://local-ai-models.ai/
1•krunck•12m ago•0 comments

Map of the Internet (2006)

https://xkcd.com/195/
1•basilikum•13m ago•0 comments

What Gives AI-Generated Text Away? Not Em Dashes [video]

https://www.youtube.com/watch?v=2jSU0mIzsMM
1•amichail•14m ago•0 comments

AI Threatens Our Economy and Democracy Itself

https://www.spiegel.de/international/business/was-marx-right-how-ai-threatens-our-economy-and-dem...
2•dmckinno•15m ago•0 comments

The 25 Objects That Explain America

https://www.nytimes.com/interactive/2026/08/04/opinion/museum-of-america.html
1•bookofjoe•15m ago•1 comments

Ford Fathom Is Here the $29,945 Electric Truck [video]

https://www.youtube.com/watch?v=4tYewY3P_CY
1•rawgabbit•16m ago•0 comments

Moonshot's AI model Kimi k3 breaks out of testing environment, researchers say

https://www.reuters.com/legal/litigation/chinese-startup-moonshots-ai-model-breaks-out-testing-en...
2•tom2026hn•17m ago•1 comments

Your Big Brain Wouldn't Be Possible Without Sugar

https://nautil.us/your-big-brain-wouldnt-be-possible-without-sugar-1283454
1•Brajeshwar•17m ago•0 comments

Ask HN: Claude Code Alternatives

1•salahadawi•17m ago•0 comments

How many paper folds would get you to the moon?

https://www.scientificamerican.com/article/how-many-paper-folds-would-get-you-to-the-moon/
1•beardyw•20m ago•1 comments

2026 Worst City for Bed Bugs Is Chicago, IL

https://www.orkin.com/press-room/chicago-worst-city-for-bed-bugs-again
1•speckx•20m ago•0 comments

From Handmade to AI-Made Websites: 20 Years in Website Development

https://www.xfive.co/blog/20-years-website-development
1•lubos76•22m ago•0 comments

I Built Remembr

https://apps.apple.com/us/app/remembr-shared-reminders/id6791300772
1•samltschenk•22m ago•2 comments

99.1% Totality

https://twitter.com/garrytan/status/2062760454649487491
1•gmays•23m ago•1 comments

As Reddit stock falls, CEO questions value of Google's AI Overviews

https://arstechnica.com/ai/2026/08/reddit-ceo-on-ai-overviews-were-still-looking-for-that-win-win/
3•mooreds•23m ago•0 comments

Official Dwarf Fortress Guide for Beginners (2026) [video]

https://www.youtube.com/watch?v=aRTwK8XR6kE
1•skibz•23m ago•0 comments

Bb Agent IDE

https://github.com/get-bb/bb
1•dfaiv•24m ago•1 comments

Mining Bitcoin with 2013 USB sticks, a Jalapeño and my phone (pure Python)

https://github.com/03012009BTC/miners-bitcoin-lottery
1•03012009BTC•24m 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.