frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Get(key) in libmdbx by up to x1000 using a lock‑free cache on top of a B‑tree

https://github.com/orgs/Mithril-mine/discussions/314
1•erthink•2m ago•0 comments

Claude Session URL appended to commit messages and PR descriptions by default

https://github.com/anthropics/claude-code/issues/66504
2•sparsesignal•6m ago•0 comments

Ask HN: Do you run A/B Tests?

2•hackeryogi•17m ago•0 comments

Nobody Told Me People Still Code New Games for a 1982 Computer

https://comuniq.xyz/Technology/post?t=1634
2•01-_-•18m ago•0 comments

Sports Engines

https://random.ma.ttias.be/boxermotor
2•Mojah•19m ago•0 comments

AWS mumbles about its cost-busting networking tech when it should be shouting

https://www.theregister.com/networks/2026/08/29/aws-mumbles-about-its-cost-busting-networking-tec...
2•sandbach•20m ago•0 comments

Claude Team Plan for Scientists

https://claude.com/programs/team-plan-for-scientists
2•Anon84•23m ago•0 comments

Vaultwarden Sequence Diagrams

https://app.ilograph.com/demo.ilograph.Vaultwarden/Log%2520In
2•billyp-rva•26m ago•0 comments

No AI Fridays

https://noaifridays.com/
3•xendo•26m ago•1 comments

The MAI Image and Reve 2.1 ranks higher than GPT Image 2 now

https://artificialanalysis.ai/image/leaderboard/editing
2•creatune•30m ago•0 comments

Senior Software Engineer

3•sshahu•31m ago•0 comments

Tinkering is Up: browser-based local reader for Hacker feeds

https://future-secured.com/41133
2•adrianwaj•33m ago•0 comments

FOSDEM 2027: 30 & 31 January 2027 Brussels, Belgium

https://fosdem.org/2027/
2•edward•37m ago•0 comments

Eed

4•clawd2bot•41m ago•0 comments

Android /iOS mobile application Vulnerability Scanning

2•klars-ai•42m ago•0 comments

Supersaturated Sodium Acetate [video]

https://www.youtube.com/watch?v=rSZsGOzVByg
2•skibz•43m ago•0 comments

Leak of Internal Valve Data

https://www.pcgamer.com/games/fps/a-massive-cache-of-valve-data-has-reportedly-leaked-online-appe...
4•thispbowden•43m ago•0 comments

Tinyhash: SHA-512/256 in the browser, zero servers, zero deps

https://raw.githack.com/EltonCherrington/tinyhash/main/tinyhash.html
2•memctlagent2026•44m ago•0 comments

The shrinking landscape of linguistic diversity in the age of LLMs

https://www.nature.com/articles/s41562-026-02550-0
2•Anon84•44m ago•0 comments

AgentObs – a hook that blocks Claude Code before you hit your limit

2•klars-ai•44m ago•0 comments

Nothing Left to Say

https://jdranpariya.com/writings/nothing-left-to-say/
2•JDRanpariya•49m ago•0 comments

Hy4 Preview

https://simonwillison.net/2026/Aug/29/hy4/
3•kyisaiah47•51m ago•0 comments

monty-go: Pure-Go wrapper for Pydantic's Monty Python Interpreter

https://github.com/fugue-labs/monty-go
7•networked•55m ago•0 comments

Idlen: Ads in the IDE, in AI chats, and a self-serve ads manager

https://www.idlen.io/
2•paulidenfounder•55m ago•0 comments

Show HN: C# Game Engine with its own scripting language and IDE

https://github.com/ArcadeMakerSources/ArcadeMaker/tree/master
5•am-gm•55m ago•0 comments

A walkable ASCII cyberpunk city in one self-contained HTML file

https://github.com/MiguelCarino/CyberCity
4•ncts•55m ago•1 comments

He Was a Top Lawn Care Influencer on YouTube. Then Everything Went Haywire

https://www.nytimes.com/2026/08/30/magazine/greg-chism-youtube-bad-baby.html
3•snide•56m ago•0 comments

LLM usage in Debian neither endorsed nor prohibited

https://www.debian.org/vote/2026/vote_002#texte
3•birdculture•1h ago•0 comments

NASA's Roman Space Telescope: 'Go' for Launch

https://science.nasa.gov/blogs/roman/2026/08/30/nasas-roman-space-telescope-go-for-launch-2/
2•geox•1h ago•0 comments

Angels and Demons (Aquinas 101) [video]

https://www.youtube.com/watch?v=J_xIChMDYGI
2•3willows•1h 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.