Visual Basic Communities
December 29, 2007 9:38 PM
Subscribe
Visual Basic communities. Where can I find a supportive community that will help me become a better VB .NET programmer?
I'm writing a rather complex .NET application, using Google to get answers to my (rather frequent) questions. In doing so I find helpful contributions in communities such as vbdotnetheaven, devcity and so on. I keep feeling I should pause a little, join up and start contributing.
I'm prepared to put in some effort, contribute, build a profile and hopefully become a better programmer as a result. My question is, where do I put in the time?
I'm not smart enough for MSDN. The stuff there makes my brain hurt. I need something a little clearer, simpler, without being completely - well, Basic.
posted by grahamwell to computers & internet (4 comments total)
3 users marked this as a favorite
Pick up the Design Patterns book from the "Gang of Four". Pick up a CS 201 book on algorithms and data structures. Apply functional decomposition to your work, so that rather than working on a complex application, you're working on lots of straightforward functions.
Learn to think like the function you're writing; think of yourself as the function, consider what you have (your inputs), what you need to do (your contract), how you'll do it (your algorithm). As long as any function does more than one obvious thing, decompose it into two or more simpler functions that only do one obvious thing.
posted by orthogonality at 11:07 PM on December 29, 2007