Struggle

May 22, 2024 8:58 AM

apiconnects

Views

6383

Likes

45

Dislikes

2

The struggle is real!

coders

technology

coding

GIVE ME THE MEME YOU JUST DELETED!! I ned to see it

1 year ago | Likes 1 Dislikes 0

Evolving from plain coding in public to the dramatic programming.

1 year ago | Likes 3 Dislikes 0

Yeah, go to the bathroom and cry like a professional

1 year ago | Likes 2 Dislikes 0

If I cried every time my code doesn't work... This is its normal state.

1 year ago | Likes 2 Dislikes 0

My favorite is when deleting commented out sections causes things to break. Like, seriously?!

1 year ago | Likes 16 Dislikes 0

Having absolutely no programming knowledge, but reading a lot of programming posts/comments, I'm mostly convinced that coding is half luck and half magic, and coders have almost no idea what they're doing. Somehow I find comfort in this, but am unsure why.

1 year ago | Likes 9 Dislikes 0

It is. I've been doing this shit for 20+ years. You would think it gets easier.

1 year ago | Likes 10 Dislikes 0

It doesn't!? I swear this is the only job like this lol. When I was in HS I took a C++ class and made the tick tack toe thing just like the book/teacher said but I had no clue what happened so I never took coding classes again. Turns out I could have been a half decent programmer lmao.

1 year ago | Likes 8 Dislikes 0

It does not. I taught programming for six years, and it makes absolutely zero sense. Day 4 of the class involved explaining the three stages of debugging.
1- This isn't working and I don't know why.
2- Oh! That's why.
3- This is working and I don't know why.

1 year ago | Likes 5 Dislikes 1

I know you people are the ones who bring everything I love in modern society to life, like games and apps, but you must be insane to do this lol.

1 year ago | Likes 2 Dislikes 0

not using any versioning?

1 year ago | Likes 7 Dislikes 0

You want to make us cry?

1 year ago | Likes 1 Dislikes 0

Luke, Use the perforce

1 year ago | Likes 2 Dislikes 0

I mean, it happens most often when you have changes you haven't merged yet, that you want to tidy up before you do. Then BAM, they stop working.

1 year ago | Likes 2 Dislikes 0

Always backup before changes. Especially before cleanup.

1 year ago | Likes 1 Dislikes 0

always work on separate branches where you can push whatever you want, no matter how tidy it is, then clean your code, still on the separate branch, and when everything is nice and clean, merge into main branch

1 year ago | Likes 2 Dislikes 0

if you push your working (but ugly) code on your branch, you at least have a backup where you can head, separating commits is always a good practice, when I have huge features I like to make many micro commits for every bit that feature has added/removed to the code

1 year ago | Likes 2 Dislikes 0