frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gene Shalit, longtime 'Today' show movie critic, dies at 100

https://apnews.com/article/gene-shalit-dies-b8ed6f4b7054e530e5fba9a808902cca
1•petethomas•1m ago•0 comments

Elon Musk becomes first trillionaire

https://www.bbc.com/news/articles/c4gypy3wwl7o
2•tonyhart7•9m ago•0 comments

Text/Plain Blog

https://textplain.blog/
1•flykespice•10m ago•0 comments

OpenHands Index

https://index.openhands.dev/home
1•jmj•12m ago•0 comments

Let’s call ‘em “aigents”

https://www.autodidacts.io/aigents/
1•Curiositry•20m ago•0 comments

Dhtmlx Gantt – JavaScript Gantt Chart (Community Edition)

https://github.com/DHTMLX/gantt
1•thunderbong•21m ago•0 comments

CipherNode – An offline, self-correcting AI swarm compiled to a single .exe

1•CipherNode•23m ago•0 comments

China cracks down on Western AI models while US companies flock to DeepSeek

https://www.techradar.com/pro/the-great-ai-irony-china-cracks-down-on-western-models-while-us-com...
2•giuliomagnifico•23m ago•0 comments

Forbes declares Elon Musk as the world’s first trillionaire

https://www.forbes.com/sites/pr/2026/06/12/forbes-declares-elon-musk-as-the-worlds-first-trillion...
1•teleforce•25m ago•2 comments

A generic dynamic array in C that stores no capacity and needs no struct

https://gist.github.com/alurm/2ca14be134d719fe7431217a6b18d91e
1•alurm•25m ago•0 comments

TempleOS running in the browser with custom emulator

https://templeosweb.netlify.app/
1•AndrewPakrerH•27m ago•1 comments

Fred-80 – a fantasy console that runs on real Amiga hardware (68080 CPU)

https://medium.com/@fred80/i-built-a-fantasy-console-for-my-son-and-it-runs-on-real-amiga-hardwar...
2•rogueparticle•32m ago•0 comments

Streamlit

https://godsway-academy.streamlit.app
1•lmg_lockdown•33m ago•0 comments

Michelangelo's Prisoner Graffiti

https://www.thehistoryblog.com/archives/date/2013/06/30
1•thunderbong•38m ago•0 comments

Show HN: Lead Qualifier – Get leads qualified in minutes

https://lead.robowrite.ai
2•mehdizare•39m ago•0 comments

Kimi-K2.7-Code

https://twitter.com/Kimi_Moonshot/status/2065377579130142937
2•hisamafahri•39m ago•0 comments

Agentic-Engineering-Handbook

https://github.com/keyuchen21/agentic-engineering-handbook
1•keyuchen2020•39m ago•0 comments

Emerging Security Risks in Quantum Computing

https://myassineferjani.substack.com/p/beyond-post-quantum-cryptography
1•FMY_Q•42m ago•0 comments

Show HN: WebCLI – make the web browser just another agent skill

https://github.com/DO-SAY-GO/web-cli
2•keepamovin•45m ago•0 comments

Show HN: Babel realtime calls with strangers in any language

https://itsbabel.com
1•epsteingpt•47m ago•0 comments

Mythos, make me a pelican on a bicycle (in 3D)

https://www.cad.fun/?file=implicits%2Fpelican-bicycle.implicit.js
1•softservo•48m ago•2 comments

Make any classic ROM online multiplayer and use phones as controllers

https://doot.games/game/retro-arcade
1•virgilvox•49m ago•0 comments

SpaceX starts trading, and some 'shareholders' discover they own nothing at all

https://fortune.com/2026/06/12/spacex-ipo-when-trading-starts-some-shareholders-will-discover-the...
3•MilnerRoute•49m ago•0 comments

Patagonia is suing Pattie Gonia, a drag queen performer

https://apnews.com/article/patagonia-trademark-pattie-gonia-climate-e479a32a66c1d8c6dae95936b401984a
1•petethomas•50m ago•0 comments

I spent my savings building a food logging app because none worked

https://apps.apple.com/us/app/food-tracker-macro-mealsnap/id6475162854
1•phenrys•50m ago•1 comments

Research Is Not Engineering at a Slower Speed

https://voiceinthemachine.com/2026/06/10/research-is-not-engineering-at-a-slower-speed/
1•pabo•53m ago•0 comments

Jailbreak that potentially triggered Anthropic Fable Model ban?

https://twitter.com/elder_plinius/status/2064776322979676227
1•abjha•55m ago•0 comments

Open Source AI Must Win

https://opensourceaimustwin.com/?share=v2
171•vednig•1h ago•38 comments

NeonX

https://github.com/inrryoff/NeonX
1•inrryoff•1h ago•0 comments

Hasta Pronto – An AI Farewell Letter and Interactive Memorial – Claude

https://claude.ai/public/artifacts/fcf36cd3-85f4-49f4-8ef1-5b767ff8ec55
3•corvad•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.