šŸ™… Why I don't use AI as my copilot šŸ¤–

Jayant Bhawal - Jun 14 - - Dev Community

Jesus, take the wheel. šŸš—
And Github Copilot, take the IDE. šŸ’»

Github says, 92% of US devs are using Copilot.
What. Seriously?!
When did you hear 92% of any demographic using a singular thing?

Unless of course... you say 100% of all people who ever existed, consumed di-hydrogen monoxide.
(There's exactly one way this line gets dark. Don't go there. šŸ‘€)

Join me on a quick journey as I talk about:

šŸ”„ When the machines took over the world in 2024

After a quick Google search, it seems like most devs are using AI assistance in writing code. Iā€™d be lying if I said I havenā€™t used AI to write code at all. Of course, I have. I donā€™t live under a rock.

I've seen devs get oddly comfortable with the idea of sharing their code related data with third party cloud services, which are often not SOC2 (or something similar) certified, and make vague unprovable claims of privacy at best.

Things like Github Copilot (and Copilot chat), Bito.ai, and several other AI code extensions on the VS Code marketplace have more than 30 million installs. Crazy! šŸ¤Æ

And then there's me. Iā€™ve not made AI assistance a part of my regular code workflow. A couple of times Iā€™ve taken help from GPT to get some boilerplate written, sure. But those times are an exception. Things like Github Copilot, or any kind of code review, code generation tool, PR creation, or commit-assistance, isnā€™t a part of my IDE or CLI flow.

Maybe itā€™ll change with time. Weā€™ll see.

ā€œButā€¦ why?ā€

but why

šŸ˜Ÿ What I'm ACTUALLY worried about

The answer is simple. šŸ‘‡

1. I fear my programming skills will get rusty

I am concerned that the way I write and read code will suffer if I get too used to AI assistance.

  • Iā€™m concerned Iā€™ll begin to overlook flaws in code that I can catch otherwise.
  • That Iā€™ll start to take AI generated code for granted.
  • And looking up APIs, built-in methods, or other documentation will start to feel like a chore.

I fearā€¦ that Iā€™ll start slipping.

2. I'm not comfortable enough with sharing all of my code with a third party service

Companies can be damn smart about inferring things from the data you provide. Sometimes they'll know about things that your family won't know about.

The idea that sensitive business logic may get leaked to a third party service, which may eventually be used to make inferences I'm not comfortable with or just... straight-up leak? I mean, software gets hacked all the time.

I think I'm being very reasonable thinking that I don't want to expose something as sensitive as code in an unrestricted manner to a third party company. Even if that company is Microsoft, because even they f*ck up.

šŸ‘€ From the Experienced Devs' point of view

This isnā€™t a take that is unique to me either!

1. More-experienced devs tend to not want to lean on ā€œcrutchesā€ to write their code.

Iā€™ve even had the pleasure to work with senior devs who didnā€™t want to use colored themes on their IDEs because they thought itā€™ll hurt their ability to scan, read, or debug code! (that was a bit much for me too)

After all, ā€œprogramming skillsā€ is a lot more than just writing code.

2. Older devs have seen all kinds of software get hacked, data leaked, etc.

I mean, when haveibeenpwned.com sends you emails about your credentials, emails, and other data leaks every year for over 10 years... MANY TIMES from billion dollar corporations...
When you hear "When you're not paying for the product, you are the product" for the bazillionth time, which is then backed by yet another company selling that data to some third party...

Yeah... it gets tiring.
And it gets real easy to just disconnect as many wires as you can and go back to stone age.

old matt damon
ā€œOlder devsā€? Am Iā€¦ Am I getting old?
Nah, Iā€™m still 22 and this is 2016 or somethingā€¦ right? Right??

Btw, the answer to the question in the title is šŸ‘† this. Congrats! The post is over! Over to the next oneā€¦

Buuuuutā€¦ if you want to continue readingā€¦
joey theres more

šŸš¶ Let's take a step back for a moment...

I think my fears may be exaggerated.

Let's keep the whole data privacy angle aside for now, because that's a whole other topic on it's own that I feel about rather passionately.

I personally donā€™t have enough data to empirically say that using AI assistance will bring about the doom I fearā€¦ That itā€™ll downgrade me from what I am today, to an SDE1.

But Iā€™ve seen patterns.

  • Iā€™ve seen AI-generated sub-par quality code go through code reviews and end up on the main branch.
  • Iā€™ve seen library functions being used without properly understanding what, or what alternatives exist just because an LLM generated that.
  • Iā€™ve even seen code generated to solve a problem, for which a utility function already existed in the codebase but wasnā€™t used because knowing this utility existed was a lot more work than asking GPT to generate it for you.

šŸ’Ž Diamonds are Bad code is forever

ā€œWait a damn minuteā€¦ Iā€™ve seen this movie before!ā€
dejavu

  • LLMs are a pretty new thingā€¦ but šŸ’© code has been eternal!
  • Every. Single. Dev. Ever. Has used library functions without fully understanding it or looking at alternatives. You, and me, are both guilty of that. (What? You thought Array.prototype.sort was the best way to sort anything? Itā€™s just sufficient in most cases!)
  • A piece of logic gets reinvented (re-copy-pasted) all the damn time! Just that before it used to be from StackOverflow, now itā€™s from ChatGPT.

šŸ¤· So, whatā€™s the big fuss about?

"Will using ChatGPT make me a bad programmer?"

I think, no.

The takeaway is that you just need to care about what you build.
Take pride in what you build.

šŸ¤– Where the heck does LLM/AI fit in?

LLMs are not inherently evil.
In fact, they can be pretty damn useful if used responsibly:

  • Quality Code: An LLM might handle edge-cases that a less diligent developer wouldnā€™t consider.
  • Comprehensive Tests: LLMs might write tests that are more comprehensive than what some devs would produce.
  • Comprehensive Types: It might even write types more "completely" than an average dev might write on their own, or might have the skill to write.

However, the responsibility lies with the developer to ensure that the code output is guarded and well-monitored. Someone who doesnā€™t care would have done a shoddy job at any point in history. The presence of LLMs doesnā€™t change that.

šŸ˜Ž The art of actually giving a f*ck

There's a lot of devs out there who don't care.
But youā€™re no such dev. You DO care.
Else you wouldnā€™t be here on dev.to learning from peopleā€™s experiences.

I recently wrote about what new devs should care about to grow in their career. Itā€™s a LOT MORE than just code.

Maybe Iā€™ll introduce some AI in my VSCode.
I think itā€™s a matter of when, instead of if.

Whatā€™s more important isā€¦ as long as I care about making sure my programming output is readable, performant, high quality, and easily reviewable, I think Iā€™ll be fine, and so will you.


šŸ‘‡ P.S.

If you want an example of something I care deeply about, and has both great code šŸ’Ŗ andā€¦ less than excellent code šŸ¤£, take a look at our open-source repo!

Itā€™s something that lets you spot how long it takes for you to deliver your code, how many times PRs get stuck in a review loop, and just generally how great your team ships code.

GitHub logo middlewarehq / middleware

āœØ Open-source dev productivity platform for engineering teams āœØ

Middleware Logo

Open-source engineering management that unlocks developer potential

continuous integration Commit activity per month contributors
license Stars

Middleware Opensource

Introduction

Middleware is an open-source tool designed to help engineering leaders measure and analyze the effectiveness of their teams using the DORA metrics. The DORA metrics are a set of four key values that provide insights into software delivery performance and operational efficiency.

They are:

  • Deployment Frequency: The frequency of code deployments to production or an operational environment.
  • Lead Time for Changes: The time it takes for a commit to make it into production.
  • Mean Time to Restore: The time it takes to restore service after an incident or failure.
  • Change Failure Rate: The percentage of deployments that result in failures or require remediation.

Table of Contents

šŸš€ Features

ā€¦
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player