Some tools on my machine.

Here are few tools I use for my web development: Resharper : http://www.jetbrains.com/resharper/download/ Fiddler : http://www.telerik.com/fiddler Wcf Client : http://msdn.microsoft.com/en-us/library/bb552364(v=vs.110).aspx Reflector : http://www.red-gate.com/products/dotnet-development/reflector/ Programmer’s notepad : http://www.pnotepad.org/ Large File Viewer : http://www.swiftgear.com/ltfviewer/features.html procexp (Process Explorer) : http://technet.microsoft.com/en-in/sysinternals/bb896653.aspx Total Commander : http://www.ghisler.com/ CamStudio : http://camstudio.org/ Everything : http://www.voidtools.com/ Watir (Ruby program) : http://watir.com/

Some handy command script for TFS

Below mentioned scripts are utility scripts for managing TFS Note : All text inside angular brackets are comments like : <COMMENTS> Script #1: Get latest script #cd C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE <path of TF.exe> #TF.exe get $/___TfsRootPath____/__BranchPath___ /recursive /force / nonprompt > C:\GetLatestDailyFile.log <the path after greater then is log path> Script #2: Rebulid… Continue reading Some handy command script for TFS

Published
Categorized as Technical

I am a Pragmatic Programmer Part 6

This is Part 6 of 7 part series inspired from the book Pragmatic Programmer, read Part 5 here: Use Exceptions for Exceptional Problems: Exceptions can suffer from all the readability and maintainability problems of classic spaghetti code. Reserve exceptions for exceptional things. Minimize Coupling Between Modules: Avoid coupling by writing “shy” code and applying the Law… Continue reading I am a Pragmatic Programmer Part 6

I am a Pragmatic Programmer Part 3

This is Part 3 of 7 part series inspired from the book Pragmatic Programmer, read Part 2 here: Use Blackboards to Coordinate Workflow: Use blackboards to coordinate disparate facts and agents, while maintaining independence and isolation among participants. Estimate the Order of Your Algorithms: Get a feel for how long things are likely to take before… Continue reading I am a Pragmatic Programmer Part 3