frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Focus Areas for the Anthropic Institute

https://www.anthropic.com/research/anthropic-institute-agenda
1•nedruod•4m ago•0 comments

Wipeout in Browser

https://hexgl.bkcore.com/#press
2•lovegrenoble•5m ago•0 comments

I lost track of which Claude Code tab needed me, so I built this

https://github.com/dgr8akki/claude-tab-watcher
1•dgr8akki•5m ago•0 comments

Blink – AI Assistant

https://blink-oi.vercel.app
1•Pascal1997•6m ago•0 comments

The Programmer After AI

https://gist.github.com/tamnd/11665e492d7a3b91ce54e26ecbd97248
1•tamnd•7m ago•0 comments

Stop MitM on the first SSH connection, on any VPS or cloud provider

https://www.joachimschipper.nl/Stop%20MITM%20on%20the%20first%20SSH%20connection,%20on%20any%20VP...
1•JoachimSchipper•8m ago•0 comments

Aube: Fast Node.js package manager that works with your existing lockfiles

https://aube.en.dev/
1•thunderbong•8m ago•0 comments

Western Horizon Technologies TI 99/4a and Geneve Archive

https://ftp.whtech.com/
1•oldnetguy•8m ago•0 comments

Creativity and AI

https://roo.se/en/blog/creativity-and-ai/
1•rroose•10m ago•1 comments

Reviving Teletext for Ham Radio Hack the airwaves with some tech of the 1980s

https://spectrum.ieee.org/reviving-teletext-for-ham-radio
2•oldnetguy•12m ago•0 comments

An Introduction to Meshtastic

https://meshtastic.org/docs/introduction/
1•ColinWright•12m ago•0 comments

AI Coding plan comparisons based on actual usage

https://sites.diy/blog/2026-05-01-coding-plan-comparisons/
1•Topfi•12m ago•1 comments

AI Is Starting to Build Better AI IEEE Spectrum

https://spectrum.ieee.org/recursive-self-improvement
2•oldnetguy•13m ago•0 comments

Eight More 8-bit Era Microprocessors (2024)

https://thechipletter.substack.com/p/eight-more-8-bit-era-microprocessors
3•klelatti•13m ago•0 comments

OpenKB: A Vectorless Knowledge Base for Long Documents

https://github.com/VectifyAI/OpenKB
1•steveharing1•13m ago•0 comments

Pushing Local Models with Focus and Polish

https://lucumr.pocoo.org/2026/5/8/local-models/
2•wofo•15m ago•0 comments

The Sega Master System is still being made and sold in Brazil, 37 years later

https://www.xda-developers.com/the-sega-master-system-is-still-being-made-and-sold-in-brazil-37-y...
2•redbell•18m ago•0 comments

The Download: seafloor science and military chatbots

https://www.technologyreview.com/2026/05/06/1136917/the-download-seafloor-science-military-ai-cha...
1•joozio•19m ago•0 comments

Architecture Decision Record: new mirrors on GitHub, GitLab, Codeberg

1•jph•21m ago•0 comments

Learning to Code, 1990s vs. 2026

https://ayende.com/blog/203975-a/learning-to-code-1990s-vs-2026/
1•GordonS•25m ago•0 comments

Deltδx Free – Scientific Reasoning GPT

https://chatgpt.com/g/g-69f11b6a1bdc8191ab1100acf60f40cc-deltdx-free
1•DELTAX-Editions•28m ago•0 comments

Jjj – Jujutsu Jump

https://oppi.li/posts/jjj/
1•nerdypepper•30m ago•0 comments

Why is Silicon Valley suddenly obsessed with being tasteful?

https://www.theguardian.com/fashion/2026/may/08/why-is-silicon-valley-suddenly-obsessed-with-bein...
1•giuliomagnifico•30m ago•0 comments

Technology Transformed Babymaking

https://www.technologyreview.com/2026/05/08/1136974/heres-how-technology-transformed-babymaking-ivf/
1•joozio•33m ago•0 comments

Checking Multiplication Overflow

https://lemire.me/blog/2026/05/06/checking-multiplication-overflow/
1•signa11•35m ago•0 comments

Playing freely – and not limiting innovation to what is already best practice

https://livingsystems.substack.com/p/playing-freely
1•samuell•35m ago•0 comments

Dad Was at the Hard Hat Riot

https://medium.com/@solidi/dad-was-at-the-hard-hat-riot-f84339b08fb2
1•biscuits1•35m ago•0 comments

Notes from Code with Claude 2026

https://chrisebert.net/notes-from-code-with-claude-2026/
1•cebert•35m ago•0 comments

How to build a lunar mass driver – Casey Handmer's blog

https://caseyhandmer.wordpress.com/2026/05/08/how-to-build-a-lunar-mass-driver/
1•bilsbie•36m ago•0 comments

Show HN: Rore GUI – An Open Qt Alternative in Rust (WGPU, Zero-VDOM)

https://github.com/davlatov-tech/Rore
1•umid_davlatov•38m ago•1 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.