vote up 0 vote down star

Background: I'm a windows developer at MegaCorp(tm) and I am getting new hardware soon.

Question: Are there best practices around setting up my developer software installs?

Details: I've got my main IDE (Visual Studio/SQL Management Studio), but there are also tools that I'm testing out, additional tools I can't live without, and future accomodations.

All my code is stored on a remote server in SourceSafe so I don't need to really accommodate for that, but I'll regularly jump into perl/python/php for separate/side tasks.

flag
4  
Please, kill SourceSafe dead! Adopt Subversion or (if your company wants to pay out the nose) Team System. – Randolpho Jul 9 at 1:53
@Randolpho is right. SourceSafe has to go. Do whatever you need to to get rid of it. Make this your mission in life. – Andrew Jul 9 at 2:07

7 Answers

vote up 5 vote down check

The only advice I can give you is set up your machine in a way you need it and you can work with and then save an image so that you can return to that state easily.

link|flag
2  
Amen to that. If your new machine has heaps of RAM then look into virtual machines. You can save the state of these, which is really useful. Save your base dev env's as separate states. Then when what you're developing in one of the VM's crashes, you can simply restart the VM without losing your whole PC. – dave Jul 9 at 2:03
vote up 0 vote down

I have to agree regarding SourceSafe, whether or not you have the ability to opt-out of using it or not will obviously affect your ability to addopt a new SCM tool but if you can I highly recommenf the free VisualSVN Server for managing subversion and / or hosting repositories.

If you are prepared to pay for the licence you can also buy the VisualSVN plugin for visual studio, as a student I can't afford that but I have used AnkhSVN which integrates with VS through the source control provider APIs providing a nice native looking interface in VS 08

Other tools I can't live without:

  • TestDriven.NET
  • DocProject for easy generation of MSDN-style code documentation. I believe it uses sandcastle to do the real work but sandcastle itself is difficult to use and this is the most sane UI over it I've seen and managed to get working without massive amounts of work.
  • Paint.NET for graphics work
  • TortoiseSVN is another really good SVN client that I use for doing things like merging to trunk because I am more familiar with the interface and I think it's nicer than AnkhSVN in some areas
link|flag
vote up 0 vote down
  • vim - VI Improved
  • Beyond Compare - best diff tool.
  • If you use multiple machines (like one for dev one for test) Synergy is invaluable.
  • If you occasionally need to edit icons Paint.NET is pretty good.

As everyone else says kill source safe.

link|flag
vote up 0 vote down

Get rid of SourceSafe

Seriously, don't store anything in SourceSafe. There are many other, better Version Management Systems out there. What's wrong with SourceSafe? I strongly urge you to consider reading the following posts:

Especially the last one - it goes into lots of detail about the problems with VisualSourceSafe. What should you use instead? Wikipedia has a great comparison of many different Version Management Systems for you to compare. You can look here to find out which ones integrate nicely with Visual Studio.

link|flag
vote up 2 vote down

Also, don't forget to go and get all your SysInternals goodies. Oh, also remember to export your rss feeds before you upgrade.

link|flag
Sysinternals is on the list of tools that I can't live without :) – databyss Jul 9 at 2:01
1  
Me too. Oh and Wireshark as well. – Tim Jarvis Jul 9 at 2:04
vote up 0 vote down

Use a VM image, then the project has a VM image that is version controlled.

Tools and OS are recoverable years later.

Your name will shine on asa voice of sanity and configuration management.

link|flag
vote up 0 vote down

You should also install the Windows SDK (which usually doesn't come with VS), as there are many useful tools there that can help during development.

If you plan to use .NET, look into Reflector and LINQPad.

If you plan to use ASP.NET or do any web development at all, look into Fiddler and Firebug

link|flag

Your Answer

Get an OpenID
or

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