vote up 19 vote down star
8

I'm a college student studying programming, and I feel like the whole picture isn't coming together. I just don't get it. I can write code and do all of my assignments just fine, but I feel like I'm missing something.

Anyways my question to experienced programmers. Did you feel like you were missing the big picture when you were a student? Or is it just me. And if so when did it come together?

flag
15  
It's a big world of programming out there... 99% of it is bullshit however. – Aiden Bell Jun 17 at 15:45
4  
I'm 41 and I still don't get the big picture. I'm pretty good at the small pictures though. – 20th Century Boy Jun 17 at 15:57
10  
What do you think you're missing? Before I learned how compilers worked, I obviously felt I was missing something there. Before I learned how an OS worked, I felt like I was missing something in that area. You're obviously missing anything you haven't yet learned. That's to be expected. If you're just learning programming, then there is going to be a lot of magic involved. Your code is going to be executed by magic, and your code is turned into an executable by magic, and so on. Are these the kind of things you feel you're missing? – jalf Jun 17 at 16:14
show 9 more comments

49 Answers

1 2 next
vote up 40 vote down

It is very easy when you are working on class assignments to have the feelings that you are dealing with. You wonder how in the world the stock problems you are working on actually relate to real programs that people use every day.

I would suggest that you think of some cool, basic application that you would be interested in using. It can be Mac, Windows, web-based, iPhone, etc; the important thing is that it is both real and interesting to you.

Then, start learning what you need to implement it. It is hard to write from scratch when you first start doing it, but you will learn a ton, and hopefully get a broader picture of what programming is about and how it can result in really cool projects.

link|flag
6  
+ 1 For developing a cool and/or useful little tool for yourself. Tangible results can be really rewarding. – Zsolt Török Jun 17 at 15:46
1  
iPhone made it to top 4 platforms – stefanB Jun 17 at 15:48
9  
@stefanB ... nothing like ObjectiveC on a strange platform to get you lost :P – Aiden Bell Jun 17 at 15:51
show 2 more comments
vote up 23 vote down

The more you learn, the more you'll realize how little you know.

For me the passion for coding has driven me to learn so much and take pleasure in so many small accomplishments that my own curiosity drives me to learn more than any "assignments". But it's also given me much humility to see how many nuances I missed when I first started, and to imagine how many more there may be.

Catch that spirit and you'll be a miles ahead.

Take pleasure in each small victory, and they'll mean more when they actually help you or those around you.

link|flag
show 1 more comment
vote up 16 vote down

Jake,

I can write code and do all of my assignments just fine, but I feel like I'm missing something

You are. There's a whole world of source control, APIs, design patterns, functional programming, bug tracking systems, configuration management, build scripts, and so on that they never teach in college. I was shocked the first time I encountered these things in the real world.

School will not prepare you to be a programmer out in the real world. Programming IS NOT about rote memorization of syntax, which seems to be what most CS courses have become nowadays. Programming is about problem solving, and unfortunately you can't teach people how to solve problems in a classroom. You only develop this skill by through practice, practice, practice.

When did it all come together?

For me, I was a programming hobbyist for a good 5 years before I started going to school. Afterward, I went to school to get my CS degree for two years, and finally I found a job as an entry-level developer. You'd think 5 years of programming + 2 years of school would mean something, but let me tell you: I sucked when I got that first job.

Sure, I did fine during the technical interview, but I simply sucked at writing code -- at the time I didn't even know the difference between a LEFT and an INNER join, and I had no idea how to write usable APIs in an OO way. I improved 1000x in the first 6 months on the job than I ever learned in all that time as a hobbyist or going to school.

link|flag
show 2 more comments
vote up 6 vote down

I felt that way when I started, but I was 6 years old at the time. It took 2-3 years for me to get a better handle on it (BASIC). But it still took several more years to get the handle on arrays, objects, etc...

Some people are natural at understanding programming, others have to work really hard at it.

In any event, here is my suggestion:

Don't worry about the "class" assignments -- do them as they come. Rather, create your own project that you will complete. When I was 9 years old, it was a paint program. When I was 13, it was a time tracking system. Etc...

By defining a problem to solve, it forces you to "get" the bigger picture. By the end of it (even if it is simple, but complete), you will no longer be "lost with Programming".

Then you can decide if you want to do it more, or find something else to do.

link|flag
show 4 more comments
vote up 6 vote down

I have a hard time "getting" something until I can use it to solve a problem that I actually have. For example, after reading up on generics in c#, I understood the "what" and "how", but not really the "why". It later hit me, as I was working on real code, that I could use generics to make my life easier. At that point, I "got" the big picture.

link|flag
show 1 more comment
vote up 5 vote down

I'd say relax - you should panic only when you assume you know everything.

link|flag
show 2 more comments
vote up 3 vote down

It takes a while to "get the big picture" when you first start programming.

I think the first time it started to come together for me was after the first time I went through an entire cycle of planning, design, implementation, and deployment of an application. When you're learning, you do lots of little exercises, which are not really all that useful in and of themselves. Until you complete a "real" project, it always feels like there's something missing.

I'd highly recommend joining an open source project. This will give you a much better feel for this, and has many other benefits, including helping build experience, learn a lot, and having some fun along the way.

link|flag
1  
Depending on the OP's level of experience (and confidence), it might not be the best idea to go join an open source project right away. Wait until you feel ready for it (or almost ready for it, because you probably think you're less well prepared than you actually are). After all, you do have to have a certain amount of skill to make a contribution. – David Jun 17 at 16:39
1  
@David: Depending on the project, there's always work to be done. On my last large OS scale project, we had people in high school helping, even at the documentation level. I don't think waiting for a level of experience is necessarily always good - there's work at all experience levels, if the right PMs are in place. – Reed Copsey Jun 17 at 17:44
show 1 more comment
vote up 3 vote down

I don't know that there is a single "big picture" in programming. I think the important thing for you at this point is that you're understanding what you've learned so far and that you enjoy what you're doing. Enjoy it enough that you can work on something outside of class that people will actually use. Maybe an open source project or maybe a project of your own.

Your class assignments will help your programming ability to a degree, but class assignments are typically small in scope and useless in the real world. You need to make something that's real, long-lived, and big to really understand what programming's all about.

link|flag
vote up 2 vote down

Working on an actual project will go a long way for you to see what software engineering is like if that is what you are missing. Programming is only one part of this. Working through a design, dealing with team members, deadlines, etc all present a different set of issues to work through. If you haven't done even a simulated "real" project as an exercise for class, try doing one yourself if you can get some interested classmates involved.

link|flag
vote up 2 vote down

I've been writing code for almost 20 years and I feel like I'm missing something almost every day.

Software development is very abstract and often very much removed the the real world processes you might be modeling. Ie, if you were to organize a pile of book, you might not use a tree structure. If you were to organize a bunch of Book objects, a tree might be the simplest way to do it.

Not getting it is completely normal.

If you completely understand everything you are doing you are not likely to be learning anything.

link|flag
vote up 2 vote down

Personally, I think that every student should start at the lowest level of programming: Assembly language. Not that every student should be an expert on Assembly, but that the first semester of programming should be about the basic concepts of Assembly: registers, pointers, binary arithmetic, etc (I can see no good reason to learn about more advanced stuff like CPU pipelines and caches, unless your work will be on the kernel driver side).

Then students should move on to C/C++, so they learn what objects are, and learn pointers vs. references, etc. Only then should they move on to high level compiled languages like C# or Java, or scripting languages like my favorite, Python.

I'm 39 now, but my first programming language was Assembly at age 12, and I took this path through my learning. As a result, I intrinsically and easily understand concepts like pointers vs. references, multi-threaded access to the same resource, linked lists, etc., which with young programmers seem to struggle.

link|flag
show 1 more comment
vote up 1 vote down

Just keep doing and learning the basics, and it will all come together in a higher level of understanding at some point.

link|flag
vote up 1 vote down

Although I don't know what you are studying I can understand because:

  1. You tend to get taught in a write-n-run environment
  2. you tend to learn interpreted/bytecode languages like Java
  3. These tend to create a 'playpen' for you to learn the logic

problem is

for an enquisitive mind, these always pose the question "What is happening underneath??"

My suggestion

  1. Install Linux/BSD/Some Unix
  2. Get a book on C
  3. Learn about the toolchain and how things go from source to programs

Job done!

link|flag
vote up 1 vote down

It's the application of your skills to a problem domain that will make it all "Click".

Until you solve a real-world problem and see people using your code in their everyday lives it's all abstract.

link|flag
vote up 1 vote down

School assignments are just too leading. The problem is that schools teach you to write code, but not usually how to architect. The only way to learn how to architect is to build something from the ground up without someone telling you every step you need to do.

Think of something you'd like to build that is software. Figure out how to do it. Do it.

Once you've built something once, you will understand that you have to make the big picture yourself and then color it with code.

They don't really tell you this in school, they talk about all of the tools, but don't just say "build something using the tools".

link|flag
show 1 more comment
vote up 1 vote down

What you learn in school are the basic building blocks. The real world is full of real problems. Bugs to fix that are causing real customer problems, doubled transactions, random crashes. Software to count real inventory, manage documents. School is abstract and dumbed down. Learning how to use a debugger, track bugs, deploy new versions is wholly different in the real world with real schedules, deadlines - you will engage with those tools and techniques because you need to get real things done. School assignments are mock situations, mock problems, minimized and sanitized so you can learn enough to learn how to do it 'out there'. I can think of no way to teach all this without taking many years trying to fix real world problems.

That feeling has followed me all the way through, the only thing that changes is your perspective. I had the same feeling when I was in school, and when I started my first job, I worked on 3 different softwares and wondered more about the requirements process. I started running my own projects, and then wondered more about architecture. I started building the architecture and wondered more about the project management process. I became part of the project team and then started to feel I was missing the perspective of the top-level execs. Then I found out most of these top level guys really are clueless about software. ;)

The world of software development is vast, and there are many paths to follow. It is good to have a plan, vital to have a focus, but equally you can follow where your curiosity leads. The only decent advice I can offer is to go where you feel you are learning something useful, and keep revising your 'plan' as new opportunities emerge.

This is all perfectly normal

link|flag
vote up 1 vote down

My best advice to you is to never stop learning. I've trained programmers right out of college in many of my various jobs and been a mentor to them. College will only teach you the basics of programming, but there is a whole world out there if you are willing to learn and find the right mentor. That may mean getting an entry level job and having the company that hires you train you or assign you a mentor.

If you cannot find a programming job try volunteering for an open source project and seek the advice of the other programmers and examine their code. Feel free to view the many web sites about the languages of your choice you want to program in, so that you can learn more. But beware any forum you get on could be hostile to newbies/noobs that is people just trying to learn more than the basics.

You might want to read whatever documentation or help files that come with your languages, and maybe buy a few books on them that cover more advanced topics that your college text covered. Most of the college texts teach the basics and how to write small programs, but corporations want large and complex programs and sometimes don't give you the option for analysis and design or even flowcharts and documentation, so beware. It can get stressful and dicey in those types of situations and you'll need the support of your team members and coworkers and management. If you cannot get support you will always have sites like this to ask questions on.

Sometimes development is learning from your mistakes. You code to the best of your ability and after you find a mistake you made, you change it and then learn from it. The best way to avoid mistakes is to adopt a naming convention and use variable names that make sense, for every object you open you close it off after it is no longer used and you manage your code so that it manages memory better, add in error checking check to see if the divisor is zero before doing a divide in your formula and check to see if the number is negative before taking a square root and check if a recordset item is null or empty before assigning it to a variable or database, you will learn more as you gain experience. Good luck!

link|flag
vote up 1 vote down

I was lost in comp sci to the point where I dropped out...well, I wasn't lost as much as bored. I think the answer is to go -outside- of coursework, and figure out what your real interests are are play around with those.

For example, figure out some kind of software that would be really fun to work with / develop. Then, do you own study and go deep into it, download what you need to start coding, and work that way.

School is often -really- unrealistic, often out of date in many ways...you need to own the process, the learning process, development process, find your own way to learn and connect that to an area you have a passion about.

Hope that helps!

link|flag
vote up 1 vote down

This is such a good question because it is rare for someone to be able to step back and see themselves in that way.

You may very well be missing something - there is always something to miss! Gone are the days of the renaissance man who can wrap his (or her) brain around a complete subject. Everyone is a specialist to some degree - you may become a C# jock on .NET but your expertise will be focused on the domain of your employer. That's what makes learning and applying the new stuff - DDD, TDD, and all the other things folks have listed - to your environment so fun and challenging.

You'll be asking yourself, 'xyz is wicked cool! But I have a HUGE codebase and deadlines to meet - how can I apply it?'

You're in a wonderful time though - your projects are over at the end of each semester and you get to move on. Enjoy that!

link|flag
vote up 0 vote down

I definitely had classes where I felt lost or like it wasn't coming together. Those were only a few classes though. Overall, I felt good about my choice and the big picture made sense.

It would be helpful to know how far along you are in your studies.

link|flag
vote up 0 vote down

I found that the real way for me to understand programming wasn't just to carry out university work when i attended, but to attempt to carry out real life practical applications that i made for myself.

As i was into web development i started creating various web applications to make various tasks easier for myself, people around me or employees. The more programs i created the more the whole picture clicked together due to the real practical example of doing it.

This helps you put all your knowledge, and gain more by researching and practising to fully piece it all together.

This worked for me :) hope it's helpful!

link|flag
vote up 0 vote down

Try to pick a simple pet project (the key here is simple) to solve a problem or remove an annoyance that you have. Learn as you go while coding your new project. If you give up, or don't gain enjoyment from the exercise, programming may not be an appropriate skillset for you to learn.

link|flag
vote up 0 vote down

There were many times when I felt like I wasn't getting it or I wasn't ever going to be "professional grade". There are enough examples of stellar programmers around if you look hard enough that you will never quite feel like you measure up if that's the type of personality you have.

What finally did it for me was getting out into the real world and writing real code ... getting my hands dirty and having some true "ah-ha" moments where a couple lessons finally clicked for me. I still remember the feeling of utter clarity that came over me when I truly understood what polymorphism was useful for. I wish I could bottle that and hand it out to all the junior programmers I know.

So my advice is ... don't give up. If you love programming and it feels like it is something you want to do ... wait for it. Stick it out and you'll have your "ah-ha" moment too.

link|flag
vote up 0 vote down

It's probably just Holden Caulfield syndrome, but it took me until the very last day of my degree before I grokked calculus, and that was just because I finally had a professor capable of an enlightening conversatiuon. I think it happens to everyone with something.

If the symptoms persist consider a career you don't feel lost in, because even if you can do it, why do something you aren't engaged by?

link|flag
vote up 0 vote down

I started "programming" when I was 13 and so it was very much learning from looking at code making changes and then seeing what effect those changes had. When I went to University to study it was about learning how to structure things better and help me see the bigger picture. I guess you need to ask yourself what you feel is missing. I always got a kick out of writing some code then watching it run. If you don't enjoy the technical side of things then perhaps you might enjoy the high level design side more or the project management side of thing. I'd suggest you try and pin down what you feel is missing.

link|flag
vote up 0 vote down

It all came together after my second C++ class when my teacher took the time to explain exactly what call by reference vs call by value meant, and how the stack and the heap are organized.

Other things like physical architecture classes, algorithm syntax parsing, and even networking helped build the big picture, but for me it was memory allocation and pointers.

link|flag
vote up 0 vote down

Do what I did: get a part-time job as a web-developer. You'll find out which language you like or program in, what the real world is doing when it comes to programming. It is so rewarding when a piece of code you wrote actually starts working and people think it's cool!

link|flag
vote up 0 vote down

This is just college life, especially at large research universities and during the first two years. Professors are there primarily to do research and secondarily to teach. They generally are focussed on quantity of knowledge rather than quality. Hence, you tend to understand the material superficially and be able to do the assignments, but not feel like you really "get it". My advice would be to tough it out and try to find something that lets you do something more real world-oriented, either an internship, a research project, or more advanced, practical classes. Only then will any of it make sense.

link|flag
vote up 0 vote down

You say that you are studying programming but don't indicate what kind of program you are in. Is it computer science, software engineering or another discipline like Computer Engineering?

I've found that this makes a huge difference as to how your teachers will approach the subject. I studied Computer Engineering myself starting off with electronics, discrete math and assembly language while simultaneously studying extremely basic 'Object Oriented Programming' techniques in Java it was really difficult to make sense of the OOP side of things.

It wasn't until my third year in a Software Engineering course where we were introduced to our first real OOP design patterns (Facade, Observer) and developed an entire project as a team using pair programming that things began to come together.

I would highly recommend reading through a book like Head First Design Patterns or the original 'Gang of Four' design patterns book or tackling something like 'Object Oriented Analysis and Design' to see how real applications come together as opposed to just programming some nonsensical Animal, Dog, Cat hierarchy stuff.

link|flag
vote up 0 vote down

I found college programming courses to be so theoretical and low level to really inspire whatever interest I had in coding & computers. Deep down though, I have some deep and abiding appreciation of software/systems/logic that drew me back and to C++, C#, oop. That object oriented thing just appeals and I really enjoy the stuff they were trying to convey in school. Basically, when it comes down to it, do what makes you happy and evolve over time. They don't actually have a course for that, this is it.

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.