<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Object Mentor Blog: DotNet Development Using Parallels Is No Longer Painful</title>
    <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description></description>
    <item>
      <title>DotNet Development Using Parallels Is No Longer Painful</title>
      <description>&lt;p&gt;Because of the travel involved with being an Object Mentor, my main computer is my laptop, a MacBookPro. I have to be able to work wherever I happen to be, whether I&amp;#8217;m at home, at Object Mentor Galactic Headquarters, or in a plane, train, or automobile.  We&amp;#8217;re allowed to buy whatever we want, and we all have independently settled on Macs, running &lt;span class="caps"&gt;OS X&lt;/span&gt;. I&amp;#8217;ve developed on lots of different platforms over the years, but I find that &lt;span class="caps"&gt;OS X&lt;/span&gt; is &lt;b&gt;the&lt;/b&gt; most productive development environment that I&amp;#8217;ve ever used.&lt;/p&gt;


	&lt;p&gt;Besides the travel, we have to be jacks of all trades. One week I&amp;#8217;m programming in Java, the next week I&amp;#8217;m teaching a design class, and the next I&amp;#8217;m developing in .NET. I&amp;#8217;m able to do it all on my Mac, even the .NET work, through the magic of virtualization. I choose to run Parallels so that I&amp;#8217;m able to run Windows as a process under &lt;span class="caps"&gt;OS X&lt;/span&gt;. Windows crashing isn&amp;#8217;t a problem anymore, in that it doesn&amp;#8217;t bring my entire computer down. One process just dies (or I&amp;#8217;m forced to kill it) and I just start it up again, and all the other running processes just keep right on working.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;m a backup fanatic. Besides having bootable backups produced using SuperDuper, I just love the way TimeMachine is built into &lt;span class="caps"&gt;OS X&lt;/span&gt;, allowing me to recover versions of any file on my computer going back months. And it&amp;#8217;s all automatic. TimeMachine just runs in the background, keeping me safe.&lt;/p&gt;


	&lt;p&gt;But the thing about Parallels + TimeMachine that I just hate, is that Parallels stores all of Windows as one big file. A big one. Huge! So whenever I&amp;#8217;m working in Parallels, the one big file is being changed and is going to be backed up again the next time TimeMachine runs. Needless to say this takes up a lot of space on my TimeMachine drive, but it&amp;#8217;s also a damn nuisance. About the time that TimeMachine finishes its backup, it&amp;#8217;s time to start all over again just because of the file size. Yet I dare not back up. I&amp;#8217;m in the camp that believes it&amp;#8217;s not a question of &lt;b&gt;if&lt;/b&gt; your computer will fail, but &lt;b&gt;when&lt;/b&gt;.&lt;/p&gt;


	&lt;p&gt;Because Parallels creates a share with my home directory on the &lt;span class="caps"&gt;OS X&lt;/span&gt; side, I thought about just keeping my source code there. That actually works, until I try to build or do anything with the code other than edit it, and then I get a security violation of some sort.&lt;/p&gt;


	&lt;p&gt;While I&amp;#8217;m developing in Windows, I do frequent commits to git, my new favorite source code control system. It&amp;#8217;s easy to go back to a previous version of any file, something that I can&amp;#8217;t say about ctrl-z in Visual Studio.&lt;/p&gt;


	&lt;p&gt;The light finally lit up over my bald head. Git is a &lt;i&gt;distributed&lt;/i&gt; version control system. Distributed doesn&amp;#8217;t have to be any farther away than the &lt;span class="caps"&gt;OS X&lt;/span&gt; side of my file system.&lt;/p&gt;


	&lt;p&gt;I set up a git repository in &lt;span class="caps"&gt;OS X&lt;/span&gt; for every project that I work on. Then I can push/pull from/to it, just like I would do if I was working on a team project hosted on github. Why don&amp;#8217;t I just get a private github account? This is easier and I don&amp;#8217;t have to be connected to the net to do push/pulls.&lt;/p&gt;


	&lt;p&gt;Here are the details in case anyone wants to try it.&lt;/p&gt;


	&lt;p&gt;In a Terminal window in &lt;span class="caps"&gt;OS X&lt;/span&gt;:&lt;/p&gt;


&lt;code&gt;
    &lt;pre&gt;
        MBP:~ bob$ cd Archive/git
        MBP:git bob$ mkdir PresenterAsStateMachine.git
        MBP:git bob$ cd PresenterAsStateMachine.git
        MBP:PresenterAsStateMachine.git bob$ 

        MBP:PresenterAsStateMachine.git bob$ git --bare init
        Initialized empty Git repository in /Users/bob/Archive/git/PresenterAsStateMachine.git/
        MBP:PresenterAsStateMachine.git bob$
    &lt;/pre&gt;
&lt;/code&gt;

	&lt;p&gt;then, in Windows, using the bash window that comes with git:&lt;/p&gt;


&lt;code&gt;
    &lt;pre&gt;
        $ git init
        Initialized empty Git repository in c:/Documents and Settings/Administrator/My Documents/Visual Studio 2008/Projects/PresenterAsStateMachine/.git/

        $ git add .

        $ git commit -a -m "Initial commit. Ready to add state machine." 
        [master (root-commit) f844369] Initial commit.  Ready to add state machine.
         16 files changed, 795 insertions(+), 0 deletions(-)
         create mode 100644 .gitignore
         create mode 100644 PresenterAsStateMachine.sln
         create mode 100644 PresenterAsStateMachine.suo
         create mode 100644 PresenterAsStateMachine/Form1.Designer.cs
         create mode 100644 PresenterAsStateMachine/Form1.cs
         create mode 100644 PresenterAsStateMachine/Form1.resx
         create mode 100644 PresenterAsStateMachine/LoginPresenter.cs
         create mode 100644 PresenterAsStateMachine/LoginPresenterTest.cs
         create mode 100644 PresenterAsStateMachine/LoginView.cs
         create mode 100644 PresenterAsStateMachine/PresenterAsStateMachine.csproj
         create mode 100644 PresenterAsStateMachine/Program.cs
         create mode 100644 PresenterAsStateMachine/Properties/AssemblyInfo.cs
         create mode 100644 PresenterAsStateMachine/Properties/Resources.Designer.cs
         create mode 100644 PresenterAsStateMachine/Properties/Resources.resx
         create mode 100644 PresenterAsStateMachine/Properties/Settings.Designer.cs
         create mode 100644 PresenterAsStateMachine/Properties/Settings.settings 
    &lt;/pre&gt;
&lt;/code&gt;

	&lt;p&gt;Now I set up the git repository that I had previously created in &lt;span class="caps"&gt;OS X&lt;/span&gt; as the remote:&lt;/p&gt;


&lt;code&gt;
    &lt;pre&gt;
        $ git remote add origin //.psf/Home/Archive/git/PresenterAsStateMachine.git/

        $ git push origin master
        Counting objects: 20, done.
        Compressing objects: 100% (19/19), done.
        Writing objects: 100% (20/20), 12.74 KiB, done.
        Total 20 (delta 1), reused 0 (delta 0)
        Unpacking objects: 100% (20/20), done.
        To //.psf/Home/Archive/git/PresenterAsStateMachine.git/
         * [new branch]      master -&amp;gt; master

    &lt;/pre&gt;
&lt;/code&gt;

	&lt;p&gt;And now push and pull to my heart&amp;#8217;s content, as well as add and commit to my local repository.&lt;/p&gt;


	&lt;p&gt;Now I configure TimeMachine to not back up the Parallels virtual machine directory. It still gets backed up daily by SuperDuper, but they only files that I want to be able to recover versions of is the source code that I&amp;#8217;m working on &amp;#8211; and this technique serves me well for that.&lt;/p&gt;</description>
      <pubDate>Tue, 16 Feb 2010 15:16:00 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:5d549c00-51a6-45cc-930f-3fd9b4088c28</guid>
      <author>Bob Koss</author>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful</link>
      <category>Young Bob's Rants</category>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by ddd</title>
      <description>&lt;p&gt;ffffffffffffffffff&lt;/p&gt;</description>
      <pubDate>Thu, 26 Jan 2012 08:30:00 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:49b671e0-3cad-4415-aa69-e0bf8fa8bd67</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-199244</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by Condos Consult</title>
      <description>&lt;p&gt;help me a lot
&lt;a href="http://www.tenyorkcondounits.com/" rel="nofollow"&gt; Ten York Condos &lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 17 Jan 2012 08:16:49 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:fc1c117a-2f4b-4586-ac1b-7ee55f21615d</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-198359</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by ??? ??</title>
      <description>&lt;p&gt;???&lt;a href="http://www.sugoiugg.jp" rel="nofollow"&gt;? &lt;/a&gt;?????&lt;a href="http://www.sstomo.com/index.php?main_page=index&amp;#38;cPath=580" rel="nofollow"&gt;?? ??&lt;/a&gt;
????????????????????&lt;a href="http://www.kut-mu.jp" rel="nofollow"&gt;?? ??&lt;/a&gt;?(?)?puma?????2??????????PWR-C1.10 Tokyo?V1.10 Kanji?PWR-C1.10 Tokyo?????????????&#8220;??&#8221;????????V1.10 Kanji??Kanji?&#8220;??&#8221;?????&#8220;??&#8221;???????V1.10??????&lt;a href="http://www.hayihiru.jp/categories/1320649260-1992.html" rel="nofollow"&gt;?? ?&lt;/a&gt;????????????????????????????????????????????????????&lt;/p&gt;</description>
      <pubDate>Mon, 16 Jan 2012 01:40:30 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:4dba7961-3187-47bb-9def-f03045a29cb5</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-198148</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by MMA Welding Inverters</title>
      <description>&lt;p&gt;I would like to thank you for the efforts which you have made in writing this article. I am hoping the same best work from you in the future as well. I look forward your next information will be a nice and great it will.&lt;/p&gt;</description>
      <pubDate>Sat, 14 Jan 2012 05:01:27 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:51b3c77b-cdee-4291-a862-2f5a374a2a2e</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-197827</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by iPhone contacts backup</title>
      <description>&lt;p&gt;Yeah. it is no longer painful if you did like that. You can explain more about this topic. I think most of us would like to see what&#8217;t going on next. thx. guys.&lt;/p&gt;</description>
      <pubDate>Sat, 14 Jan 2012 03:16:31 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:2ed86c19-be13-45dc-b172-46ad90758bc9</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-197811</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by condo design</title>
      <description>&lt;p&gt;of course this is something that we should do about. thanks much for sharing this to us.&lt;/p&gt;</description>
      <pubDate>Mon, 09 Jan 2012 00:00:20 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:553986e8-92b6-4acf-896f-c2113737b4f8</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-196101</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by Orya Maqbool Jan Columns</title>
      <description>&lt;p&gt;I&#8217;m a backup fanatic. Besides having bootable backups produced using SuperDuper, I just love the way TimeMachine is built into OS X, allowing me to recover versions of any file on my computer going back months. And it&#8217;s all automatic. TimeMachine just runs in the background, keeping me safe.&lt;/p&gt;</description>
      <pubDate>Sun, 08 Jan 2012 00:52:12 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:8b2a5ff1-af30-4584-894d-4ff2fcd087da</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-196004</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by iPad to Mac Transfer</title>
      <description>&lt;p&gt;On Mac, it works, how about on Windows platform?&lt;/p&gt;</description>
      <pubDate>Thu, 05 Jan 2012 06:35:08 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:ec40ece2-0f0d-4ba1-95b6-2b78fb410b8a</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-194890</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by web design Hertfordshire</title>
      <description>&lt;p&gt;I admire the valuable post you have posted over here in this blog post keep hoping the more good work in future too.&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jan 2012 00:55:49 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:2fd237b9-d5ad-4a8e-ae71-adebaa7d5a53</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-194632</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by Jordan 6</title>
      <description>&lt;p&gt;thanks for your kindness,you do a great help for my job&lt;/p&gt;</description>
      <pubDate>Mon, 02 Jan 2012 02:01:46 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:89ef98a3-bec9-4f3f-87b4-63aa4a5d66a0</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-194114</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by nikewomenheels</title>
      <description>&lt;p&gt;One of the most famous and widely-practiced dance &lt;a href="http://www.nikeheelsdunk.com/" rel="nofollow"&gt;women jordan heels&lt;/a&gt; form is ballet. Almost everyone around the globe knows what ballet is, regardless of whether you are into the art, know someone &lt;a href="http://www.nikeheelsdunk.com/" rel="nofollow"&gt;women jordan heels&lt;/a&gt; practicing ballet, have&amp;nbsp;seen it on television or movies, in musical plays or stage presentations. Ballet is the predominant dance art that has enjoyed global appeal.Of all the dance arts &lt;a href="http://www.jordanheelswomen.net/" rel="nofollow"&gt;Jordan Heels For Women&lt;/a&gt; or forms that are being practiced, aside from the&amp;nbsp;territorial or regional ethnic dance forms- ballet enjoys a reputation a notch above the rest since it is associated with prestige and sophistication.&lt;/p&gt;</description>
      <pubDate>Fri, 30 Dec 2011 02:32:38 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:b18577cd-fa93-4c76-a6e3-152d3bc4835f</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-193643</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by wow enchanting guide </title>
      <description>&lt;p&gt;It is important to know that how to developed using DotNet.&lt;/p&gt;</description>
      <pubDate>Fri, 23 Dec 2011 23:41:49 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:3d66b680-3644-4625-bfbf-54e2001804a0</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-191096</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by nobi</title>
      <description>&lt;p&gt;I implemented on my car&lt;/p&gt;</description>
      <pubDate>Mon, 19 Dec 2011 18:41:18 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:3ab65f9b-bb63-4fee-8852-70f01f6c320f</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-189614</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by child </title>
      <description>&lt;p&gt;most sensible rates for bids through interested customers.&lt;a href="http://www.sharaget.com/c/child" rel="nofollow"&gt;child&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 19 Dec 2011 00:48:25 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:b24f68c9-58f8-4aaf-881a-31b9b0ada1fb</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-189019</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by brochure design</title>
      <description>&lt;p&gt;Brief details given here and described in really good way.&lt;/p&gt;</description>
      <pubDate>Wed, 14 Dec 2011 03:36:09 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:4c6bd2c9-cb22-4f90-825b-e9720d0a94ee</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-186427</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by Dentistes hongrie</title>
      <description>&lt;p&gt;does&amp;#8217;nt work ! 
&lt;a href="http://www.soins-dentaires-etranger.com/forum-implants/blog-dentistes/dentistes-a-l-etranger-et-voyage-dentaire-t20-10.html" rel="nofollow"&gt;voyage dentaire Hongrie&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 13 Dec 2011 14:26:30 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:8a46b6a1-f0c7-412e-b86d-fc28cd5c2fed</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-186060</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by cleansing</title>
      <description>&lt;p&gt;Things started as normal, but since I got started so early I took the time to clean up the west side of the house. Then I managed to rake and clean up a bit more. I pulled some weeds. Much of the &amp;#8230;&lt;/p&gt;</description>
      <pubDate>Sat, 10 Dec 2011 05:42:13 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:96e91345-03be-4347-bb35-e508564ac3d3</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-184908</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by personal statement</title>
      <description>&lt;p&gt;Nice Post. Please visit our website for &lt;a href="http://www.c3admissionadvising.com/" rel="nofollow"&gt; college consulting &lt;/a&gt; and &lt;a href="http://www.myessaypro.com/" rel="nofollow"&gt; essay editing &lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 08 Dec 2011 16:18:53 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:b3298694-b133-4d80-9869-b5fe57474ead</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-184623</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by essay term papers </title>
      <description>&lt;p&gt;This floral websites are amazing. I never visited a website which is more pretty than this listed websites&lt;/p&gt;</description>
      <pubDate>Mon, 28 Nov 2011 07:45:04 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:fa3339bb-d624-43a6-b646-8a45464f4ba1</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-179271</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by Muffazal Lakdawala</title>
      <description>&lt;p&gt;Thanks for this updates on dotnet, still their are many people who are not aware of such point we really need this kind of updates. :)&lt;/p&gt;</description>
      <pubDate>Tue, 22 Nov 2011 07:12:59 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:e9bdd725-e2e8-4ace-8577-2645bf4427d2</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-176541</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by huchunhuafanzhenfu</title>
      <description>&lt;p&gt;&lt;a href="http://www.lvoutletsale2001.com" rel="nofollow"&gt;Louis Vuitton Outlet Store&lt;/a&gt; in contrast to if buying throughout local shops, you can save far more if you discover this suit carrier online. There are tons with internet shopping sites marketing garment plus louis vuitton rolling eole m93553 within lower prices to catch the attention of more buyers. Therefore, employ this opportunity to look for suit hand louis vuitton rolling eole m93553 in deal prices.&lt;a href="http://www.lvoutletsale2001.com" rel="nofollow"&gt;Louis Vuitton Outlet Online &lt;/a&gt; This really is another practical buying avenue to discover affordable louis vuitton coming eole m93553 for agrees with. Visit reputable auction web sites, such as Ebay and also Amazon, to discover louis vuitton rolling eole m93553 that are currently upward for maximum taker. Make sure to make a good bidding price in case however, you find a louis vuitton coming eole m93553 style that will interests you. Keep in mind buyer work by getting the most beneficial and most sensible rates for bids through interested customers.&lt;br&gt;Bids generally start really low so you will surely be able to get a reasonable price for this auctioned suit garment carrier.&lt;/p&gt;</description>
      <pubDate>Fri, 04 Nov 2011 03:16:28 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:c7dab8cf-1cf9-4e9d-b914-3af10115afda</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-168103</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by christian louboutin</title>
      <description>&lt;p&gt;The professional design make you foot more comfortable. Even more tantalizing,this pattern make your legs look as long as you can,it will make you looked more attractive.Moveover,it has reasonable price.If you are a popular woman,do not miss it.&lt;/p&gt;


	&lt;p&gt;Technical details of Christian Louboutin New Simple Botta Boots:&lt;/p&gt;


	&lt;pre&gt;&lt;code&gt;Color: Red
Material: Suede
Round toe
5"(120mm) heel
1"(20mm) platform
Arch: 4 inches approx. - 100 mm approx.&lt;/code&gt;&lt;/pre&gt;


	&lt;p&gt;Fashion, delicate, luxurious Christian louboutins shoes on sale, one of its series is Christian Louboutin Tall Boots, is urbanism collocation. This Christian louboutins shoes design makes people new and refreshing. Red soles shoes is personality, your charm will be wonderful performance.&lt;/p&gt;</description>
      <pubDate>Thu, 03 Nov 2011 06:04:25 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:f91aa4cf-a4f4-457c-bde8-b12bcfb29093</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-167555</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by Harry</title>
      <description>&lt;p&gt;Thank you for the write-up. Truly, it is worth reading. It really captures interest.
&lt;a href="http://www.squidoo.com/best-ips-monitor-for-gaming-2011" rel="nofollow"&gt;Best IPS Monitor For Gaming 2011&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 01 Nov 2011 08:21:44 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:bf761f7b-4741-46b8-87b5-3e181b5c8694</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-166722</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by Road to Hana Tour</title>
      <description>&lt;p&gt;Seriously, I appreciate you for this. Terrific to understand that men and women are now being helpful and going over throughout that way. I would love to view a many more like this quickly.&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.tourmaui.com/hanaroad.html" rel="nofollow"&gt;Road to Hana Tour&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 20 Oct 2011 12:28:01 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:d4ba84e1-798f-4d20-9f24-de6896a17e0d</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-160221</link>
    </item>
    <item>
      <title>"DotNet Development Using Parallels Is No Longer Painful" by Edmonton Real Estate</title>
      <description>&lt;p&gt;I thought it was going to be some boring old site but I&amp;#8217;m glad I visited I will post a link to this site on my blog! I am sure my visitors will find that very useful!&lt;/p&gt;


	&lt;p&gt;&lt;a &gt;Edmonton Real Estate&lt;/a rel="nofollow"&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 19 Oct 2011 11:50:05 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:5cb842b4-825a-467a-befa-9463ee8ed9c8</guid>
      <link>http://blog.objectmentor.com/articles/2010/02/16/dotnet-development-using-parallels-is-no-longer-painful#comment-159791</link>
    </item>
  </channel>
</rss>

