<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>4 Rapid Development</title>
	
	<link>http://4rapiddev.com</link>
	<description>Accumulate and share your experience</description>
	<lastBuildDate>Thu, 09 May 2013 05:06:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/4RapidDevelopment" /><feedburner:info uri="4rapiddevelopment" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>4RapidDevelopment</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Check Free Disk Space On Linux</title>
		<link>http://feedproxy.google.com/~r/4RapidDevelopment/~3/gBRivU9GVd0/</link>
		<comments>http://4rapiddev.com/linux/check-free-disk-space-on-linux/#comments</comments>
		<pubDate>Thu, 11 Oct 2012 21:59:01 +0000</pubDate>
		<dc:creator>Hoan Huynh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Amazon EC2]]></category>

		<guid isPermaLink="false">http://4rapiddev.com/?p=4581</guid>
		<description><![CDATA[To check free disk space on Linux system, we can use df command as below. Note that, this command is executed on Amazon EC2 environment. <a href="http://4rapiddev.com/linux/check-free-disk-space-on-linux/">Continue reading <span class="meta-nav">&#8594;</span></a><p><a href="http://4rapiddev.com/linux/check-free-disk-space-on-linux/">Check Free Disk Space On Linux</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
]]></description>
				<content:encoded><![CDATA[<p>To check free disk space on Linux system, we can use <strong>df </strong>command as below. Note that, this command is executed on Amazon EC2 environment.</p>
<h2>Examples &#8211; Check free disk space on Linux</h2>
<h3>df -k</h3>

<div class="wp_syntax"><table><tr><td class="code"><pre class="text" style="font-family:monospace;">[ec2-user@ip-10-130-166-147 ~]$ df -k
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/xvda1             8256952   6972096   1200984  86% /
tmpfs                  3559608         0   3559608   0% /dev/shm</pre></td></tr></table></div>

<h3>df -h</h3>

<div class="wp_syntax"><table><tr><td class="code"><pre class="text" style="font-family:monospace;">[ec2-user@ip-10-130-166-147 ~]$ df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/xvda1            7.9G  6.7G  1.2G  86% /
tmpfs                 3.4G     0  3.4G   0% /dev/shm</pre></td></tr></table></div>

<p><a href="http://4rapiddev.com/linux/check-free-disk-space-on-linux/">Check Free Disk Space On Linux</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
<img src="http://feeds.feedburner.com/~r/4RapidDevelopment/~4/gBRivU9GVd0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://4rapiddev.com/linux/check-free-disk-space-on-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://4rapiddev.com/linux/check-free-disk-space-on-linux/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=check-free-disk-space-on-linux</feedburner:origLink></item>
		<item>
		<title>Count Total Rows For All Tables In MS SQL Server</title>
		<link>http://feedproxy.google.com/~r/4RapidDevelopment/~3/0kLMMXWkfR0/</link>
		<comments>http://4rapiddev.com/sql-server/count-total-rows-for-all-tables-in-ms-sql-server/#comments</comments>
		<pubDate>Thu, 27 Sep 2012 21:31:44 +0000</pubDate>
		<dc:creator>Hoan Huynh</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[sysindexes]]></category>
		<category><![CDATA[sysobjects]]></category>
		<category><![CDATA[Umbraco]]></category>

		<guid isPermaLink="false">http://4rapiddev.com/?p=4570</guid>
		<description><![CDATA[This SQL script below will count and display list of table name along with total rows for all tables in a specified MS SQL Server Database. <a href="http://4rapiddev.com/sql-server/count-total-rows-for-all-tables-in-ms-sql-server/">Continue reading <span class="meta-nav">&#8594;</span></a><p><a href="http://4rapiddev.com/sql-server/count-total-rows-for-all-tables-in-ms-sql-server/">Count Total Rows For All Tables In MS SQL Server</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
]]></description>
				<content:encoded><![CDATA[<p>This SQL script below will count and display list of table name along with total rows for all tables in a specified <strong>MS SQL Server Database.</strong></p>
<p>Instead of using:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #993333; font-weight: bold;">COUNT</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">*</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #993333; font-weight: bold;">TABLE_NAME</span></pre></td></tr></table></div>

<p>&#8230; for each table in the database, we can query the system tables as below:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> sysobjects<span style="color: #66cc66;">.</span>Name <span style="color: #993333; font-weight: bold;">AS</span> TableName<span style="color: #66cc66;">,</span> sysindexes<span style="color: #66cc66;">.</span><span style="color: #993333; font-weight: bold;">ROWS</span> <span style="color: #993333; font-weight: bold;">AS</span> TotalRows
<span style="color: #993333; font-weight: bold;">FROM</span> 	sysobjects 
		<span style="color: #993333; font-weight: bold;">INNER</span> <span style="color: #993333; font-weight: bold;">JOIN</span> sysindexes <span style="color: #993333; font-weight: bold;">ON</span> sysobjects<span style="color: #66cc66;">.</span>id <span style="color: #66cc66;">=</span> sysindexes<span style="color: #66cc66;">.</span>id
<span style="color: #993333; font-weight: bold;">WHERE</span> <span style="color: #993333; font-weight: bold;">TYPE</span> <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'U'</span> <span style="color: #993333; font-weight: bold;">AND</span> sysindexes<span style="color: #66cc66;">.</span>IndId <span style="color: #66cc66;">&lt;</span> <span style="color: #cc66cc;">2</span>
<span style="color: #993333; font-weight: bold;">ORDER</span> <span style="color: #993333; font-weight: bold;">BY</span> sysindexes<span style="color: #66cc66;">.</span><span style="color: #993333; font-weight: bold;">ROWS</span> <span style="color: #993333; font-weight: bold;">DESC</span></pre></td></tr></table></div>

<h3>An example from Umbraco database</h3>
<div id="attachment_4571" class="wp-caption aligncenter" style="width: 690px"><a href="http://cdn.4rapiddev.com/wp-content/uploads/2012/09/Example-Total-Rows-For-All-Tables-In-MS-SQL-Server-Database.jpg" rel="lightbox[4570]" title="Example Total Rows For All Tables In MS SQL Server Database"><img src="http://cdn.4rapiddev.com/wp-content/uploads/2012/09/Example-Total-Rows-For-All-Tables-In-MS-SQL-Server-Database.jpg" alt="Example Total Rows For All Tables In MS SQL Server Database" title="Example Total Rows For All Tables In MS SQL Server Database" width="680" height="459" class="size-full wp-image-4571" /></a><p class="wp-caption-text">Example Total Rows For All Tables In MS SQL Server Database</p></div>
<p><a href="http://4rapiddev.com/sql-server/count-total-rows-for-all-tables-in-ms-sql-server/">Count Total Rows For All Tables In MS SQL Server</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
<img src="http://feeds.feedburner.com/~r/4RapidDevelopment/~4/0kLMMXWkfR0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://4rapiddev.com/sql-server/count-total-rows-for-all-tables-in-ms-sql-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://4rapiddev.com/sql-server/count-total-rows-for-all-tables-in-ms-sql-server/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=count-total-rows-for-all-tables-in-ms-sql-server</feedburner:origLink></item>
		<item>
		<title>Magnanimous Magento – Why it is so popular!</title>
		<link>http://feedproxy.google.com/~r/4RapidDevelopment/~3/tAJvQbLn4x0/</link>
		<comments>http://4rapiddev.com/internet/magnanimous-magento-why-it-is-so-popular/#comments</comments>
		<pubDate>Tue, 21 Aug 2012 05:30:50 +0000</pubDate>
		<dc:creator>Daliah</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[ecommerce web application]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[viteb]]></category>

		<guid isPermaLink="false">http://4rapiddev.com/?p=4567</guid>
		<description><![CDATA[Magento is one of the most popular Shopping carts today. This is an article that describes what Magento is. It also provides details regarding the origin of Magento. Finally the article brings to focus the many advantages of using Magento. <a href="http://4rapiddev.com/internet/magnanimous-magento-why-it-is-so-popular/">Continue reading <span class="meta-nav">&#8594;</span></a><p><a href="http://4rapiddev.com/internet/magnanimous-magento-why-it-is-so-popular/">Magnanimous Magento – Why it is so popular!</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
]]></description>
				<content:encoded><![CDATA[<p><strong>Magento </strong>is an <strong>open source ecommerce web application</strong>. It was launched on March 31, 2008. Magento Inc. (erstwhile Varien) developed Magento with the help of programmers from the open source community (rights retained by Magento Inc.). The Zend Framework was used to build it. </p>
<p>Years after its development, it still continues to be the favourite ecommerce solution for customers globally. Many top entrepreneurs have picked Magento as their choice for an ecommerce website owing to its multiple advantages.</p>
<p>Let us see why the Magento Application is so popular.</p>
<h2>Updates</h2>
<p>Magento is one of those web applications that thoroughly believe in constant Upgradation. The parent company behind Magento regularly brings about updates to this application, eliminating previous bugs and malfunctions. Other eCommerce web applications are rather out-dated owing to a lack of regular maintenance updates. These updates that are based on the latest technologies help in giving the user a better experience.</p>
<h2>Add-on Modules</h2>
<p>Magento offers many add on modules that help in offering the end user multiple benefits. For example, with Magento you can offer discount couples, editing rates, product categories, sorting etc. It also enables you to see many reports that can help you identify and understand what the customer expects from you. You can get abandoned shopping cart reports and also details of SEO urls within your site.</p>
<p>It also enables you to sell the same product at different rates to a various set of customers.</p>
<h2>Editing</h2>
<p>Although some people maintain that Magento is more meant for a developer than a shop owner, it is actually quite the contrary, because Magento is extremely easy to edit. Magento is built to measure from 1 to a million, avoiding common downsides for developers. Code re-uses, maintainability, debugging, support, etc. are all huge and mostly expensive difficulties that eCommerce solutions providers must tackle. Magento makes them all a cakewalk.</p>
<h2>Turnaround Time</h2>
<p>If you are looking to install and run a shopping cart well within a fixed timeless, Magento is the baby! It is extremely easy to install and gets fully functional within days. If you know how to upload files on the internet, you can install Magento without any professional help. Creating a database and configuring various systems is also extremely simple. The good news about Magento is that if you are taking Web <a href="http://www.viteb.com/website-development" title="Web Development services from India" target="_blank">Web Development services from India</a>, you can have your site up and running in a matter of hours ( of course please consider the speed of the internet!).</p>
<p>The time taken to go through the entire process is negligible. The process involves:<br />
+ Designing the template layouts for the site,<br />
+ Product/content entry,<br />
+ Feature configuration,<br />
+ Prepping a site for live-production </p>
<h2>Online Support</h2>
<p>There is a plethora of free online support readily available for Magento. Just get on any search engine and type your Magento query in the search, you will find numerous sites and threads addressing the issue and providing ready assistance absolutely free of cost.</p>
<p>With the kind of detailed support made available, launching a site is an absolute breeze and can be handled easily within days. Magento also allows for intense customization to ensure that your website is absolutely suited for your products and services.</p>
<p>Magento is essentially Open Source. This is why there is a huge community of online enthusiasts who believe in the free distribution of knowledge of technology. They provide active support in troubleshooting any sort of problems. You will find blogs, threads and even videos that address Magento queries.</p>
<p>What’s more, you can also put up your own questions on these platforms and will be soon given a response on the same. Magento owes a huge portion of its success to this online community that relentlessly strives to bring about great Magento websites that help in making the world of technology much more accessible to people.</p>
<h2>Conclusion</h2>
<p>The most important thing for business owners today is to establish an online presence that stimulates a better growth and revenue generation. With the number of people bending towards an online shopping experience, it is about time you ventured in it.</p>
<p><a href="http://4rapiddev.com/internet/magnanimous-magento-why-it-is-so-popular/">Magnanimous Magento – Why it is so popular!</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
<img src="http://feeds.feedburner.com/~r/4RapidDevelopment/~4/tAJvQbLn4x0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://4rapiddev.com/internet/magnanimous-magento-why-it-is-so-popular/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://4rapiddev.com/internet/magnanimous-magento-why-it-is-so-popular/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=magnanimous-magento-why-it-is-so-popular</feedburner:origLink></item>
		<item>
		<title>ASP.NET Provides Best Facilities in Web Application Development</title>
		<link>http://feedproxy.google.com/~r/4RapidDevelopment/~3/lR6bkhYi7Wo/</link>
		<comments>http://4rapiddev.com/internet/asp-net-provides-best-facilities-in-web-application-development/#comments</comments>
		<pubDate>Tue, 24 Jul 2012 06:48:09 +0000</pubDate>
		<dc:creator>Nishant Prajapati</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[SilverLight]]></category>
		<category><![CDATA[Webform]]></category>
		<category><![CDATA[Winform]]></category>

		<guid isPermaLink="false">http://4rapiddev.com/?p=4553</guid>
		<description><![CDATA[ASP.net is a website application development program from the Microsoft software company to assist the web site designers to produce revolutionary websites. <a href="http://4rapiddev.com/internet/asp-net-provides-best-facilities-in-web-application-development/">Continue reading <span class="meta-nav">&#8594;</span></a><p><a href="http://4rapiddev.com/internet/asp-net-provides-best-facilities-in-web-application-development/">ASP.NET Provides Best Facilities in Web Application Development</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
]]></description>
				<content:encoded><![CDATA[<p>ASP.net is a website application development program from the <strong>Microsoft software company </strong>to assist the web site designers to produce revolutionary websites. This is the advanced form ASP software with newer and increased facilities. This is the resultant of the series of experiments and research carried out in the web application by the panel of Aegis experts. The core areas on which the research team has focus while developing the asp.net is deployment of huge application with greater speed, MVC advanced application, enterprise application development etc. This has leaded the team through wide range of surveys and studies before developing this advanced web development program. </p>
<p>The company has excelled in the field of developing <strong>.net shopping carts </strong>and <strong>ecommerce sites </strong>by means of greater revolutionary equipment involvement and program development. The asp.net provides excellent flexibilities for working out the web applications. </p>
<h3>Some such provisions are:</h3>
<ul>
<li>They provide optimum code system when the professionals involve series of applications.</li>
<li>They provide advanced security system to the whole application process.</li>
<li>The perfect combination of naïve optimization and JIT restores high quality services.</li>
<li>The asp.net is simple when it comes to the various stages of data processing and network application.</li>
<li>In case of any defunct process, there is the option of instant shift to a fresh process.</li>
<li>There is the option of multilingual coding according to the convenience of the user.</li>
<li>The program has unique capacity of getting the errors fixed through its mechanism saving it from the risk of system failure.</li>
</ul>
<p>The company has utilized ample quantity of research and has enriched this application program with wide range of mechanism and equipment. To build the user interface layer they involve the advanced client server facilities with <strong>Winform</strong>, <strong>Webform </strong>and <strong>SilverLight </strong>1.0 and 2.0 versions. They have used the Flash and Flex Action Light for better performance. The specialization however lies mainly in the application of a number of advanced tools. </p>
<p>The <strong>Microsoft Company</strong> has introduced the Library system and the software factory to avail the clients with rich supply of guidance and software requirements. The Gemini Dashboard System tool is useful for the running the project smoothly. The ITA mechanism helps to detect the erroneous details in case of any disturbances in the functioning of the site. Besides this, there are several other features especially the database management assistance that assists the client round the clock with their work. </p>
<p>The asp.net is therefore the most advanced and essential <a href="http://rockersinfo.com/" title="web development" target="_blank">web development </a>program that the clients should avail.</p>
<p><a href="http://4rapiddev.com/internet/asp-net-provides-best-facilities-in-web-application-development/">ASP.NET Provides Best Facilities in Web Application Development</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
<img src="http://feeds.feedburner.com/~r/4RapidDevelopment/~4/lR6bkhYi7Wo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://4rapiddev.com/internet/asp-net-provides-best-facilities-in-web-application-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://4rapiddev.com/internet/asp-net-provides-best-facilities-in-web-application-development/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=asp-net-provides-best-facilities-in-web-application-development</feedburner:origLink></item>
		<item>
		<title>Is Drupal a little too complex?</title>
		<link>http://feedproxy.google.com/~r/4RapidDevelopment/~3/smS-UzHHRSQ/</link>
		<comments>http://4rapiddev.com/internet/is-drupal-a-little-too-complex/#comments</comments>
		<pubDate>Sat, 21 Jul 2012 19:52:52 +0000</pubDate>
		<dc:creator>jack</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[viteb]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://4rapiddev.com/?p=4547</guid>
		<description><![CDATA[This article is aimed at highlighting some of the reasons why Drupal is a less preferred option as compared to other Content Management Systems. <a href="http://4rapiddev.com/internet/is-drupal-a-little-too-complex/">Continue reading <span class="meta-nav">&#8594;</span></a><p><a href="http://4rapiddev.com/internet/is-drupal-a-little-too-complex/">Is Drupal a little too complex?</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
]]></description>
				<content:encoded><![CDATA[<p>This article is aimed at highlighting some of the reasons why Drupal is a less preferred option as compared to other Content Management Systems.</p>
<p>If you are a little interested in the world of CMS, you would have noticed that WordPress and Joomla are way more popular than Drupal, although Drupal is a really powerful CMS. Ever wondered why? Well, I did. Being in this field for so many years, it was quite easy for me to pinpoint exactly why this was happening. </p>
<p>Well, the obvious fact is that although Drupal really powerful, it seems a lot more complicated than the other two content management systems. It’s a vicious circle you know, because it is so powerful, it needs a certain level of web programming knowledge to handle it. Therefore, someone who realty understands and appreciates the potential of a strong and robust CMS will never blame it. </p>
<h2>The Problem</h2>
<p>The most apt phrase here is “one man’s meat is another man’s poison”; because web programming specialists love it for its massive range of customization options, but designers avoid it due to same reasons. Most of them get confused and think that Drupal theme design is an unattainable task.</p>
<p>If you are a serious developer, it should not at all be a tough task for you. But yes, let&#8217;s face it, if you are only acquainted with Photoshop, CSS and HTML, you can wave Drupal web designing a goodbye. Although dedicated developers have simplified the theming layer a lot in the recent years, it still needs the hands of a developer with good knowledge of PHP to make the most out Drupal. </p>
<p>If it is so hard, then why should designers and developers use it? They should, because it has stronger security features, has the capability to handle large websites and gives the freedom to update content within few minutes. If you hire a knowledgeable designers and expert developer for Drupal CMS web development, they can produce something exceptional.</p>
<h2>Themes</h2>
<p>Another hindrance in Drupal’s way is that, it is very difficult to find Drupal based themes. However, you can easily find hundreds of WordPress themes because it is so popular. It is looked upon as a great advantage for WordPress, however, people ignore the fact that Drupal websites are more original and customised because of the same reason.</p>
<p>Business owners have to become aware because, website designers (more often than not), buy ready-made (or even download free) themes, and then make minor changes in its overall look and sell it to them. Please become aware that if something such is happening then there is no originality in your work. Do a lot of research and remain cautious before you hire website designers. This is why I recommend using Drupal, because at least that way, you’d be sure of the authenticity of your website design. </p>
<h2>Drupal for Newbies</h2>
<p>Given this scenario, let me please make it clear that I am not saying greenhorns can&#8217;t work with this amazing CMS. But yes, it may take a lot of hard work and efficiency to develop the Drupal skills. Initially you can try by using grids to maintain a balance in the layout and opt for standard graphical elements. This powerful CMS has a default web form size and your personalized forms should match the specific aspects.</p>
<h2>Conclusion</h2>
<p>Some acquaintance with this CMS can change your opinion about Drupal as a CMS. As a developer, you must have the enthusiasm to venture into such an amazing content management system with great potential. Since there are very few Drupal developers, the demand for good Drupal Designers is very high. Use this to your advantage. Because it belongs to the open source group, it is absolutely free. What&#8217;s more, it is extremely secure. Drupal’s biggest quality is that it is a multi OS and server compatible Content Management System. I wouldn’t deny that WordPress and Joomla are great Content management Systems as well, but Drupal definitely has a very bright future. </p>
<p><a href="http://4rapiddev.com/internet/is-drupal-a-little-too-complex/">Is Drupal a little too complex?</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
<img src="http://feeds.feedburner.com/~r/4RapidDevelopment/~4/smS-UzHHRSQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://4rapiddev.com/internet/is-drupal-a-little-too-complex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://4rapiddev.com/internet/is-drupal-a-little-too-complex/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=is-drupal-a-little-too-complex</feedburner:origLink></item>
		<item>
		<title>PHP- Great People, Simple Advice</title>
		<link>http://feedproxy.google.com/~r/4RapidDevelopment/~3/RUVzBbiFkoQ/</link>
		<comments>http://4rapiddev.com/php/php-great-people-simple-advice/#comments</comments>
		<pubDate>Wed, 18 Jul 2012 06:06:11 +0000</pubDate>
		<dc:creator>Ellis McGrath</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://4rapiddev.com/?p=4541</guid>
		<description><![CDATA[Following is a brief article of tips and advices regarding PHP given by masters of this profession. This article consists of advices shared by Rasmus Lerdorf, Matt Mullenweg and many such notable names who have contributed in making the internet as big as it is today. <a href="http://4rapiddev.com/php/php-great-people-simple-advice/">Continue reading <span class="meta-nav">&#8594;</span></a><p><a href="http://4rapiddev.com/php/php-great-people-simple-advice/">PHP- Great People, Simple Advice</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
]]></description>
				<content:encoded><![CDATA[<p>Following is a brief article of tips and advices regarding PHP given by masters of this profession. This article consists of advices shared by Rasmus Lerdorf, Matt Mullenweg and many such notable names who have contributed in making the internet as big as it is today.</p>
<p>The popularity of PHP in today’s reign of internet needs no explanation. The rise that PHP has seen in the recent past is a result of its efficiency and cost-effectiveness. PHP has been used widely across various sectors, in different ways to serve a host of purposes. However, there are some things that one must take care of while using PHP. We have gathered a few words of advice from the greatest names in the business on the Internet. </p>
<h2>Don’t use PHP for everything</h2>
<p>The father of PHP, Rasmus Lerdorf himself states that PHP was developed as a problem solving script. It was not made to serve a variety of projects. The origin had more to do with catering to a practical web based problem rather than a cool new internet invention. </p>
<p>Therefore its usage should be limited to as much as required. Although PHP is one great tool to work with but, in case PHP fails to feel fit for one’s requirement, they should simply move on and use a language that is most suited to their nature of the product. </p>
<h2>TO make PHP more scalable, more and more tables and MYSQL should be used</h2>
<p>With WordPress is occupying the center stage, Matt Mullenweg has proved the metal of his PHP mastery. Mullenweg explains that using one colossal table is not as effective as using separate and individual MYSQL tables for each and every blog. That escalates your site&#8217;s scalability and makes your efforts towards it much more countable. Multiple tables and migrating data from them enable the blogs to run much faster. Together with some heavy caching, and clever database treatment, Matt has presented that tremendously popular sites like Facebook and WordPress.com too can handle the intensive traffic using PHP.</p>
<h2>Beware of the User</h2>
<p>David Child is an established specialist in PHP. He has worked in the UK for many development companies. He is also the man behind the scenes of the website called Added Bytes, which gives details regarding many programming languages. </p>
<p>Dave advises to write the source code keeping in mind that the users are no angels. They may just pick up stuff and try to clone/hijack your website. He explains secure ways of writing source codes on his website.</p>
<h2>Batch Processing for Background processes</h2>
<p>Jack Herrington, the IBM developer Works expert is a renowned writer in the field of PHP. His study indicates that Batch Processing should be used to enable the background processes to run by them.</p>
<p>There are some tasks which take longer to finish than the other tasks; however, spending extra time with them isn’t wise. He suggests using batch processes to let these programs continue and finish. He also suggests that instead of making it a complex mesh of by using too much threading on the servers, it is best that simple combinations of PHP, MySQL and Cron be used to get the perfect results. </p>
<h2>Error Reporting should be turned on Immediately</h2>
<p>David Cummings, the owner of a software company and an expert in content Management systems has won multiple awards in this field. He states that turning the error reporting on immediately pays off in the long run. Error reporting, more often than not, makes finding the actual reason of the error quite simple. This way you can locate and solve the problem as soon as possible. </p>
<p>When you can save yourself the agony of scouring for the bugs, then why not. Lay back and let PHP do its work. It will point at the bugs and save you so much time, you’d be thanking Rasmus!</p>
<p>Having said this, we can all mutually agree that PHP as a technology has so much to offer in its kitty, that with a little attention and a close eye for development, the web world is soon to expand into a universe and more.</p>
<p><a href="http://4rapiddev.com/php/php-great-people-simple-advice/">PHP- Great People, Simple Advice</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
<img src="http://feeds.feedburner.com/~r/4RapidDevelopment/~4/RUVzBbiFkoQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://4rapiddev.com/php/php-great-people-simple-advice/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://4rapiddev.com/php/php-great-people-simple-advice/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=php-great-people-simple-advice</feedburner:origLink></item>
		<item>
		<title>How to Make Sure your Credit Card is Secure when you Shop Online</title>
		<link>http://feedproxy.google.com/~r/4RapidDevelopment/~3/pa40VgglmNA/</link>
		<comments>http://4rapiddev.com/internet/how-to-make-sure-your-credit-card-is-secure-when-you-shop-online/#comments</comments>
		<pubDate>Fri, 15 Jun 2012 04:42:53 +0000</pubDate>
		<dc:creator>Josh Anderson</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[credit card]]></category>
		<category><![CDATA[HTTPS]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://4rapiddev.com/?p=4533</guid>
		<description><![CDATA[There are several ways a person can make sure that their credit card is secure when they are shopping online.  If you're an online shopper, it's vital you read on and get safe now! <a href="http://4rapiddev.com/internet/how-to-make-sure-your-credit-card-is-secure-when-you-shop-online/">Continue reading <span class="meta-nav">&#8594;</span></a><p><a href="http://4rapiddev.com/internet/how-to-make-sure-your-credit-card-is-secure-when-you-shop-online/">How to Make Sure your Credit Card is Secure when you Shop Online</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
]]></description>
				<content:encoded><![CDATA[<p>There are several ways a person can make sure that their credit card is secure when they are shopping online.  If you&#8217;re an online shopper, it&#8217;s vital you read on and get safe now!</p>
<h2>Golden Lock</h2>
<p>The first way is to make sure that the golden lock is at the bottom of the browser (on the right side). This little lock shows that the website you are looking at is secure. You don&#8217;t have to worry about any of your personal information being shared with other companies. Rest assured that there is asecure encrypted connection with a payment server that stores your credit card information.</p>
<h2>URL</h2>
<p>Make sure that the url address you are looking at has https instead of the http. The s that is added to it means that the webpage that you are visitingis going to be as safe as possible. This is going to be especially true when a person goes to order something from the website. The url address isgoing to work perfectly with the golden lock to make sure that everything that you are doing on the website is secure, including your credit cardnumbers.</p>
<h2>Trust</h2>
<p>Look for a company that everybody was heard of. These companies are going to have less risk. Think about it &#8211; would you rather give your credit cardnumber to Pottery Barn or a random blogger? Furthermore, companies like Pottery Barn are going to be up to date on all of their security software.</p>
<h2>Reputation</h2>
<p>Make sure you find out how well the company is trusted. Look at the postal address and phone number of the company. If the company does not provide a postal address or a phone number, then this probably means that they do not want to get contacted. Therefore, it is probably a good idea to stay away from buying anything from them. Next, look at reviews on message boards and websites like <a href="http://www.angieslist.com/" title="http://www.angieslist.com/" target="_blank">www.angieslist.com</a>. </p>
<h2>Secure Connection</h2>
<p>Make sure you are using a secure connection when you are putting any of your personal information into a website. Your connection needs to be protected by SSL. SSL has the ability to break up your personal information, so that no one is going to have the ability to read the information. As long as you have security settings built into your internet browser, it will be able to tell you whether or not the website is secure.</p>
<h2>Email Scams</h2>
<p>The sixth way is to stay away from signing up for emails. This is because a lot of times, these emails are going to have a way of getting access to all of your personal information, including your credit card numbers. It is very important to remember that a trusted company is never going to ask for your credit card information through an email. Report these emails as soon as possible to a representative from the company, so it can be fixed.</p>
<p><em>Maichonda Feliz writes about finance, business &#038; <a href="http://grouphealthinsurance.org" title="http://grouphealthinsurance.org" target="_blank">http://grouphealthinsurance.org</a>.</em></p>
<p><a href="http://4rapiddev.com/internet/how-to-make-sure-your-credit-card-is-secure-when-you-shop-online/">How to Make Sure your Credit Card is Secure when you Shop Online</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
<img src="http://feeds.feedburner.com/~r/4RapidDevelopment/~4/pa40VgglmNA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://4rapiddev.com/internet/how-to-make-sure-your-credit-card-is-secure-when-you-shop-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://4rapiddev.com/internet/how-to-make-sure-your-credit-card-is-secure-when-you-shop-online/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-make-sure-your-credit-card-is-secure-when-you-shop-online</feedburner:origLink></item>
		<item>
		<title>Worst Internet Marketing Mistakes You Should Know About</title>
		<link>http://feedproxy.google.com/~r/4RapidDevelopment/~3/3Rf_mb06f7Q/</link>
		<comments>http://4rapiddev.com/internet/worst-internet-marketing-mistakes-you-should-know-about/#comments</comments>
		<pubDate>Wed, 06 Jun 2012 07:41:10 +0000</pubDate>
		<dc:creator>Josh Anderson</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[internet marketing]]></category>
		<category><![CDATA[Promotion]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Social Networks]]></category>

		<guid isPermaLink="false">http://4rapiddev.com/?p=4529</guid>
		<description><![CDATA[There are several mistakes that that are all too common when it comes to internet marketing. Everyone should know about these, so read on! <a href="http://4rapiddev.com/internet/worst-internet-marketing-mistakes-you-should-know-about/">Continue reading <span class="meta-nav">&#8594;</span></a><p><a href="http://4rapiddev.com/internet/worst-internet-marketing-mistakes-you-should-know-about/">Worst Internet Marketing Mistakes You Should Know About</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
]]></description>
				<content:encoded><![CDATA[<p>There are several mistakes that that are all too common when it comes to internet marketing. Everyone should know about these, so read on!</p>
<h3>Slow Loading</h3>
<p>If it takes more than a few seconds to load your webpage or any email you send out, the average person is going to get aggravated. First impressions are everything, so make sure that whatever platform you use can handle all the content and functions you need.</p>
<h3>Sloppy Looks</h3>
<p>The second mistake is making a website that is not well organized. Your website should be very easy for any person to navigate. Have a sort of table of contents, but be sure it doesn&#8217;t look like a table of contents. Everything anyone wants should be easy to find from the homepage.</p>
<h3>Use Search Engines</h3>
<p>The third internet marketing mistake is not submitting your website into search engines. This is one of the best ways to find out any information about your website. Find out whatever it takes to get search engines to like your website. There are many strategies to this, but every bit of work you put in could yield countless profits.</p>
<h3>Updates</h3>
<p>Your website should be updated at least three to four times a week, because the more your website is updated, the more it is going to be able to move up in the rankings of the search engines. Furthermore, if you have a feed, you want people to subscribe, and if you have no updates, they&#8217;ll often forget about you and stop following.</p>
<h3>Social Networks</h3>
<p>The fifth internet marketing mistake you should avoid is not creating a page for your business on social networks. Not doing so is tantamount to throwing money away. In this day and age, social media is where it&#8217;s at and where it&#8217;s going. Get into all of it &#8211; facebook, twitter, pinterest, tumblr, Google+ and more.</p>
<h3>Spamming</h3>
<p>The sixth internet marketing mistake is spamming your website all over the internet. A company can promote their website without having to spam. If your website looks like it is being spammed, it could get reported and Google will make it much harder to find, perhaps even banned.</p>
<h3>Databases</h3>
<p>You must keep track of your clients, subscribers, followers, everything! Put it all in one database, so you can communicate and get out deals efficiently. Your customers must feel as though they have a relationship with you, and they won&#8217;t feel that way if you only get in touch once a year!</p>
<h3>Wrong Promotions</h3>
<p>Don&#8217;t promote the wrong products. Test out the products yourself and do market research. Find out what&#8217;s selling with your competitors. It is very important that your company know what customers want to buy their products and which don&#8217;t. The demographics of targeted customers can include sex, age, location, interests, desires, and buying patterns. </p>
<h3>No Interaction</h3>
<p>The final internet marketing mistake you should know about it a lack of interaction. It is very important that your business have some interaction with your customers, so that your company will know exactly what the customers are looking for. This is one of the best ways to promote your business. Have giveaways for those who complete surveys, always have a way to contact you and always listen!!</p>
<p><em>Trisha Forkle writes about marketing, finance &#038; saving money at <a href="http://creditreport.org/" title="creditreport.org" target="_blank">http://creditreport.org</a>.</em></p>
<p><a href="http://4rapiddev.com/internet/worst-internet-marketing-mistakes-you-should-know-about/">Worst Internet Marketing Mistakes You Should Know About</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
<img src="http://feeds.feedburner.com/~r/4RapidDevelopment/~4/3Rf_mb06f7Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://4rapiddev.com/internet/worst-internet-marketing-mistakes-you-should-know-about/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://4rapiddev.com/internet/worst-internet-marketing-mistakes-you-should-know-about/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=worst-internet-marketing-mistakes-you-should-know-about</feedburner:origLink></item>
		<item>
		<title>5 Expert Tips For PHP Beginners</title>
		<link>http://feedproxy.google.com/~r/4RapidDevelopment/~3/J6Sd-BKiCUM/</link>
		<comments>http://4rapiddev.com/php/5-expert-tips-for-php-beginners/#comments</comments>
		<pubDate>Tue, 05 Jun 2012 05:28:14 +0000</pubDate>
		<dc:creator>Ronald Justin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[object-oriented]]></category>
		<category><![CDATA[offshore]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[Outsource]]></category>
		<category><![CDATA[Outsource .NET Development India]]></category>
		<category><![CDATA[Outsourcing]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Web Development Outsourcing]]></category>
		<category><![CDATA[Xicom]]></category>

		<guid isPermaLink="false">http://4rapiddev.com/?p=4520</guid>
		<description><![CDATA[<strong>PHP </strong>is one of the most popular web development languages and is powering some of the <strong>most powerful web sites </strong>around us, including <strong>Facebook </strong>and <strong>WordPress</strong>.  <a href="http://4rapiddev.com/php/5-expert-tips-for-php-beginners/">Continue reading <span class="meta-nav">&#8594;</span></a><p><a href="http://4rapiddev.com/php/5-expert-tips-for-php-beginners/">5 Expert Tips For PHP Beginners</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
]]></description>
				<content:encoded><![CDATA[<p><strong>PHP </strong>is one of the most popular web development languages and is powering some of the <strong>most powerful web sites </strong>around us, including <strong>Facebook </strong>and <strong>WordPress</strong>. </p>
<p>PHP has emerged as a very effective and easy to learn technology for developing web applications. This has made it one of the <strong>first languages</strong> that beginners start working on while <strong>learning web development</strong>. Mentioned below are 5 tips for such developers who are just beginning with web development using PHP. These tips have been provided by some of the most expert PHP developers.</p>
<h3>1. Clear Your OOP Concepts First</h3>
<p>For those who are just beginning with web development it is recommended that they first get a thorough knowledge of <strong>object-oriented </strong>programming and then go into PHP. Those who don’t have a technical background should give some time to learning the principles and clearing their concepts about software development. A beginner should be aware of terms like OOP, design pattern, version control, debugging etc. </p>
<h3>2. Use Google Wisely And Extensively</h3>
<p>As a beginner you are bound to have many questions (if you don’t have questions then you are not doing it correctly). The good news for you is that you can always find help for all your queries. Make sure that you are connected with a users group as there are such PHP groups all over the world. These are the places where smart men (some might call them geeks) come together to have some meaningful talk, discuss new topics, ideas and provide answers to those who come there with questions. However, make sure that you have <strong>Googled</strong> your queries before you ask it in the group as they don’t like lazy developers.</p>
<h3>3. Get Involved In Open Source Projects</h3>
<p>Beginners need to first clear their basic and then join <strong>open source projects </strong>as they provide access to source code. Further, this will also provide you an opportunity to learn from the top developers and industry specialists. The more you get into the source code, the concepts will get clearer. Once you get expert in PHP you can start providing <strong>offshore web development </strong>services and make huge profits from it.</p>
<h3>4. Find A Mentor</h3>
<p>Having a mentor to guide developers in their initial stages is the best thing that can happen to them. They should try to get a mentor who can guide them and talk to them in situations where they get stuck and need guidance. IRC is also a good option but nothing compares with the mentor. Moreover, web developers have entire web in their hand where they can go through thousands of PHP sites and enhance their skills and knowledge through various examples. Don’t expect to be an expert in everything PHP within a fortnight.</p>
<h3>5. Study The Code Of PHP Experts</h3>
<p>There is nothing better than going through the codes written by industry specialists in PHP. Beginners could learn so much from them that they wouldn’t need anything else. Even if you are an intermediate or advanced developer you should try to study seasoned coders as there is always a better and cleaner way of doing things. Further, try to use reputable libraries wherever possible as their will never be shortage of programming.</p>
<h3>Conclusion</h3>
<p>If you are a beginner then start with the above tips and soon you will be well versed with web development using PHP. </p>
<p><a href="http://4rapiddev.com/php/5-expert-tips-for-php-beginners/">5 Expert Tips For PHP Beginners</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
<img src="http://feeds.feedburner.com/~r/4RapidDevelopment/~4/J6Sd-BKiCUM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://4rapiddev.com/php/5-expert-tips-for-php-beginners/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://4rapiddev.com/php/5-expert-tips-for-php-beginners/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=5-expert-tips-for-php-beginners</feedburner:origLink></item>
		<item>
		<title>TortoiseSVN Shows Icons On Network Drives</title>
		<link>http://feedproxy.google.com/~r/4RapidDevelopment/~3/7pw9jAtH12E/</link>
		<comments>http://4rapiddev.com/tips-and-tricks/tortoisesvn-shows-icons-on-network-drives/#comments</comments>
		<pubDate>Sat, 02 Jun 2012 23:57:45 +0000</pubDate>
		<dc:creator>Hoan Huynh</dc:creator>
				<category><![CDATA[Tips And Tricks]]></category>
		<category><![CDATA[TortoiseSVN]]></category>

		<guid isPermaLink="false">http://4rapiddev.com/?p=4513</guid>
		<description><![CDATA[By default, TortoiseSVN's icons only visible on local drives, in order to show TortoiseSVN's icons on <strong>Network Drives</strong>, follow simple steps below. <a href="http://4rapiddev.com/tips-and-tricks/tortoisesvn-shows-icons-on-network-drives/">Continue reading <span class="meta-nav">&#8594;</span></a><p><a href="http://4rapiddev.com/tips-and-tricks/tortoisesvn-shows-icons-on-network-drives/">TortoiseSVN Shows Icons On Network Drives</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
]]></description>
				<content:encoded><![CDATA[<p>By default, <strong>TortoiseSVN&#8217;s icons</strong> only visible on local drives, in order to show TortoiseSVN&#8217;s icons on <strong>Network Drives</strong>, follow simple steps below.</p>
<h2>Display TortoiseSVN&#8217;s icons on Network Drives</h2>
<p>1. Right click on any folder => <strong>TortoiseSVN </strong>=> <strong>Settings</strong></p>
<div id="attachment_4514" class="wp-caption aligncenter" style="width: 448px"><a href="http://cdn.4rapiddev.com/wp-content/uploads/2012/06/TortoiseSVN-Settings.jpg" rel="lightbox[4513]" title="TortoiseSVN Settings"><img src="http://cdn.4rapiddev.com/wp-content/uploads/2012/06/TortoiseSVN-Settings.jpg" alt="TortoiseSVN Settings" title="TortoiseSVN Settings" width="438" height="453" class="size-full wp-image-4514" /></a><p class="wp-caption-text">TortoiseSVN Settings</p></div>
<p>2. Go to <strong>Icon Overlays</strong> => check on <strong>Network drives</strong> option in the Drive Types panel => <strong>OK</strong></p>
<div id="attachment_4515" class="wp-caption aligncenter" style="width: 640px"><a href="http://cdn.4rapiddev.com/wp-content/uploads/2012/06/TortoiseSVN-Icon-Overlays-Network-drives.jpg" rel="lightbox[4513]" title="TortoiseSVN Icon Overlays Network drives"><img src="http://cdn.4rapiddev.com/wp-content/uploads/2012/06/TortoiseSVN-Icon-Overlays-Network-drives.jpg" alt="TortoiseSVN Icon Overlays Network drives" title="TortoiseSVN Icon Overlays Network drives" width="630" height="422" class="size-full wp-image-4515" /></a><p class="wp-caption-text">TortoiseSVN Icon Overlays Network drives</p></div>
<p><strong>Note:</strong></p>
<ul>
<li>1. Beside Network drives, TortoiseSVN&#8217;s icons also can be visible on RAM drives, Removable drivers, CD-ROM</li>
<li>2. By choosing those options, it may slow down TortoiseSVN and whole system.</li>
</ul>
<p><a href="http://4rapiddev.com/tips-and-tricks/tortoisesvn-shows-icons-on-network-drives/">TortoiseSVN Shows Icons On Network Drives</a> is a post from: <a href="http://4rapiddev.com">4 Rapid Development</a></p>
<img src="http://feeds.feedburner.com/~r/4RapidDevelopment/~4/7pw9jAtH12E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://4rapiddev.com/tips-and-tricks/tortoisesvn-shows-icons-on-network-drives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://4rapiddev.com/tips-and-tricks/tortoisesvn-shows-icons-on-network-drives/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=tortoisesvn-shows-icons-on-network-drives</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.249 seconds. --><!-- Cached page generated by WP-Super-Cache on 2013-05-19 00:34:45 -->
