frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Dear Heroku: Uhh What's Going On?

https://judoscale.com/blog/heroku-whats-going-on
1•crcastle•4m ago•0 comments

Stop using AI wrappers and just use Claude

https://brickstack.substack.com/p/i-tried-every-gamma-alternative-just
1•brickstack•5m ago•0 comments

Vision Language Models (2025)

https://huggingface.co/blog/vlms-2025
1•walterbell•16m ago•0 comments

The highest-scoring AI memory system ever benchmarked

https://github.com/milla-jovovich/mempalace
1•latchkey•16m ago•0 comments

Kafka-ML: Connecting the data stream with ML/AI frameworks

https://github.com/ertis-research/kafka-ml
1•teleforce•19m ago•0 comments

Global Fuel Shortage Pushes Governments Toward Demand Controls

https://oilprice.com/Energy/Crude-Oil/Global-Fuel-Shortage-Pushes-Governments-Toward-Demand-Contr...
5•toomuchtodo•19m ago•0 comments

Bezier drawing tool w infinite zoom

https://fatih-erikli-potato.github.io/path-draw/
2•fatih-erikli-cg•21m ago•0 comments

OpenClaw Plugin for Claude Code CLI – Persistent Worker Pool with Smart OAuth

https://github.com/AlexChen31337/openclaw-plugin-claude-code
1•alexchen_dev•23m ago•0 comments

Astronauts Dedicate Moon Crater to Carroll Wiseman, Wife of NASA Commander

https://www.nytimes.com/2026/04/06/science/moon-crater-carroll-reid-wiseman.html
1•shpat•25m ago•0 comments

Training mRNA Language Models Across 25 Species for $165

https://huggingface.co/blog/OpenMed/training-mrna-models-25-species
2•gmays•27m ago•0 comments

It's Time to Take Down Your Smart Cameras [video]

https://www.youtube.com/watch?v=UMIwNiwQewQ
1•locusm•27m ago•0 comments

New Jersey cannot regulate Kalshi's prediction market, US appeals court rules

https://finance.yahoo.com/markets/options/articles/jersey-cannot-regulate-kalshis-prediction-1331...
1•pseudolus•28m ago•0 comments

ATS Resume Builder – Build an ATS friendly resume and get more interviews

https://ats-resume.com
2•chTijani•32m ago•0 comments

Physical Engineering AI – tools for mech engineers

https://github.com/010zx00x1/Awesome-Physical-Engineering-AI
1•010zx00x1•32m ago•0 comments

I set up a static blog that can be updated just by email

https://knxnts.xyz/blog-4.6.26.html
1•knxnts•36m ago•1 comments

I used a single power station to keep my off-grid cabin running

https://www.zdnet.com/home-and-office/energy/bluetti-apex-300-power-station-review/
1•y1n0•37m ago•1 comments

Exploring Psychic Powers Live TV Special (1989) [video]

https://www.youtube.com/watch?v=djKBUDg-v-M
1•nomilk•39m ago•0 comments

AI workout plan generator for Indian personal trainers (coachiq.in)

1•allgrips•41m ago•0 comments

Brevity Constraints Reverse Performance Hierarchies in Language Models

https://arxiv.org/abs/2604.00025
1•handfuloflight•42m ago•0 comments

Succession – Agent Lineage Evolution for an Agentic World

https://danieltan.weblog.lol/2026/04/succession-ale-for-an-agentic-world
1•danieltanfh95•51m ago•0 comments

Motorola USB OTG Problems (2023)

https://goughlui.com/2025/09/20/notes-motorola-moto-g84-5g-usb-otg-problems-bad-vbus/
2•goodburb•51m ago•1 comments

Gemini CLI accessed outside permited directory, then admits fault

https://twitter.com/i/status/2041317025583374376
1•yowayb•53m ago•1 comments

How Plausible Is 'Project Hail Mary'? Astrophysicists Have Thoughts

https://www.nytimes.com/2026/04/04/movies/project-hail-mary-scientific-accuracy.html
3•bookofjoe•56m ago•1 comments

Solod – A Subset of Go That Translates to C

https://github.com/solod-dev/solod
8•TheWiggles•58m ago•0 comments

Memory poisoning in AI coding agents

https://github.com/asamassekou10/ship-safe
1•asamassekou•59m ago•0 comments

Goodbye, middle managers. Hello, 'player-coaches' and 'org leads'

https://www.businessinsider.com/meta-block-managers-player-coaches-org-leads-2026-4
2•indigodaddy•1h ago•2 comments

Report: Apple has shifted 40% of planned MacBook production capacity to Vietnam

https://twitter.com/dnystedt/status/2041310255305642278
2•ilamont•1h ago•0 comments

Feynman: Open-source AI research agent

https://www.feynman.is/
2•m_kos•1h ago•1 comments

TraceFix – A simple tool to trace issues from logs faster

https://tracefix.vercel.app/
1•skillsettler•1h ago•1 comments

I made Claude slower and it changed how I use it

https://www.xda-developers.com/i-made-claude-slower-and-it-completely-changed-how-i-use-it/
1•NicoJuicy•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•11mo ago

Comments

palata•11mo 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•11mo 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•11mo 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•11mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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.