frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How to read the Attention formula from the Attention is all you need paper

https://twitter.com/i/status/2085629807656862037
1•asxndu•1m ago•0 comments

Americans Are Richer Than Everyone Else

https://www.cremieux.xyz/p/americans-are-richer-than-everyone
1•NewCzech•2m ago•0 comments

INT2 KV-cache quantization is getting surprisingly good

https://arxiv.org/abs/2608.02691
1•yunuyean•4m ago•0 comments

Canadian imports for data centre equipment up 88% from prior year

https://www.theglobeandmail.com/business/article-data-centre-equipment-imports-ai-boom-canada/
1•petethomas•5m ago•0 comments

Restaurants and theatres ban Meta's smart glasses

https://www.theguardian.com/technology/2026/aug/06/restaurants-pubs-and-theatres-ban-metas-spy-gl...
3•BlueBerry2001•11m ago•0 comments

Dark mode toggles: two states are enough

https://lea.verou.me/blog/2026/dark-mode-toggles/
2•aratahikaru5•13m ago•0 comments

I have never seen a game fail because the artists were too slow

https://www.productionalchemist.com/p/inever-seen-a-game-fail-because-artists-too-slow
1•Darkstryder•14m ago•1 comments

Ask HN: I can't post in Show HN

1•wensim•14m ago•0 comments

Programming the Gigatron

https://www.iwriteiam.nl/PGigatron.html
2•shakna•16m ago•0 comments

Show HN: XSAF – Extra Small Agent Framework

https://xsaf.ilha.build/
2•ryuzyy•17m ago•2 comments

The Argentine ranch where tech CEOs plan to ride out the apocalypse

https://www.ft.com/content/0e9c3c2e-1d67-4b70-981b-73bcdf409a6c
1•cs702•19m ago•0 comments

Show HN: Pikabo – A browser extension automation testing tool

https://github.com/sonic0002/pikabo
1•misonic•21m ago•0 comments

Show HN: Skill to stop AI agents from retry-looping during GitHub outages

https://github.com/tbille/check-github-status
1•totostache•22m ago•0 comments

All in one free AI job platform. AI CV, AI coverletter, free at score and more

https://www.apply-tracker.com/en
1•mirnumbing•23m ago•0 comments

On Bullshit – Harry Frankfurt (2005) [video]

https://www.youtube.com/watch?v=o0MF8HMUmIk
1•abrbhat•25m ago•0 comments

Emacs 4 Life

https://leanpub.com/emacs4life
2•jjuliano•28m ago•0 comments

Free Jimmy Lai

https://asiaviewnews.com/gigabots/threads?p=120068
1•mark336•31m ago•0 comments

Bluesky

https://bsky.app/intent/compose?text=x.com%2Fintent%2Ftweet%3Ftext%3D(9)%20Automotive%20Seat%20Mo...
1•rishika2003•33m ago•0 comments

Why Normal People Aren't Using AI Agents

https://www.wired.com/story/why-normal-people-arent-using-ai-agents/
2•joozio•35m ago•1 comments

Frame-Level Correction in a Deployed Bridge Companion

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=7244220
1•Ai_Sycophancy•36m ago•0 comments

YouTube Channel: AI for Developers

https://www.youtube.com/@jokioki
1•jokiruiz•38m ago•0 comments

First free TTS, STT and LLM three in one

https://neuronai.uz/en/
1•yutabek•43m ago•0 comments

OpenBGPD 9.2 Released

https://undeadly.org/cgi?action=article;sid=20260807061435
2•defrost•48m ago•0 comments

Specjudge, tells you which model you should use for each task

https://github.com/JoaquinRuiz/SpecJudge
1•jokiruiz•49m ago•0 comments

Sydney Towle, Who Chronicled Her Cancer on TikTok, Dies at 26

https://www.nytimes.com/2026/08/06/style/sydney-towle-dead.html
2•Teever•53m ago•0 comments

Converting models from various CAD systems to interactive 3D web visualizations

https://www.soft8soft.com/wiki/index.php/Creating_3D_web_experiences_from_CAD_data
2•soft8soft•54m ago•1 comments

Patio11: HuggingFace hack is most important security incident since Morris worm

https://twitter.com/patio11/status/2085504491458105732
2•reasonableklout•54m ago•0 comments

Df – creating 5k files on NTFS in 4.9s vs. 113s, by editing the MFT directly

https://github.com/boldizsarszakacsbekesi/diskforge
1•Boldizsar•55m ago•0 comments

Show HN: Catnip – GitHub repo stats: collect, analyze, TUI, agent inference

https://github.com/TGPSKI/catnip
1•tgpski•56m ago•0 comments

'Humans will be a rounding error on the internet' says Cloudflare exec

https://www.theregister.com/networks/2026/08/07/humans-will-be-a-rounding-error-on-the-internet-s...
5•defrost•58m 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.