Is it bad commit messages, getting distracted by social media, commenting out tests?
Let’s hear it all.
Is it bad commit messages, getting distracted by social media, commenting out tests?
Let’s hear it all.
For further actions, you may consider blocking this person and/or reporting abuse
Sukhpinder Singh -
ispmanager.com -
Kuru -
Pulkit Singh -
Top comments (163)
I write
git status
at least 4000 times a day, for no reason whatsoever.how about
ls
andclear
You can use Ctrl + L instead.
Doing this all day long when I'm working for no reason, I don't know why actually
Yep that's me. I even write
git status
after committing just to make sure 😅And also
git branch
aftergit checkout
just to make sure I'm on the right branch… 😂My prompt reflects which branch I'm on, super helpful!
That has actually helped me once, I'd forgotten to
git add
some filesat least alias it to
gst
!also: me too
With as much as I check
git status
, I don't have time for a 3-letter alias!gs
is all I can afford 😜And gpr for
git pull --rebase
Most of the time,
git log
followsgit status
in my case. :Ptig gives me more information, more concisely. Try it out :)
Underrated
Is it bad ?
Im also guilty of this one +
ls
andclear
Been there
😂😭
This sounds like a good practice😂
me too dude
Never taking the time to learn hotkeys. Not reaching out to a second set of eyes before spending too much time on something. Not doing enough design up front.
Are you me?
I use vim for basically everything & I can't remember how to do macros without looking it up. I think just generalize this to "not learning your tools effectively" & I totally agree.
This is super relatable.
I rewrite other people’s code to my extremely high standard so I can understand it. Such a time waste.
I know this far too well. There is this strong feeling of „You can’t leave it like it is, when you know it.“ but in the end ... it would most likely run for ages without any issues if we wouldn’t rewrite it. And maybe nobody would ever touch it again. :-)
I’m sure this thread will contain much worse habits than that! 😂
Haha! you are far more patient than I am!
I do not write unit tests 😔
I knew if I kept reading I'd find my bad habit.
Same! I've never written a test. I know that I should, but... ¯_(ツ)_/¯
Small plug, but I wrote an introduction to unit testing if that could help any of you 😃
dev.to/christopherkade/introductio...
This is great, thank you!
Dateline !== No test, or just lrave like this
Agile !== No test
Not reading enough docs, whether it's a framework or API
Totally relatable
Stare at my editor -> search for help in duckduckgo -> open social media -> change music on spotify😂
That's literally me every single day 😂😂
Same. ❤
Being too lazy to turn off 'helpful' system settings, like the one that autocompletes a closing bracket. I used to end up adding a closing bracket myself and then having too many so had to hit backspace to get rid of one.
Now that that has become muscle memory, whenever I'm not using that tool I hit backspace on autopilot even though there is no 'helpful' closing bracket to get rid of.
I do this all the time!
It's all muscle memory now.
The other way the IDE gets in my way is when I want to add a closing bracket or parenthesis but my cursor is already immediately before one and the editor treats it as if they're the same - so I think I've added enough, but oh no.
Ugh. Instant rage quit.
There are also some strange moments when the cursor just vanishes completely and I don't know where I am anymore.
Ah yes, been there.
Step 1: Spot a code smell
Step 2: Add a
// TODO
commentStep 3: Never get back to it
Repeat.
This is the story of my dev life 😔
If you're a VS Code user, checkout the Todo Tree extension.
It's a nice alternative to searching in all files for
// TODO
or// DEBUG
before commiting!Good tip 😉
Not using feature branches.
This was me until I worked with folks who set great examples. I eventually learned better habits.
Not sure I'd agree with this one, depends on what you're trying to accomplish.
Committing directly to trunk has its benefits, everyone gets the changes immediately but you just need to make sure that the changes are self-contained enough to not break anything.
I used to think this was the way to go too until I read Continuous Delivery
all the way through.
Trunk based devlopment ftw.
haha, you should try to fix it soon
You should try git flow :)
git push --force
on a regular basisMy git alias for that command is
git fush
😄I need that in my life. I'm an obsessive compulsive interactive rebaser.
I don’t think the second is a bad habit. There’s no special reason one needs to be using bin or nano imo.
Vim won't make you a more productive developer
Mac Siri ・ 1 min read
I think all Unix/Linux developers should know vim. Because vi or vim is almost always installed on these variants. Sure for local development a UI is great, a very useful tool! But for editing files on remote machines, the ability to ssh to a remote machine and make a quick change is very important.