vote up 2 vote down star
3

No doubt there is a lot to read on Blogs and in books and on stackoverflow But can we identify some guidelines for CS students to stick with while studying? For me these are as follows.

  • Finish your course books early and read 4-5 times more material relative to your course work

  • Programming is the one of the fastest evolving professions. Must follow the Blogs on daily basis for the latest updates, news and technologies if you do not want to glare at your team lead’s face at your first job after finishing college.

  • Instead of relying on assignments and exams, should do at least one extra (unmarked) small-medium sized project for every programming coursework.

  • Fight hard for internships or work placements even is they are unpaid as 3 months of work > 1 year at college.

  • Practice everything, every possible and impossible way.

  • Try doing every bit of your assignments project your self i-e Fight for every inch. Rely on documentations as first source for help and samples / Google / online Forums as the last source.

  • Participate as much as possible in online communities, forums to learn the best possible approach for every solution to your problem. (After doing your bit).

  • Make testing one of your habits as it is getting more important everyday in programming.

  • Make writing one of your habits. Write something productive once or twice a week and do publish it.

flag

60% accept rate
A nice list, but none of these are specific to computer science. – duffymo Sep 23 at 0:06
@duffymo, Although you're right about many of the things on this list, the IT industry is one of the only industries that can really change on an almost daily basis. It's the only industry right now that really takes advantage of all of the latest communication platforms out there to spread new stuff as fast as possible. I'd say CS students (and professionals) need to read news & blog sites to remain current more so than any other profession. – Dan Herbert Sep 23 at 0:21
One of the good things about this industry is all the top professionals do not have to request their secretaries or assistants to get their emails ready, printed on their desk. What ever most professional learn they return it to the community better polished, as they hands are always over the keyboard. This industry probably has highest internal contribution rate for learners and students if one is willing – asdi Sep 23 at 1:39
Are these really core principles? I don't think any of them apply to me now nor when I was a student (besides prioritize test), and I've managed to do pretty well professionally so far. Suggestions below like doing an internship, know how to debug code, etc. are much more central. You can be a successful programming while still having a life. – Chris Simmons Sep 23 at 4:34
> 3 months of work > 1 year at college. you gotta be kidding me/us... Obviously, this really depends on the quality of a university but I highly disagree... – Sophomore Sep 24 at 7:35

4 Answers

vote up 4 vote down check

I think what you're really asking is, "What should you do to be a successful programmer," but your bullet points sound like you're trying to apply traditional studying techniques to achieving an undergraduate Computer Science degree.

I'd present these instead:

  • Learn to work on coding projects in groups and with a partner.

  • Use revision control and write tests.

  • Identify an open-source software product that you use, join its community and contribute back to it.

  • Take the hard CS classes.

  • Learn to enjoy your craft and enjoy learning.

link|flag
Why "take the hard classes"? – ChrisW Sep 23 at 1:22
It's true. Read this post joelonsoftware.com/articles/… – asdi Sep 23 at 1:27
@ChrisW Because it pays off. I really, really wish I had taken Advanced Operating Systems and built a Linux driver to control a robot arm. I wish I had taken Advanced Programming Languages or a harder Compilers course so I would be better at writing parsers and grammars. – a paid nerd Sep 23 at 15:51
vote up 6 vote down

I would definitely push all students for an internship, and one in which you can write some real code. There's SO much stuff I never learned in school (code versioning, code reviews, real world debugging) that took me a while to ramp up on once I got my job right out of school.

Additionally an internship could turn into a fulltime, paid position once you're finished, and the networking alone is worth the time.

link|flag
+ 1 + 1 + 1 + 1 – jrummell Sep 23 at 0:17
1  
+1: I thought I knew stuff when I left school; only to get a job and realize I knew nothing. p.s. i still know nothing but I know a lot more than I did before – gatorfax Sep 23 at 0:20
vote up 3 vote down

Things I would hope most CS students would come out of school with:

1.) Know how to test and debug code.

I say this not only b/c testing is a big deal, but if you learn to test properly early in your career, you'll write better error checking and exception handling within your code. I remember coming out of school and noticing how much more error and input checking "real" code had in it compared to what I was used to. In school, I found I had a goal for my program and that was to work at the task assigned. I was good at doing that, but what I found was I needed to add much more for my programs to be safe in a more "hostile" environment.

2.) Learn a lower level language.

I think actually learning how to deal with pointers, pointer math, memory management, etc. is a great exercise. You should try and learn as much about what is going on under the hood as possible.

3.) Look at a lot of code.

Whether it be code snipets on sites like SO, or joining an open source project, look at code that professionals write and learn from it. You'll find techniques, keywords, data-structures you haven't thought of or seen before and over time it will greatly increase your programming vocabulary and understanding.

4.) Learn at least the most basic design patterns.

5.) Read the best books/sites about the language you're learning or want to learn.

Many of the concepts are useful in other aspects of CS. For instance if you're a C++ developer, read something like Effective C++ by Scott Meyers. SO is a good place to find great suggestions of books per language and skill level.

6.) Have fun!

Learn what type of development you enjoy doing the most and embrace it. This is inevitably where you'll be looking when you come out of school and where you'll more than likely to excel as a student and a professional.

link|flag
vote up 1 vote down

It's unrealistic to expect that most people have the time to read all their course books cover to cover at the beginning of a semester, work on additional projects, or keep up to date with blog posts/ news. Plus it isn't necessary.

The best thing, I've found, is to enjoy what you're doing and envision ways that you will apply the skills that you're being taught. If you see yourself hunched over a workstation in cube city, churning out the widgets, chances are you'll perform satisfactorily at best.

It should be clear what you're expected to know when studying a unit, but it's important to recognize the abstraction of underlying technologies and have a desire to fill that gap. This will allow you to extend yourself and go beyond what is required- For example, do you want to be told how your C program retrieves blocks from an i/o device? Or would you rather, given time, delve into the kernel and understand exactly what is going on?

Participating in online communities should come naturally to anybody interested in CS. There's no point telling somebody that they should participate, because if they aren't already, they're probably not very into CS in the first place (or haven't found a good forum- in which case, you mention Stack Overflow to them).

link|flag

Your Answer

Get an OpenID
or

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