frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Advocacy groups issue US travel advisory ahead of World Cup

https://www.washingtonblade.com/2026/04/29/advocacy-groups-issue-us-travel-advisory-ahead-of-worl...
1•latexr•1m ago•0 comments

Andrej Karpathy: From Vibe Coding to Agentic Engineering [video]

https://www.youtube.com/watch?v=96jN2OCOfLs
1•vinhnx•6m ago•0 comments

Do birds have accents? the regional differences in birdsong

https://theconversation.com/do-birds-have-accents-the-fascinating-regional-differences-in-birdson...
1•zeristor•8m ago•0 comments

Foundations of Metrology(1981) [pdf]

https://nvlpubs.nist.gov/nistpubs/jres/086/jresv86n3p281_A1b.pdf
1•pillars•14m ago•0 comments

Show HN: Self hosted video feed for children

https://github.com/vkolev/timmygram-server
1•vkolev•15m ago•0 comments

Open Source Does Not Imply Open Community

https://blog.feld.me/posts/2026/04/open-source-does-not-imply-open-community/
1•zdw•15m ago•0 comments

James Broadnax Executed After Being Sentenced to Death Based on Rap Lyrics

https://www.rollingstone.com/culture/culture-news/james-broadnax-executed-rap-lyrics-texas-123555...
1•latexr•16m ago•1 comments

Where would an offline fail-closed supervisor be useful?

https://madadh.systems
1•MADADAHSYSTEMS•21m ago•0 comments

CSS and vertical rhythm for text, images, and tables

https://vincent.bernat.ch/en/blog/2026-css-vertical-rhythm
1•vbernat•25m ago•0 comments

Sniffing EU Smart Meters with a Flipper Zero (WM-Bus / 868MHz)

https://github.com/i12bp8/wmbuster
1•i12bp8•28m ago•0 comments

GlowGoblin – a gift to mb pro users

https://github.com/jtc268/glowgoblin
1•husky8•33m ago•0 comments

Japan intervened in its Curreny price

https://www.fxstreet.com/news/usd-jpy-drops-over-2-as-intervention-warnings-lift-yen-after-move-a...
1•mark336•34m ago•1 comments

US telecom agency votes to expand tech crackdown on China

https://www.reuters.com/business/media-telecom/us-telecom-agency-votes-expand-tech-crackdown-chin...
2•l2dy•35m ago•0 comments

Anthropic Model inference runs fastest on AWS

https://twitter.com/theo/status/2050078772507124134
1•albert_e•35m ago•0 comments

How People ask Claude for personal guidance

https://www.anthropic.com/research/claude-personal-guidance
1•pseudolus•36m ago•0 comments

No action taken against PimEyes: noyb lawsuit against Hamburg DPA

https://noyb.eu/en/no-action-taken-against-pimeyes-noyb-lawsuit-against-hamburg-dpa
1•latexr•37m ago•0 comments

The Starlink hack that doomed Russian troops [video]

https://www.thetimes.com/video/originals/article/starlink-hack-doomed-russian-troops-jgr0w9jkp
1•petethomas•42m ago•0 comments

Insights into software job openings – may2026

https://corvi.careers/blog/global_software-engineering_jobs_may_2026/
2•sp1982•44m ago•0 comments

Shivon Zilis Operated as Elon Musk's OpenAI Insider

https://www.wired.com/story/model-behavior-why-everything-in-musk-v-altman-leads-back-to-shivon-z...
1•aanet•54m ago•0 comments

Japan Airlines begins humanoid robot trials at Tokyo's Haneda airport as labor s

https://www.cnbc.com/2026/05/01/japan-airlines-humanoid-robots-haneda-labor-shortage.html
2•bookmtn•58m ago•0 comments

Elon Musk Seemingly Admits xAI Has Used OpenAI's Models to Train Its Own

https://www.wired.com/story/elon-musk-distill-openai-models-partly-xai/
4•satai•1h ago•0 comments

LA-SF rail will cost about $126B, with service beginning around 2040

https://ktla.com/news/california/california-high-speed-rail-cost-increase/
3•swyx•1h ago•0 comments

Show HN: Git repositories hosted directly on Freenet

https://github.com/freenet/freenet-git
3•sanity•1h ago•0 comments

U.S. Aims to Penalize Disabled Adults Who Live with Their Families

https://www.propublica.org/article/trump-social-security-ssi-disability-benefits-cuts-parents-chi...
3•petethomas•1h ago•0 comments

AliothPress – self-hosted, cloud-native CMS with a wizard-based installation

https://aliothpress.com/
3•Strodt•1h ago•0 comments

One solar storm could trigger a catastrophic collision in orbit

https://spectrum.ieee.org/kessler-syndrome-crash-clock
2•thread_id•1h ago•0 comments

Show HN: A vdom-less framework that's local first

https://github.com/terajs/terajs
2•thecodergabe•1h ago•0 comments

AI Tips and Tricks

https://www.youtube.com/watch?v=w_m5RmVsmtE
2•frag•1h ago•0 comments

Show HN: ChatToMap – Scans your chats to find all your activity and trip ideas

https://chattomap.com
1•nathan_f77•1h ago•0 comments

Kolmogorov Complexity [video]

https://www.youtube.com/watch?v=UGN9D0n4AJA
1•sgschlesinger•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.