vote up 1 vote down star

How do go about manage your perosnal "knowledge expansion"? Specifically, how do you divide your time between all the topics?

I am currently looking at my list of "To Read" bookmarks in Delicious and my list of favourites in O'Reilly Safari. The article/book types can be roughly divided up into:

  1. C#
  2. .NET general big bucket (clr, garbage collection, assemblies, threading, reflection, security, BCL, etc, etc, etc)
  3. Win Forms
  4. Web Forms
  5. Debugging and profiling
  6. Visual Studio and Team System
  7. ADO
  8. WPF
  9. WCF
  10. WWF
  11. Windows Mobile
  12. Winows programming
  13. .NET interview questions and puzzles
  14. C and C++ general
  15. Algorithms and data structures
  16. Design patterns
  17. UML
  18. Security
  19. Test driven development
  20. Methadologies
  21. Windows and Windows Server products
  22. Hardware
  23. Other languages
  24. Other operating systems
  25. Maths and physics

I do not want to be stuck in the any of the following ruts: "Er, what new C# feature?", "I can only do .NET", "I have no idea what is going on under the hood", "I don't understand how new hardware and operating systems will affect my systems", "I can only do Web Pages", "Er, never heard of SOA/AOP/InsertDesignConceptHere", "You want me to implement a linked list without using the LinkedList class??", "I don't keep up with innovations in security/debugging/InsertDevelopmentTopicHere" etc, etc, etc,

I need to fill in gaps and keep up with new technology. I'm gathering my list may be too large but I don't like the idea of hacking off great big chunks.

Here's why:

In some areas I am a complete newbie (e.g. WCF) and need small, easy, tutorial-style reading. That's fine as depth is not required yet. For other topics I know the basics and I want more depth on the inner workings e.g. I have completed Joseph Albahari's Threading in C# article and the next item on my list in this topic is Concurrent Programming for Windows. To understand any of that, I will need to improve my Windows programming skills and so I have the Windows Via C++ book lined up. To understand any of that I need to brush up on my C++....

Meanwhile, while I am digging in C++, C# 4.0 is coming and I still haven't properly played with all the new features of C# 3.0.

And I like to play i.e. write some code, change some stuff, see what happens, look at it in ILDASM, dig in Reflector, look it up in MSDN, find out what the .NET gurus have to say about it via Google, try out more stuff, etc, etc. This means it take me some weeks to get through a long article or book. Meanwhile technology is a-changing...

I've tried several strategies so far:

Exam based i.e. stick to the topics in the exam I am currently working on. Halt each topic at a certain level of detail and move on.

Butterfly i.e. oooo shiny fly over there, oooo something else shiny, fly over there.

Day of the week i.e. Monday .NET general, Tuesday WinForms, Wednesday Web, etc, etc.

Book oriented i.e. pick a recommended book (which is how I discovered CLR via C#) and go thorugh it cover-to-cover.

None of them are a good balance between coverage and detail and all leave me feeling, nope, not right.

So...is anyone else feeling this? Has anyone got a strategy that they currently use? Opinions/thoughts/advice? Yow, question probably too long. If I get lots of comments to that effect I will try and trim it.

flag
tl;dr. ;-P This is... at best, a poll question, so it should be marked Community-Wiki (checkbox on the edit page) to avoid getting slapped. Needless to say, you should not accept any answers posted. – Shog9 Apr 21 at 22:55
Ah - I saw a few development-type questions on here - would you not class this a worth staying? - I don't have a problem killing it if it's not useful. – J M Apr 21 at 22:57
I think it's fine. Thanks for marking it CW! – Shog9 Apr 22 at 1:10

2 Answers

vote up 1 vote down

It really depends where your current skill level is; personally I started developing in .NET with very little prior development experience so my natural approach was to cling to the .NET tutorials for dear life.

A couple years down the road and I've realized that the more I know about VB.NET (the standard language at work) the more I know about C# as well as other C-like languages. Personally I try to find highly-rated books that are just a little ahead of where I am skill-wise and then I read them cover to cover. Almost always I'll find out that something I assumed I was adequately versed in can be used in many more ways than I expected.

Since I'm still "intermediate" with .NET I'm continuing to try and learn the rest of the framework, but at the same time I'm familiarizing myself with the low-level guts. I've completed several small pet-projects at home in a variety of other languages such as Python, Perl, and C++, and have found that despite huge differences there is some relative ground between most all of them.

My advice would be to focus on learning the high-level details of all the .NET topics you mentioned, but whenever you get the opportunity to dig deeper go ahead and do so. It might be over your head but you'll have to get introduced to the low-level stuff sooner or later. From there take advantage of opportunities to work in other technologies to get your feet wet and gradually work into them--I think it's always better to have one language which you can fall back on for almost anything.

If you're looking for a rock-solid intermediate .NET book then pick up a copy of Juval Lowy's "Programming .NET Components 2nd Edition." It runs the gamut from being a patterns and practices book, to providing a well rounded description of many of the underpinning .NET mechanisms, as well as plenty enough code samples that you can actually reuse (I'm probably going to get banned for promoting the stupid thing so much, but I honestly believe it should be a required read for any junior .NET developer).

Update: One other thing, I would REALLY consider moving Test Driven Development up your list quite a ways. It's a simple concept that can really open your eyes to the need to break code apart into small, specifically purposed chunks.

link|flag
Thanks for the response - +1 for the book recommendation 0 with so many books about recommendations are essential for filtering the list. Ack re test driven - and I will do so :) – J M Apr 22 at 7:27
no problem, another solid book (borderline bible for coding standards) is "Framework Design Guidelines". It is more or less written by the .NET framwork architects and gives a lot of insight into the thought-process of .NET. Good referance material is always a big help, especially if you don't have a good mentor or a good peer to bounce ideas off of. – Yoooder Apr 22 at 12:20
vote up 1 vote down

I can relate with you here... seems a lot has been introduced into .NET with version 3.0/3.5 and it's a bit daunting at first. But, I just looked back to when I was first a CS student and was trying like mad to figure out what all this Java hype was, while studying C/C++ as that's what I thought my major focus would be in the workforce. I read about this XML and UML stuff and was trying to figure it out... meanwhile at work, I was using VBScript, JavaScript and ASP to build web pages. And was looking into COM/ATL to make powerful plug-ins lol. Just a mad frenzy of brain candy consumption.

Now with .NET, I feel like that again. But, I bit the bullet and went out and bought about 10 or 11 books (yes, that's right) all used from amazon.com (huge savings) and have been reading and bouncing back and fourth in between subjects at a pretty good pace and learning a lot. Then, I try and code something using the technology to ingrain it in my head. Also, at work, I try not to be afraid of using a new technology (i.e. - Linq) just because I don't know enough about it. Sometimes, you just gotta jump in. The best teacher is experience.

So, I purchased a ton of books from Apress and O'Reilly. All on topics you have mentioned

In my opinion, you're going to have to know a few key subjects, I'll list them below (not in any particular order):

Windows WorkFlow (Cool, but apparently completely changing in v4.0)
WPF
Windows Forms (should be really, really easy)
ASP.NET
CSS
XML
UML and Design Patterns (Important for great software design)
LINQ
ADO.NET Entity Framework
Silverlight
Generics
Lambda Expressions

In addition to my reading, I like to download cool tools and apps and just step through them and load them into an UML tool to study the patterns used... etc...

Some of them include the following:

I also use .NET reflector to scope some apps as well as it helps to get an idea of what's going on internally. I learn quite well from these applications as the authors are quite skilled and maybe implemented something a bit differently than you are used to doing and you can learn about features that didn't exist and see them in action by stepping through the code.

As for how to learn it all, well, that's up to you. I tend to learn best from books and webcasts, but mainly books. Then I code it myself by building a little mini application using what I have just studied. But, for your, maybe it's best if you take formal training with a company like learningtree or something? Maybe video's are good for you? But for me - books are the way to go as they stick in my head after reading and I can go at my own pace and skip whatever I need if I already know the technology.

And some topics, i.e. - algorithms and data structures I will only peer into occasionally for purely academic reasons. I won't spend a ton of time as there isn't really a need at this point to learn them. When the time comes, break out your old school library and reference how a stack/queue/linked list, etc... is built - but unless you absolutely need to reinvent the wheel, don't bother. You can't learn it all, but you can get close!!

link|flag
+1 for items I'd not included e.g. generics and LINQ and for the comment re algorithms etc. I sometimes wonder if there is anyone who thinks about this stuff. E.g. if there is a new type of sorting (or whatever) algorithm invented, eventually it may be implemented in .NET but atm that's the only way I would know about it. – J M Apr 22 at 7:36

Your Answer

Get an OpenID
or

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