frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Does every question mark deserve a Betteridge?

https://dynomight.net/betteridge/
1•surprisetalk•21s ago•0 comments

We retested a $48 DigitalOcean VM 3 months later: faster, still variable

https://webbynode.com/articles/same-48-digitalocean-vm-tested-faster-three-months-later
1•gsgreen•41s ago•0 comments

Only two letters score more in Scrabble than in Words With Friends

https://lkforge.com/blog/wwf-vs-scrabble-scoring/
1•lucianBKR•1m ago•1 comments

Anatomy of an AI Kill Chain – Airwars X AI Now Institute

https://ai-killchain.airwars.org
1•janpeuker•2m ago•0 comments

The Devouring of All Knowledge

https://ryanfleck.ca/2026/the-devouring-of-all-knowledge/
1•rflec028•2m ago•0 comments

A tool that prevent agents from cutting their own connection

https://github.com/MildyNora/NetworkSandbox
1•MildyNora•3m ago•0 comments

The Mess, the Commons, and the Paths Out of Mess

https://hamishcampbell.com/the-mess-the-commons-and-the-paths-out-of-mess/
1•speckx•3m ago•0 comments

Spies in the sky: how worried should we be about AI-enabled smart lamp-posts?

https://www.theguardian.com/world/2026/jul/28/spies-in-sky-worried-ai-enabled-smart-lamp-posts-su...
2•Symbiote•3m ago•0 comments

An opinionated guide to which AI to use to do stuff

https://simonwillison.net/2026/Jul/27/an-opinionated-guide-to-which-ai-to-use-to-do-stuff/
1•Brajeshwar•3m ago•0 comments

Show HN: Nutaan – AI-powered voice calling assistant and live chat widget

https://nutaan.com/
1•nutaan•3m ago•1 comments

24,650 internet-accessible BMCs leak password-derived hashes before login

https://lavahq.io/research/bmc-exposure-alert
1•ilreb•4m ago•0 comments

Reddit communities with "sensistive" Trump or Israel-Palestine posts throttled

https://old.reddit.com/r/Fauxmoi/comments/1v8y7o2/to_our_fauxmoi_community/
1•thisislife2•5m ago•0 comments

Gianni Infantino's plan to sell stakes in the World Cup

https://www.thetimes.com/sport/football/article/world-cup-for-sale-gianni-infantino-fifa-wdvtsqfc6
1•matthieu_bl•5m ago•1 comments

If you want to find a developer job abroad in 2026, please read this

https://relocateme.substack.com/p/the-relocation-game-in-tech-has-changed
3•adletbalzhanov•5m ago•0 comments

All Work and No Play

https://asteriskmag.com/issues/15/all-work-and-no-play
1•surprisetalk•5m ago•0 comments

Ethical Cold Outreach

https://blog.val.town/ethical-cold-outreach
1•tionis•6m ago•0 comments

How We Pushed CDC into Postgres

https://www.snowflake.com/en/blog/engineering/postgres-to-snowflake-replication-mirroring/
3•craigkerstiens•6m ago•0 comments

Script Slayer

https://studioaaa.com/script-slayer/
1•skibz•7m ago•0 comments

Vectorise.me – image-to-SVG API with an MCP server for AI agents

https://vectorise.me/developers
1•jonkary•9m ago•0 comments

So, you want to make a game engine (2023)

https://lisyarus.github.io/blog/posts/so-you-want-to-make-a-game-engine.html#part-3
2•kugurerdem•9m ago•0 comments

Show HN: Flashpaper – Self-destructing secret sharing with no database

https://flashpaper.app/
2•minpym•9m ago•2 comments

Everyone Romaine Calm [video]

https://www.youtube.com/watch?v=_9blI4QBSjs
1•mooreds•11m ago•0 comments

Investigate every security event with an AI agent, without the frontier bill

https://www.datadoghq.com/blog/ai/ai-security-detection-pipeline/
1•ngrislain•12m ago•0 comments

Show HN: News headline inside coding agent

https://github.com/dannylee1020/headline
1•dannylee1020•13m ago•0 comments

Why Aren't There C Conferences? (2018)

https://nullprogram.com/blog/2018/11/21/
2•downbad_•13m ago•1 comments

Setup Script Should Support Git Worktrees

https://piechowski.io/post/setup-script-git-worktrees/
2•speckx•13m ago•0 comments

The 2026-07-28 MCP Specification Release Candidate

https://blog.modelcontextprotocol.io/posts/2026-07-28-release-candidate/
1•oss-dev•13m ago•0 comments

Secure email provider mailbox.org does not honor DMARC (German)

https://userforum.mailbox.org/topic/10676-mailbox-org-akzeptiert-gefalschte-mails-trotz-spf-fail-...
2•asimops•14m ago•0 comments

Is Manticore harder to self-host than Meilisearch? We tested both

https://old.reddit.com/r/selfhosted/comments/1v6dfb0/is_manticore_really_harder_to_selfhost_than/
1•snikolaev•15m ago•0 comments

Peter Thiel: The Education of a Libertarian

https://www.cato-unbound.org/2009/04/13/peter-thiel/education-libertarian/
1•ascent817•16m 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.