frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

You can parse an .env file as an .ini with PHP – but there's a catch

https://shkspr.mobi/blog/2026/04/you-can-parse-an-env-file-as-an-ini-with-php-but-theres-a-catch/
2•Brajeshwar•6m ago•0 comments

ClawCodex – Claw Code with Upgrades

https://github.com/Skynet-Pro-Plus/ClawCodex
2•skynetproplus•9m ago•0 comments

Magic by Return of Post: How Mail Order Delivered the Occult

https://publicdomainreview.org/essay/magic-by-return-of-post/
2•Vigier•9m ago•0 comments

Prototown: America's answer to China is hiding in rural Texas

https://www.youtube.com/watch?v=qIob2-ugCO0
2•rdl•12m ago•0 comments

Who's developing Golden Dome's orbital interceptors–if they're ever built

https://arstechnica.com/space/2026/04/this-is-whos-developing-golden-domes-orbital-interceptors-i...
2•rbanffy•12m ago•0 comments

Our Survey on Creativity, Writing, and Reading in the Age of AI

https://ellipsus.com/blog/survey-on-writing-and-ai
2•fao_•13m ago•0 comments

Mechanical load inhibits cancer growth in mouse and human hearts

https://www.science.org/doi/10.1126/science.ads9412
2•_Microft•14m ago•0 comments

The AI Industry Is Discovering That the Public Hates It

https://newrepublic.com/article/209163/ai-industry-discovering-public-backlash
27•chirau•15m ago•4 comments

A TUI to browse what Claude Code remembers about your projects

https://github.com/lu-zhengda/claude-mem-viz
2•zhengda-lu•16m ago•1 comments

Memory in the Age of AI Agents

https://arxiv.org/abs/2512.13564
2•fittingopposite•16m ago•1 comments

Show HN: Dial-up-loader, old-school modem terminal and synthesises dial-up

https://github.com/klexas/DialUploader
2•bilekas•17m ago•0 comments

Rcarmo/haiku-ARM64-build: Build environment and automation

https://github.com/rcarmo/haiku-arm64-build
2•rcarmo•18m ago•0 comments

Trump Fires the National Science Board

https://www.theverge.com/science/918769/trump-fires-the-entire-national-science-board
6•aaronbrethorst•18m ago•1 comments

The Merge (2017)

https://blog.samaltman.com/the-merge
3•andsoitis•30m ago•1 comments

Grove: A simple snappy TUI repo+worktree+shell manager

https://github.com/sebasv/grove/
2•sebasv_•32m ago•1 comments

Show HN: Quantum Temporal Cryptography – spec for interplanetary trust chains

https://zenodo.org/records/19770184
2•vibeagentmaking•40m ago•0 comments

Boats crash/break and can kill their passengers when falling certain distances

https://bugs.mojang.com/browse/MC/issues/MC-119369
3•zdw•43m ago•0 comments

Show HN: Talisman – A Android instrument played with two thumbs

https://talisman.by-igor.com/
3•ycosynot•44m ago•1 comments

Father warns of extremist network 764 after his daughter was 'groomed' on Roblox

https://nationalpost.com/news/canada/b-c-father-warns-of-extremist-online-network-764-after-his-d...
5•qwertyuiop_•44m ago•1 comments

Reconnecting a Post-Pandemic World

https://github.com/DaBena/Brezn
2•brezn•47m ago•1 comments

Pyptx – Write PTX Kernels in Python

https://github.com/patrick-toulme/pyptx
3•bobrenjc93•50m ago•0 comments

Show HN: LoreData – generate lore-accurate personas from pop culture universes

https://loredata.orchidfiles.com/
2•theorchid•50m ago•0 comments

Ask HN: Is anyone using Zoho, Lark or Proton?

2•wasimsk•53m ago•2 comments

Blog prize for big questions about AI

https://www.dwarkesh.com/p/blog-prize
3•gmays•53m ago•0 comments

The Professors Are Using ChatGPT, and Some Students Aren't Happy About It

https://www.nytimes.com/2025/05/14/technology/chatgpt-college-professors.html
2•coldsunrays•55m ago•0 comments

Show HN: Routiium – self-hosted LLM gateway with a tool-result guard

https://github.com/labiium/routiium
2•deadpixel•56m ago•0 comments

Agent-World: Scaling RW Environment Synthesis for General Agent Intelligence

https://agent-tars-world.github.io/-/
2•gmays•56m ago•0 comments

Context Is Finite. Who Maintains It?

https://blog.gchinis.com/posts/2026/04/self-organizing-agents/
2•gchinis•57m ago•0 comments

Release PiClaw v2.0.1 – Ferrix

https://github.com/rcarmo/piclaw/releases/tag/v2.0.1
2•rcarmo•1h ago•0 comments

Trump ousts National Science Board members

https://www.washingtonpost.com/science/2026/04/25/national-science-board-members-dismissed/
9•acdha•1h ago•2 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.