frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Dear Time Lords: Freeze Computers in 1993

https://graydon2.dreamwidth.org/322461.html
1•zdw•1m ago•0 comments

Reduce Claude Token Usage by 50%

https://ham-pro.vercel.app/
1•Luseniik•1m ago•1 comments

Making Video Games in 2025 (without an engine)

https://www.noelberry.ca/posts/making_games_in_2025/
1•alvivar•1m ago•0 comments

How do you evaluate a person's ability to use AI?

1•imwoody•4m ago•0 comments

Secure-Massively-Multiplayer-Snake

https://eieio.games/blog/secure-massively-multiplayer-snake/
1•colinprince•4m ago•0 comments

Claude-search – grep, resume your Claude Code session history from the CLI

https://github.com/pi-netizen/claude-search
1•pi-netizen•5m ago•1 comments

Under Secretary of Defense Emil Michael Response to Dario Amodei

https://xcancel.com/uswremichael/status/2027211708201058578?s=12
2•grej•6m ago•1 comments

Green Eggs and HAM (Hierarchical Agent Memory)

https://github.com/kromahlusenii-ops/ham
2•Luseniik•8m ago•1 comments

Energym: Move the World

https://www.aicandy.be/giorgio-1
1•zdw•9m ago•0 comments

Tonka beans are illegal in the US

https://www.bbc.com/future/article/20170620-the-delicious-flavour-with-a-toxic-secret
2•valzevul•10m ago•0 comments

OpenClaw Hype: Analysis of Chatter from the Dark Web (BleepingComputer)

https://www.bleepingcomputer.com/news/security/the-openclaw-hype-analysis-of-chatter-from-open-so...
1•ildar•13m ago•0 comments

Any Website Can Take Full Control of Your OpenClaw Agent (Oasis)

https://www.oasis.security/blog/openclaw-vulnerability
1•ildar•15m ago•0 comments

Show HN: Cecil – open-source memory and identity protocol for AI

https://github.com/johnkf5-ops/cecil-protocol
1•JohnKnopf•18m ago•1 comments

New AirSnitch attack breaks Wi-Fi encryption in homes, offices, and enterprises

https://arstechnica.com/security/2026/02/new-airsnitch-attack-breaks-wi-fi-encryption-in-homes-of...
1•brie22•19m ago•0 comments

Show HN: HeadshotAI – Professional AI headshots in 30 seconds for £4.99

https://headshotai-mvp-jb.netlify.app
1•jackbventures•27m ago•2 comments

China piles pressure on Japan after Takaichi Sanae's triumph

https://www.economist.com/asia/2026/02/26/china-piles-pressure-on-japan-after-takaichi-sanaes-tri...
2•petethomas•32m ago•0 comments

The Cron King

http://thecronking.com/
1•thebuilderjr•38m ago•0 comments

Can LLMs reason about math? The Subtraction Trick Test

https://haversine.substack.com/p/can-llms-reason-about-math-the-subtraction
3•MakeAJiraTicket•38m ago•1 comments

Show HN: Toggl lock‑screen widget for real‑time time tracking

https://apps.apple.com/ca/app/toggl-lockscreen-widget/id6756894639
1•dakoder36•43m ago•0 comments

How Anthropic Teams use Claude Code [pdf]

https://www-cdn.anthropic.com/58284b19e702b49db9302d5b6f135ad8871e7658.pdf
2•carlsborg•43m ago•0 comments

User Interview #3

https://twitter.com/AviSchiffmann/status/2026798365489725742
1•d_silin•44m ago•0 comments

Show HN: CodeLeash: framework for quality agent development, NOT an orchestrator

https://codeleash.dev/
2•cadamsdotcom•45m ago•0 comments

Principia Mathematica, Vol. 1

https://www.gutenberg.org/cache/epub/78050/pg78050-images.html
2•petethomas•45m ago•0 comments

Show HN: VeryBot – Self-hosted AI assistant for work

https://github.com/charlie0077/verybot
1•verybot•46m ago•0 comments

The Hunt for Dark Breakfast – Can we derive breakfasts we have never observed?

https://moultano.wordpress.com/2026/02/22/the-hunt-for-dark-breakfast/
46•moultano•50m ago•17 comments

Hong Kong jailed my dad to stop me speaking out, says activist

https://www.bbc.com/news/articles/cly897pv4j9o
3•tartoran•50m ago•0 comments

Parakeet.cpp – Parakeet ASR inference in pure C++ with Metal GPU acceleration

https://github.com/Frikallo/parakeet.cpp
10•noahkay13•51m ago•2 comments

Preserving the Web Is Not the Problem. Losing It Is

https://www.techdirt.com/2026/02/17/preserving-the-web-is-not-the-problem-losing-it-is/
5•the-mitr•56m ago•0 comments

Frankensqlite a Rust reimplementation of SQLite with concurrent writers

https://frankensqlite.com/
1•rahimnathwani•56m ago•0 comments

Show HN: Selling my painting to fund a Steam Cleaning startup in Libya

https://juicebox.money/v5/base:139
1•Ali_ll•57m ago•1 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•10mo ago

Comments

palata•10mo 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•10mo 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•10mo 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•10mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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.