frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Peko, an End-to-End Platform for Shipping Native Apps

https://pekoui.com
1•IAmPrestonBrown•2m ago•0 comments

I got tired of the endless 'news' barrage

https://flowinfo.co/
1•flowinfo•3m ago•1 comments

When Cloud AI Escapes: OpenAI and Anthropic Models Breach Live Networks

https://blog.neutrontech.ai/2026/08/03/when-cloud-ai-escapes-openai-anthropic-models-breach-live-...
2•NeutronTech_ai•3m ago•0 comments

The State of Chez Scheme in Debian

https://weinholt.se/articles/state-of-chezscheme-in-debian/
1•birdculture•4m ago•0 comments

Google dev kit spurs first-ever agent-on-agent violence

https://www.theregister.com/security/2026/08/03/google-dev-kit-spurs-first-ever-agent-on-agent-vi...
2•hacker_nows•5m ago•0 comments

A Claude Skill that runs a skeptical-VC teardown on your startup idea

https://github.com/zszendro/vc-teardown
1•zszendro•6m ago•0 comments

The Patreon Problem

https://www.pleasehustleresponsibly.com/p/the-patreon-problem
1•angelahollowell•8m ago•1 comments

Connecting an LLM to Your Data Is the 21% Solution

https://optimaflo.io/blog/connect-llm-to-your-data
1•evan_rosa•8m ago•0 comments

Company Offering Printed Books to Train AI Stops After 404 Media Coverage

https://www.404media.co/ai-company-training-scanning-books-database-isbndb/
2•Jimmc414•10m ago•0 comments

Abridge a code diff into a reading diff

https://meat.dev
1•keleftheriou•10m ago•0 comments

Demand from AI data centers drives up computer memory prices

https://www.npr.org/2026/07/30/nx-s1-5909318/massive-demand-from-ai-data-centers-drives-up-comput...
2•Jimmc414•10m ago•0 comments

Used Claude to make a screen time app that let's me exclude certain apps

https://github.com/DaanyaalSobani/truescreentime
1•daanyaalss•10m ago•1 comments

The SpaceX Falcon 9 Moon Crash Is a Warning for Lunar Bases

https://www.wired.com/story/spacex-falcon-moon-crash-warning-for-lunar-bases/
2•ojosilva•11m ago•1 comments

The System That Turned Paper Charts into Digital Medical Records

https://spectrum.ieee.org/ieee-milestone-digital-medical-records
1•Jimmc414•12m ago•0 comments

Show HN: Svelte-rs – a Svelte compiler in Rust

https://github.com/MrWaip/svelte-rs
2•mrwaip•12m ago•0 comments

Observational planning for the 2026 August 5 Falcon 9 Upper Stage lunar impact

https://arxiv.org/abs/2607.14625
1•wertyk•12m ago•0 comments

Show HN: Poker and Liar's Dice over Bluetooth Low Energy

https://testco.de/airplane-mode-games
1•yincrash•12m ago•0 comments

Show HN: Dashboard for UniFi Up-AirQuality Sensor

https://github.com/bsidio/unifi-protect-airquality-dashboard
1•humbfool2•13m ago•0 comments

No data centers in my backyard

https://jasmi.news/p/no-data-centers-in-my-backyard
2•annapowellsmith•13m ago•1 comments

Rider on the Storm (2011)

https://www.damninteresting.com/rider-on-the-storm/
1•EndXA•14m ago•0 comments

Code Scan Challenge

https://codedelta.app/article-scan-challenge.html
1•code-delta-app•14m ago•0 comments

Boomers Are Leaving Behind More Art Than Anyone Wants

https://www.bloomberg.com/news/features/2026-07-31/the-great-wealth-transfer-includes-1-trillion-...
2•lispybanana•15m ago•0 comments

Eating less protein could help you live longer (mouse study)

https://www.scientificamerican.com/article/eating-less-protein-could-help-you-live-longer/
1•abawany•15m ago•0 comments

Scaling Agents for Computer Use

https://openreview.net/challenge?redirect=%2Fforum%3Fid%3Deve4jBYa8D%26noteId%3D1ibCP6aCv6%26refe...
2•taro666•15m ago•0 comments

Gleam for Python Programmers

https://third-bit.com/gl4py/
1•olexsmir•15m ago•0 comments

Texas Governor Abbott Directs Comprehensive Data Center Audit

https://gov.texas.gov/news/post/governor-abbott-directs-comprehensive-data-center-audit
3•toomuchtodo•16m ago•1 comments

UIViews

https://uiviews.com/
1•frizlab•16m ago•0 comments

Minimum Description Length Meets Singular Learning Theory

https://arxiv.org/abs/2510.12077
1•E-Reverance•19m ago•0 comments

Can an AI Model Obey a Strict Style Guide?

https://bymorning.ai/journal/ai-style-guide
1•johnrising•20m ago•1 comments

Show HN: Fetchcheck – send a signed crawler to any site and see if it gets in

https://sitedex.dev/tools/fetchcheck
1•zeppelin_7•22m 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.