frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Peeling Apart Plywood to Understand How It Works

https://christopherschwarz.substack.com/p/peeling-apart-plywood-to-understand
1•pseudolus•1m ago•0 comments

Tailark Pro

https://pro.tailark.com
1•bellamoon544•2m ago•1 comments

Ask HN: Other than QEMU, VM program I find great,what other prgs do you usea lot

1•gitprolinux•2m ago•0 comments

I love AI; I hate AI

https://www.ewanvalentine.co.uk/blog/i-love-ai-i-hate-ai
2•vegancap•3m ago•0 comments

The Great Connection Pool Meltdown

https://blog.jacobstechtavern.com/p/the-great-connection-pool-meltdown
1•jakey_bakey•3m ago•0 comments

"150 Extra Engineers" IBM's 1951 Ad for Electronic Calculating Punch

https://en.wikipedia.org/wiki/Slide_rule
1•gessha•4m ago•0 comments

Origin and Evolution of the Globstar

https://mergify.com/blog/origin-and-evolution-of-the-globstar
2•remyduthu•5m ago•0 comments

Show HN: Instantly drop-in services, workers, and libraries in TypeScript

https://github.com/forklaunch/forklaunch-js
2•rohinbharg•7m ago•1 comments

FBI Tries to Unmask Owner of Infamous Archive.is Site

https://www.heise.de/en/news/Archive-today-FBI-Demands-Data-from-Provider-Tucows-11066346.html
7•Projectiboga•7m ago•2 comments

Aperture case rethinks digital wellbeing

https://specialprojects.studio/project/aperture/
1•azinman2•8m ago•0 comments

Paykit SDK, One API for Stripe, PayPal, GoPay, Paddle, etc.

https://www.usepaykit.dev/
1•emmanuelodii•8m ago•0 comments

OpenAI probably can't make ends meet. That's where you come in

https://garymarcus.substack.com/p/if-you-thought-the-2008-bank-bailout
2•treadump•8m ago•0 comments

The Power of Limit Thinking

https://press.asimov.com/articles/limit-thinking
1•mailyk•8m ago•0 comments

Understanding police attitudes to fraud and the barriers to prioritisation

https://www.emerald.com/pijpsm/article/doi/10.1108/PIJPSM-02-2025-0024/1298270/Beyond-resources-u...
1•PaulHoule•9m ago•0 comments

The password to gain access to the Louvre is Louvre

https://nypost.com/2025/11/05/world-news/the-louvre-used-mind-blowingly-weak-password-for-core-se...
2•longos•10m ago•1 comments

Creating a Gridogram: Hiding a Sentence in a Compact Grid of Letters

https://www.gridogram.com/blah/creating
1•jap•10m ago•1 comments

Generic MCP for OpenAPI Compatible APIs

https://github.com/matthewhand/mcp-openapi-proxy
1•qrios•10m ago•0 comments

The 40-year economic mistake that let Google conquer (and enshittify) the world

https://pluralistic.net/2025/11/06/vertical-blinds/#invest-dont-acquire
2•treadump•10m ago•0 comments

Cengage to close 3 offices, transition 4k employees to remote work

https://www.boston.com/news/business/2025/11/05/education-technology-company-to-close-boston-head...
1•ilamont•11m ago•0 comments

CodeWeavers Launches CrossOver Preview for Linux ARM64

https://www.codeweavers.com/blog/mjohnson/2025/11/6/twist-our-arm64-heres-the-latest-crossover-pr...
1•systematizeD•11m ago•0 comments

Consensus on Android System Safety Core?

https://old.reddit.com/r/AndroidQuestions/comments/1iol4wd/consensus_on_android_system_safety_core/
1•sipofwater•12m ago•1 comments

IBM PC Invoice

https://brainbaking.com/post/2025/11/the-1994-ibm-pc-invoice/
1•Brajeshwar•12m ago•0 comments

New therapeutic brain implants defy the need for surgery

https://www.media.mit.edu/articles/new-therapeutic-brain-implants-defy-the-need-for-surgery/
2•Brajeshwar•12m ago•0 comments

What Happens to the Weavers? Lessons for AI from the Industrial Revolution

https://knowablemagazine.org/content/article/society/2025/ai-jobs-economy-lessons-from-industrial...
1•Brajeshwar•12m ago•0 comments

OpenAI API > Anthropic API

https://old.reddit.com/r/LLMDevs/comments/1efzikx/openai_api_anthropic_api/
1•behnamoh•13m ago•0 comments

Dark Energy Double-Take: The Universe May Not Be Accelerating After All

https://studyfinds.org/universe-not-accelerating/
1•rrauenza•13m ago•0 comments

Google's proposed Android changes won't save sideloading

https://www.androidauthority.com/android-changes-third-party-app-stores-3613409/
1•MishaalRahman•14m ago•1 comments

Daily Discord Notifications in Three N8n Nodes (No XPath Knowledge Required)

https://ducret.dev/daily-discord-notifications-in-three-n8n-nodes/
1•tducret•14m ago•0 comments

Show HN: Floxtop – Clean up your Mac with private, offline AI file organization

https://floxtop.com
3•bobnarizes•14m ago•0 comments

Apple TV's colorful new branding was built with glass and captured in camera

https://adage.com/creativity/work/aa-apple-tv-mnemonic-visual-branding/
1•davidbarker•16m 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•6mo ago

Comments

palata•6mo 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•6mo 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•6mo 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•6mo ago
And here's an entire Java IDE with CheerpJ that downloads less than 15mb:

https://reportmill.com/SnapCode

palata•6mo 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•6mo 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•6mo 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•6mo 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•6mo 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•6mo 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•6mo 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.