<?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>ryanburnette.com</title>
	<atom:link href="http://ryanburnette.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ryanburnette.com</link>
	<description>Ryan Burnette from TechStudio blogs about web design, search engine optimization, web marketing, tech and random topics</description>
	<lastBuildDate>Fri, 30 Jul 2010 03:31:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Simple JQuery Image Rollover With Preload</title>
		<link>http://ryanburnette.com/2010/07/web-development/simple-jquery-image-rollover-with-preload/</link>
		<comments>http://ryanburnette.com/2010/07/web-development/simple-jquery-image-rollover-with-preload/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 03:30:19 +0000</pubDate>
		<dc:creator>Ryan Burnette</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://ryanburnette.com/?p=204</guid>
		<description><![CDATA[I used to do all my image rollovers with background positioning. I liked this method because it could be done completely with html/css. By putting the :hover only on anchors I could cover that piece of junk IE6 without fooling with Javascript. JQuery has become my best friend though. There is a great, simple way [...]]]></description>
			<content:encoded><![CDATA[<p>I used to do all my image rollovers with background positioning. I liked this method because it could be done completely with html/css. By putting the :hover only on anchors I could cover that piece of junk IE6 without fooling with Javascript. JQuery has become my best friend though.</p>
<p>There is a great, simple way to use JQuery to add a class on hover&#8230; like so.</p>
<blockquote><p>$(&#8216;ul#nav a&#8217;).hover(<br />
function() {<br />
$(this).addClass(&#8216;hover&#8217;);<br />
},<br />
function() {<br />
$(this).removeClass(&#8216;hover&#8217;);<br />
}<br />
);</p></blockquote>
<p>To make this snippet work, there are a few things you need to do. You must include JQuery in your &lt;head&gt;. I like to use Google Code to host it, like this.</p>
<p>&lt;script language=&#8221;javascript&#8221; src=&#8221;http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js&#8221;&gt;&lt;/script&gt;</p>
<p>Then put the code snippet that adds the hover class in a file. You could name it roll.js for example. Include this at the bottom of your document, inside the &lt;/body&gt; and &lt;/html&gt; end tags.</p>
<p>You may want to edit &#8216;ul#nav a&#8217; to meet your personal needs. You can also change &#8216;hover&#8217; to whatever class you prefer for the job.</p>
<p>The problem is that if you are like me, you use text replacement and your images are backgrounds. We need a way to preload the images or we see a delay on the first hover as the new background image loads.</p>
<p><object id="scPlayer" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="580" height="220" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/mp4h264player.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><param name="flashVars" value="thumb=http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/FirstFrame.jpg&amp;containerwidth=580&amp;containerheight=220&amp;content=http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/image%20load%20delay.mp4&amp;blurover=false" /><param name="allowFullScreen" value="true" /><param name="scale" value="showall" /><param name="allowScriptAccess" value="always" /><param name="base" value="http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/" /><param name="src" value="http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/mp4h264player.swf" /><param name="flashvars" value="thumb=http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/FirstFrame.jpg&amp;containerwidth=580&amp;containerheight=220&amp;content=http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/image%20load%20delay.mp4&amp;blurover=false" /><param name="allowfullscreen" value="true" /><embed id="scPlayer" type="application/x-shockwave-flash" width="580" height="220" src="http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/mp4h264player.swf" base="http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/" allowscriptaccess="always" scale="showall" allowfullscreen="true" flashvars="thumb=http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/FirstFrame.jpg&amp;containerwidth=580&amp;containerheight=220&amp;content=http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/image%20load%20delay.mp4&amp;blurover=false" bgcolor="#FFFFFF" quality="high" data="http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/mp4h264player.swf"></embed></object></p>
<p>I do this by simple creating a loop to iterate over the hovers in question. They activate quickly during page load so when the user puts their mouse over a button&#8230; no delay while the image loads. Nice.</p>
<p>Add this code snippet and make the appropriate changes to activate your hovers once during page load.</p>
<blockquote><p>$(&#8216;ul#nav a&#8217;).each(function() {<br />
$(this).addClass(&#8216;hover&#8217;);<br />
}<br />
);</p>
<p>$(&#8216;ul#nav a&#8217;).each(function() {<br />
$(this).removeClass(&#8216;hover&#8217;);<br />
}<br />
);</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ryanburnette.com/2010/07/web-development/simple-jquery-image-rollover-with-preload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://content.screencast.com/users/ryanburnette/folders/Camtasia/media/1d664159-d0f2-4db2-b428-13937a2f9616/image%20load%20delay.mp4&amp;amp" length="168940" type="video/mp4" />
		</item>
		<item>
		<title>TechStudio Logo Perspective</title>
		<link>http://ryanburnette.com/2010/06/design/techstudio-logo-perspective/</link>
		<comments>http://ryanburnette.com/2010/06/design/techstudio-logo-perspective/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 05:39:31 +0000</pubDate>
		<dc:creator>Ryan Burnette</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://ryanburnette.com/?p=173</guid>
		<description><![CDATA[Completely off topic: I watched City of Ember earlier tonight and enjoyed it. The idea of human beings being cloistered in an underground cave for a century or two is one I have explored in my imagination a few times, but I enjoyed this telling of the story. It made me ask myself what the [...]]]></description>
			<content:encoded><![CDATA[<p>Completely off topic: I watched <i>City of Ember</i> earlier tonight and enjoyed it. The idea of human beings being cloistered in an underground cave for a century or two is one I have explored in my imagination a few times, but I enjoyed this telling of the story. It made me ask myself what the difference was between Ember and Earth. City of Ember. City of Earth.</p>
<p>I&#8217;ve been staring at the new TechStudio logo and color options for too long. I&#8217;m trying to burn my retinas with all this color. <strong>Hang onto your rods and cones.</strong></p>
<p><img src="http://ryanburnette.com/wp-content/uploads/techstudi-logo-2.png" alt="TechStudio" title="TechStudio" width="599" height="599" class="alignnone size-full wp-image-197" /><br />
<img src="http://ryanburnette.com/wp-content/uploads/techstudio-logos.png" alt="TechStudio" title="TechStudio" width="599" height="599" class="alignnone size-full wp-image-195" /><br />
<img src="http://ryanburnette.com/wp-content/uploads/techstudi-logo-3.png" alt="TechStudio" title="TechStudio" width="599" height="599" class="alignnone size-full wp-image-199" /><br />
<img src="http://ryanburnette.com/wp-content/uploads/techstudi-logo-4.png" alt="" title="techstudi-logo-4" width="599" height="599" class="alignnone size-full wp-image-200" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ryanburnette.com/2010/06/design/techstudio-logo-perspective/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work Laugh Work</title>
		<link>http://ryanburnette.com/2010/06/random/work-laugh-work/</link>
		<comments>http://ryanburnette.com/2010/06/random/work-laugh-work/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 06:22:25 +0000</pubDate>
		<dc:creator>Ryan Burnette</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://ryanburnette.com/?p=182</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img src="http://ryanburnette.com/wp-content/uploads/screenshot.png" alt="" title="screenshot" width="599" height="371" class="alignnone size-full wp-image-183" /><br />
<img src="http://ryanburnette.com/wp-content/uploads/screenshot3.png" alt="" title="screenshot3" width="599" height="374" class="alignnone size-full wp-image-193" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ryanburnette.com/2010/06/random/work-laugh-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Install Debian Lenny On Microsoft Virtual Server 2007 R2</title>
		<link>http://ryanburnette.com/2010/06/debian-linux/how-to-install-debian-lenny-on-microsoft-virtual-server-2007-r2/</link>
		<comments>http://ryanburnette.com/2010/06/debian-linux/how-to-install-debian-lenny-on-microsoft-virtual-server-2007-r2/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 18:45:37 +0000</pubDate>
		<dc:creator>Ryan Burnette</dc:creator>
				<category><![CDATA[Debian Linux]]></category>

		<guid isPermaLink="false">http://ryanburnette.com/?p=169</guid>
		<description><![CDATA[Trying to install Debian Lenny on Microsoft Virtual Server 2007 R2 results in a kernel panic by default. There is a way to configure the kernel to allow for a normal install. I have put a low priority server in place at a client&#8217;s network using this method, I will update here to let everyone [...]]]></description>
			<content:encoded><![CDATA[<p>Trying to install Debian Lenny on Microsoft Virtual Server 2007 R2 results in a kernel panic by default. There is a way to configure the kernel to allow for a normal install. I have put a low priority server in place at a client&#8217;s network using this method, I will update here to let everyone know if it is stable. Feedback is also appreciated.</p>
<ol>
<li>At the &#8216;Install&#8217; prompt, press -TAB-.</li>
<li>Add the following line to the boot directives.</li>
</ol>
<blockquote><p>
noapic nolapic noreplace-paravirt no387 nofxsr
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ryanburnette.com/2010/06/debian-linux/how-to-install-debian-lenny-on-microsoft-virtual-server-2007-r2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Coming Soon</title>
		<link>http://ryanburnette.com/2010/06/tech/coming-soon/</link>
		<comments>http://ryanburnette.com/2010/06/tech/coming-soon/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 05:42:08 +0000</pubDate>
		<dc:creator>Ryan Burnette</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ryanburnette.com/?p=165</guid>
		<description><![CDATA[At the moment I am working on a few new articles, and I am revamping some old ones. The good old What Is SEO article is getting a complete facelift. New additions to the blog include How To Configure A WordPress Web Server On Debian With Tons Of Plugin Support, How To Use NextGen Gallery [...]]]></description>
			<content:encoded><![CDATA[<p>At the moment I am working on a few new articles, and I am revamping some old ones. The good old What Is SEO article is getting a complete facelift. New additions to the blog include How To Configure A WordPress Web Server On Debian With Tons Of Plugin Support, How To Use NextGen Gallery On WordPress And Become A Hero, Pure CSS Image Rollovers Without The Familiar Blip.</p>
]]></content:encoded>
			<wfw:commentRss>http://ryanburnette.com/2010/06/tech/coming-soon/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install QuickBooks Enterprise Solutions Database Manager For Linux On Debian</title>
		<link>http://ryanburnette.com/2010/05/debian-linux/linux-quickbooks-enterprise-server-on-debian/</link>
		<comments>http://ryanburnette.com/2010/05/debian-linux/linux-quickbooks-enterprise-server-on-debian/#comments</comments>
		<pubDate>Thu, 27 May 2010 00:40:45 +0000</pubDate>
		<dc:creator>Ryan Burnette</dc:creator>
				<category><![CDATA[Debian Linux]]></category>

		<guid isPermaLink="false">http://ryanburnette.com/?p=143</guid>
		<description><![CDATA[Intuit QuickBooks is the market-standard software for small-business accounting. Almost every IT client I have under 25 employees in size is using this software to keep their books. Anyone who uses QuickBooks knows that once you get a few people using it across a network everything slows down. The reason is that the file containing [...]]]></description>
			<content:encoded><![CDATA[<p>Intuit QuickBooks is the market-standard software for small-business accounting. Almost every IT client I have under 25 employees in size is using this software to keep their books. Anyone who uses QuickBooks knows that once you get a few people using it across a network everything slows down. The reason is that the file containing all company data cannot be simultaneously access by multiple computers using conventional methods. Most business network users have files on network shared drives or on their local hard drives. The QuickBooks database is different. Multiple machines can&#8217;t all work on the file at once, a database must be introduced to coordinate what is know in QuickBooks as multi-user mode.</p>
<p>On the QuickBooks install disc is the QuickBooks Enterprise Solutions Database Manager. This is a program that monitors the QuickBooks shared folder and serves the database to network users. Companies with multiple QuickBooks files, or multiple users with varying levels of permissions need a few things out of their server.</p>
<ol>
<li>Permission-level access control. Employee A can see all the folders, Employee B can only see the folders he or she needs to have access to.</li>
<li>There are a certain number of users in the office who need to maintain simultaneous, high-speed access to company data and QuickBooks database files.</li>
<li>The files need to be safe from hardware failure or user error. The server needs to have hardware-based RAID to protect from drive failure, and an automatic backup routing that transfer files to an off-site server to protect from physical damage or theft.</li>
</ol>
<p>Achieving all this with a machine running a version of Microsoft Windows Server can be expensive. The software and license CALs alone are over a thousand dollars. At TechStudio we have now configured a development server running GNU/Debian Linux, an open-source and extremely efficient operating system, which is offering Windows file sharing through Samba software as well as QuickBooks Enterprise Solutions Database Manager for Linux. In addition to our development server, we are installing these machines for clients who need to share Windows files and QuickBooks databases across a network with a cost-effective and reliable solution. One Linux server we manage has not been rebooted in over 4 years.</p>
<p>One client reported that QuickBooks was opening their 200mb company file in under a tenth the time required before the Linux server. Clients are also excited that they can manage their user permissions through an easy-to-use web interface for Linux, Webmin.</p>
<h3>Installing QuickBooks Enterprise Solutions Database Manager on Debian</h3>
<p>For users who want to take a stab at a basic configuration yourself, I&#8217;m posting my configuration files and tricks I&#8217;ve learned along the way.</p>
<h4>Step 1: Pick the Right Hardware</h4>
<p>The most important first step in setting up a Debian Linux server is picking compatible hardware. At TechStudio we use Debian exclusively because we believe it to be the most stable distribution around. Along with this stability comes a pickiness for hardware. Don&#8217;t try to use unsupported hardware, you will regret it.</p>
<p>It is also important to research your RAID adapter. Many RAID cards are actually software RAID adapters, or devices that provide RAID in a soft environment through the RAID BIOS. Pick a true hardware RAID device or you will regret it.</p>
<h4>Step 2: Install the Latest Stable Release of Debian</h4>
<p><a href="http://www.debian.org/CD/http-ftp/" target="_blank">Download the latest stable release of Debian.</a></p>
<h4>Step 3: Configure the Network</h4>
<p>This installation guide assumes a certain amount of prior Linux knowledge. You will want to set your server to a static IP on the network outside your existing DHCP range.</p>
<blockquote><p>debian:~# cat /etc/network/interfaces<br />
auto lo<br />
iface lo inet loopback<br />
auto eth1<br />
iface eth1 inet static<br />
address 10.0.1.40<br />
netmask 255.255.255.0<br />
network 10.0.1.0<br />
broadcast 10.1.0.255<br />
gateway 10.0.1.1<br />
debian:~#</p></blockquote>
<h4>Step 4: Install Webmin For Easier Configuration</h4>
<p>Webmin is a web based Linux administration tool. Purists will call it cheap to control your box using this tool, but I find it saves time when I hand administration off to an intermediate user with this tool. It&#8217;s just important to remember not to mess with any settings unless you know exactly what the consequences will be.</p>
<blockquote><p>debian:~# wget http://*download-path*/webmin_1.510-2_all.deb<br />
debian:~# apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl<br />
debian:~# dpkg &#8211;install webmin_1.510-2_all.deb</p></blockquote>
<p>Once webmin is installed, browse into administration using http://host-ip-address-or-hostname:10000.</p>
<h4>Step 5: Install Samba Server</h4>
<p>Samba is a Windows file and printer sharing daemon for Linux. Users won&#8217;t know they aren&#8217;t access a Windows server once we configure it correctly.</p>
<blockquote><p>debian:~# apt-get install samba</p></blockquote>
<h4>Step 6: Set Up Users and Groups</h4>
<p>Start by adding a local user account for each of your users and adding appropriate users to access groups. In this case, we will create five users in office and give three of them access to the company QuickBooks files. This can be done at console or using Webmin.</p>
<blockquote><p>debian:~# groupadd quickbooks<br />
debian:~# useradd -g quickbooks adam<br />
debian:~# useradd -g quickbooks joe<br />
debian:~# useradd -g quickbooks sally<br />
debian:~# useradd -g quickbooks jane</p></blockquote>
<p>Users have to be configured for Samba as well. Local users need to have a Samba password set. This can also be done using Webmin if you prefer.</p>
<blockquote><p>debian:~# smbpasswd -a adam<br />
debian:~# smbpasswd -a joe<br />
debian:~# smbpasswd -a sally<br />
debian:~# smbpasswd -a jane</p></blockquote>
<h4>Step 7: Configure Samba</h4>
<p>Samba is configured using /etc/samba/smb.conf to set configuration parameters. For this QuickBooks Enterprise server there are a few things I have found that need to be configured a certain way to avoid problems. Make sure your smb.conf file contains the following global parameters.</p>
<blockquote><p>workgroup = COMPANYNAME<br />
server string = COMPANYFILESERVER<br />
log file = /var/log/samba/log.%m<br />
max log size = 1000<br />
syslog = 0<br />
encrypt passwords = true<br />
passdb backend = tdbsam<br />
obey pam restrictions = yes<br />
unix password sync = yes<br />
passwd program = /usr/bin/passwd %u<br />
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .<br />
pam password change = yes<br />
refresh = 1<br />
map hidden = yes<br />
map archive = yes</p></blockquote>
<p>You can configure as many separate shares as you like, but the QuickBooks share needs to include the following.</p>
<blockquote><p>[quickbooks]<br />
path = /home/allusers/quickbooks<br />
comment = Company QuickBooks Share<br />
valid users = @quickbooks<br />
writeable = yes<br />
create mask = 0765<br />
force user = root<br />
force group = quickbooks</p></blockquote>
<p>Make sure to restart Samba after changing smb.conf. Also, verify that your shared folder is set with the correct permissions.</p>
<blockquote><p>debian:~# chown root:quickbooks /home/allusers/quickbooks<br />
debian:~# chmod 775 /home/allusers/quickbooks</p></blockquote>
<h4>Step 8: Install QuickBooks Enterprise Solutions Database Manager for Linux</h4>
<p>Intuit has an install guide, public asc key and rpm available for download at <a href="http://qbes.com/linux" target="_blank">http://qbes.com/linux</a>. Go there and download all three. Looking over and familiarizing yourself with the install guide will be helpful, but the process is a little different on Debian.</p>
<p>First we need to install some prerequisite packages.</p>
<blockquote><p>debian:~# apt-get install gamin<br />
debian:~# apt-get install alien</p></blockquote>
<p>Next, use alien to convert and install the qbdb package.</p>
<blockquote><p>debian:~# alien &#8211;scripts &#8211;install qbdbm-20.0-5.i386.rpm</p></blockquote>
<p>It is important to remember to edit /opt/qb/util/qbmonitord.conf so qbdbmon monitors the correct folders for QuickBooks databases. Also, set the qbdb services to run at boot.</p>
<blockquote><p>debian:~# update-rc.d qbdbfilemon defaults<br />
debian:~# update-rc.d qbdbmgrn_20 defaults</p></blockquote>
<p>You can check to be sure the services are running and set to start at boot with the following commands, or using Webmin.</p>
<blockquote><p>debian:~# ps aux | grep qbdb<br />
debian:~# chkconfig | grep qbdb</p></blockquote>
<h3>Call TechStudio If You Need Help Or Want A Server Configured For Your Business Network</h3>
<p>This guide can get you pointed in the right direction if you are a beginner Linux user. Or if you would like to have the stability and speed of a Linux server for your business, call TechStudio IT Services today.</p>
<p><a href="http://techstudiojax.com" target="_blank">Check Out TechStudio For IT Services</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ryanburnette.com/2010/05/debian-linux/linux-quickbooks-enterprise-server-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can Web Site Load Time Effect SEO Search Engine Ranking?</title>
		<link>http://ryanburnette.com/2010/05/internet-marketing-seo-sem/can-web-site-load-time-effect-seo-search-engine-ranking/</link>
		<comments>http://ryanburnette.com/2010/05/internet-marketing-seo-sem/can-web-site-load-time-effect-seo-search-engine-ranking/#comments</comments>
		<pubDate>Mon, 10 May 2010 21:56:34 +0000</pubDate>
		<dc:creator>Ryan Burnette</dc:creator>
				<category><![CDATA[Web Marketing]]></category>

		<guid isPermaLink="false">http://ryanburnette.com/?p=139</guid>
		<description><![CDATA[It is a question a lot of us in the Search Engine Optimization field have been asking for quite some time, and the answer is yes. A recent article posted on the Official Google Webmaster Central Blog confirms that Google has implemented site load time as a factor in search engine placement. Overall keyword relevancy [...]]]></description>
			<content:encoded><![CDATA[<p>It is a question a lot of us in the <a href="http://techstudiojax.com" target="_blank">Search Engine Optimization</a> field have been asking for quite some time, and the answer is yes. A recent article posted on the Official Google Webmaster Central Blog confirms that Google has implemented site load time as a factor in search engine placement. Overall keyword relevancy still ranks much higher than load time, and well-coded sites including all TechStudio products are quick enough not to have their placement lowered by this, but it is something to consider when building a site which is meant to be search-engine friendly.</p>
<p>Check out the full text of the article from the Google Webmaster blog <a href="http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html" target="_blank">here</a>. TechStudio sites are light, clean and always load fast. Get a quote from <a href="http://techstudiojax.com" target="_blank">TechStudio</a> for a <a href="http://techstudiojax.com/quote/" target="_blank">Web Design and Internet Marketing in Jacksonville, FL</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ryanburnette.com/2010/05/internet-marketing-seo-sem/can-web-site-load-time-effect-seo-search-engine-ranking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
