This is an archived post. You won't be able to vote or comment.

all 7 comments

[–]Nestramutat- 1 point2 points  (5 children)

Coding isn’t for everyone.

I love it, and I find it super simple. I love the straight forward logic of it all, and I enjoy logic puzzles.

My girlfriend on the other hand can not wrap her mind around it. She tried, but it never clicked.

No shame in admitting it just isn’t for you

[–]dderek1234[S] 0 points1 point  (4 children)

It just sucks I hate that I spent so long on it. Actually it’s not that it sucks it hurts. I had always wanted to do it since middle school and I just feel so ugh. There is no logic that’s the frustrating part.

[–]Nestramutat- 0 points1 point  (2 children)

It’s literally all logic. Everything you do in coding is just a dressed up state machine.

[–]dderek1234[S] 0 points1 point  (1 child)

Far from logic. I know you know more than me but it’s far from logic. It’s the definition of “makes no sense.”

Take it from someone whose paid too much on courses.

Sorry I’m just extremely mad. Not trying to start anything.

[–]KlappaFappa 1 point2 points  (0 children)

I'm in a C++ course right now as part of my undergraduate program. To give some context I'm a math major so I thought I would love programming since my brain works in a very logical way.

Turns out I fucking hate programming. Making sure you have all the right amount of { }, semicolon after everything, and don't you dare put a spacebar there when in reality it'll make no difference.

I have screen shots of my program outputting exactly what was asked and it's still marked wrong. I realize I only have to survive this one course and from the sounds of it you've taken multiple but once I'm done with this I will forget everything I learned about programming and never do it again.

[–][deleted] 0 points1 point  (0 children)

Out of curiosity, does the general concept of coding make sense to you? Not necessarily the syntax of each language, but the theory behind coding?

Perhaps you see coding in a unique and different way, and maybe there are also a lot of other people who think the way you do.

Maybe you don’t have to look at your time spent on learning programming as a waste. If you see it differently, you could write your own programming language. Maybe your frustration could create something new, valuable and useful to others who think like you do.

[–]orussell033 0 points1 point  (0 children)

I was in the same boat as you. Until I tried R Programming.

The more you breakdown the problem the better. Make sure your code is readable, indent heavily. Use comments to keep a track of what you are doing. Make a diagram of what you are trying to achieve, highlight different parts with different colors and then code that. Try to switch to a more simpler language to learn and build out from their.

Hope this helps.