acomagu

↗ HN profile [ 46.2 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. I built a VSCode extension that turns your editor into an MCP (Model Context Protocol) server, letting you seamlessly integrate advanced AI-assisted coding features from tools like Claude Desktop. It supports real-time…

  2. I think these type should be equal: { a: string | undefined } { a: string } | { a: undefined } These mean same set of values. And if these are equals, the following works: Exclude<{ a: string | undefined }, { a: string…