10 tips for advancing from a beginner to an intermediate developer

Source: Internet
Author: User

Date: May 21st, 2009 Author: Justin James category: 10 Things tags: Justin James, developer

From: http://blogs.techrepublic.com.com/10things? P = 732

 

Beginner developers who want to take their career to the next level may be stymied by a lack of resources and recommendations. Justin James helps close that information gap with 10 suggestions for making the leap.

A techrepublic member recently mentioned that blogs, articles, and magazines aimed at developers seem to fall into two categories: items for beginners ("Hello World" type tutorials) and items for experts (Msdn magazine). It's a really good point; there's very little information out there to help a developer make the leap from beginner to intermediate. here are 10 things you need to do to make that transition.

Note: This article originally appeared as an entry in our programming and development blog and is also available as a PDF download.

1: learn another language

It doesn't matter which language you learn, but learning another language (regardless of how many times you already know) will make you a better developer. it's best to learn one that is significantly different from what you already use on a regular basis. in other words, if you are a C developer, learning VB. net or Java will not help you as much as learning Ruby or groovy.

And when I say "learn another language," I meanReally learn it. Learning a language consists of three realms of knowledge: the syntax, the built-in operators and libraries, and "how to use it. "the first two are easy; I think that an experienced developer can pick up enough of a language's syntax to maintain code in 30 minutes to a few hours depending upon the language. the operators and libraries are just a matter of slowly accumulating knowledge and being willing to check reference materials until you memorize what you need to know. but the third item-"How to Use It"-can only be learned over months of working with a language, and that's where the real magic happens. I suggest doing a project that is well suited for that language and doing it in that language's style.

Truly learn another language, and I promise that your abilities as a developer will start to blossom.

2: learn advanced search techniques, tactics, and strategies

More and more, being a good developer is not just about your skill, but your skill at finding information. simply put, modern development ages and development frameworks are too large for most people to remember much of them. as a result, your ability to get work done is often dependent upon your ability to perform research. unfortunately, knowing how to find accurate, high-quality information is more than just heading to techrepublic for the answer or typing a few words into your search engine of choice.

Techniques,Tactics, AndStrategiesMay sound like synonyms, but they are not. the techniques you need to learn are the advanced search systems of your favorite search engine. you need to learn things such as the boolean operators, how to filter results (negative keywords, domain restrictions, etc .), what role word order plays, and more. so essentially, rtfm.

You shoshould learn tactics such as how to approach any special search and knowing what you shoshould you actually look. errors are easy-just look for the error code-but keyword selection on each searches is much more difficult.

With regard to strategies, you need to learn things such as what search engines to use (Hint: General purpose search engines are not always the right answer), which sites to visitBeforeGoing to a general purpose search engine, and even which message boards to post to for help.

3: help others

Teaching others is one of the best ways to learn anything. it is understandable to think that you don't have much to offer because you are relatively new to the development field. that's nonsense. remember, everything you know you learned from someone or somewhere; so try being the someone another person learns from. spend a few minutes a day trying to answer the questions on techrepublic or another site as best you can. you can also learn a lot by reading other Members 'answers.

4: Be patient and keep practicing

Research shows that it takes "about 10 years, or 10 to 20 thousand hours of deliberate practice" to become an "expert. "That's a lot of time. furthermore, becoming an expert does not always mean doing the same task for 10 years; it often means doing a wide variety of tasks within a participant domain for 10 years. it will take a lot of time and energy to become an "expert"; working as a developer fo R a few years is not enough. Want to become a senior developer in your early 30 s? Either start your education/training sooner or be willing to do a lot of work, reading, and practicing in your spare time. I started programming in high school, and I got Ted a lot of off-hours to keeping up with the industry, learning new skills, and so on. as a result, I hit the intermediate and senior level developer positions significantly earlier in my career than most of my peers, which translates to an awful lot of money over time.

5: Leave your dogmas at the door

Time for some brutal honesty: Beginner developers probably don't know enough to state that there is one best way of doing something. it's fine to respect the opinion of a friend or an authority figure, but until you are more experienced, don't claim their opinions as your own. the simple fact is, if you don't know enough to figure these things out on your own, what makes you think that you know whi Ch "expert" is right? I know this sounds really harsh, but please believe me; I have met far too encrypt budding developers who had their careers or their growth set backYearsBecause they got hung up on some foolish piece of advice or followed some "expert" who really didn't know what he or she was talking about. a great example of this is the abuse of object-oriented architecture. many beginners read some information about Oo, and suddenly the class diagrams to their simple applications look like the Eiffel Tower.

6: learn a few advanced ideas in-depth

Much of what goes into being an intermediate developer is having a few concepts you are really good at working with in code. for me, it is multithreading/parallelism, regular expressions, and how to leverage dynamic ages. (and the last two are fading as I get farther away from my Perl history .) how did this happen? Multithreading and parallel processing came about because I read articles on it, thought it sounded interesting, and figured it out on my own; I keep writing apps that use those techniques. I had a job that used a ton of Regular Expressions in Perl. also, I ended up writing my own e-commerce engine with a template processing engine and built-in database system; then, I spent nearly two years working on it.

Find something that has you really hooked. it might be image manipulation or maybe database design or whatever. even if you're an entry-level developer overall, try to become an expert in at least one area of focus. this will get you into that intermediate level quite quickly, and once there, you will be halfway to expert.

7: learn the basic theories underlying your field

It's one thing to write "Hello World," but it's another to understand how the words appear on the screen. by learning the groundwork that supports the work you do, you will become much better at it. you will understand why things work the way they do, what might be wrong when things are broken, and so on. you will become better by learning what happens at a lower level than your work.

If you are a web developer, read the http rfc and the HTML spec. if you use a code generator, really look at the code it generates. if you use database tools, take a look at the underlying SQL it generates.

8: Look at senior developers 'Code

At your job, take a look at the Code the senior developers are writing and ask how and why things were done a particle way. if you can, check out open source projects as well. even if other developers don't have the best coding habits, you'll learn a lot about how code is written. be careful not to pick up bad habits along the way. the idea here isn't to just blindly imitate what other developers are doing; it's to get an idea of what works and what makes sense and try to imitate it.

9: learn good habits

Nothing marks an inexperienced coder like stupid variable names, poor indentation habits, and other signs of being sloppy. all too often, a developer learned how to program without being taught the less interesting details such as code formatting-and it shows. even though learning these things will not always make your code better or you a better developer, it will ensure that you are not viewed as an entry-level developer by your peers. even if someone is a senior developer, when variables are named after their 97 cats or their functions are called "dosomething ()," they look like they do not know what they are doing, and it makes their code harder to maintain in the process.

10: Have fun

Want to be stuck on the career treadmill? Hate your job. what it takes to move up in this business is not merely dogged determination to bring home an ever growing paycheck but an actual enjoyment of your work. if you do not like your work and you are a junior developer, what makes you think that being an intermediate or senior developer will be any better? Change jobs or change careers. On the other hand, if you love the work you are doing, great! I guarantee that you can become a better developer if you keep at it.

J. Ja

Disclosure of Justin's industry affiliations:Justin James has a working arrangement with Microsoft to write an articleMsdn magazine. He also has a contract with Spiceworks to write Product buying guides.

Get it tips, news, and reviews delivered directly to your inbox by subscribing to techrepublic's free newsletters.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.