Live data from Hacker News

Cursor 1.0

cursor.com

91–100 of 492 posts

Re: Cursor 1.0

#92

It's an IDE but they don't bother to list on their website what languages you can use the IDE to develop for? I feel like I'm going crazy here. How can they not bother to mention that on their website / marketing?

You should be good as long as you use one of the mainstream languages: Python, JS, Java, C++, Golang, Ruby, Rust etc

Re: Cursor 1.0

#93

It's an IDE but they don't bother to list on their website what languages you can use the IDE to develop for? I feel like I'm going crazy here. How can they not bother to mention that on their website / marketing?

Vs code also don't advertise what language it's for, isn't the same case here?

Re: Cursor 1.0

#94
post #83
post #56

I don't really see why people still use Cursor over tools like Cline / Roo Code. I'm guessing it's as they clearly have a larger viral marketing department than engineers, as the application itself doesn't perform nearly as well, requires you to have another IDE installed and their subscriptions nerf the models context sizes etc...

A lot of power in social influence. Especially with the younger generations who remix that influence - compound spread of mindshare. Cursor is all over social media.

That's silly. Cursor has the best autocomplete experience, period, and some people prefer that to agent-style interactions.

There's still a ton of low hanging fruit that other Copilot-style autocomplete products don't seem to be picking up, like using clipboard contents, identifying the next place in the file to jump to, etc.

I primarily save time coding with AI with autocomplete, followed by chat, with agentic flows a very distant 3rd, so Cursor is a legitimately better product for me.

Re: Cursor 1.0

#95
I wish they had proper support for multi root repos (even though the last update promised better support, it was just a line in the release notes with no docs - which seems to be their usual change management style).

Its so painful - the model never knows the directory in which it is supposed to be and goes on a wild goose chase of searching in the wrong repo. I have to keep guiding it to the right repo. Anyone here has had success with such a setup?

Re: Cursor 1.0

#97
post #47
post #44

Earlier quoted context omitted.

It’s more of a ticking time bomb because it relies so heavily on upstream model providers who all have competing products, particularly Claude Code.

Until Claude Code becomes manageable price wise, I don’t think Cursor really sees them as their competition. I can burn the whole cursor subscription price in a single day with Claude Code.

I'm surprised nobody is mentioning how cheap copilot pro is. $20 and you get all you can eat inference without using your own api key for the models on vs code agent mode.

Re: Cursor 1.0

#98
Cursor wishlist item for any PM listening:

When reviewing the changes made from agent mode, I don’t know why the model made the change or whether the model even made the change versus a tool call making the change. It’s a pain to go fish out the reason from a long response the model gives in the chat.

Example: I recently asked a model to set up shadcn for a project, but while trying to debug why things looked pretty broken, I had sift through a bunch of changes that looked like nasty hallucinations and separate those from actual command line changes that came from shadcn's CLI the model called. Ended up having to just do things the old fashioned way to set things up, reading the fine manual and using my brain (I almost forgot I had one)

It would be nice if above every line of code, there’s a clear indication of whether it came from a model and why the model made the change. Like a code comment, but without littering the code with actual comments

Re: Cursor 1.0

#99

I love Cursor, but it feels like a ticking time bomb with extensions not being updated at the same rate as VSCode. Also another issue I am starting to see is the lack of shared MCP servers. If I have VSCode, Cursor, and Claude open, each one is running its own instance of the MCP server. You can imagine that with a dozen or so MCP's, the memory footprint becomes quite large for no reason.

Just use other transport like streamable http.

i wrote a MCP with plugin system where you only need to run 1 instance and add plugins via config file.

https://github.com/tuananh/hyper-mcp

Re: Cursor 1.0

#100
post #18

I love Cursor, but it feels like a ticking time bomb with extensions not being updated at the same rate as VSCode. Also another issue I am starting to see is the lack of shared MCP servers. If I have VSCode, Cursor, and Claude open, each one is running its own instance of the MCP server. You can imagine that with a dozen or so MCP's, the memory footprint becomes quite large for no reason.

That's why i use Docker MCP Catalog. One MCP Server to rule them all. more info: https://www.youtube.com/watch?v=6I2L4U7Xq6g

I wrote my own tool for that too :D

https://github.com/tuananh/hyper-mcp

it's a MCP server with WASM plugin system, packaged, signed & published via OCI registry.

Post reply on HN