frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The hidden decision behind every delivery promise

https://medium.com/flat-pack-tech/the-hidden-decision-behind-every-delivery-promise-understanding...
1•robin_reala•48s ago•0 comments

Show HN: Zeroparams, a coding agent with zero parameters because it's just me

https://zeroparams.itdata.nu
1•jonatanholmgren•1m ago•0 comments

Why Loudly Crying Drowns Out Tears of Joy

https://jenniferdaniel.substack.com/p/why-drowned-out
1•lacieargyle•1m ago•0 comments

Elon Musk made flying worse so Palantir could profit

https://www.theverge.com/transportation/981194/faa-air-traffic-elon-musk-peter-thiel-palantir
2•trymas•2m ago•0 comments

Self-hosting your ATProto PDS

https://jola.dev/posts/self-hosting-your-pds
1•shintoist•3m ago•0 comments

Show HN: H2AI Chat – multi-AI debate you can self-host with local models (AGPL)

https://github.com/Tonterias/h2aichat
1•h2aichat•8m ago•0 comments

If you can draw the flowchart, you don't need an agent

https://willdady.com/if-you-can-draw-the-flowchart-you-dont-need-an-agent
1•Groady•10m ago•0 comments

An MCP server that turns a Claude conversation into scheduled carousels

https://postnitro.ai/mcp
1•MuneebAwan•11m ago•0 comments

US will allow some private firms to carry out cyberattacks

https://techcrunch.com/2026/08/13/in-a-first-us-will-allow-some-private-firms-to-carry-out-cybera...
2•deepmem•11m ago•0 comments

Microsoft working on Defender patch for ShieldBreak zero-day

https://www.bleepingcomputer.com/news/security/microsoft-working-on-defender-patch-for-shieldbrea...
1•DemiGuru•12m ago•0 comments

The Fairphone (Gen. 6)

https://www.fairphone.com/the-fairphone-gen-6-plus
1•mcraiha•12m ago•1 comments

Anatomy of a delegated audit – an agent, three specs, four traps

https://stl-lang.org/exhibit/
1•scoslab•13m ago•0 comments

Accurate int/float colour conversions

http://lomont.org/posts/2023/accuratecolorconversions/
2•fanf2•13m ago•0 comments

Don't Paste the AI, Please

https://dontpastetheai.com/
2•Bluestein•15m ago•2 comments

One affiliate now brings in half my SaaS sales

https://tinyfound.com/p/backl-io
1•alexbelyanin•15m ago•0 comments

Families with a mutation for gastric cancer have stomachs preemptively removed

https://www.theatlantic.com/health/2026/03/stomach-cancer-total-gastrectomy/686623/
1•ike_usawa•15m ago•0 comments

FritzHole – FRITZ OS DNS filter blocks unwanted content

https://fritz.com/en/pages/fritz-labor-8-40-zusatzinformationen
3•jeffreygoesto•16m ago•0 comments

Earth Mover's Distance

https://en.wikipedia.org/wiki/Earth_mover%27s_distance
1•ariru•16m ago•0 comments

AI Does Not Change Goodhart or the Folly of Tokenmaxxing

https://www.scrum.org/resources/blog/folly-tokenmaxxing-or-reinventing-wheel
1•swolpers•16m ago•0 comments

Rewriting a production compiler's IR with AI agents in five weeks

https://github.com/CommanderTvis/writing/tree/main/rr-truffle-rewrite
1•CommanderTvis•20m ago•0 comments

A $21B 'Kids in Chips' Startup Is Scooping Up Nvidia Talent

https://www.wsj.com/tech/ai/a-21-billion-kids-in-chips-startup-is-scooping-up-nvidia-talent-4d099f12
2•_tk_•22m ago•0 comments

Prompt Injection in VirusTotal's Code Insights API

https://exploiting.systems/posts/2026-08-08-prompt-injection-in-virustotals-code-insights-api
3•ropbear•26m ago•0 comments

Conlang

https://en.wikipedia.org/wiki/Constructed_language
1•svenfaw•27m ago•0 comments

As Wisconsin cities flee Flock, its shared camera network loses value

https://arstechnica.com/tech-policy/2026/08/as-wisconsin-cities-flee-flock-its-shared-camera-netw...
10•xoa•28m ago•1 comments

KDE's bookmark search ignores Brave because of one unmatched string

https://balint.blog/krunner-brave/
1•balintkorosi•28m ago•0 comments

Constantine's Bridge Has Surfaced from Beneath the Danube

https://thedebrief.org/a-mile-long-ancient-roman-engineering-marvel-has-suddenly-surfaced-from-be...
1•bookofjoe•31m ago•1 comments

Democracy vs. the machine: birth of digital age,the warnings that were ignored

https://www.theguardian.com/news/2026/aug/18/the-long-read-democracy-v-the-machine-digital-age-wa...
3•pseudolus•31m ago•0 comments

Searching for Answers from the Man Accused of Sabotaging Alaska's Senate Race

https://www.nytimes.com/2026/08/18/us/politics/dan-sullivan-alaska-senate-primary.html
1•dataflow•35m ago•0 comments

Wound/wait deadlock-proof mutex design

https://www.kernel.org/doc/html/latest/locking/ww-mutex-design.html
1•teleforce•35m ago•0 comments

Suicide hotlines don't seem to help

https://www.nber.org/papers/w35601
2•root-parent•40m ago•2 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.