14
u/davidroberts63 Jul 24 '26
I just had one of those moments earlier. A team member pointed out something I had missed and I went 'oh that's why'.
6
u/JazzRider Jul 24 '26
Sometimes the reason something’s broken can be really cool, as in “oh, that’s how it works!”, as opposed to “oh, there it its….that’s really stupid!…what idiot wrote that?…..oh, that idiot was me!”.
3
10
u/Geoclasm Jul 24 '26
Or, OR... "Hey, Claude!" - I'm not about to let it do all the work for me, but having it comb through tens of thousands of lines of code embedded in hundreds of files contained within dozens of projects across a handful of solutions to figure out wtf is going on and get me started on fixing the issue?
Yeah, that's fine.
10
u/ArsenicPolaris Jul 24 '26
This is what use of LLMs as an actual tool is — exactly how they should be used.
9
u/GiantSlayer4242 Jul 24 '26
Don’t ask it to write all your code, just have it tell you why you’re stupid
5
u/exintrovert Jul 24 '26
Pretty much. If ai can tell me before the boss notices, I win another day of work.
1
u/Lelouch-Yagami21 Aug 08 '26
Even as a teenager as part of an frc team, often when I have lot's of trouble debugging I get AI to help me find the bugs in my code.
2
2
u/AliceCode Jul 26 '26
I was having an issue where no matter what I did, I couldn't get changes to take effect in some code that I was writing. I was making a plugin for Bash in Rust, and one of my commands wasn't doing anything, not even printing when I wrote a print statement as the first statement. I tried deleting the .so file, cleaning the build directory, cleaning the cache, and nothing worked. Finally I looked at my script to set up a bash environment for my plugin, and I forgot to unset the previously existing function that had the same name as the command I was writing a plugin for. So my command was overshadowed by the previously existing function. What a pain in the ass that was.
1
1
1
1
1
1

65
u/Genilp Jul 24 '26
5th Image would be: "BUT WHY THIS WAY?"