<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ehsanul Haque &#187; Run</title>
	<atom:link href="http://ehsan.bdwebwork.com/tag/run/feed/" rel="self" type="application/rss+xml" />
	<link>http://ehsan.bdwebwork.com</link>
	<description>Welcome to my personal site &#38; blog</description>
	<lastBuildDate>Wed, 07 Jul 2010 13:14:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Cannot start Microsoft Office Outlook. Cannot open the Outlook window.</title>
		<link>http://ehsan.bdwebwork.com/2009/11/12/cannot-start-microsoft-office-outlook-cannot-open-the-outlook-window/</link>
		<comments>http://ehsan.bdwebwork.com/2009/11/12/cannot-start-microsoft-office-outlook-cannot-open-the-outlook-window/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 18:12:08 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[cannot]]></category>
		<category><![CDATA[Command]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[exe]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[resetnavpane]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[start]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://ehsan.bdwebwork.com/?p=345</guid>
		<description><![CDATA[Are you getting the error &#8220;Cannot start Microsoft Office Outlook. Cannot open the Outlook window.&#8221; when you try to open the MS Office Outlook? If you are then the quick and easy fix it to run the following command from &#8230; <a href="http://ehsan.bdwebwork.com/2009/11/12/cannot-start-microsoft-office-outlook-cannot-open-the-outlook-window/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Are you getting the error &#8220;Cannot start Microsoft Office Outlook. Cannot open the Outlook window.&#8221; when you try to open the MS Office Outlook? If you are then the quick and easy fix it to run the following command from Start > Run:</p>
<pre lang="winbatch" line="1">
Outlook.exe /resetnavpane
</pre>
<p>This command should fix the problem with your MS Office Outlook. It worked for me on Windows XP SP2.</p>
]]></content:encoded>
			<wfw:commentRss>http://ehsan.bdwebwork.com/2009/11/12/cannot-start-microsoft-office-outlook-cannot-open-the-outlook-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails :: Installation and Startup</title>
		<link>http://ehsan.bdwebwork.com/2006/09/18/ruby-on-rails-installation-and-startup/</link>
		<comments>http://ehsan.bdwebwork.com/2006/09/18/ruby-on-rails-installation-and-startup/#comments</comments>
		<pubDate>Mon, 18 Sep 2006 06:12:43 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[Playground]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[Command]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Startup]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://ehsan.bdwebwork.com/?p=40</guid>
		<description><![CDATA[Windows Installation steps for Ruby on RailsYou will have to download Ruby installer &#8211; click here &#8211; and run the installer. Now next step is to install Rails and to do that go to Command Prompt [Start &#62; Run &#62; &#8230; <a href="http://ehsan.bdwebwork.com/2006/09/18/ruby-on-rails-installation-and-startup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: x-small;"><span style="font-weight: bold;">Windows Installation steps for Ruby on Rails</span></span><br style="font-weight: bold;" /><br style="font-weight: bold;" />You will have to download Ruby installer &#8211; <a title="Ruby for Windows" href="http://rubyforge.org/frs/?group_id=167" target="_blank">click here</a> &#8211; and run the installer.</p>
<p>Now next step is to install Rails and to do that go to Command Prompt [Start &gt; Run &gt; cmd]. Run the following command:</p>
<p><span style="background-color: #f0f0f0; color: #00ac00;">gem install rails -remote</span></p>
<p>This command will look for appropriate version of Rails for the Ruby, download it for installation. This installation process will give some options, select <span style="font-weight: bold;">Y</span> for all the givens.</p>
<p><span style="font-size: x-small;"><span style="font-weight: bold;">Setup an empty Rails application</span></span></p>
<p>To setup a blank/empty Rails application open command prompt and navigate to your project directory:</p>
<p><span style="background-color: #eaeaea; color: #00ac00;">cd D:/projects/ror/</span></p>
<p>Now let’s say we want to name our first Ruby on Rails web application “<span style="font-weight: bold;">fror</span>” [First Ruby on Rails]. To do so run the following command:</p>
<p><span style="background-color: #eaeaea; color: #00ac00;">rails fror</span></p>
<p>This will create a directory called “fror” containing complete directory tree of folders and files for the Rails application.</p>
<p><span style="font-weight: bold; font-size: x-small;">Test our first Rails application</span></p>
<p>From the command prompt navigate into the directory that we have just created “fror” and type the following command to start built-in web server, WEBrick:</p>
<p><span style="background-color: #eaeaea; color: #00ac00;">ruby script/server</span></p>
<p>Now try to run the URL <a title="Try Loclahost" href="http://localhost:3000/" target="_blank"><span style="font-weight: bold;">http : // localhost : 3000/</span></a> and this should give you a message like “<span style="font-weight: bold; font-style: italic; font-size: small;">Welcome aboard</span>”.</p>
]]></content:encoded>
			<wfw:commentRss>http://ehsan.bdwebwork.com/2006/09/18/ruby-on-rails-installation-and-startup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
