frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How LLM Inference Works

https://arpitbhayani.me/blogs/how-llm-inference-works/
1•Hd1633•3m ago•0 comments

Show HN: TabChop – split dinner receipts by item from one shared link

https://tabchop.app/overview
1•mishang•4m ago•0 comments

Video isn't the final form of online content

https://medium.com/@chuanweipeng5/text-image-video-what-comes-after-the-scroll-31a8aefab563
1•AnneWodell•5m ago•0 comments

Rybbit, a self hosted Google Analytics alternative, released v2.6.0

https://github.com/rybbit-io/rybbit/releases/tag/v2.6.0
1•LemonHotdog•6m ago•0 comments

Browsers Treat Big Sites Differently

https://denodell.com/blog/browsers-treat-big-sites-differently
1•gglanzani•6m ago•0 comments

Veteran network architect proposes IPv8 – to improve IPv4, not leapfrog v6

https://www.theregister.com/networks/2026/05/12/veteran-network-architect-proposes-ipv8-to-improv...
1•croes•7m ago•0 comments

Show HN: Spent months fighting VS Code webviews, so I built a universal protocol

https://oxp.sh/
1•aldgar•14m ago•0 comments

Reverse Engineering Slither.io's Network Protocol

https://medium.com/@user320/reverse-engineering-slither-ios-network-protocol-bbc408485c45
1•user320•17m ago•0 comments

SpaceX sets date for first Starship version 3 launch – SpaceNews

https://spacenews.com/spacex-sets-date-for-first-starship-version-3-launch/
1•rbanffy•25m ago•0 comments

Hunting APT29 Tactics

https://manishrawat21.substack.com/p/how-i-caught-apt29-hiding-in-temp
1•ManishRawat21•32m ago•0 comments

Workday brings HR and finance agent into Microsoft 365 Copilot

https://newsroom.workday.com/2026-05-13-Workday-Brings-Sana-Self-Service-Agent-for-HR-and-Finance...
1•logickkk1•34m ago•0 comments

Third of weight shed after jabs 'is lost from muscle and bones

https://www.thetimes.com/uk/politics/article/third-of-weight-shed-after-jabs-is-lost-from-muscle-...
3•petethomas•38m ago•1 comments

Who Owns the Most Satellites

https://www.visualcapitalist.com/sp/gx04-who-owns-the-most-satellites/
1•jonbaer•39m ago•0 comments

A million baby monitors and security cameras were easily viewable by hackers

https://removepaywalls.com/https://www.theverge.com/tech/926487/meari-technology-hack-baby-monito...
1•erenon•41m ago•0 comments

Signal warns would pull out of Canada if made to comply with lawful access bill

https://www.theglobeandmail.com/politics/article-signal-warns-it-would-pull-out-of-canada-if-made...
4•petethomas•43m ago•0 comments

A Field Manual for Three Years on Deutsche Bahn

https://blog.hofstede.it/a-field-manual-for-three-years-on-deutsche-bahn/
2•gglanzani•44m ago•2 comments

Multi-LLM AI trading agent harness

https://github.com/achaljhawar/1rok
1•satoshiclad•47m ago•0 comments

Vector embeddings are the wrong default for AI agent memory

https://memnode.dev/articles/agent-memory-vs-vector-db
1•supercrafthost•49m ago•0 comments

Build workouts with Claude send to Fitness Player to workout [video]

https://www.youtube.com/shorts/QlcybBrszik
1•KeegNation•50m ago•1 comments

ChatGPT-Linked Mass Shootings Drive Developer Liability Concerns

https://news.bloomberglaw.com/litigation/chatgpt-linked-mass-shootings-drive-developer-liability-...
4•1vuio0pswjnm7•1h ago•1 comments

Major Atlassian Outage

https://status.atlassian.com/
7•shric•1h ago•1 comments

Don't Be Discouraged to Code by Hand

https://seongminpark.com/coding-by-hand/
3•boodleboodle•1h ago•0 comments

Saorsa, a new kind of social media built around what is happening in the world

https://saorsa.ai
1•calumwalker•1h ago•0 comments

You Won't Finish This Article. Why people online don't read to the end. (2013)

https://slate.com/technology/2013/06/how-people-read-online-why-you-wont-finish-this-article.html
1•eigenBasis•1h ago•0 comments

I work on self-improving AI despite the risks

https://twitter.com/jeffclune/status/2054637385850511360
1•pretext•1h ago•0 comments

AI coders are carrying half-open laptops through airports, offices, ice rinks

https://www.businessinsider.com/coders-keep-laptops-open-in-public-ai-agent-2026-5
6•taubek•1h ago•8 comments

The End of Claude Code Automation

https://www.vincentschmalbach.com/the-end-of-claude-code-automation/
1•vincent_s•1h ago•0 comments

Shining

https://shining.302chanwoo.com/
1•memalign•1h ago•0 comments

A Streaming First Language for Generative UI

https://github.com/thesysdev/openui
1•ChicknNuggt•1h ago•0 comments

Show HN: Own Your Secrets – Sync encrypted secrets from any repo to any device

https://cottage-sync.github.io
1•sayanarijit•1h 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.