frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Do you write with AI? Do you think people notice?

1•Gravityloss•1m ago•0 comments

Rewrite

https://gist.github.com/rtfeldman/77fb430ee57b42f5f2ca973a3992532f
1•tosh•1m ago•0 comments

Claude.md is RAM, not disk

https://albertoarena.it/posts/claude-md-is-ram-not-disk/
3•moebrowne•11m ago•0 comments

Open Book Touch: A pocketable, front-lit, open source e-reader

https://www.crowdsupply.com/oddly-specific-objects/open-book-touch
2•tapanjk•14m ago•0 comments

AI Connector by Plumrocket

https://commercemarketplace.adobe.com/plumrocket-ai-connector.html
2•pearsonand•19m ago•0 comments

Xbox CEO Asha Sharma, who laid off 3,200 employees, to lead task force on jobs

https://www.pcgamer.com/gaming-industry/us-federal-reserve-taps-xbox-ceo-asha-sharma-who-just-lai...
3•robtherobber•20m ago•0 comments

Immutable Versions on Packagist

https://blog.packagist.com/immutable-versions-on-packagist/
2•moebrowne•21m ago•0 comments

Smart Cellular Bricks: Towards Collective Intelligence for the Physical World

https://sakana.ai/smart-cellular-bricks/
2•hardmaru•22m ago•0 comments

Fuck.com (1997)

https://www.links.net/webpub/fuck.com.html
2•downbad_•24m ago•1 comments

Imprisoned in My Own Mind

https://ahmedhossvm.dev/posts/imprisoned_in_my_own_mind/
1•ahmedhosssam•25m ago•0 comments

Show HN: Mock Chats – Make viral chat-story videos

https://www.mockchats.com/
2•oliverbenns•27m ago•0 comments

Commodore Amiga 500 Artwork

https://gibbok.github.io/amiga-500-art/index.html
3•doener•29m ago•0 comments

AI creating a Jevon's Paradox for lawsuits, deals and litigation [video]

https://www.youtube.com/watch?v=_uWnr42zGnE
2•OgsyedIE•30m ago•0 comments

ClipBridge – self-hosted clipboard sync for iPhone, Windows, and Mac

https://github.com/andreasserfilippi/clipbridge
2•Andreas4252222•31m ago•0 comments

Show HN: Vakh, a social platform for all things

https://vakh.com/
1•ajaychl•31m ago•0 comments

Show HN: Turn meeting recordings into searchable transcripts. All local

https://motionobj.com/minutefile/
2•hboon•31m ago•0 comments

Domain Expired – You Have 30 Days Before It's Gone Forever

https://urlwatch.io/blog/domain-grace-period-recovery.php
2•urlwatch•36m ago•0 comments

DolphinDB v3.00.6 and v2.00.19: Introducing DolphinX for Enterprise AI Agents

https://medium.com/@DolphinDB_Inc/dolphindb-v3-00-6-ecde33229456
2•yiweileng•38m ago•0 comments

Dancing with the Gods (1995)

http://www.catb.org/esr/writings/dancing.html
2•fbrusch•39m ago•0 comments

Nokia DCT3 Emulator

https://github.com/djr-747/nokia-dct3-emulator
2•71bw•42m ago•0 comments

Show HN: Narada – a browser built for agents, under your control

https://narada.koley.in/
1•arkokoley•44m ago•0 comments

Show HN: GGUFun, play snake and a simple maze on Ollama using hand crafted GGUFs

https://ggufun.grokked.it
1•grokkedit•44m ago•0 comments

The Human Cost of DOGE's War on USA.I.D.

https://www.newyorker.com/news/the-new-yorker-interview/the-human-cost-of-doges-war-on-usaid
3•doener•45m ago•0 comments

SticiGui – Statistics Tools for Internet and Classroom Instruction with a GUI

https://www.stat.berkeley.edu/~stark/SticiGui/index.htm
1•the-mitr•45m ago•0 comments

Ask HN: Which Chinese open source projects are you using?

2•khurs•57m ago•1 comments

Race into Space Is the Free Version of Interplay's Buzz Aldrin's Race into Space

https://github.com/raceintospace/raceintospace
2•_____k•1h ago•0 comments

How to Automate API Testing

https://keploy.io/blog/community/api-automation-testing
1•alokky•1h ago•0 comments

A local HTTP-to-SOCKS5 proxy bridge for Chrome

https://github.com/proxybasehq/socks5-bridge
2•m00dy•1h ago•0 comments

Zig Creator Calls Spade a Spade, Anthropic Blows Smoke

https://raymyers.org/post/zed-creator-calls-spade-a-spade/
115•crowdhailer•1h ago•66 comments

Muse Spark 1.1: Meta gains 8 Intelligence Index points in three months

https://artificialanalysis.ai/articles/muse-spark-1-1-everything-you-need-to-know
2•himata4113•1h 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.