Sunday, September 11, 2005

On your phone enter **7284. This is a short cut that takes you to the Data Connection screen which offers three options:

  • As the modem through USB
  • As the modem through Bluetooth
  • Internal Data Call

    Select the first choice and your PC will now recognize it as a modem. ** NOTE ** Every time you change your battery this reset to its default ( Internal Data Call ).

    Next install the drivers and create a new dial up modem network connection. Get the latest Samsung CDMA drivers at the Samsung Drivers Page. Use the same dial up settings your phone is using.

  • posted on Sunday, September 11, 2005 9:09:40 AM (Central Standard Time, UTC-06:00)  #    Comments [0] Trackback
     Friday, August 26, 2005

    First let me say this book is very well written. Throughout my career I have read a large number of books, publications and whitepapers and nothing has read as well as this. The content is very well organized and the material is illustrated in such a way where it can be read by all levels of technical staff. Anyone who has any SOA involvement be it development to management should read this book before doing anything. The use of case studies really relates the entire book to ones own organization where they can start to compare and contrast either how they have implemented SOA or might like to. As I was reviewing this book I in fact started to re-architect SOA systems I was building.

    More information can be found at ServiceOriented.ws

    Add it to your library from either Amazon or bookpool. ISBN 0131858580

    I would like to send a personal thank you to Thomas Erl for the opportunity to participate as a technical reviewer.

    posted on Friday, August 26, 2005 9:09:10 AM (Central Standard Time, UTC-06:00)  #    Comments [0] Trackback
     Wednesday, July 20, 2005

    Be sure to visit all the options under "Configuration" in the Admin Menu Bar above. There are 16 themes to choose from, and you can also create your own.

     

    posted on Wednesday, July 20, 2005 1:00:00 AM (Central Standard Time, UTC-06:00)  #    Comments [0] Trackback
     Tuesday, July 05, 2005

    A quick breakdown of the Team Test attributes compared to NUnit attributes with a few examples.

    All Team Test attributes are found in the following namespace:
    Microsoft.VisualStudio.QualityTools.UnitTesting.Framework

    Attribute Quick List

    Team Test NUnit
    TestClass TestFixture
    AssemblyInitialize N/A
    AssemblyCleanup N/A
    ClassInitialize TestFixtureSetUp
    ClassCleanup TestFixtureTearDown
    TestInitialize SetUp
    TestCleanup TearDown
    TestMethod Test

    AssemblyInitalize and AssemblyCleanup are new. There are no equivalent attributes in NUnit. These attributes run at AppDomain load and dispose.

    [ AssemblyInitialize ]
    public static void AssemblyInitialize()
    { }


    [ AssemblyCleanup ]
    public static void AssemblyCleanup()
    { }

    Acting just like the NUnit TestFixtureSetUp and TestFixtureTearDown with the only one minor difference. Both methods have to be static and the ClassInitialize takes in one parameter. ClassInitialize will execute before any TestInitialize and TestMethod after the AssemblyInitialize while ClassCleanup executes after the TestMethod and TestCleanup but before the AssemblyCleanup.

    [ ClassInitialize ]
    public static void ClassInitialize(TestContext t)
    { }


    [ ClassCleanup ]
    public static void ClassCleanup()
    { }

    TestInitialize executes before each test and TestCleanup executes after each test for every TestMethod.

    [ TestInitialize ]
    public void TestInitalize()
    { }


    [ TestCleanup ]
    public void TestCleanup()
    { }


     

    posted on Tuesday, July 05, 2005 9:05:35 AM (Central Standard Time, UTC-06:00)  #    Comments [0] Trackback
     Wednesday, June 29, 2005
    First I would like to thank everyone involved with the Springfield IL .Net Developer day for asking me to speak.

    Springfield.NetDay.ppt (1.61 MB)
    posted on Wednesday, June 29, 2005 9:04:13 AM (Central Standard Time, UTC-06:00)  #    Comments [0] Trackback

    Since Google’s purchase of Keyhole, they’ve recently released a program called Google Earth. Its free and will no doubt suck up some of your time.

    So far my favorite place is the Grand Canyon National Park.

    posted on Wednesday, June 29, 2005 9:01:53 AM (Central Standard Time, UTC-06:00)  #    Comments [0] Trackback
     Tuesday, June 28, 2005

    I have been without TestDriven.Net for a while and it’ s been killing me. I can’t explain why the following change works but it works.

  • Copied the version of Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll that was installed with the version of the IDE into the root of “C:\Program Files\TestDriven.NET 1.0” and “C:\Program Files\TestDriven.NET 1.0\QualityTools”
  • Updated the TestDriven.Config AssemblyPath to remove “QualityTools\”.

    Original:

    testrunner Name=”QualityTools” AssemblyPath=“QualityTools\TestDriven.QualityTools.dll” TypeName=”TestDriven.QualityTools.QualityToolsTestRunner”
    targetframework AssemblyName=”Microsoft.VisualStudio.QualityTools.UnitTestFramework”
    testrunner

    Modified:

    testrunner Name=”QualityTools” AssemblyPath=“TestDriven.QualityTools.dll” TypeName=”TestDriven.QualityTools.QualityToolsTestRunner”
    targetframework AssemblyName=”Microsoft.VisualStudio.QualityTools.UnitTestFramework”
    testrunner

  • posted on Tuesday, June 28, 2005 8:51:52 AM (Central Standard Time, UTC-06:00)  #    Comments [0] Trackback
     Friday, June 24, 2005

    It’s always nice to share your tools of the trade with fellow colleagues. I was going to compile my own list when I was passed Scott Hanselman’s. I think I shall pass, he did a great job of covering things.

    Thanks to Mike Becker for sharing it with me.

    posted on Friday, June 24, 2005 8:50:32 AM (Central Standard Time, UTC-06:00)  #    Comments [0] Trackback