frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Nativewind: Tailwind CSS for React Native

https://github.com/nativewind/nativewind
1•steveharing1•2m ago•0 comments

Recreating Daejeon, South Korea, in Blender and Unreal Engine [video]

https://www.youtube.com/watch?v=dOsO3tO9PF8
1•nogajun•4m ago•0 comments

Ferrari's New Jony Ive–Designed EV Is Swathed in Glass and Aluminum

https://www.wired.com/story/ferrari-ev-jony-ive-design/
1•divbzero•7m ago•0 comments

Cloud meeting recorders record everyone in the room. Not just you

https://thoth-app.com/blog/2026-05-13-why-your-meeting-recorder-shouldnt-upload-your-audio/
1•MattVePhD•10m ago•0 comments

Show HN: Presentforme.ai – Make slide decks explain themselves

1•cheecheongfan•11m ago•0 comments

What's so special about Emacs? [video]

https://www.youtube.com/watch?v=mJZDmO5yOxE
1•internet_points•12m ago•0 comments

The power struggle in the narrow seas, a visual story

https://ig.ft.com/maritime-chokepoints/
1•helsinkiandrew•14m ago•0 comments

A look inside ITER, the world's largest fusion energy project

https://www.cnet.com/science/climate/inside-the-worlds-biggest-bet-on-fusion-energy/
2•giuliomagnifico•15m ago•0 comments

Google Health Sucks

https://joebaldwin.me.uk/blog/google-ruins-fitbit/
2•edent•16m ago•0 comments

Heimdall: Formally Verified eBPF-to-Rust Migration

https://arxiv.org/abs/2605.25411
1•igortru•22m ago•0 comments

Contrastive Decoding Diffing: Recovering Finetuning Data Without Weight Access

https://arxiv.org/abs/2605.25902
1•Timofeibu•23m ago•0 comments

Cognitive Security as an AI Safety Cause Area

https://www.lesswrong.com/posts/KGcE7eAdfxHchk25X/cognitive-security-as-an-ai-safety-cause-area
1•joozio•23m ago•0 comments

How to make a well-structured business architecture diagram?

https://www.processon.io/blog/business-architecture-diagrams
1•kapababala•24m ago•0 comments

Orchestrating AI code review at scale

https://blog.cloudflare.com/ai-code-review/
1•pramodbiligiri•26m ago•0 comments

Switchberry: Sometimes a good time costs extra [video]

https://www.youtube.com/watch?v=wxFHw57XGjA
1•teleforce•29m ago•0 comments

We need to add 6k seats to Congress

https://www.usatoday.com/story/opinion/2026/05/25/congress-larger-size-house-representatives/9014...
2•Cider9986•32m ago•0 comments

In-Browser Container Builds

https://ochagavia.nl/blog/fully-in-browser-container-builds/
1•gurjeet•33m ago•0 comments

Bird–Meertens Formalism

https://en.wikipedia.org/wiki/Bird%E2%80%93Meertens_formalism
1•tosh•33m ago•0 comments

The first class of AI natives is graduating

https://www.wsj.com/tech/ai/ai-natives-graduates-job-cuts-6bab8ac9
1•FDETalkDotCom•34m ago•1 comments

Show HN: A high-performance audio visualizer using Rust, WASM, and React

https://audiofftimage.netlify.app/
1•dmaynard•37m ago•1 comments

Show HN : Building Production MPC Wallets: Architecture, Solana Implementation

https://nethsara.substack.com/p/byowbuild-your-own-wallet-a-field
1•nethsarask•38m ago•0 comments

Show HN: GPTFortress, a 24/7 live-stream playing Dwarf Fortress with GPT-5

https://www.twitch.tv/gptfortress
1•leostera•41m ago•0 comments

AI guardrails stripped from Meta and Google models in minutes

https://www.ft.com/content/5630ed79-a263-41ed-9a1a-321617ae310e
4•thunderbong•41m ago•1 comments

Ship Early, Learn Fast: What 10 Days of User Feedback Taught Me About My App

https://qebapps.statichost.page/devnotes/ship-early-learn-fast/
1•qeb_newsairy•45m ago•0 comments

The Quiet Death of the Senior Individual Contributor

https://medium.com/@yalovoy/the-quiet-death-of-the-senior-individual-contributor-why-staff-engine...
1•zero-ground-445•45m ago•0 comments

Show HN: Riot, a modern multicore actor-based ecosystem for OCaml

https://riot.ml
1•leostera•46m ago•0 comments

Why can't anyone build a decent deployment platform for plain HTML?

https://foliodrop.app
1•jaxxchen•49m ago•1 comments

Frontier Model Training Methodologies

https://djdumpling.github.io/2026/01/31/frontier_training.html
1•xdotli•53m ago•1 comments

Microsoft to Publishers: Don't Block the AI Bots

https://www.adexchanger.com/publishers/microsoft-to-publishers-dont-block-the-ai-bots/
3•SVI•54m ago•0 comments

Zero-knowledge encryption may not stop password theft if servers are hacked

https://techxplore.com/news/2026-02-knowledge-encryption-password-theft-servers.html
2•Ember_Wipe•55m 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.