frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Using Go for Mobile Apps

https://www.davidsobsessions.com/p/one-year-of-gomobile/
1•theanonymousone•1m ago•0 comments

The One-Step Trap (In AI Research)

http://incompleteideas.net/IncIdeas/OneStepTrap.html
1•jxmorris12•6m ago•0 comments

How Marco Rubio Is Running Venezuela from Afar

https://www.nytimes.com/2026/07/11/us/politics/how-marco-rubio-runs-venezuela.html
1•dataflow•8m ago•0 comments

Peter Thiel on Political Theology (Ep. 210)

https://conversationswithtyler.com/episodes/peter-thiel-political-theology/
1•ronfriedhaber•10m ago•0 comments

South Korea's hottest new bachelors are chip workers

https://www.technologyreview.com/2026/07/06/1140000/south-korea-bachelors-samsung-skhynix-chip-wo...
2•impish9208•10m ago•0 comments

Anthropic extends Fable 5 access through July 19

https://economictimes.indiatimes.com/tech/artificial-intelligence/anthropic-extends-fable-5-acces...
1•almog•11m ago•1 comments

The FBI built its own replica small town to simulate real-world cyberattacks

https://techcrunch.com/2026/06/13/the-fbi-built-its-own-replica-small-town-to-simulate-real-world...
2•gnabgib•14m ago•1 comments

Dari AI – An all-in-one AI assistant for macOS that runs on-device

https://apps.apple.com/kz/app/dari-ai/id6779357765?mt=12
1•KZ_AI•15m ago•0 comments

I love LLMs, I hate hype

https://geohot.github.io//blog/jekyll/update/2026/07/12/i-love-llms.html
3•therepanic•16m ago•0 comments

LLMs are still just low code / no code software

https://www.marble.onl/posts/llms_are_still_just_low_code_software.html
1•amarble•17m ago•0 comments

Show HN: FFI bindings for the Rockbox DSP, metadata, and playback engine

https://github.com/tsirysndr/rockboxd/tree/master/bindings
1•tsiry•17m ago•0 comments

Claude Code sends 33k tokens before reading the prompt; OpenCode sends 7k

https://systima.ai/blog/claude-code-vs-opencode-token-overhead
4•systima•22m ago•0 comments

ZeroOS New Operating System

1•apexbyte•22m ago•0 comments

Court

https://lilting.ch/en/articles/claude-code-court-tool-call-hang
1•kekqqq•23m ago•0 comments

I Lit Up an LED Using Only Lemons "No Batteries"

https://comuniq.xyz/post?t=1388
1•01-_-•25m ago•0 comments

I Learned to Read Again

https://substack.magazinenongrata.com/p/how-i-learned-to-read-again
2•georgex7•25m ago•0 comments

Formally verified temporal collisions in Kafka, NATS, RabbitMQ, and Pulsar

https://zenodo.org/records/21298530
1•illyar80•26m ago•0 comments

Building Going on to Convert Institution from a Revolutionary Makeshift (1933)

https://www.nytimes.com/1933/07/27/archives/nazi-prison-camps-to-be-permanent-building-going-on-a...
1•dredmorbius•27m ago•1 comments

Songs in Sign Language Reimagines Disney Musical Moments in ASL [video]

https://www.youtube.com/watch?v=v47p7XHLxYw
1•bane•30m ago•0 comments

Enriched environment exposure accelerates rodent driving skills

https://www.sciencedirect.com/science/article/pii/S0166432819311763
1•AFF87•31m ago•0 comments

Show HN: CC Founder Decision Engine

https://github.com/michaelaz774/decision-engine
1•michael774•32m ago•0 comments

AI and the Fall of Writing

1•Flundstrom2•39m ago•4 comments

Taliban Declares War on Smartphones

https://www.npr.org/2026/07/10/g-s1-132396/smartphones-taliban-afghanistan-ban
3•paulpauper•40m ago•0 comments

FCC Approves Test of Space Mirror to Light Night Sky Despite Outcry

https://www.nytimes.com/2026/07/10/climate/fcc-space-mirror.html
1•paulpauper•40m ago•0 comments

From A.I. To the Deep State, Michel Foucault Foresaw It All

https://www.nytimes.com/2026/07/10/books/review/michel-foucault-ai-tech-power.html
1•paulpauper•41m ago•0 comments

Ask HN: Recommended technographic API?

2•Poomba•42m ago•1 comments

Can We Understand How Large Language Models Reason?

https://cacm.acm.org/news/can-we-understand-how-large-language-models-reason/
3•adunk•43m ago•0 comments

MaFrida v0.3.0 Is Out

https://github.com/theShinigami/MaFrida
1•shiroChef•45m ago•0 comments

Dead Process Mate – a menu-bar app to kill leftover Node/dev processes

https://github.com/BartosK97/dead-process-mate
1•bartosk97•45m ago•0 comments

Claude Code May–July 2026 weekly limits promotion

https://support.claude.com/en/articles/15910845-claude-code-may-july-2026-weekly-limits-promotion
39•alvis•46m ago•49 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.