frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Bay Area mom out thousands after scammers use AI to mimic daughter's voice

https://abc7news.com/post/bay-area-mom-thousands-scammers-use-ai-mimic-daughters-voice-fake-kidna...
1•arkadiyt•21s ago•0 comments

There are now more ETFs than stocks in the US

https://www.apollo.com/wealth/the-daily-spark/more-etfs-than-stocks
1•akyuu•1m ago•0 comments

Claude, Author of the Humanitas

https://www.greaterwrong.com/posts/wRNJZz2iYrfDaSDdz/claude-author-of-the-humanitas
1•Jakob•3m ago•0 comments

Iran Is Back Online

https://mastodon.social/@netblocks/116642131173028444
2•2dvisio•7m ago•0 comments

The Psychology of Arrival in Coworking Spaces

https://twofifty.co/en/blog/psychology-of-arrival-coworking-spaces
1•inchevd•8m ago•0 comments

I'm 19 and built an AI golf swing analyzer with on-device CoreML

https://apps.apple.com/us/app/the-swing-sensei/id6759412468
1•TheSwingSensei•9m ago•0 comments

iOS 26.6 adds new alert when you try blocking too many contacts

https://9to5mac.com/2026/05/26/ios-26-6-adds-new-alert-when-you-try-blocking-too-many-contacts/
1•cdrnsf•10m ago•0 comments

The Nation-State Is a Legacy System. Time for an Upgrade

https://gccsproject.pages.dev/
1•pear01•11m ago•0 comments

Encrypted DNS in 2026: DoH, DoT and DoQ compared with real benchmarks

https://www.copahost.com/blog/encrypted-dns/
1•ggallas•12m ago•0 comments

The worst job interview I ever had

https://www.oliverio.dev/blog/the-worst-job-interview-i-had
1•oliverio•12m ago•0 comments

Being a 1.5-10x Developer

https://build.ms/2026/5/26/being-a-1-5-10x-developer/
1•mergesort•12m ago•0 comments

6M Fake GitHub Stars: How to Vet Open-Source AI Tools

https://www.chatgpt.ca/blog/github-fake-stars-ai-tool-evaluation
1•b-man•13m ago•0 comments

Mysteries of the Griffin iMate

https://www.projectgus.com/2023/04/griffin-imate/
1•geerlingguy•16m ago•0 comments

The Computer That Was Too Advanced for Its Own Good [video]

https://www.youtube.com/watch?v=OWPnEDXVTl8
3•devonnull•17m ago•0 comments

Optimization Constants in Mathematics

https://teorth.github.io/optimizationproblems/
2•bmc7505•22m ago•0 comments

GitHub Classroom sign-ups are no longer available

https://github.blog/changelog/2026-05-26-github-classroom-sign-ups-are-no-longer-available/
2•DropDead•24m ago•0 comments

Analyst on China's spent rocket stages: "Things only continue to get worse"

https://arstechnica.com/space/2026/05/analyst-on-chinas-spent-rocket-stages-things-only-continue-...
3•xoa•25m ago•0 comments

Tracing libjxl decoding patterns, with JPEG XL as the trace data container

https://ender672.github.io/posts/2026-05-26-tracing-libjxl-decoding-patterns/
1•ender672•25m ago•0 comments

Why LLMs will be always Terrible at Software Architecture

https://devforth.io/insights/why-llms-will-be-always-terrible-at-software-architecture/
3•dotnot•25m ago•0 comments

Co-Invest – an MCP server that lets Claude and ChatGPT execute real trades

https://www.liquid.trade/coinvest
2•miwooyork•25m ago•0 comments

Ask HN: How do you model temporarily invalid data structures

1•escot•27m ago•0 comments

Sinclair-O-Matic

https://dpt.github.io/SinclairLogo/
3•worik•28m ago•0 comments

Show HN: Privacy-first notification blocker for Android ad-free

https://permly.app
1•Zartof•29m ago•0 comments

Collection of free online tools for developers

https://webdevpack.com/
1•ivopetkov•29m ago•0 comments

Show HN: ARQ Dashboard – web and TUI monitoring for Python's ARQ job queue

https://github.com/srijanpatel/arq-dashboard
1•spps11•29m ago•0 comments

Startup is betting India's gig economy can train the robots

https://techcrunch.com/2026/05/26/human-archive-taps-into-indias-services-startups-to-collect-dat...
1•methuselah_in•30m ago•0 comments

Jumping Spiders Seem to Dream

https://www.pnas.org/doi/10.1073/pnas.2204754119
3•jyounker•31m ago•0 comments

Kubernetes in Anger

https://samof76.space/kubernetes-in-anger.html
2•sharjeelsayed•33m ago•0 comments

Why is Europe the fastest warming continent?

https://phys.org/news/2026-05-europe-world-fastest-continent.html
13•geox•34m ago•0 comments

Plowshares or nuclear explosions for the national economy

https://annasofialesiv.substack.com/p/plowshares
2•bilsbie•39m 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.