frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I asked AI to write Sci-Fi for eternity

https://f055.net/thattimei/that-time-i-asked-ai-to-write-sci-fi-for-eternity/
1•f055•2m ago•0 comments

Every service should have a killswitch

https://www.seangoedecke.com/killswitches/
1•gautamsomani•3m ago•0 comments

What 262,715 regex questions on stack overflow haven't answered

https://iev.ee/blog/what-262715-regex-questions-havent-answered/
1•aw1621107•3m ago•0 comments

Distribution kept expiring. So I built 10 channels instead. Here's every loop

https://www.indiehackers.com/post/rented-distribution-kept-expiring-so-i-built-10-channels-i-own-...
1•max_unbearable•5m ago•0 comments

Bone-crushing hyenas are cleaning up city streets in Ethiopia

https://www.cnn.com/world/africa/bone-crushing-hyenas-cleaning-ethiopian-streets-spc
1•breve•8m ago•0 comments

A simple way to compress model, KV cache, flops vias low-rank with zero overhead

https://jeffreywong20.github.io/a3.github.io/
1•thw20•8m ago•0 comments

Show HN: Hollow – A local multi-agent OS that builds its own tools

https://github.com/ninjahawk/hollow-agentOS
1•ninjahawk1•9m ago•0 comments

Local Transformer Language Model Running on GameBoy Color

https://github.com/maddiedreese/gbc-transformer
1•redbell•10m ago•0 comments

7 in 10 Americans oppose data centers being built in their communities

https://www.washingtonpost.com/nation/2026/05/13/7-10-americans-oppose-data-centers-being-built-t...
1•frb•11m ago•0 comments

Hyper-Frame – a custom iframe to embed a browser tab

https://www.hyper-frame.art/console
1•keepamovin•13m ago•0 comments

AMD DGF: An Open Geometry Compression Standard

https://gpuopen.com/learn/amd-dgf-an-open-geometry-compression-standard/
1•ibobev•14m ago•0 comments

Attribr

https://www.attribr.dev
1•SupaMRVL•15m ago•0 comments

The lasting influence of Netscape Time

https://thehistoryoftheweb.com/the-lasting-influence-of-netscape-time/
1•speckx•16m ago•0 comments

Tsjilp – AI as a silent communication assistant

https://www.tsjilp.me
1•hkuperus•20m ago•1 comments

I Got a Cisco 7942G

https://moonydev.xyz/blog/i_got_a_cisco_7942/
2•moonydev•21m ago•0 comments

Show HN: Before Upload – check files locally before sending them to AI tools

https://beforeupload.com/
3•ailef•21m ago•1 comments

Peter Norvig's 21 line spelling corrector using probability theory

https://impythonist.wordpress.com/2014/03/18/peter-norvigs-21-line-spelling-corrector-using-proba...
2•ibobev•21m ago•0 comments

Britain's hiring culture has become absurd

https://spectator.com/article/the-absurdity-of-britains-virtual-hiring-culture/
2•password54321•21m ago•0 comments

Seriously bright light vs. winter blahs

https://meaningness.com/sad-light-lumens
1•l1am0•22m ago•0 comments

Sam Altman Testifies That Elon Musk Wanted Control of OpenAI

https://www.nytimes.com/live/2026/05/12/technology/openai-trial-sam-altman-elon-musk
1•the-mitr•25m ago•1 comments

Show HN: Secret Jigsaw – send a photo hidden inside a puzzle

https://secretjigsaw.com
2•pompomsheep•25m ago•0 comments

The Disintegrating Moat – and Why That's a Good Thing

https://people-work.io/blog/the-disintegrating-moat/
1•mooreds•25m ago•0 comments

Berget AI announces Berget Code for European teams powered by Kimi K2.6

https://berget.ai/blog/berget-code-launch-en
2•marols•26m ago•1 comments

Lang5 – a stack oriented APL-like language

https://github.com/bernd-ulmann/lang5
2•tosh•31m ago•0 comments

Static Analysis for GitHub Actions

https://github.com/zizmorcore/zizmor
1•mooreds•36m ago•0 comments

Soon We Can Banish JavaScript to the ShadowRealm

https://css-tricks.com/soon-we-can-finally-banish-javascript-to-the-shadowrealm/
2•speckx•37m ago•0 comments

The price of power – why batteries are starting to look obvious

https://blog.stromflix.com/price-of-power
1•StromFLIX•38m ago•1 comments

In a trial pitting him against Elon Musk, nobody has more to lose than Altman

https://www.latimes.com/business/story/2026-05-12/in-trial-pitting-him-against-elon-musk-nobody-h...
1•1vuio0pswjnm7•38m ago•0 comments

Sovereign Tech Fund invests over €1M in KDE software development

https://kde.org/announcements/sovereign-tech-fund-invests-kde/
4•spiros•39m ago•1 comments

The First Cleaner Ant? A Novel Partnership in the Arizona Desert

https://onlinelibrary.wiley.com/doi/10.1002/ece3.73308
1•sohkamyung•41m 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.