7 ms·
Do you find joy in using LLMs to write software? I tried using Claude/Cursor/CodeX/etc. for personal projects and experimentation, and I found no joy in it. I l
by draftsman 4mo ago
Do you find joy in using LLMs to write software? I tried using Claude/Cursor/CodeX/etc. for personal projects and experimentation, and I found no joy in it. I learned nothing, and when my MVPs were complete, I only had a shallow understanding of how the code that powered them worked.
- skinfaxi 4mo agoI'm curious of the places you've found joy while writing software traditionally. For me, it has been in reasoning about the system, debugging issues, and discovering what works. The iterative process of eventually coming to a more complete understanding, as you stand on and build off of your prior understanding. All of those elements are present for me while using AI to augment my output. I have started using voice to interact with my coding harness though and I think that has maybe influenced my opinion. I also don't let things go fully autonomously and look at the diffs along the way.
- ChrisMarshallNY 4mo agoI do, but I also use LLMs in a manner that seems drastically different, from most folks here. I use the standard $20/ChatGPT Pro sub, and run Thinking 5.5 as a chat interface. I use it like a "trusted personal advisor," as opposed to a "black box employee." I'm intimately involved in almost every step of the development process. Most of what I ask from the LLM, is function-length snippets. It's made a huge difference in the velocity and scope of my work. I have learned that I need to be very careful, though. The LLM sometimes really borks things, and I have to rip out the garbage, and rewrite the code, myself. I can't even imagine the quality of "vibe-coded" software.
- t_mahmood 4mo ago[flagged]
- ChrisMarshallNY 4mo agoAnd...we have an attack... I love this place, I really do, but this stuff gets a bit tiresome.
- onraglanroad 4mo agoIt's a troll (based on username). Enjoy your retirement, I'll be there in a couple of years myself and hopefully doing equally useful stuff.
- t_mahmood 4mo agoAnd you would absolutely be wrong. Why would my username make you think it's a troll? No intention to disrespect anyone, I said what the comment felt like.
- t_mahmood 4mo agoInteresting, why do you think it's an attack? I was skeptical, and I felt there is a common theme. if I'm wrong, I sincerely apologize, but I can't brush off the feeling. But hey, maybe I'm really over-thinking, so I'll go off.
- ChrisMarshallNY 4mo agoI'm not advertising jack. Everyone else mentions the LLM they use, along with all kinds of details, like token costs, etc. I mention it to frame the context. I don't think that using ChatGPT impresses anyone, around here. It is not a common theme. However, when I do post something like this, I find a lot of kindred spirits, so I guess we are the "quiet ones." Most people -the vast majority- use agents and IDE integrations; sometimes, in amazing ways. It's a very different way of using LLMs from the way that I do. Maybe the way I use it is considered "quaint," and people don't want to admit it, because they are afraid folks will make fun of them. I don't really give a rat's buttocks. I'm retired, and long past the need to feed my insecurity by accepting the judgment of others. I am big on checking out people's profiles, when I am interacting with them. Sometimes, it makes a big difference in the way that I approach them. That's why my own profile is packed full of information. I'm not showing off -many folks here, are a lot more impressive than I am- I just want people to know who I am. But that doesn't prevent the usual Internet Ready, Fire, Aim approach. And one habit that I deliberately foster, is not engaging folks that want to attack me, beyond one or two mild responses. Once I say "Have a Great Day!", we're done. You can add whatever last word gives you good feelz. I won't respond. I also don't attack. I respect this community, and engaging in troll-battles, just makes it ugly. And I could be really good at trolling; I just feel as if you can't shovel shit, without getting it on you.
- prawn 4mo agoChrisMarshallNY has consistently posted like this about their work/hobby post-retirement for some time, and often with a bent on 'I do things my own way'. Didn't seem like advertising to me. Including a version number is hardly unnatural extreme effort in a comment, surely?
- roncesvalles 4mo agoDepends on how you use them. I'm a detail-obsessed perfectionist. I believe these qualities are what have enabled me to produce better software than most people. I use LLMs the way I can without violating these principles.
- didgetmaster 4mo agoI guess some people only enjoy the destination and don't care how they got there. These people seem to enjoy AI more than the people who want to enjoy the journey along the way.
- dansquizsoft 4mo ago[flagged]
- didgetmaster 4mo agoWhat? For the record, I am not saying that you shouldn't ever use AI. Plenty of good programmers use it as a tool to boost their productivity or to validate things. But if you are using AI to write all your code, I think you are missing a lot. It is like when you use LLMs to write your whole paper for you, rather than to check your grammar or offer critique of something you actually wrote.
- voidfunc 4mo agoI like building stuff. I don't care about the code. I convinced myself over 20 years that I liked coding to get myself through the drudgery of corporate work but the reality is the building was the important thing to me. I'm able to build things quickly with AI.
- lelanthran 4mo ago> I like building stuff. I don't care about the code. Sounds like you like having stuff, not building stuff.
- triprjt 4mo agoi think he meant having stuff that he brought to life
- coliveira 4mo agoBut he didn't, it was given to him by AI.
- tasuki 4mo agoIf he was constraining the AI's output, his input was meaningful. Did you ever bring anything to life? Whatever it is, you are also relying on the work others have done before you and standing on the shoulders of giants.
- sebastiennight 4mo agoI'd say many fathers are pretty happy "having kids given to them by a woman" (to use your terminology). It seems you wouldn't give them credit for it, but most of them appear to feel quite a bit of responsibility for bringing those to life.
- coliveira 4mo agoA woman is a human being. An AI is a machine.
- NortySpock 4mo agoI asked the LLM to explain, rephrase, or rewrite things until I was happy. Some examples : I asked for examples of how the algorithm worked. I asked for examples of how to call the code. I asked for a happy-path unit test and a simple error-handling unit test. I asked it to rewrite something as a pure function. I pointed out an obvious race condition and told it to guard against that issue. I asked it to rewrite a function in the style of this other function. I told it to separate one function into two separate functions that handle the first step and the second step separately. Etc etc. If you don't understand it, ask for more or better comments, or better variable names, or cut down the scope into a smaller section, or more examples. Edit: also I almost entirely leave the LLM in read only mode... I tell it to make the smallest change possible, and tell it I will only copy paste it in its proposed change when I understand the change and where it needs to be made. That way it's my hands on the keyboard, interacting with the code by making recommended changes... 80% of the code is touched by me (via copy-paste) most-of-the-way before I will 'git commit'. Sure, there was one recursive folder descent function that found the most recent file modification time that I didn't fully understand, but it's self-contained in a function, I don't care to learn every corner of file modification times, and it appears to work, so I left it as is for my static site generator.
- UncleOxidant 4mo agoLLMs have gotten so good at coding I often find it exhilarating. I'm mostly doing experiments in accelerating machine learning in hardware. I can do way more experiments now. As an example: Just this afternoon working with claude to experiment with using a GA to learn a non-uniform 1D CA rules to calculate the popcount function where the GA is running in an FPGA to speed it up. It's non-uniform in that each cell gets it's own 8-bit rule.
- qingcharles 4mo agoAbsolute joy. It took away all the grind from programming and left only the good bits. For me, at least.