frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Awe Radio, free 24/7 internet radio stations for anyone

https://aweradio.app/
1•vbst•2m ago•0 comments

How A Private Equity Group Drove an Apartment Complex into the Ground

https://www.nytimes.com/2026/08/28/nyregion/nob-hill-private-equity-fire.html
3•ceejayoz•4m ago•0 comments

A Great Rebalancing Is Coming

https://www.foreignaffairs.com/united-states/great-rebalancing-coming
2•toomuchtodo•7m ago•0 comments

I built a headless browser for AI agents in Rust. no Chromium, no V8

https://www.reddit.com/r/codex/comments/1w0trw7/i_built_a_headless_browser_for_ai_agents_entirely/
2•syumei•8m ago•0 comments

Claude Status – Degraded Performance for Claude Opus 5 and Claude Haiku 4.5

https://status.claude.com/incidents/hkcw95k7r0f4
2•kyisaiah47•9m ago•0 comments

Quanta.Ai.Code.Editor

https://github.com/ContegoCode/Quanta-Code-Editor
1•Quantaai•25m ago•3 comments

Show HN: NodeAkt – Zero-dependency distributed actor framework for TypeScript

https://tochemey.github.io/nodeakt/
1•Tochemey•33m ago•0 comments

Long March 6C rocket stage fragments in orbit, creating cloud of debris

https://spacenews.com/long-march-6c-rocket-stage-fragments-in-orbit-creating-cloud-of-debris/
2•bookmtn•34m ago•0 comments

Does the Sumerian King List Align with Paleoclimate Events?

https://www.vectorian.be/articles/2026-06-07/sumerian-king-list-paleoclimate-alignment-explorer/
11•dev_l1x_be•35m ago•2 comments

I spent years running prod-like homelabs. Here's what I learned about securing

https://www.amazon.ca/Homelab-Security-Blueprint-Building-Production-Grade-ebook/dp/B0GX2WLP51
1•sargetun•38m ago•0 comments

Does Computer Science Need Computers?

https://www.quantamagazine.org/does-computer-science-need-computers-20260828/
2•pykello•39m ago•0 comments

PPWR lands another blow to an precarious tabletop industry

https://www.rascal.news/ppwr-lands-another-blow-to-an-already-precarious-tabletop-industry/
2•healsdata•40m ago•0 comments

9th Circuit sides with states in Kalshi gambling fight

https://azmirror.com/2026/08/28/9th-circuit-sides-with-states-in-kalshi-gambling-fight-potentiall...
2•hungryhobbit•48m ago•1 comments

Anthropic Just Beat The Pentagon in Court

https://www.ibtimes.com/anthropic-just-beat-pentagon-court-judge-said-national-security-was-used-...
10•01-_-•49m ago•0 comments

Young adults under 21 traded $5B on Kalshi this year

https://www.cnn.com/2026/08/28/business/young-adults-trading-kalshi
4•01-_-•51m ago•2 comments

Steps Towards an Ecology of the Internet

https://anil.recoil.org/slides/2025-internet-ecology.html
1•luispa•51m ago•1 comments

X reveals foreign adversary behind fake accounts disseminating anti-data center

https://www.foxbusiness.com/fox-news-tech/x-reveals-foreign-adversary-behind-fake-accounts-dissem...
3•newsomix9xl•52m ago•2 comments

Roundup of September 2026 Bootstrapper Events

https://bootstrappersbreakfast.com/2026/08/27/roundup-of-september-2026-bootstrapper-events/
1•skmurphy•53m ago•1 comments

I accidentally turned LLM memory into program analysis

https://pwning.systems/posts/llm-memory-program-analysis/
3•matt_d•53m ago•1 comments

Zero-Cost 'Tagless Final' in Rust with GADT-Style Enums

https://inferara.com/blog/rust-tagless-final-gadt/
1•birdculture•54m ago•0 comments

PostgreSQL system catalog changes across versions

https://richyen.com/pg-catalog-almanac/
1•qianli_cs•59m ago•0 comments

LuaDB – A pure Lua RDBMS engine with B+Trees, WAL, and Postgres wire proto

https://github.com/jncastilho/luadb
1•COLD_WAR•1h ago•0 comments

Show HN: Substack and X and Reddit and Crypto = POW

https://www.proofofwriting.com/
1•caincurrency•1h ago•0 comments

The invisible labour behind 'intelligent' machines

https://theloop.ecpr.eu/the-invisible-labour-behind-intelligent-machines/
1•cdrnsf•1h ago•0 comments

Prop trading firms – the alternative and the reality

https://forexmechanics.com/choosing-broker/prop-trading/
1•wazka•1h ago•1 comments

Shortlinks

https://cailinpitt.com/blog/2026/8/28/shortlinks
1•classictraffic•1h ago•0 comments

Bigscreen Beyond 2 – the smallest VR headset

https://bigscreenvr.com/
1•bpierre•1h ago•0 comments

Now Hiring: Senior Open Source Maintainer

https://nesbitt.io/2026/08/28/now-hiring-senior-open-source-maintainer.html
1•metrofun•1h ago•0 comments

Cassius Marcellus Coolidge Gallery

https://www.dogsplayingpoker.org/gallery/coolidge/
2•billwirn•1h ago•0 comments

Xylitol linked to strokes and heart attacks

https://www.theguardian.com/society/2026/aug/28/sweetener-xylitol-used-in-chewing-gum-and-jam-lin...
4•yonibot•1h ago•1 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.