curious how much you guys are currently using AI on a daily basis when it isn't required by your job or something similar?
I use it to help with well defined tasks, like I mentioned earlier I used it to construct some JSON stuff I didn't want to do myself. It took me less time to do that than it would've manually, but I still had to edit it.
I've had it do some bash scripting here and there because I hate bash scripting and it gets me about 90% of the way there faster, with less effort. Similarly I've had some annoying command sequences I didn't wanna do (e.g. like escaping strings a certain way) I fed it to, but it maybe cut out 5 minutes from me just doing it on another box with python and copy/pasting.
I've done some code analysis with it, but even Claude Code needs a lot of handholding and most of the results are kinda mid or misinformed. It's not horrible but my rule of thumb with this is that 9/10 times, I'm faster finding what I am looking for rather than trying to get AI to do it for me and it's less error prone. I've only had luck running it against repositories I already know really well so I can ask very specific, pointed questions in a prompt, but even then...if I know the code it rarely gives me anything useful I couldn't do myself. If I don't know it, then I can't interpret the output anyway without learning it, so either way I have to spend time reading the code, might as well just find it in a way that helps me learn the code better.
The ability for it to practically interpret code and create output is not stellar. Using the JSON example above, if I fed it the repo and asked it to build a JSON file to hit a certain node, it would kinda get 90% of the way there.
I was writing a kernel module and I was trying to figure out if I needed to lock before reading from a certain struct, it told me no and pointed to the mailing list discussion saying it wasn't necessary. I looked at the code and it looked necessary but I figured I was wrong and trusted the AI. The kernel panics that followed were a good reminder to not trust that ***. The lock was necessary and I should've trusted my judgement
Maybe I'm just doing it wrong. Everyone thinks people like me are gonna be replaced by Mythos. Everyone reading that Mozilla blog post different ways to their own biases. OTOH for 20 years they've been saying that about every new fad, so we'll see.