frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I stopped trusting the official Wikipedia dataset, and what I did about it

https://omarkamali.com/blog/wikipedia-monthly-pipeline
1•omneity•1m ago•0 comments

Luminous Mechanics

https://sekor.eu.org/techlog/luminous-mechanics/
1•modinfo•11m ago•0 comments

Nintendo sues the US government over tariffs –seeks 200B refund, interest

https://www.tomshardware.com/video-games/nintendo/nintendo-sues-u-s-government-over-tariffs
2•iancmceachern•13m ago•0 comments

MS Authenticator will crack down on jailbroken/rooted iOS and Android phones

https://www.windowslatest.com/2026/03/06/microsoft-authenticator-will-crack-down-on-jailbroken-ro...
2•josephcsible•15m ago•1 comments

How to Prepare for AGI for Dummies

https://agipreparation.substack.com/p/how-to-prepare-for-agi-for-dummies
1•chancemehmu•15m ago•0 comments

Context Scaffolding: A local, living memory system for Claude Code and Cursor

https://contextscaffold.mokumfiets.com/
1•foginni•16m ago•1 comments

Open Occult- Tools for the Modern Mystic

https://github.com/openoccult
1•nicoloren•17m ago•0 comments

Qanah: Peer‑to‑peer VPN over WebRTC with WireGuard configs

https://github.com/xlmnxp/qanah
1•xlmnxp•17m ago•0 comments

Show HN: CRM-CLI – A local-first personal CRM for the terminal with MCP server

https://github.com/jdanielnd/crm-cli
1•jdanielnd•21m ago•1 comments

Show HN: Modulus – Run multiple coding agents with shared project memory

https://modulus.so
4•dasubhajit•22m ago•2 comments

When DOGE Unleashed ChatGPT on the National Endowment for the Humanities

https://www.nytimes.com/2026/03/07/arts/humanities-endowment-doge-trump.html
2•nxobject•23m ago•1 comments

Show HN: PolyClaude – Using math to pay less for Claude Code

https://github.com/ArmanJR/PolyClaude
1•armanj•29m ago•0 comments

Perfect Types with `SetHTML()`

https://frederikbraun.de/perfect-types-with-sethtml.html
1•todsacerdoti•30m ago•0 comments

Claude Code – Scheduled tasks (cron) added

https://code.claude.com/docs/en/scheduled-tasks
1•rob•31m ago•0 comments

Lisp-style C++ template meta programming

https://github.com/mistivia/lmp
3•mistivia•32m ago•0 comments

After Iraq, Kuwait and UAE may be next to cut oil output on Iran crisis

https://www.reuters.com/business/energy/after-iraq-kuwait-uae-may-be-next-cut-oil-output-iran-cri...
5•ParentiSoundSys•33m ago•0 comments

Claude Code for 3D Printing

https://github.com/Patrick0shea/DDD
3•posky0•38m ago•0 comments

Show HN: Help] I run 4 AI-driven companies simultaneously from my terminal

https://github.com/NikitaDmitrieff/auto-co-meta
2•Ndmtrieff•40m ago•1 comments

Show HN: Search 10k paintings by describing them in plain English

https://vecstore.app
1•kencho•41m ago•1 comments

Building an Interactive Conference Badge with Tufty 2040: A Step-by-Step Guide

https://dnsmichi.com/2026/03/07/building-an-interactive-conference-badge-with-tufty-2040-a-step-b...
1•mooreds•41m ago•0 comments

Where is Charles Manson buried?

https://dangerousminds.net/history/battle-corpse-of-charles-manson/
2•Anon84•41m ago•0 comments

I Could Never Work for Anyone Else: A Wiseass Problem

https://harveysawikin.substack.com/p/i-could-never-work-for-anyone-else
2•RickJWagner•43m ago•0 comments

A Schools Chief So Charming That Los Angeles Overlooked His Red Flags

https://www.nytimes.com/2026/03/07/us/alberto-carvalho-lausd-scandals.html
2•bbertucc•44m ago•1 comments

Does Apple‘s M5 Max Really “Destroy” a 96-Core Threadripper?

https://slashdot.org/submission/17345398/does-apples-m5-max-really-destroy-a-96-core-threadripper
37•dkechag•45m ago•15 comments

Bone (B-1 bomber) deployed to the UK

https://www.theguardian.com/world/2026/mar/07/us-bomber-lands-in-uk-after-warning-of-surge-in-str...
1•zabzonk•46m ago•0 comments

Security vulnerabilities I found in high school

https://blog.raed.dev/posts/hacking-stories-from-high-school-days/
2•Raed667•49m ago•0 comments

Microscopes Can See Video on a LaserDisc

https://www.youtube.com/watch?v=qZuR-772cks
2•zdw•50m ago•0 comments

Debunking of inaccurate and misinformed claims being made about GrapheneOS

https://twitter.com/GrapheneOS/status/2030402535463506069
5•hnburnsy•51m ago•0 comments

Show HN: Agentpng – turn agent sessions into shareable images

https://www.agentpng.dev/
2•siegers•52m ago•0 comments

Show HN: Open-source tool turns a site into an MCP by recording the browser

https://github.com/danielthedm/browse2mcp
1•ethantheswe•53m 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•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.