frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Check if your AI-generated code is safe to launch

https://vibe-checker.dev/
1•the_harpia_io•1m ago•0 comments

Cursor.so: The AI-first Code Editor (2023)

https://www.latent.space/p/cursor
1•swyx•1m ago•0 comments

Bluffbench: Effective agents need to prioritize evidence over preconceptions

https://simonpcouch.github.io/bluffbench/
1•hadley•2m ago•0 comments

Satya Nadella – How Microsoft Is Preparing for AGI

https://www.dwarkesh.com/p/satya-nadella-2
1•smoser•3m ago•0 comments

Read a Book via RSS with Lettrss.com

https://blog.pabloecortez.com/read-a-book-via-rss-with-lettrsscom/
1•speckx•3m ago•0 comments

Free SaaS Starter for Vue.js Developers

https://www.youtube.com/watch?v=qp7YUtn_B7E
1•dominuskelvin•4m ago•0 comments

Nano Banana can be prompt engineered for nuanced AI image generation

https://minimaxir.com/2025/11/nano-banana-prompts/
1•minimaxir•4m ago•0 comments

Show HN: What Can Happen When You Code While Overtired

https://number-garden-story.netlify.app/
2•cpuXguy•5m ago•0 comments

Show HN: Remove Rounded Corners from Web

https://twitter.com/tuna_maker/status/1989022007325843824
1•tem-tem•7m ago•0 comments

Let AI do the hard parts of your holiday shopping

https://blog.google/products/shopping/agentic-checkout-holiday-ai-shopping/
2•ChrisArchitect•7m ago•0 comments

Session

https://getsession.org/
2•JohnLocke4•7m ago•0 comments

Claude Code Is a Beast – Tips from 6 Months of Hardcore Use

https://old.reddit.com/r/ClaudeAI/comments/1oivjvm/claude_code_is_a_beast_tips_from_6_months_of/
1•amrrs•7m ago•0 comments

White House says October jobs and inflation data may never be released

https://www.cnbc.com/2025/11/12/white-house-october-data-release.html
1•Amorymeltzer•8m ago•0 comments

Verizon to Cut About 15,000 Jobs

https://www.wsj.com/business/telecom/verizon-to-cut-about-15-000-jobs-87280c3c
1•LostMyLogin•9m ago•0 comments

Show HN: Seeva – Press a key, get AI help without leaving your screen

https://github.com/thisisharsh7/seeva-ai-assistant
1•thisisharsh7•11m ago•0 comments

Show HN: Sebastian.run – Generate native mobile apps from a single prompt

https://sebastian.run/
1•HansP958•11m ago•0 comments

The Complexity of Simplicity [video]

https://www.youtube.com/watch?v=Cum5uN2634o
1•ecoffey•11m ago•0 comments

diVine, a Vine reboot that includes Vine's video archive

https://techcrunch.com/2025/11/12/jack-dorsey-funds-divine-a-vine-reboot-that-includes-vines-vide...
3•ChrisArchitect•12m ago•1 comments

Even Realities Smart Glasses: G2

https://www.evenrealities.com/smart-glasses
1•gessha•13m ago•0 comments

Probing Knowledge Holes in Unlearned LLMs

https://arxiv.org/abs/2511.00030
2•PaulHoule•16m ago•0 comments

(Followup) Two Women Had a Business Meeting. AI Called It Childcare

https://medium.com/hold-my-juice/what-the-reactions-to-my-ai-gender-bias-post-revealed-cb7ebe8b3787
3•sophiabk•19m ago•1 comments

Schema migrations is hard in OLAP. Its the cost of fast reads

https://www.fiveonefour.com/blog/olap-migration-complexity
1•Isa-514•19m ago•0 comments

Ask HN: Why hasn't Apple bought Adobe?

5•blindprogrammer•20m ago•0 comments

Challenges of Building Reliable Voice AI Agents on Live Websites

https://www.webfuse.com/blog/challenges-of-building-reliable-voice-ai-agents-on-live-websites
1•tonysurfly•20m ago•0 comments

AI Agents, Productivity, and Higher-Order Thinking

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5713646
1•jlaneve•21m ago•0 comments

Rand Paul: Congress bill destroys hemp farmer livelihoods

https://www.courier-journal.com/story/opinion/contributors/2025/11/13/rand-paul-congress-funding-...
3•bilsbie•21m ago•0 comments

Show HN: I built a system that detects book mentions across 2k podcast episodes

https://www.mavensignal.com/
1•steyeomans•21m ago•0 comments

LidLayer – Preserve MacBook Stickers

https://lidlayer.com/
1•graystevens•22m ago•0 comments

My Home (VPN) Network Setup

https://a14m.dev/blog/my-home-network-setup/
2•watermelon_rug•22m ago•0 comments

Chinese Hackers Used Anthropic's AI to Automate Cyberattacks

https://www.wsj.com/tech/ai/china-hackers-ai-cyberattacks-anthropic-41d7ce76
5•galleywest200•26m 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•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.