frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Legendary Qualcomm, Apple, and Nuvia alumni form new CPU startup – Nuvacore

https://www.tomshardware.com/pc-components/cpus/legendary-qualcomm-apple-and-nuvia-alumni-form-ne...
1•walterbell•3m ago•0 comments

Show HN: Knock-Knock v2 – Visualizing bot attacks in multi-protocol Technicolor

https://v2.knock-knock.net
1•djkurlander•4m ago•1 comments

Show HN: Lambda ERP – Open-source ERP you can run through chat

https://github.com/lambdadevelopment/lambda-erp
1•jcfrei•4m ago•0 comments

Lost Pixel is joining Figma and sunsetting the OSS product

https://www.lost-pixel.com/blog/lost-pixel-team-is-joining-figma
1•mirzap•9m ago•0 comments

Entre Lineas

https://docs.google.com/document/d/1K_f2V6KYWUs7Vpk4-UYIQKlKg9ANrlwGzirQG0iFopY/edit?usp=sharing
1•Amanneth•10m ago•0 comments

Use LangChain with Codex (ChatGPT) Plus/Pro

https://github.com/alumnium-hq/langchain-codex
1•p0deje•15m ago•0 comments

Bohrdom on Steam, Game by Cole Allen

https://store.steampowered.com/app/945530/Bohrdom/
1•vinnyglennon•15m ago•0 comments

Write SaaS apps where users control where their data is stored

https://linkedrecords.com/
2•WolfOliver•16m ago•1 comments

Free Textbook on Engineering Thermodynamics

https://thermodynamicsbook.com/
2•2DcAf•20m ago•1 comments

China surpasses U.S. in research spending

https://www.upi.com/Voices/2026/04/24/China-surpasses-United-States-in-research-spending/14317770...
1•Bondi_Blue•21m ago•0 comments

Show HN: ReadTube – Turn YouTube subscriptions into a personal Substack

https://www.read.tube/
1•tuliren•22m ago•0 comments

Ed Holding: A 'Barbaric' Problem in American Hospitals Is Only Getting Bigger

https://kffhealthnews.org/health-industry/emergency-room-ed-boarding-hospital-beds-long-waits-cri...
1•randycupertino•23m ago•1 comments

Utah data center will generate and consume more power than state, nears approval

https://www.sltrib.com/news/2026/04/25/hyperscale-data-center-may-be/
1•Jimmc414•23m ago•0 comments

Trump's Canada trade war hits Jack Daniel's/Jim Beam with devastating $143M loss

https://www.fastcompany.com/91531349/trumps-canada-trade-war-hits-jack-daniels-jim-beam-devastati...
2•dj_rock•25m ago•0 comments

Mathematically Optimized Typing

https://cadence.theory-a.com/
1•notShabu•25m ago•0 comments

Kevin Weil and Bill Peebles exit OpenAI as company continues to shed side quests

https://techcrunch.com/2026/04/17/kevin-weil-and-bill-peebles-exit-openai-as-company-continues-to...
1•gmays•25m ago•0 comments

Show HN: SRT-Adapter: 0.99 AUROC, perplexity win and 16.7× recall (0.19%)

https://huggingface.co/RiverRider/srt-adapter-v8a
1•spacebacon•28m ago•0 comments

Project Deal: Our Claude-Run Marketplace Experiment – Anthropic

https://www.anthropic.com/features/project-deal
1•ericol•31m ago•0 comments

Linux May Drop Old Network Drivers Due to Burden of AI-Driven Bug Reports

https://www.phoronix.com/news/Linux-Old-Network-AI
1•birdculture•31m ago•0 comments

Show HN: Semble – Fast code search for agents with near-transformer accuracy

https://github.com/MinishLab/semble
3•stephantul•38m ago•0 comments

TraceFree – unified Apt/Snap/Flatpak package manager with ghost file detection

https://github.com/somranimehdi/TraceFree
1•Somosranos•38m ago•0 comments

Lessons from Building Multiplayer Browsers

https://www.alejandro.pe/writing/sail-muddy-lessons
1•alejandrohacks•38m ago•1 comments

ASML: The Most Complex Machine

https://worksinprogress.co/issue/the-worlds-most-complex-machine/
1•dionysou•42m ago•0 comments

Scientists believe birds' skulls hold clues to inner lives of long-extinct dinos

https://www.theguardian.com/science/2026/apr/26/scientists-believe-birds-skulls-hold-clues-to-inn...
1•hkhn•43m ago•0 comments

Tell HN: Claude Code is unable to respond to this request

1•hmokiguess•45m ago•3 comments

What Is Dyslexia?

https://www.whatisdyslexia.org/
1•hkhn•45m ago•0 comments

Dyslexic thinking made me the scientist I am today. If we could harness its

https://www.theguardian.com/commentisfree/2026/apr/25/dyslexic-thinking-scientist-neurodiversity-...
2•hkhn•45m ago•0 comments

Show HN: Text Trace – Keynote-style SVG text trace animations for the web

https://github.com/Jannchie/text-trace
1•jannchie•46m ago•0 comments

List of personal sites that host Wander Console, a tool to explore the small web

https://susam.codeberg.page/wcn/
1•susam•47m ago•1 comments

Startups only remember backups after the crash

https://orchidfiles.com/backups-after-crash/
2•theorchid•48m 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.