frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

TSMC Says ASML's Latest Chipmaking Gear Is Too Pricey to Use

https://www.bloomberg.com/news/articles/2026-04-22/tsmc-says-asml-s-latest-chipmaking-gear-is-too...
1•spenrose•30s ago•0 comments

Military exercises are signals, not just rehearsals

https://neetintel.substack.com/p/its-just-an-exercise-bro
1•Quasimarion•1m ago•0 comments

Show HN: I built an automatic micropayment-ish system to support the Web

https://www.inamoon.com
1•mankins•4m ago•0 comments

Cloaca (art installation)

https://en.wikipedia.org/wiki/Cloaca_(art_installation)
1•fecalorimeter•5m ago•0 comments

Show HN: MultiTable – I built a dashboard so I could vibe-code from my phone

https://github.com/erickalfaro/multitable
1•ericksnetwork•6m ago•1 comments

AlphaGo versus Lee Sedol

https://en.wikipedia.org/wiki/AlphaGo_versus_Lee_Sedol
1•simonebrunozzi•8m ago•0 comments

Show HN: SherifDB, a databe written in Golang under 500 LOC

https://emmanuel326.github.io/blogs/sheriffdb.html
2•Nya-kundi•11m ago•0 comments

Jumping into cold water can stop your heart

https://jorgenmelau.substack.com/p/the-first-sixty-seconds
5•fanf2•12m ago•0 comments

A Guide to Reducing Cognitive Load

https://www.softwaredesign.ing/blog/a-guide-to-reducing-cognitive-load
2•prakhar897•12m ago•0 comments

Show HN: I built a free LLMs.txt generator

https://veerhost.com/llms-txt-generator/
4•aiwrita•15m ago•1 comments

DrP: Meta's Root Cause Analysis Platform at Scale

https://engineering.fb.com/2025/12/19/data-infrastructure/drp-metas-root-cause-analysis-platform-...
2•theorchid•15m ago•0 comments

Show HN: PlayDrop – A home for vibe coded browser games

https://www.playdrop.ai
2•zabar•20m ago•1 comments

Fedora 44 Go/No-Go meeting

https://meetbot.fedoraproject.org/meeting_matrix_fedoraproject-org/2026-04-23/f44-final-go-no-go-...
2•politelemon•20m ago•0 comments

Music of the BBC Microcomputer System

https://www.acornelectron.co.uk/eug/72/a-musi.html
3•eightb•22m ago•0 comments

Government watchdog urges FAA to address Boeing MAX engine issue

https://www.seattletimes.com/business/boeing-aerospace/government-watchdog-urges-faa-to-address-b...
2•dangle1•23m ago•0 comments

United States of America vs. Matthew David Keirans [pdf]

https://ecf.ca8.uscourts.gov/opndir/26/04/251339P.pdf
2•nz•24m ago•0 comments

Surf-CLI – a CLI for AI agents to control Chrome

https://github.com/nicobailon/surf-cli
3•cardboard9926•28m ago•0 comments

Radar Laboratory – Interactive Radar Phenomenology

https://radarlaboratory.com/
2•jonbaer•29m ago•0 comments

Show HN: WhiskeySour – A 10x faster drop-in replacement for BeautifulSoup

3•ayas_behera•30m ago•0 comments

Onyx Pro, a local desktop utility for re-evaluating AI IDEs before paying

https://getonyxpro.com
2•chloevalesquez•31m ago•0 comments

Blogging and Writing Style

https://statmodeling.stat.columbia.edu/2026/04/25/blogging-and-writing-style/
1•Tomte•34m ago•0 comments

xAI credits (YC AI STACK) rescinded

1•galaba•36m ago•0 comments

Show HN: Sig – personal & team knowledge base built from your work conversations

https://sig-ai.app
1•smadam9•36m ago•1 comments

GPT 5.5 biosafety bounty

https://openai.com/index/gpt-5-5-bio-bug-bounty/
3•Murfalo•36m ago•0 comments

Ouroboros: Dynamic Weight Generation for Recursive Transformers

https://arxiv.org/abs/2604.02051
1•OsamaJaber•39m ago•0 comments

What Would You Ask an AI to Do in Every Prompt?

1•moonzfxs•39m ago•0 comments

Show HN: Pocket-Ingest – Async Voice Memos to Claude Code via iCloud

https://github.com/tryhardfifi/pocket-ingest
1•filipeisho•42m ago•0 comments

Show HN: Choose Where to Eat

https://apps.apple.com/pt/app/dinner-where-to-eat/id6761313943
1•sambex•42m ago•0 comments

Multimodal Taxonomies

https://mixpeek.com/blog/multimodal-taxonomies
1•Beefin•43m ago•0 comments

Annotate PDF – A zero-server, privacy-first PDF editor

https://annotatepdf.io/
1•prius-lab•44m 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•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.