by benguild on 3/28/25, 11:32 AM with 40 comments
Has anyone else felt the boost brings weakness at times when you need to show strength?
by tomgp on 3/28/25, 11:35 AM
"Habitual use of GPS negatively impacts spatial memory during self-guided navigation": https://www.nature.com/articles/s41598-020-62877-0
by thorin on 3/28/25, 12:11 PM
by skwee357 on 3/28/25, 7:55 PM
by sterlind on 3/28/25, 3:31 PM
So I use it for brainstorming, and as a temporary crutch for working with unfamiliar languages/frameworks/tools, and wean myself off it as quickly as I can.
For my work, which is very research and CS theory-heavy, I'm faster without it.
by kypro on 3/28/25, 9:04 PM
For me the main difference is that I search and read much less when problem solving. In the past I'd often have to search docs and SO for ages looking for information about some bug/functionality. Today about 50% of the time I can just ask AI if it knows what I need. Although the other 50% of the time it will give me some BS hacky answers or just make something up – especially when I'm using less common libraries.
Where I have got much lazier is when it comes to writing BS code like regexs, etc. It's not that I can't write them, I just know that it will take me longer to think about and create the regex than explaining to an LLM what I want to match on. But you still need to know regex to review it so I don't feel like losing any skills, just able to work faster in some cases like how pulling a email regex from SO would have help you code a solution faster a decade a go.
by runjake on 3/28/25, 4:55 PM
I believe it's equally important to ask it to explain why it generated the code when the output is unexpected. More often that not, it's acting more like "fancy autocomplete", though.
by bn-l on 3/28/25, 2:12 PM
by Jugurtha on 3/31/25, 4:14 AM
- Unplug your laptop's charger
- Disconnect from the internet
- Work using only using your battery charge and the documentation on your laptop
If you find that you need an information about something that's in a doc you don't have, only connect to the internet to download it, then disconnect. Nothing more.
Batteries will only last for about two hours when they're not new, and you have the docs on your machine without distractions online. This forces you to work only on what you're working on, and do it fast as the battery is discharging so you catch yourself more often "drifting" in your thoughts, and you'll get better at catching yourself and focusing again, because "Quick! It's discharging!"
I know it sounds silly as you can just connect to the internet or plug your charger, but it really works. Its real job is to remind you to focus and get things done.
Try it, and you'll find soon enough just how much of your attention was scattered, but you'll be weaning as soon.
by Vaslo on 3/29/25, 4:20 PM
by gengstrand on 3/28/25, 5:14 PM
by taurath on 3/28/25, 8:26 PM
This fails when people expect rote memorization like in coding interviews, but it works well when I'm actually working through problems in a company - I have a set of references up and available, usually of the internal codebase. I use AI as an advanced reference primarily so I haven't had the problem as stated here yet!
I think a lot of folks are finding that via AI they're switching over to the way that I do code, without the benefits of internal thinking structure I've had to come up with over time to manage it. I try to think of whatever I'm doing in a sort of scaffold, and then change my focus into the details. If you lose your ability to zoom in or out on layers of abstraction (because you don't understand whats happening in detail), that's when you need to spend time diving in.
You can't just sit back all the time like a farmer who's got a machine to plow and tend to all the fields, you need to be doing QA and making sure its doing what it says its doing. If you're letting it handle what the scaffold is, you know even less.
You decide which if any mental models you outsource to AI. You decide what you manage, and whats important for you to manage. Don't let short term productivity gains hobble your ability to zoom in!
by nicbou on 3/29/25, 6:13 PM
I use AI for coding, but basically as a shortcut to API documentation. It lets me stay focused on my task. It removes a lot of the tedium of coding, so that I can focus on the actual problems.
by taatparya on 3/28/25, 2:59 PM
by abhisek on 3/28/25, 4:35 PM
by Aperocky on 3/29/25, 7:18 PM
And for good measure, those stop having value in the future - as they can be referenced from AI as easily as looking up how to convert a date format or center a div.
by cableshaft on 3/28/25, 3:06 PM
If not for it I'd be spending even longer scouring StackOverflow and documentation for ideas and example code, so other than a potential timesaver it's not really that different than what I was doing before.
by Dementor430 on 4/1/25, 7:47 PM
by gaeb69 on 3/29/25, 12:04 AM
Hopefully LLMs won't vanish away... I'd be at a net negative.
by harryquach on 3/28/25, 6:49 PM
by twoquestions on 3/28/25, 12:13 PM
I know Primagen had a similar experience that you had, he found it useful to keep the AI chat out of his direct editor, and that's how I've been using it too.
by solardev on 3/28/25, 2:18 PM
by admissionsguy on 3/28/25, 12:02 PM
I have integrated llms into my dev workflow as much as possible and they are just not capable of doing all that much.
by doruk101 on 3/28/25, 5:11 PM
by nasaok on 3/29/25, 8:31 AM
by penguinos on 3/28/25, 3:56 PM
by iExploder on 3/29/25, 8:19 AM
Of course, long term misuse by outsourcing your cognitive exercise to a machine has a negative impact.
Just auto complete your way to being completely dumb.
As a learning or exploratory tool it is best thing ever. Just don't use it to tab-tab your way out of actual work.
by Havoc on 3/29/25, 8:13 PM
It's helped me stretch & explore new things that are a touch beyond my technical competence.
...but has also made me more lazy in some ways. e.g. I paste errors I don't immediately recognise into an LLM. Pre LLM I would have looked at the error in more detail first, then tried a couple of things blindly, then googled it.
by keiferski on 3/28/25, 9:01 PM