frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Llama.cpp's Agents.md

https://github.com/ggml-org/llama.cpp/blob/master/AGENTS.md
1•Wowfunhappy•1m ago•0 comments

Age requirements for managing an Apple Account in the UK

https://support.apple.com/en-gb/126788
1•comprev•2m ago•0 comments

I Created Rosie's mRNA Vaccine Protocol

https://twitter.com/paul_conyngham/status/2036940410363535823
1•paulscon•3m ago•1 comments

I built a tiny CLI that writes my commit messages from Git diff

https://github.com/saccofrancesco/gitsloth
1•s4ccofr4ncesco•3m ago•0 comments

The Future of Trash [pdf]

https://dsny.cityofnewyork.us/wp-content/uploads/reports/future-of-trash-april-2023.pdf
1•ChadNauseam•4m ago•0 comments

GPU's Are Being Wasted

https://getlilac.com/blog/gpu-scarcity-paradox
2•luew•6m ago•1 comments

PiClaw v1.6.6 – The Karate Kid

https://github.com/rcarmo/piclaw/releases/tag/v1.6.6
2•rcarmo•6m ago•0 comments

New Jira Hard Limits

https://community.atlassian.com/forums/Enterprise-articles/Growing-our-investment-in-a-faster-cle...
1•rfmc•7m ago•0 comments

Zephyr Zero JavaScript Framework

https://github.com/daltlc/zephyr-framework
1•daltonlcarr•7m ago•0 comments

Promote your products like a pro

https://instant-ugc.com/?red=abdelk
1•Locas•7m ago•0 comments

No Classification Without Representation

https://materialize.com/blog/no-classification-without-representation/
2•pranshum•9m ago•0 comments

Helix – Self-healing SDK for AI agent payments (open source)

https://helix-cnj.pages.dev/
1•adrianhihi•10m ago•0 comments

Attributed Claude activity over the last 90 days on GitHub

https://www.claudescode.dev/?window=90d
5•nojito•13m ago•0 comments

How do you handle security and access control in MCP and RAG pipelines?

1•Jatiioo•13m ago•0 comments

I Did Not Predict What Is Going on in Private Equity and Credit

https://www.aqr.com/Insights/Perspectives/I-Did-Not-Predict-What-is-Going-on-in-Privates
2•toomuchtodo•13m ago•0 comments

Sony and Honda Hit the Brakes on a $102,900 EV

https://www.wsj.com/business/autos/sony-honda-put-brakes-on-electric-vehicle-jv-4a244d24
2•bookofjoe•14m ago•2 comments

Deploy agents like code. Open source, MIT tool

https://docs.actionllama.org
1•b_asselstine•15m ago•0 comments

Technology: The (nearly) perfect USB cable tester does exist

https://blog.literarily-starved.com/2026/02/technology-the-nearly-perfect-usb-cable-tester-does-e...
2•birdculture•16m ago•0 comments

Stedi's $70M Series B to Build the Only AI-Enabled Clearinghouse

https://www.healthcareittoday.com/2025/09/09/announcing-stedis-70-million-series-b-to-build-the-o...
1•doppp•17m ago•0 comments

Qualified Health raises $125M to scale enterprise AI at health systems

https://www.fiercehealthcare.com/ai-and-machine-learning/qualified-health-locks-125m-fresh-fundin...
1•doppp•18m ago•0 comments

The Price of Truth

https://harmoniousdiscourse.substack.com/p/the-price-of-truth
1•larve•19m ago•0 comments

Woman who never stopped updating her lost dog's chip reunites with him after 11y

https://www.cbc.ca/radio/asithappens/11-year-dog-reunion-9.7140780
4•gnabgib•21m ago•0 comments

Show HN: A plain-text cognitive architecture for Claude Code

https://lab.puga.com.br/cog/
4•marciopuga•22m ago•0 comments

Laws Suppressing Boycotts of Israel Violate Civil Liberties

https://www.aclu.org/news/free-speech/laws-suppressing-boycotts-israel-dont-prevent-discriminatio...
5•KoftaBob•23m ago•0 comments

Draw-things-CLI: local media generation from command-line on your Mac

https://releases.drawthings.ai/p/draw-things-cli-local-media-generation
2•liuliu•25m ago•0 comments

DocumentAI – Feed your files, get a structured document (MVP)

https://documentai.aboneda.com/
1•aboneda•25m ago•0 comments

Tamp – Compression Proxy: 52% Fewer Tokens for Claude Code, Gemini, etc.

https://github.com/sliday/tamp
2•kulesh•26m ago•0 comments

ICE has been lying about being authorized to make arrests at immigration courts

https://bsky.app/profile/bradlander.bsky.social/post/3mhvpk32vxc2e
9•Avshalom•30m ago•0 comments

AI-powered pull request evaluation for open source maintainers

https://pr-triage-web.vercel.app
2•Holohydra•31m ago•0 comments

The Vibetracer

https://github.com/omeedcs/vibetracer
2•mambamental26•32m 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.