zlacker

[return to "Cursor IDE support hallucinates lockout policy, causes user cancellations"]
1. jgb198+Wg4[view] [source] 2025-04-15 23:01:44
>>scared+(OP)
LLM anything makes me queasy. Why would any self respecting software developer use this tripe? Learn how to write good software. Become an expert in the trade. AI anything will only dig a hole for software to die in. Cheapens the product, butchers the process and absolutely decimates any hope for skill development for future junior developers.

I'll just keep chugging along, with debian, python and vim, as I always have. No LLM, no LSP, heck not even autocompletion. But damn proud of every hand crafted, easy to maintain and fully understood line of code I'll write.

◧◩
2. callc+Qj4[view] [source] 2025-04-15 23:24:07
>>jgb198+Wg4
I’m pretty much in the same boat as you, but here’s one place that LLMs helped me:

In python I was scanning 1000’s of files each for thousands of keywords. A naive implementation took around 10 seconds, obviously the largest share of execution time after running instrumentation. A quick ChatGPT led me to Aho-Corasick and String searching algorithms, which I had never used before. Plug in a library and bam, 30x speed up for that part of the code.

I could have asked my knowledgeable friends and coworkers, but not at 11PM on a Saturday.

I could have searched the web and probably found it out.

But the LLM basically auto completed the web, which I appreciate.

◧◩◪
3. mrheos+ZX4[view] [source] 2025-04-16 06:23:56
>>callc+Qj4
But do you know every important detail of that library. For example, maybe that lib is not thread safe, or it allocates a lot of memory to speed thing up, or it wont work on ARM CPU because it uses some x86 hackery ASM?
◧◩◪◨
4. callc+4c6[view] [source] 2025-04-16 15:40:29
>>mrheos+ZX4
Nope. And I don’t need to. That is the beauty of abstractions and information hiding.

Just read the docs and assume the library works as promised.

To clarify, the LLM did not tell me about the specific library I used. I found it the old fashioned way.

[go to top]