frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Rewriting a Six-Year-Old Personal Project with AI

https://www.hanqi-blog.com/translation/ai_coding
1•HanQi•4m ago•0 comments

Tnk9x – Battle City (NES, 1985) remake in Go, playable in the browser

https://shpaker.github.io/tnk9x/
1•shpaker•6m ago•1 comments

A 'secret' project – HomeComputerMuseum on Patreon

https://www.patreon.com/computermuseum/posts/secret-project-165269569
1•rbanffy•10m ago•0 comments

Ask HN: Will this setup work or is it just adding complexity?

1•classicpsy•11m ago•0 comments

Lionel Messi Is Impossible (2014)

https://web.archive.org/web/20140702015342/http://fivethirtyeight.com/features/lionel-messi-is-im...
1•chistev•15m ago•0 comments

Messi's Medical Journey

https://journeys.dartmouth.edu/marcanovicoff22/messis-medical-journey/
1•chistev•16m ago•0 comments

Extending older smartphone lifespans with local-first AI and zero cloud uploads

https://github.com/mike5gao/setting-for-me
1•mike5gao•18m ago•0 comments

Space as a Catalyst for Drug Development

https://bsgn.esa.int/usecases/drug-development/
1•F_Space_EU•18m ago•0 comments

China is starting to measure EV charging times in seconds, not minutes

https://electrek.co/2026/07/30/china-is-starting-to-measure-ev-charging-times-in-seconds-not-minu...
1•TechTechTech•19m ago•1 comments

Russia is ramping up mass production of drone motors

https://theins.press/en/inv/295510
1•sirpilade•21m ago•0 comments

Japan is launching its first centralized intelligence agency since WWII

https://www.cnn.com/2026/07/30/asia/japan-new-intelligence-agency-bureau-intl-hnk
1•1659447091•23m ago•0 comments

Anthropic's Claude AI models hack into 3 outside groups during testing

https://www.ft.com/content/1a841f08-8e59-49d9-9561-0ed20e9190df
1•macleginn•24m ago•1 comments

System Administrator Appreciation Day July 31, 2026 – 27th Annual

https://SysAdminDay.com/
1•electrosphere•26m ago•1 comments

Anthropic's Claude breached 3 orgs, uploaded PyPI malware during tests

https://www.bleepingcomputer.com/news/security/anthropics-claude-breached-3-orgs-uploaded-pypi-ma...
1•sbulaev•27m ago•0 comments

And just like that Opus 5 ultracode wipes the database

https://www.reddit.com/r/Anthropic/comments/1v9iurd/and_just_like_that_opus_5_ultracode_wipes_the/
1•_____k•27m ago•0 comments

MIT/FOSS repos our stargazers are starting to follow

https://www.agent-swarm.dev/blog/25-foss-repos-agentic-infra
1•pls-dnt-deploy•28m ago•1 comments

Government-Controlled Reddit Community Bans Discussion of Polygraphs

https://antipolygraph.org/blog/2026/07/30/government-controlled-reddit-community-for-u-s-secret-s...
1•giles_corey•30m ago•1 comments

Physicists link the Riemann Hypothesis to phase transitions in quantum systems

https://phys.org/news/2026-07-physicists-link-riemann-hypothesis-phase.html
2•captaincrowbar•34m ago•0 comments

DeepSeek V4 Flash 0731 Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/deepseek-v4-flash-ga
1•theanonymousone•35m ago•0 comments

Show HN: Free Etsy Fee and Profit Calculator

https://thesellermind.com/tools/fee-calculator
1•haimo•35m ago•0 comments

We built agents that write illustrated posts and ship to publisher platforms

https://www.crusbro.com/en/product-opc-agent.html
1•crusbro•36m ago•0 comments

Just because a game is on disc doesn't mean it will work in the future

https://arstechnica.com/gaming/2026/07/the-disc-is-not-the-game-physical-releases-increasingly-re...
2•rbanffy•43m ago•0 comments

Type Check Your Python in the Browser

https://www.basilisk-python.dev/playground/
1•cfdevelop•54m ago•0 comments

Find Duplicate Code in C# with Deslop

https://www.christianfindlay.com/blog/find-duplicate-code-csharp-deslop
1•cfdevelop•55m ago•0 comments

Learn how chips are made with this Rollercoaster Tycoon-inspired animation

https://laurentiugabriel.github.io/ChipTycoon/
2•laurentiurad•57m ago•0 comments

Anthropic finds three hacking incidents similar to the HuggingFace attack

https://simonwillison.net/2026/Jul/30/three-real-world-incidents/
5•Schlagbohrer•58m ago•3 comments

Danube's record low levels force shutdown of Hungary's only nuclear plant

https://www.bbc.com/news/articles/cn0nqv05g0do
5•vrganj•1h ago•2 comments

Show HN: In-browser photo inpainting with LaMa and ONNX

https://wipe.photos/
1•g58892881•1h ago•0 comments

Show HN: Dissecting the automation of a newspaper (Claude routine, GitHub Pages)

https://github.com/Lywald/zfrontpage/
2•ycosynot•1h ago•0 comments

Google fixed more Chrome bugs in June than over the past two years, thanks to AI

https://blog.google/security/chrome-stronger-with-every-update/
4•Garbage•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.