frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Read Michel de Montaigne's Essays in Modern English

https://magicreader.com/montaigne
1•mzelling•56s ago•0 comments

Block and Tackle: Job Cuts and the AI Narrative

https://om.co/2026/02/28/block-tackle-job-cuts-the-ai-narrative/
1•qwikhost•2m ago•0 comments

Smallest QR Code Is So Tiny It's Invisible to the Human Eye

https://www.sciencealert.com/worlds-smallest-qr-code-is-so-tiny-its-invisible-to-the-human-eye
1•rendx•4m ago•0 comments

Show HN: Foundations Chat, macOS AI chat built on Apple's local models

https://codeeverywhereca.github.io/foundations-chat/
1•coevcan•6m ago•0 comments

A curious phenomenon called 'Etak' (2024)

https://maphappenings.com/2024/04/11/story-of-etak/
1•giancarlostoro•7m ago•0 comments

The limited utility of the phrase "GNU/Linux" (2022)

https://seirdy.one/posts/2022/12/09/limited-utility-gnu-linux/
1•LorenDB•8m ago•0 comments

Show HN: Sun – Realtime voice agent for group conservation not just turn taking

https://www.getsun.io/
2•anand_pattern•9m ago•1 comments

A semantic Code Search CLI but with grep filters

https://github.com/lightonai/next-plaid
1•raphaelty•14m ago•1 comments

Swarming, spinning microrobots can manipulate their surroundings

https://news.cornell.edu/stories/2026/02/swarming-spinning-microrobots-can-manipulate-their-surro...
1•geox•22m ago•0 comments

I'm Sorry This New Artist Sucks [video]

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

Opponent Modeling Wins 2× Faster Than Stockfish

https://blog.lukesalamone.com/posts/winning-faster-than-stockfish/
1•salamo•26m ago•0 comments

Personal token: share equity in your lifetime upside

https://github.com/homan9/personal-token/blob/main/whitepaper.md
1•koopuluri•30m ago•0 comments

Future of Devtools and Moats

https://ravivyas.com/2026/03/01/dev-tools-and-moats
2•ravivyas•31m ago•1 comments

Piezoelectric gel to regenerate lost bone (e.g. periodontitis)

https://oralbiolife.com/
1•camebeforeagain•31m ago•1 comments

Show HN: Orcv: If tmux was built for window management on macOS in 2026

https://github.com/jasonjmcghee/orcv
1•jasonjmcghee•33m ago•1 comments

Show HN: I used LLMs to build a compression tool that beats xz on x86_64 ELFs

4•mohsen1•34m ago•3 comments

Vibe Knowing

https://idiallo.com/blog/large-language-models-make-us-feel-smarter
1•foxfired•34m ago•0 comments

How Nanotech Made an Old Leukemia Drug 22,000x Stronger

https://www.medscape.com/viewarticle/how-nanotech-made-old-leukemia-drug-22-000x-stronger-2026a10...
1•wjb3•39m ago•1 comments

Show HN: Aver – A Git-native Markdown-based tracker for knowledge setwardship

https://github.com/dentm42/aver
1•dentm42•39m ago•1 comments

AI Now Has Its Own Cursor

https://clawdcursor.com/
1•AmrDabb•42m ago•0 comments

FOMC Insight Engine: semantic search over Fed archives

https://causalityineconomics.com/fomc_archive
2•jez•42m ago•0 comments

Which State Governs the Internet's Fine Print

https://tostracker.app/analysis/governing-law
1•tldrthelaw•43m ago•0 comments

Customer Intelligence Protocol

https://github.com/Cole-Cant-Code/CIP-Customer-Intelligence-Protocol
1•ColeW•43m ago•1 comments

Show HN: YourFinanceWORKS – Open-source financial management with AI

https://www.yourfinanceworks.com
1•snowsky•43m ago•0 comments

Show HN: Leyoda – Shareable startup cards with analytics

https://leyoda.eu
1•whitehatd•46m ago•1 comments

Show HN: BeatCanvas – A browser-based demoscene visualizer for SoundCloud

https://beatcanvas.net/
1•fsrc•46m ago•1 comments

A U.S. scholarship thrills a teacher in India. Then came soul-crushing questions

https://www.npr.org/2026/03/01/g-s1-104772/teacher-india-school-patriarchy-fulbright
4•aanet•48m ago•1 comments

Most common fields of study, from 1970 to now

https://flowingdata.com/2026/02/19/fields-of-study-ranked-by-bachelors-degrees-since-1970/
3•gmays•49m ago•0 comments

Show HN: ClawShield – Open-source security proxy for AI agents (Go, eBPF)

https://github.com/SleuthCo/clawshield-public
1•sleuthco•49m ago•1 comments

Quarkdown: Markdown with Superpowers

https://quarkdown.com/
2•amichail•52m 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.