frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How to scan for vulnerabilities with GitHub Security Lab's AI-powered framework

https://github.blog/security/how-to-scan-for-vulnerabilities-with-github-security-labs-open-sourc...
1•EFLKumo•1m ago•0 comments

Out of Band, Not Out of Prompt: Intent Verification for Agentic Tool Calls

https://hyperautomation.substack.com/p/out-of-band-not-out-of-prompt-intent
1•hevalon•2m ago•0 comments

GPT Guesses Between 1 and 100

https://github.com/exmergo/research-chatgpt-guesses-between-1-and-100
1•adunk•2m ago•0 comments

God and LLMs

https://calnewport.com/on-god-and-llms/
1•ahamez•3m ago•0 comments

Researchers identify people through ordinary Wi-Fi routers with 99.5% accuracy

https://www.tomshardware.com/tech-industry/researchers-identify-people-through-ordinary-wi-fi-rou...
1•giuliomagnifico•5m ago•0 comments

How to Enter Side Doors

https://velvetnoise.substack.com/p/how-to-enter-side-doors
1•eigenBasis•6m ago•0 comments

It's like the Olympics – except steroids are allowed

https://www.bbc.com/news/articles/cedpz1zqp8po
1•ranit•7m ago•0 comments

Show HN: I built a tool that finds unused Prometheus metrics

https://github.com/dominikhei/cardamon
1•dhei123•8m ago•0 comments

What Are You Reading?

1•wompapumpum•9m ago•0 comments

Switching to Colemak

https://pta2002.com/blog/colemak/
1•xngbuilds•11m ago•0 comments

Advanced C++ Optimization Techniques for High-Performance Applications

https://medium.com/@martin00001313/advanced-c-optimization-techniques-for-high-performance-applic...
1•rramadass•12m ago•1 comments

Kiewit-built Key Bridge could have cost $9B

https://www.thebanner.com/economy/key-bridge-kiewit-9-billion-GK4BLGATPRHYXIEIZLG5PUNSKQ/
1•hnthrowaway0315•13m ago•0 comments

Riz Ahmed says UK spies tried to recruit him on three occasions

https://www.theguardian.com/culture/2026/may/24/riz-ahmed-says-uk-spies-tried-to-recruit-him-on-t...
1•bookofjoe•13m ago•0 comments

Show HN: Grizzlars – High Performance DataFrame to Compete with Polars

https://github.com/NavodPeiris/grizzlars
1•NavodPeiris•14m ago•0 comments

Seeing Around Corners Using Smartphone-Grade Lidar

https://spectrum.ieee.org/smartphone-grade-lidar
1•marc__1•16m ago•0 comments

We Shortened Development Feedback Loops from 30M to 30s

https://engineering.monday.com/how-we-shortened-development-feedback-loops-from-30m-to-30s/
1•aviramha•19m ago•1 comments

Does anyone else find Hacker News visually exhausting?

https://nodus-ai.app/hn-radar
1•m_m_carvalho•19m ago•3 comments

AI Model Idle Game: I made this for friends don't know how AI industry works

https://game.trae.academy/play
1•haebom•20m ago•1 comments

Thunderbolt vs. USB-C: what the connector hides

https://www.whatcable.uk/blog/thunderbolt-vs-usb-c
1•sleepingNomad•22m ago•0 comments

Paper Airplane Designs

https://www.foldnfly.com/
2•brianzelip•22m ago•1 comments

AI turning software building into cultural arbitrage

https://xcancel.com/levelsio/status/2058196816877797888
1•thoughtpeddler•23m ago•0 comments

'Wordle': One Year Later (2023)

https://www.gdcvault.com/play/1029425/-Wordle-One-Year
1•Michelangelo11•23m ago•0 comments

Why usage-based hosting bills creep up over time

https://hostim.dev/blog/usage-based-pricing-creep/
1•pv1337•24m ago•0 comments

Bun team is rewriting SIMD from Rust to C++

https://github.com/oven-sh/bun/pull/31351
2•impoppy•25m ago•2 comments

America's plutonium puzzle: from cold war relics to AI ambitions

https://nationalinterest.org/blog/energy-world/americas-plutonium-puzzle-from-cold-war-relics-to-...
2•leonidasrup•26m ago•0 comments

Who Buys Custom Silicon?

https://www.youtube.com/watch?v=nf-4YGZp998
1•johncole•30m ago•0 comments

Satlas: Real-time space situational awareness

https://satlas.app/
2•jonbaer•30m ago•0 comments

6502 Emulator Runs 1 Instruction/S (Written in Markdown, Running in an LLM)

https://dunkels.com/adam/llm-6502-emulator/
1•adunk•34m ago•1 comments

Show HN: Peakedin – archiving LinkedIn's most unhinged posts as satire

https://peakedin.capyfind.com/
1•lirena00•35m ago•0 comments

The Genius of Spencer Pratt's Campaign – Part 1

https://twitter.com/AmericanDebunk/status/2056555463466967457
1•bilsbie•36m 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.