frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Do LLMs Reason, or Do They Just Predict Math Text?

https://daridor.blog/2026/05/01/do-llms-reason-or-do-they-just-predict-math-text/
1•beagle3•1m ago•1 comments

Investors pile into clean energy as Iran war drives push for energy security

https://www.ft.com/content/9921f2b5-c910-4cec-a50f-cad453935a1a
1•JumpCrisscross•6m ago•0 comments

MCPages

https://github.com/NoahCzelusta/mcpages
1•swimninja247•11m ago•2 comments

Thoth – open-source Local-first AI Assistant

https://github.com/siddsachar/Thoth
1•sydsachar•14m ago•0 comments

Comparison: Different AI systems structure decisions under real-world scenarios

https://zenodo.org/records/19443285
1•zobian_ai•18m ago•0 comments

MPA Renews Push for U.S. Site-Blocking Legislation, Citing Live Sports Piracy

https://torrentfreak.com/mpa-renews-push-for-u-s-site-blocking-legislation-citing-live-sports-pir...
1•gslin•18m ago•0 comments

Show HN: Apple's Sharp Running in the Browser via ONNX Runtime Web

https://github.com/bring-shrubbery/ml-sharp-web
1•bring-shrubbery•18m ago•0 comments

Awesome Vintage LLMs

https://github.com/entanglr/awesome-vintage-llms
1•whythismatters•18m ago•0 comments

Technology helps observers understand how iconic artworks were created

https://www.psu.edu/news/information-sciences-and-technology/story/technology-helps-observers-und...
1•saikatsg•20m ago•0 comments

Packages release more often than ever. Or do they?

https://www.viblo.se/posts/oss-releases-ai/
1•viblo•25m ago•1 comments

Enable password input feedback for sudo

https://wiki.archlinux.org/title/Sudo#Enable_password_input_feedback
1•seansh•27m ago•0 comments

Leeds Town Hall Organ Renewal

https://www.leedstownhall.co.uk/support-us/organ-renewal-project/
1•Lio•28m ago•0 comments

Startup request: MCP household appliances

1•dontoni•33m ago•0 comments

Dear Richard Dawkins

https://dearricharddawkins.com/
1•thinkingemote•33m ago•0 comments

Researchers print structural colour with an inkjet printer

https://physicsworld.com/a/researchers-print-structural-colour-with-an-inkjet-printer/
2•zeristor•34m ago•0 comments

Clawback – rehearse OpenClaw upgrades before touching your live install

https://github.com/haishmg/Clawback
1•princeharry86•36m ago•0 comments

Wire-level context pruner for Claude Code

https://github.com/pathakmukul/claude-code-context-pruner
1•mukulpathak•37m ago•0 comments

NIST's CAISI Evaluation of DeepSeek V4 Pro finds it to be on par with GPT-5

https://www.nist.gov/news-events/news/2026/05/caisi-evaluation-deepseek-v4-pro
1•maxloh•39m ago•0 comments

OpenAI: Auto-review of agent actions without synchronous human oversight

https://alignment.openai.com/auto-review/
1•tosh•40m ago•0 comments

Definable Real Number

https://en.wikipedia.org/wiki/Definable_real_number
1•nill0•49m ago•0 comments

When Microsoft saved Apple (2017)

https://www.cnbc.com/2017/08/29/steve-jobs-and-bill-gates-what-happened-when-microsoft-saved-appl...
2•thunderbong•50m ago•0 comments

A Lisa Inside an FPGA

https://lisalist2.com/index.php?topic=694.0
1•uyjulian•53m ago•0 comments

Performance of a large language model on the reasoning tasks of a physician

https://www.science.org/doi/10.1126/science.adz4433
1•voisin•54m ago•0 comments

You Have No Idea How Much You Still Use BlackBerry

https://www.wsj.com/tech/blackberry-qnx-software-cars-bf2a2280
3•voisin•58m ago•0 comments

How the suffering system works in Hollow

https://ninjahawk.github.io/blog/posts/suffering-system.html
1•ninjahawk1•1h ago•0 comments

Show HN: BoxLite – the micro-VM runtime for embedded, local dev, and cloud prod

https://github.com/boxlite-ai/boxlite
1•dorianzheng•1h ago•0 comments

NASA's Nancy Grace Roman telescope will offer an 'atlas of the universe'

https://www.msn.com/en-us/news/technology/nasas-incredible-new-telescope-will-offer-an-atlas-of-t...
1•slow_typist•1h ago•0 comments

Git Rev News Edition 134 (April 30th, 2026)

https://git.github.io/rev_news/2026/04/30/edition-134/
1•chmaynard•1h ago•0 comments

Improved testing logic in od.nvim, added a serializers module to ocote

1•Okerew•1h ago•0 comments

Deepfakes Are Coming for Your Bank Account

https://www.theatlantic.com/technology/2026/05/chatgpt-images-deepfakes-fraud/687023/
2•JumpCrisscross•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•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.