frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Learning from Experience Instead of Curated Datasets

https://oaklab.ai/posts/learning-from-experience-instead-of-curated-datasets
1•bwjx•1m ago•0 comments

J-Space: Yet Another LLM Mind Reader?

https://huggingface.co/blog/dlouapre/j-space
1•victormustar•2m ago•0 comments

Agentic development is standardizing faster than its operating model

https://blog.codacy.com/agentic-development-is-standardizing-faster-than-its-operating-model
1•claudiacsf•2m ago•0 comments

What housing in America could look like in 50 years

https://www.vox.com/the-highlight/493413/america-at-250-housing-crisis-cities-future
2•nabbed•2m ago•1 comments

Minutes with Douglas Maly

https://berlin.cwiemeevents.com/articles/5-minutes-with-douglas-maly
1•taubek•3m ago•0 comments

Silica, a notes/codebase agent that reverts its edits if they break coherence

https://github.com/kiycoh/silica-agent
1•kiycoh•4m ago•0 comments

Ask HN: How do you read programming books?

1•3booda•5m ago•0 comments

Show HN: Wrapper – Yet Another Agent Framework

https://github.com/xatuke/wrapper
1•satuke•5m ago•0 comments

Show HN: Saymade, a coding agent for building ambitious software efficiently

https://saymade.com
1•domag•5m ago•0 comments

Even if 90% of AI-discovered vulnerabilities are made up, it's still terrifying

https://kerkour.com/ai-slop-vulnerabilities-terrifying
3•redcannon218•7m ago•0 comments

You Have Become a Fat King

https://highstandards.substack.com/p/you-have-become-a-fat-king
1•speckx•8m ago•0 comments

Agents can now run the full SDLC. What do engineers do now?

https://www.augmentcode.com/blog/what-do-engineers-do-when-agents-run-the-full-sdlc
1•knes•9m ago•0 comments

Show HN: A prompt to make LLMs write property-based tests

https://github.com/e35zhang/property-testing-skill
2•e35zhang•9m ago•1 comments

Self-Hosted VPN Servers

https://bryanhu.com/easyVPN/
1•thatxliner•9m ago•1 comments

DKIM2: Successor to Arc and DKIM

https://dmarcguard.io/blog/arc-to-dkim2-future/
1•meysamazad•10m ago•0 comments

Ask HN: Why is this Microsoft Outlook page sending me elsewhere?

1•zwilderrr•10m ago•0 comments

Cloudflare Identifies Race Condition in Hyper's HTTP/1 Implementation

https://www.infoq.com/news/2026/07/cloudflare-hyper-bug-fix/
1•theanonymousone•11m ago•0 comments

Silverstone 2026 British GP

https://edleeman.co.uk/posts/silverstone-2026-british-gp/
1•meysamazad•11m ago•0 comments

Debian New Maintainers' Guide

https://www.debian.org/doc/manuals/maint-guide/index.en.html
1•gregsadetsky•11m ago•0 comments

Designing APIs for Agents

https://www.freestyle.sh/blog/opinion/designing-apis-for-agents
1•benswerd•11m ago•1 comments

How This Blog Is Deployed

https://connermccall.com/blog/2026/07/06/deployment/
1•meysamazad•11m ago•0 comments

Show HN: Anonymous LLM proxy. Pay in crypto, no account needed

https://nullsink.is/
1•not_wowinter13•13m ago•0 comments

Prefect Acquires Dagster

https://www.prefect.io/prefect-acquires-dagster
6•theanonymousone•14m ago•0 comments

Show HN: Topsoil – I turned my MacBook's notch into a dashboard for coding agent

https://topsoil-two.vercel.app/
1•davey2wavey•15m ago•0 comments

Alberta government wins secrecy award for opaque access-to-information process

https://cfe.torontomu.ca/news/blanket-smother-alberta-government-wins-secrecy-award-opaque-access...
1•lukeinator42•16m ago•0 comments

Bobbin: A diskless, API-only AppView for Tangled

https://blog.tangled.org/bobbin/
1•toomuchtodo•17m ago•0 comments

If You Can't Be Replaced You Can't Be Promoted

https://www.scarletink.com/if-you-cant-be-replaced-you-cant-be-promoted-career-growth-through-suc...
2•sharjeelsayed•18m ago•0 comments

Google Gemini's SynthID AI Watermark Detector Appears to Mix Up Results in Chat

https://leadstories.com/analysis/2026/07/google-gemini-synthid-detector-confuses-results-within-s...
1•mschenk•18m ago•0 comments

Show HN: Claude Organizer, folders and search for Claude.ai, all local

https://chromewebstore.google.com/detail/claude-organizer-folders/pnbhfiebkknicpbljchmgibnpmlgebif
1•Birodar•19m ago•0 comments

Just Let Me Write Digits

https://gendignoux.com/blog/2026/07/13/input-digits.html
1•gendx•19m 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.