frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

IntegrateAPI: Install API Integrations in Next.js via CLI

https://integrateapi.io
1•fuse_wire•1m ago•0 comments

TI-89 Height-Mapped Raycaster

https://github.com/dzoba/ti-89-raycasting-with-z
1•zoba•2m ago•0 comments

Pentagon: Anthropic's Chinese employees are security risks

https://www.axios.com/2026/03/19/pentagon-anthropic-foreign-workforce-security-risks
2•jimmydoe•6m ago•2 comments

LiteParse: Local document parsing for AI agents (Open source)

https://www.llamaindex.ai/blog/liteparse-local-document-parsing-for-ai-agents
1•pierre•10m ago•1 comments

I built a skill-optimizer to clean up my messy pile of skills

https://github.com/zhangchenchen/skills_optimizer
1•pekingzcc•16m ago•1 comments

Wikipedia: AI or Not Quiz

https://en.wikipedia.org/wiki/Wikipedia:AI_or_not_quiz
1•mmsc•16m ago•0 comments

Show Me the Model

https://showmethemodel.io/
1•paulpauper•18m ago•0 comments

Economists have caught the AI bug

https://www.ft.com/content/b46fa7c5-1dcd-4d08-96fd-7d5ef7915524
1•paulpauper•18m ago•0 comments

Claude vs. Gemini vs. ChatGPT vs. Grok

https://boreal.social/post/i-pitted-claude-gemini-chatgpt-and-grok-against-each-other
1•bazlightyear•19m ago•0 comments

Show HN: HN Firebase API client for Go with support for reading flagged posts

https://github.com/larrasket/hn-scrape
1•lr0•20m ago•0 comments

Agent Auth Protocol: An open standard for agent authentication

https://agent-auth-protocol.com/
1•bekacru•21m ago•0 comments

Plotra – A digital proof of life for autonomous AI agents

https://plotra.xyz
1•olllo•23m ago•0 comments

Physicists Trace Sun's Magnetic Engine, 200k Kilometers Below Surface

https://news.njit.edu/njit-physicists-trace-sun%E2%80%99s-magnetic-engine-200000-kilometers-below...
2•gmays•23m ago•0 comments

Critical Ubiquiti UniFi security flaw allows potential account hijacking

https://securityaffairs.com/189689/security/critical-ubiquiti-unifi-unifi-security-flaw-allows-po...
1•WaitWaitWha•27m ago•0 comments

Show HN: Screenwriting Software

https://ensemblewriter.com/
2•dovebarra•28m ago•0 comments

I Make a Similar Chrome Bookmarks-Manager with Aiohttp

https://gitlab.com/wcorrales/bookmarks-manager
1•wcorrales•30m ago•1 comments

Aquasecurity/Trivy GitHub Repository and Homebrew Cask Compromised (again)

https://opensourcemalware.com/repository/https%3A%2F%2Fgithub.com%2Faquasecurity%2Ftrivy%2F
1•mmsc•30m ago•1 comments

Show HN: I built a distributed file store on top of AWS CloudShell

1•danvittegleo•32m ago•0 comments

Alphabet no longer has a controlling stake in its life sciences business Verily

https://www.engadget.com/big-tech/alphabet-no-longer-has-a-controlling-stake-in-its-life-sciences...
1•WaitWaitWha•34m ago•0 comments

Age Verification Status of Open Source Operating Systems

https://github.com/BryanLunduke/DoesItAgeVerify
2•gasull•38m ago•0 comments

President Signs EO Creating Fraud Task Force, Continuing Fraud Enforcement

https://www.mayerbrown.com/en/insights/publications/2026/03/president-signs-executive-order-creat...
2•WaitWaitWha•40m ago•0 comments

Ask HN: Are we close to figuring out LLM/Agent Memory

2•wkyleg•45m ago•0 comments

GopherHole – A universal hub for AI agent-to-agent communication

https://gopherhole.ai
4•brettwaterson•50m ago•2 comments

Productive Individuals Don't Make Productive Firms

https://twitter.com/gsivulka/status/2031797989908627849
1•gmays•51m ago•1 comments

Text formats are everywhere. Why? – Daniel Lemire's blog

https://lemire.me/blog/2026/03/05/text-formats-are-everywhere-why/
1•tomstig•1h ago•0 comments

Despite hardware limits, Parallels supports running Windows on MacBook Neo

https://arstechnica.com/gadgets/2026/03/despite-hardware-limits-parallels-supports-running-window...
2•stalfosknight•1h ago•0 comments

Two startups at global scale without DevOps

https://vercel.com/blog/two-startups-at-global-scale-without-devops
1•flashbrew•1h ago•0 comments

Codex, File My Taxes. Make No Mistakes

https://twitter.com/corbtt/status/2031438751822721251
1•gmays•1h ago•0 comments

FreeAgent – 60-tool local AI agent, no API keys, no cloud, no cost

https://github.com/transformer24/freeagent
1•transformer24•1h ago•0 comments

I built agents to predict when splitting your AI prompts helps and when it hurts

https://github.com/Mattyg585/cognitive-prompt-research
1•mattyg_aus•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•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•10mo 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•10mo 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•10mo 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.