<?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>Extreme Engineers</title>
	<atom:link href="http://extremeengineers.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://extremeengineers.net</link>
	<description>A Technical Consultant&#039;s Blog</description>
	<lastBuildDate>Thu, 23 Feb 2012 13:47:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Error: A timeout occurred while waiting for memory resources to execute the query in resource pool &#8216;default&#8217;. Rerun the query.</title>
		<link>http://extremeengineers.net/?p=128</link>
		<comments>http://extremeengineers.net/?p=128#comments</comments>
		<pubDate>Thu, 23 Feb 2012 13:45:24 +0000</pubDate>
		<dc:creator>Mayank</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">http://extremeengineers.net/?p=128</guid>
		<description><![CDATA[At times, when performing heavy transactions on SQL Server you might come across this error A timeout occurred while waiting for memory resources to execute the query in resource pool &#8216;default&#8217;. Rerun the query. &#160; A workaround that I have found useful has been to re-run your query after the following commands DBCC FREESYSTEMCACHE(&#8216;All&#8217;) DBCC [...]]]></description>
			<content:encoded><![CDATA[<p>At times, when performing heavy transactions on SQL Server you might come across this error</p>
<blockquote><p>A timeout occurred while waiting for memory resources to execute the query in resource pool &#8216;default&#8217;. Rerun the query.</p>
</blockquote>
<p>&#160;</p>
<p><span id="more-128"></span>
<p>A workaround that I have found useful has been to re-run your query after the following commands</p>
<ol>
<li>DBCC FREESYSTEMCACHE(&#8216;All&#8217;)</li>
<li>DBCC FREESESSIONCACHE</li>
<li>DBCC FREEPROCCACHE</li>
</ol>
<p>This frees up the buffer cache in SQL Server and gives your query the much needed space to execute.</p>
<p>In C# You could check if the exception is raised due to lack of Memory on SQL Server in the catch block and execute the following statement</p>
<pre class="brush: c-sharp; toolbar: false">using (SqlCommand cmd = new SqlCommand(&quot;DBCC FREESYSTEMCACHE('All') DBCC FREESESSIONCACHE DBCC FREEPROCCACHE &quot;,con))
{
  cmd.ExecuteNonQuery();
}</pre>
<p>&#160;</p>
<p>You could then use a “Goto” statement to go back to your original query.</p>
<p>Do let me know if you have a better way of handling this.</p>
]]></content:encoded>
			<wfw:commentRss>http://extremeengineers.net/?feed=rss2&#038;p=128</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote Desktop Connection Error</title>
		<link>http://extremeengineers.net/?p=126</link>
		<comments>http://extremeengineers.net/?p=126#comments</comments>
		<pubDate>Mon, 20 Feb 2012 09:05:30 +0000</pubDate>
		<dc:creator>Mayank</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://extremeengineers.net/?p=126</guid>
		<description><![CDATA[At times you might come across this error message while connecting to your server’s via RDP. The connection cannot be completed because the remote computer that was reached is not the one you specified. This could be caused by an outdated entry in the DNS cache. Try using the IP address of the computer instead [...]]]></description>
			<content:encoded><![CDATA[<p>At times you might come across this error message while connecting to your server’s via RDP.</p>
<blockquote><p><i>The connection cannot be completed because the remote computer that was reached is not the one you specified. This could be caused by an outdated entry in the DNS cache. Try using the IP address of the computer instead of the name.</i></p>
</blockquote>
<p> 
<p>The solution for the issue is simple.</p>
<ol>
<li>Navigate to Start &gt; Administrative Tools &gt; Remote Desktop Services &gt; Remote Desktop Session Host Configuration. </li>
<li>With RD Session Host Configuration selected view under Connections.      </li>
<li>Right click RDP Listener with connection type Microsoft RDP 6.1 and choose Properties.      </li>
<li>In general tab of properties dialog box under Security, select RDP Security Layer as the </li>
<li>Security Layer.      </li>
<li>Click OK. </li>
</ol>
<p>You don’t need a restart for this setting to take effect.</p>
]]></content:encoded>
			<wfw:commentRss>http://extremeengineers.net/?feed=rss2&#038;p=126</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Change the URL of the SharePoint 2010 Central Administration</title>
		<link>http://extremeengineers.net/?p=111</link>
		<comments>http://extremeengineers.net/?p=111#comments</comments>
		<pubDate>Fri, 10 Feb 2012 08:34:47 +0000</pubDate>
		<dc:creator>Mayank</dc:creator>
				<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Central Admin]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://extremeengineers.net/?p=111</guid>
		<description><![CDATA[Well this is a very common question all over the internet. Changing the URL of a SharePoint web application is quite simple, and just involves removing and re-extending the application from IIS web application after changing the Binding of the IIS Web Application. But the same methodology cannot be applied to Central Administration. Lets see [...]]]></description>
			<content:encoded><![CDATA[<p>Well this is a very common question all over the internet. Changing the URL of a SharePoint web application is quite simple, and just involves removing and re-extending the application from IIS web application after changing the Binding of the IIS Web Application. But the same methodology cannot be applied to Central Administration. Lets see how to change the URL of the central administration to differ from the server FQDN.</p>
<p><span id="more-111"></span>
<p>In order to change the URL of the Central Administration follow the steps below.</p>
<ol>
<li>Create an entry of the new Central Administration URL in the Domain Name Server. For this example we will configure the Central Administration to open on http://sharepointconfig.mydomain.com      <br /> <br />
<blockquote>
<p><font style="background-color: #ffff00"></font><strong><a href="http://extremeengineers.net/?p=99" target="_blank">Note : For details on how to add a DNS Entry refer to my earlier post Creating a New DNS Entry : Configuring Application URL</a></strong><strong><font style="background-color: #ffff00"></font></strong></p>
</blockquote>
</li>
<li>In the Central Administration Site go to System Settings&gt; Configure alternate access mappings.<a href="http://extremeengineers.net/wp-content/uploads/2012/02/image5.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px auto 5px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://extremeengineers.net/wp-content/uploads/2012/02/image_thumb5.png" width="533" height="172" /></a> </li>
<li>Here from the Lists of URL(s), click on the current URL of the Central Administrator. </li>
<li>In the “Edit Internal URL” Form change the value of the “URL protocol, host and port” to the new URL that you’d like to configure<a href="http://extremeengineers.net/wp-content/uploads/2012/02/image6.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px auto 10px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://extremeengineers.net/wp-content/uploads/2012/02/image_thumb6.png" width="551" height="136" /></a>. </li>
<li>Press OK </li>
<li>Next Fire up the IIS Manager and select the application running your SharePoint Central Administration Its generally named “SharePoint Central Administration v4”. Click ok Binding as illustrated below .<a href="http://extremeengineers.net/wp-content/uploads/2012/02/image7.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px auto 10px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://extremeengineers.net/wp-content/uploads/2012/02/image_thumb7.png" width="560" height="354" /></a> </li>
<li>In the Site Binding window that opens up, click on edit. Enter the details as illustrated.<a href="http://extremeengineers.net/wp-content/uploads/2012/02/image4.png"><img style="background-image: none; border-right-width: 0px; margin: 0px auto 10px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://extremeengineers.net/wp-content/uploads/2012/02/image_thumb4.png" width="381" height="208" /></a> </li>
<li>Click Ok and do a IISRESET. </li>
</ol>
<p>That is all it takes, We have successfully configured the central admin to work at http://sharepointconfig.mydomain.com. Congratulations <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://extremeengineers.net/wp-content/uploads/2012/02/wlEmoticon-smile.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://extremeengineers.net/?feed=rss2&#038;p=111</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a New DNS Entry : Configuring Application URL</title>
		<link>http://extremeengineers.net/?p=99</link>
		<comments>http://extremeengineers.net/?p=99#comments</comments>
		<pubDate>Fri, 10 Feb 2012 04:49:43 +0000</pubDate>
		<dc:creator>Mayank</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://extremeengineers.net/?p=99</guid>
		<description><![CDATA[If you are working on Microsoft Web based Solutions such as SharePoint, Dynamics CRM, etc. you would know that on installation these products take up the server FQDN + Service Port as their primary access URL. Wouldn&#8217;t it be good if we could have meaningful access URL(s) for each service (CRM, SharePoint) even if they [...]]]></description>
			<content:encoded><![CDATA[<p>If you are working on Microsoft Web based Solutions such as SharePoint, Dynamics CRM, etc. you would know that on installation these products take up the server FQDN + Service Port as their primary access URL. Wouldn&#8217;t it be good if we could have meaningful access URL(s) for each service (CRM, SharePoint) even if they are running on the same physical or virtual server. </p>
<p><span id="more-99"></span>
<p>For that we need to create a alias for the server running the service in the DNS. You need to have the access to the DNS Server as an Administrator to be able to do that. </p>
<p>Lets take a look at how can that be done.</p>
<ol>
<li>Fire up the DNS manager, and expand the node of the DNS Server you want to add the entry to. </li>
<li>Next Expand the “Forward Lookup Zone” node . </li>
<li>Right click on the node with the name of your Domain. </li>
<li>Select “New Host (A or AAAA)” option. </li>
<li>Enter the detais as illustrated below<a href="http://extremeengineers.net/wp-content/uploads/2012/02/image.png"><img style="background-image: none; border-right-width: 0px; margin: 0px auto 5px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://extremeengineers.net/wp-content/uploads/2012/02/image_thumb.png" width="277" height="279" /></a>
<ol>
<li>Name : Enter the new name of the URL, for Eg, if you want your service to be accessed via “MyService.mydomain.com”, then enter “MyService” as the Name. </li>
<li>IP address : Enter the IP Address of the Server running the service. </li>
</ol>
</li>
<li>Click on Add Host. </li>
<li>Next You need to add a SPN of this new URL as a HOST. For that run the following Dos Command.
<pre class="brush: c-sharp; toolbar: false">setspn -s HOST/newurl.mydomain.com</pre>
</li>
</ol>
<p>That&#8217;s all there is to it, we have set up a new URL for our application, now all we need to do is configure our application to listen to requests with the address in the HOST-HEADER and respond.</p>
]]></content:encoded>
			<wfw:commentRss>http://extremeengineers.net/?feed=rss2&#038;p=99</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jargons of the Utterly Confused</title>
		<link>http://extremeengineers.net/?p=93</link>
		<comments>http://extremeengineers.net/?p=93#comments</comments>
		<pubDate>Thu, 09 Feb 2012 05:48:35 +0000</pubDate>
		<dc:creator>Mayank</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://extremeengineers.net/?p=93</guid>
		<description><![CDATA[In this post I am going to list all the Jargons for the reference of the utterly confused, cos once even I was in that stage trying to grasp the meaning of these terms. I know these wouldn&#8217;t be much for the core techie people but this would be a great help for the people [...]]]></description>
			<content:encoded><![CDATA[<p>In this post I am going to list all the Jargons for the reference of the utterly confused, cos once even I was in that stage trying to grasp the meaning of these terms. I know these wouldn&#8217;t be much for the core techie people but this would be a great help for the people from the ERP background moving into the technical domain. And I’ll keep on adding more, as and when I remember or come across more of them</p>
<p>So here it is</p>
<ol>
<li><strong>FQDN</strong> : Stands for “Fully Qualified Domain Name”. The more complex and complete definition can be found at <a href="http://en.wikipedia.org/wiki/Fully_qualified_domain_name" target="_blank">Wikipedia</a>. In general terms of Development Environment it is the Name of your computer including the Domain Name. For Eg, if you have a computer caller “Comp1” or a server called “Server1” which are part of a domain called “mydomain.com”, then the FQDN for that computer would be “Comp1.mydomain.com” and that of the server would be “Server1.mydomain.com”. </li>
<li><strong>SPN</strong> : Stands for Service Principal Names. SPNs was implemented in Kerberos authenticated environment as a security measure to avoid spoofing of network services in a domain. You can find a good read on this topic on <a href="http://my.safaribooksonline.com/book/networking/microsoft-dotnet/0321228359/network-security/ch60" target="_blank">Safari Books</a> and on <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms677949(v=vs.85).aspx" target="_blank">MSDN</a>. </li>
<li><strong>Kerberos</strong> : This is a domain based Network Authentication Protocol. It is used for mutual Identification of Client and Server applications based on a cryptographic token keys. If you’d like to read more about Kerberos you could do that on <a href="http://en.wikipedia.org/wiki/Kerberos_(protocol)" target="_blank">Wikipedia</a> and directly from its designers at <a href="http://web.mit.edu/kerberos/" target="_blank">MIT</a> </li>
<li><strong>Daemon</strong> : Another name of Background Services, definitely sounds like a primitive nomenclature. Read more about it at <a href="http://en.wikipedia.org/wiki/Daemon_(computing)" target="_blank">Wikipedia</a>. </li>
<li><strong>Host Headers</strong> : IIS allows you to assign any number of sites to a single IP address and distinguish them by using host headers. When IIS receives a request for a Web page, it looks at the information sent in by the browser. If the browser is HTTP 1.1 compliant (Internet Explorer 3.x and later, or Netscape Navigator 3.x and later), the HTTP header contains the actual domain name requested. IIS uses this to determine which web application should answer the request. Read More about Host Header at <a href="http://www.it-notebook.org/iis/article/understanding_host_headers.htm" target="_blank">IT-Notebook.org</a>. </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://extremeengineers.net/?feed=rss2&#038;p=93</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure the URL of your Dynamics CRM deployment</title>
		<link>http://extremeengineers.net/?p=73</link>
		<comments>http://extremeengineers.net/?p=73#comments</comments>
		<pubDate>Tue, 31 Jan 2012 17:40:27 +0000</pubDate>
		<dc:creator>Mayank</dc:creator>
				<category><![CDATA[Dynamics CRM]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[CRM 2011]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://extremeengineers.net/?p=73</guid>
		<description><![CDATA[While deploying your Dynamics CRM, you might want to give it a different URL than the “Computer Name” of the server, even if you are not planning a Internet Facing Deployment. Well it is always good to have an deployment that goes by the URL of crm.yourdomain.com rather than something like appserver.yourdomain.com. For this you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://extremeengineers.net/wp-content/uploads/2012/01/image.png"><img style="background-image: none; border-right-width: 0px; margin: 0px 10px 10px 0px; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" align="left" src="http://extremeengineers.net/wp-content/uploads/2012/01/image_thumb.png" width="177" height="95" /></a>While deploying your Dynamics CRM, you might want to give it a different URL than the “Computer Name” of the server, even if you are not planning a Internet Facing Deployment. </p>
<p>Well it is always good to have an deployment that goes by the URL of <strong>crm.yourdomain.com</strong> rather than something like <strong>appserver.yourdomain.com</strong>. For this you don’t really have to change the “Computer Name” of your Server. Lets see how can we configure such an URL for our Dynamics CRM instance.</p>
<p><span id="more-73"></span>
<p>Well, first thing we need to prepare the Domain Name that we want to configure for our CRM instance. For that you need to take up the following steps</p>
<ol>
<li>You need to go to the DNS Management Console on your DNS Server and create an entry of the New Domain against the IP address of the Server. <a href="http://extremeengineers.net/wp-content/uploads/2012/01/image1.png"><img style="background-image: none; border-right-width: 0px; margin: 5px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://extremeengineers.net/wp-content/uploads/2012/01/image_thumb1.png" width="244" height="42" /></a> </li>
<li>Next you need to add 2 Service Principle Names (SPN) for this Domains.
<ol>
<li>Create an SPN for HOST/CRM.YOURDOMAIN.COM using the following Dos command :          <br />setspn –s HOST/CRM.YOURDOMAIN.COM </li>
<li>Next create an SPN for the login that your CRM Services are going to be configured with :          <br />setspn –s HTTP/CRM.YMSLI.COM &lt;yourdomain&gt;\&lt;crmserviceaccount&gt; </li>
</ol>
</li>
</ol>
<p>Now our URL is ready to be configured. Lets configure the Dynamics CRM instance to use the new URL.</p>
<ol>
<li>Next Step is to go to the Deployment Manager, Right click on the Microsoft Dynamics CRM Node and select properties. </li>
<li>Now on the “Microsoft Dynamics CRM Properties” window, goto the “Web Address” tab and change all the URL(s) to your new URL which in our case is crm.yourdomain.com:80.<a href="http://extremeengineers.net/wp-content/uploads/2012/01/image2.png"><img style="background-image: none; border-right-width: 0px; margin: 0px auto 10px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://extremeengineers.net/wp-content/uploads/2012/01/image_thumb2.png" width="318" height="347" /></a> </li>
<li>Next you need to configure the IIS binding for the “Microsoft Dynamics CRM” web application. <a href="http://extremeengineers.net/wp-content/uploads/2012/01/image3.png"><img style="background-image: none; border-right-width: 0px; margin: 0px auto 10px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://extremeengineers.net/wp-content/uploads/2012/01/image_thumb3.png" width="371" height="204" /></a> </li>
<li>Next a very important thing, you need to configure the change for the Help Catalogue URL in certain builds as there was a bug where the help used to keep pointing at the old “Computer Name” URL even after you change the binding.      <br />For this you need to open PowerShell and run the following commands on the CRM Server:&#160;&#160;
<ol>
<li>Add-PSSnapin Microsoft.Crm.PowerShell </li>
<li>$web = Get-CrmSetting WebAddressSettings </li>
<li>$web.HelpServerUrl = &quot;&quot; </li>
<li>Set-CrmSetting $web </li>
</ol>
</li>
<li>Next do a IISREST. </li>
</ol>
<p>And that is all you need to do to get a nice memory-friendly (Human Memory is what I mean)&#160; URL for your Dynamics CRM Instance.</p>
<p> If you find this post useful do leave your feedback in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://extremeengineers.net/?feed=rss2&#038;p=73</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to send CTRL+ALT+DEL via RDP</title>
		<link>http://extremeengineers.net/?p=33</link>
		<comments>http://extremeengineers.net/?p=33#comments</comments>
		<pubDate>Fri, 20 Jan 2012 07:33:16 +0000</pubDate>
		<dc:creator>Mayank</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Remote Desktop]]></category>

		<guid isPermaLink="false">http://extremeengineers.net/?p=33</guid>
		<description><![CDATA[The magical key combination for all Microsoft Operating Systems, the infamous CTRL+ALT+DEL, is a very common key stroke in administering windows boxes. Today I fell into a paradox where I wanted to send CTRL+ALT+DEL to my RDP session, and my local machine would keep locking up whenever I pressed the combination. A bit of Googling [...]]]></description>
			<content:encoded><![CDATA[<p>The magical key combination for all Microsoft Operating Systems, the infamous CTRL+ALT+DEL, is a very common key stroke in administering windows boxes.</p>
<p>Today I fell into a paradox where I wanted to send CTRL+ALT+DEL to my RDP session, and my local machine would keep locking up whenever I pressed the combination.</p>
<p>A bit of Googling around got me to the solution, for Remote Desktop the Combination is</p>
<p>CTRL+ALT+END</p>
<p>Well who, with the most prominent of common sense could have thought of that. Let me know if you are the one ?</p>
]]></content:encoded>
			<wfw:commentRss>http://extremeengineers.net/?feed=rss2&#038;p=33</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Extreme Engineers Refurbished</title>
		<link>http://extremeengineers.net/?p=1</link>
		<comments>http://extremeengineers.net/?p=1#comments</comments>
		<pubDate>Thu, 05 Jan 2012 18:05:13 +0000</pubDate>
		<dc:creator>Mayank</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://extremeengineers.net/?p=1</guid>
		<description><![CDATA[Dear Friends, Due to some unprecedented issues with my blogging software, my earlier blog was rendered in-accessible to me. That was the reason I was not able to post anything new either. I was trying to gain access to the admin site of my blog for a long time, but failed. Thus I had no [...]]]></description>
			<content:encoded><![CDATA[<p>Dear Friends,</p>
<p>Due to some unprecedented issues with my blogging software, my earlier blog was rendered in-accessible to me. That was the reason I was not able to post anything new either. I was trying to gain access to the admin site of my blog for a long time, but failed. Thus I had no choice but to refurbish my blog and re-setup everything from scratch. I have changed my blogging software to WordPress from earlier Joomla CMS.</p>
<p>I will be trying to get back as much of my articles from the earlier blog as I can and hopefully things will remain smooth for some time now, and I will be sharing stuffs more often.</p>
]]></content:encoded>
			<wfw:commentRss>http://extremeengineers.net/?feed=rss2&#038;p=1</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
