<?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>Sevenpixels Web Design</title>
	<atom:link href="http://www.sevenpixels.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sevenpixels.com</link>
	<description>Web Design in Auburn, AL and Albany, GA                       334-246-4943&#160;&#160;&#160;&#160;</description>
	<lastBuildDate>Mon, 08 Mar 2010 04:07:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Albany Chorale</title>
		<link>http://www.sevenpixels.com/2010/03/the-albany-chorale/</link>
		<comments>http://www.sevenpixels.com/2010/03/the-albany-chorale/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 04:05:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.sevenpixels.com/?p=172</guid>
		<description><![CDATA[The Albany Chorale is a community chorus with singers of different ages  and backgrounds, a mixture of trained and amateur voices. The Chorale  welcomes anyone who loves to sing choral music.
]]></description>
			<content:encoded><![CDATA[<p>The Albany Chorale is a community chorus with singers of different ages  and backgrounds, a mixture of trained and amateur voices. The Chorale  welcomes anyone who loves to sing choral music.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sevenpixels.com/2010/03/the-albany-chorale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>American Cancer Society Relay for Life</title>
		<link>http://www.sevenpixels.com/2010/02/american-cancer-society-relay-for-life/</link>
		<comments>http://www.sevenpixels.com/2010/02/american-cancer-society-relay-for-life/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 02:15:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Charity]]></category>

		<guid isPermaLink="false">http://www.sevenpixels.com/?p=168</guid>
		<description><![CDATA[I will be participating in the American Cancer Society Relay for Life event on April 16-17. Any donations would be greatly appreciated. It&#8217;s going to a great cause and any amount donated will help regardless of how much. So if you would like to make a donation please visit the link below.
http://main.acsevents.org/goto/don.lacuran
]]></description>
			<content:encoded><![CDATA[<p>I will be participating in the <a href="http://main.acsevents.org/site/TR/RelayForLife/RFLFY10SA?pg=entry&amp;fr_id=24462">American Cancer Society Relay for Life</a> event on April 16-17. Any donations would be greatly appreciated. It&#8217;s going to a great cause and any amount donated will help regardless of how much. So if you would like to make a donation please visit the link below.</p>
<p><a href="http://main.acsevents.org/goto/don.lacuran">http://main.acsevents.org/goto/don.lacuran</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sevenpixels.com/2010/02/american-cancer-society-relay-for-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP and .htaccess Redirects</title>
		<link>http://www.sevenpixels.com/2010/02/php-and-htaccess-redirects/</link>
		<comments>http://www.sevenpixels.com/2010/02/php-and-htaccess-redirects/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 16:31:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Optimization]]></category>

		<guid isPermaLink="false">http://www.sevenpixels.com/?p=159</guid>
		<description><![CDATA[The 2 most comment types of redirects are the permanent redirect (301) and the temporary redirect (302). There are some other types of redirects, but for the most part you should never need to use them. Introduced in HTTP 1.1 is a new temporary redirect (307). For now I would stay away from using it [...]]]></description>
			<content:encoded><![CDATA[<p>The 2 most comment types of redirects are the permanent redirect (301) and the temporary redirect (302). There are some other types of redirects, but for the most part you should never need to use them. Introduced in HTTP 1.1 is a new temporary redirect (307). For now I would stay away from using it just in case a bot decides to crawl your site using HTTP 1.0 requests.</p>
<p>Permanent redirects are great if you have moved a page on a server or if you have moved to a new domain name. This way all of your page rank is transferred through to the new page. Using the permanent redirect is search engine friendly.</p>
<p>Temporary redirects are good for affiliate links or links that may change around from time to time. No page rank is passed through a temporary redirect.</p>
<p>Below are some examples of how to use PHP and .htaccess to achieve these redirects. But obviously, don&#8217;t stick all of those header() calls at the top of one page, you only need one. Also you can redirect off your domain to a new one as well, but remember to use a temporary redirect unless you know for sure it is a permanent move.<span id="more-159"></span></p>
<p>The .htaccess can become crazy with regular expressions to match which file(s) get redirect. It&#8217;s just a really simple example to give you an idea to get you started. If you are looking for more do some searches and you should be able to find some great examples. I&#8217;d link to some but it can be really specific. I have included 2 examples at the bottom for using .htaccess to either remove or add the www if you want.</p>
<p><strong>Using PHP</strong></p>
<p><code>&lt;?php<br />
// 301 Moved Permanently<br />
header("Location: /foo.php", TRUE, 301);</code></p>
<p><code>// 302 Found<br />
header("Location: /foo.php", TRUE, 302);<br />
header("Location: /foo.php");</code></p>
<p><code>// 307 Temporary Redirect<br />
header("Location: /foo.php", TRUE, 307);<br />
?&gt;</code></p>
<p><strong>Using .htaccess</strong></p>
<p><code>RewriteEngine On<br />
RewriteBase /<br />
RewriteRule (.*) http://www.domain.com/$1 [R=301, L]<br />
RewriteRule (.*) http://www.domain.com/$1 [R=302, L]<br />
RewriteRule (.*) http://www.domain.com/$1 [R=307, L]</code></p>
<p><strong>Redirect domain.com to www.domain.com</strong></p>
<p><code>RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{HTTP_HOST}  !^www.domain.com$ [NC]<br />
RewriteRule ^(.*)$ http://www.domain.com/$1  [R=301, L]</code></p>
<p><strong>Redirect www.domain.com to domain.com</strong></p>
<p><code>RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{HTTP_HOST}  !^domain.com$ [NC]<br />
RewriteRule ^(.*)$ http://domain.com/$1 [R=301, L]</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sevenpixels.com/2010/02/php-and-htaccess-redirects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testimonial: Jon Kaase Racing Engines</title>
		<link>http://www.sevenpixels.com/2010/02/testimonial-jon-kaase-racing-engines/</link>
		<comments>http://www.sevenpixels.com/2010/02/testimonial-jon-kaase-racing-engines/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 15:35:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Testimonial]]></category>

		<guid isPermaLink="false">http://www.sevenpixels.com/?p=157</guid>
		<description><![CDATA[Working with Sevenpixels has been a great experience. They provide excellent communication, prompt technical support and great graphics that not only meets but exceeds our standards in the high-demand racing industry.
Jon Kaase Racing Engines
]]></description>
			<content:encoded><![CDATA[<p>Working with Sevenpixels has been a great experience. They provide excellent communication, prompt technical support and great graphics that not only meets but exceeds our standards in the high-demand racing industry.</p>
<p><a href="http://www.jonkaaseracingengines.com">Jon Kaase Racing Engines</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sevenpixels.com/2010/02/testimonial-jon-kaase-racing-engines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Gzip in .htaccess with mod_deflate</title>
		<link>http://www.sevenpixels.com/2010/01/enable-gzip-in-htaccess-with-mod_deflate/</link>
		<comments>http://www.sevenpixels.com/2010/01/enable-gzip-in-htaccess-with-mod_deflate/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 04:57:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Optimization]]></category>

		<guid isPermaLink="false">http://www.sevenpixels.com/?p=154</guid>
		<description><![CDATA[There are a few different ways to go about compressing your javascript and CSS files. Most of them require you to edit your.js and .css files to include some PHP to compress the files.  Another common method has you create a PHP file that will include all of the .js or .css files and then [...]]]></description>
			<content:encoded><![CDATA[<p>There are a <a href="http://papermashup.com/use-php-to-gzip-css-files/">few</a> <a href="http://www.fiftyfoureleven.com/weblog/web-development/css/the-definitive-css-gzip-method">different</a> <a href="http://www.catswhocode.com/blog/3-ways-to-compress-css-files-using-php">ways</a> to go about compressing your javascript and CSS files. Most of them require you to edit your.js and .css files to include some PHP to compress the files.  Another common method has you create a PHP file that will include all of the .js or .css files and then output the results. All of these methods require you to make changes to the files. This can become a hassle if you add new files in, they need to have the changes made or you need to remember to include them in the main PHP file you made.</p>
<p>But here is a real easy way to include it and it only requires you to edit your .htaccess and your server has to have Apache compiled with mod_deflate. Check out the code for your .htaccess after the jump.<span id="more-154"></span></p>
<p><code># BEGIN Gzip<br />
&lt;IfModule mod_deflate.c&gt;<br />
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript<br />
&lt;/IfModule&gt;<br />
# END Gzip</code></p>
<p>You can adjust the code above to include or exclude any of the MIME types that you need or want. It will reduce the file size for those files which will speed up your site. There is a little more load on the server because of this, but it shouldn&#8217;t cause the server load to get crazy.</p>
<p>After you add the code to your .htaccess use <a href="http://www.gidnetwork.com/tools/gzip-test.php">this site</a> to check if mod_deflate is available. If it isn&#8217;t ask your host if they can compile Apache with mod_deflate for you. Mine wasn&#8217;t initally and all it took was a support ticket. An hour later it was up and running.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sevenpixels.com/2010/01/enable-gzip-in-htaccess-with-mod_deflate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friends of the Program</title>
		<link>http://www.sevenpixels.com/2010/01/friends-of-the-program/</link>
		<comments>http://www.sevenpixels.com/2010/01/friends-of-the-program/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 16:59:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.sevenpixels.com/?p=147</guid>
		<description><![CDATA[The diabolical triumpherate of  Misers Perkins, Medallion, and The Juice bringing their dogma to the masses.  Peep the email or follow us on Twitter to learn more.  No media whoring opportunities or indecent proposals will be ignored.
]]></description>
			<content:encoded><![CDATA[<p>The diabolical triumpherate of  Misers Perkins, Medallion, and The Juice bringing their dogma to the masses.  Peep the email or follow us on Twitter to learn more.  No media whoring opportunities or indecent proposals will be ignored.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sevenpixels.com/2010/01/friends-of-the-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Wave Invites</title>
		<link>http://www.sevenpixels.com/2009/12/google-wave-invites/</link>
		<comments>http://www.sevenpixels.com/2009/12/google-wave-invites/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 19:14:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Online Tools]]></category>

		<guid isPermaLink="false">http://www.sevenpixels.com/?p=143</guid>
		<description><![CDATA[I have 25 Google Wave invites to hand out.  So far I&#8217;ve been using it here and there, but really haven&#8217;t found a great purpose for it yet.  I&#8217;m sure I will run into it one day but for now, it&#8217;s kind of just a cool toy to play around with.
If you are looking for [...]]]></description>
			<content:encoded><![CDATA[<p>I have 25 <a href="http://wave.google.com">Google Wave</a> invites to hand out.  So far I&#8217;ve been using it here and there, but really haven&#8217;t found a great purpose for it yet.  I&#8217;m sure I will run into it one day but for now, it&#8217;s kind of just a cool toy to play around with.</p>
<p>If you are looking for an invite, please leave a comment with a valid email address and I will send the invite to that address.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sevenpixels.com/2009/12/google-wave-invites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Colorize your Macheist avatar</title>
		<link>http://www.sevenpixels.com/2009/11/colorize-your-macheist-avatar/</link>
		<comments>http://www.sevenpixels.com/2009/11/colorize-your-macheist-avatar/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 21:20:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Online Tools]]></category>

		<guid isPermaLink="false">http://www.sevenpixels.com/?p=137</guid>
		<description><![CDATA[
It looks like Macheist is at it again.  A new puzzle started a few days ago.  Apparently in just under 1 day and 3 hours from now there will be an impact!  I&#8217;m kind of excited to see what kind of puzzles and apps come along with the Macheist bundle this year.  Anyways, last year [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-140" title="macheist" src="http://www.sevenpixels.com/wp-content/uploads/2009/11/macheist.jpg" alt="macheist" width="454" height="350" /></p>
<p>It looks like <a href="http://www.macheist.com">Macheist</a> is at it again.  A new puzzle started a few days ago.  Apparently in just under 1 day and 3 hours from now there will be an impact!  I&#8217;m kind of excited to see what kind of puzzles and apps come along with the Macheist bundle this year.  Anyways, last year Macheist broke everyone off into 4 teams.  Blue, Green, Orange, and Purple.  I made a quick script to colorize your avatar.<span id="more-137"></span></p>
<p>Just upload the image and select the team you are on and your image will be shaded with the appropriate color.  The script works best with solid images.  It seems to have an issue with images that have any kind of transparency in them.  If you have any problems please let me know so I can fix them.  Thanks!</p>
<p><a href="http://www.sevenpixels.com/macheist-colorize/">http://www.sevenpixels.com/macheist-colorize/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sevenpixels.com/2009/11/colorize-your-macheist-avatar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typekit Invites</title>
		<link>http://www.sevenpixels.com/2009/10/typekit-invites/</link>
		<comments>http://www.sevenpixels.com/2009/10/typekit-invites/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 17:01:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Online Tools]]></category>

		<guid isPermaLink="false">http://www.sevenpixels.com/?p=133</guid>
		<description><![CDATA[I won&#8217;t even be able to do justice to what exactly Typekit is or how cool it is.  But read below for a great description of what Typekit does.  Right now Typekit is in an invitation only mode, and I have 4 invitations left to hand out.  If you would like an invitation then just [...]]]></description>
			<content:encoded><![CDATA[<p>I won&#8217;t even be able to do justice to what exactly Typekit is or how cool it is.  But read below for a great description of what Typekit does.  Right now Typekit is in an invitation only mode, and I have 4 invitations left to hand out.  If you would like an invitation then just make a comment and make sure to include your name and valid email address so it can be sent to you.<span id="more-133"></span></p>
<p>So here’s the situation: Every major browser is about to support the ability to link to a font. That means you can write a bit of CSS, include a URL to a font file, and have your page display with the typography you expect. For designers and developers, this is a significant step forward. No longer will you need to trap your content in images or Flash just to express yourself visually. Pages will be more usable, accessible, and indexable. This is a massive upgrade for the web.</p>
<p>But there’s a problem. While it’s technically quite easy to link to fonts, it’s legally more nuanced. Almost all fonts are protected by copyright — even those available for free — and very few of them allow for linking via CSS or redistribution on the web. This is understandable; font files represent countless hours of finely detailed labor. Appropriately, type designers are concerned that they’ll lose control of all that hard work.</p>
<p>That’s where Typekit comes in. We’ve been working with foundries to develop a consistent web-only font linking license. We’ve built a technology platform that lets us to host both free and commercial fonts in a way that is incredibly fast, smoothes out differences in how browsers handle type, and offers the level of protection that type designers need without resorting to annoying and ineffective DRM.</p>
<p>As a Typekit user, you’ll have access to our library of high-quality fonts. Just add a line of JavaScript to your markup, tell us what fonts you want to use, and then craft your pages the way you always have. Except now you’ll be able to use real fonts. This really is going to change web design.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sevenpixels.com/2009/10/typekit-invites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Plugin: Remove Internal Link nofollow</title>
		<link>http://www.sevenpixels.com/2009/10/wordpress-plugin-remove-internal-link-nofollow/</link>
		<comments>http://www.sevenpixels.com/2009/10/wordpress-plugin-remove-internal-link-nofollow/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 03:16:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.sevenpixels.com/?p=126</guid>
		<description><![CDATA[Just the other day I read an article asking whether you should ping your own posts or not.  I wrote a plugin that will remove the rel=&#8221;external nofollow&#8221; tag from all links that are from your blog URL, but it will still leave the tag on all of the external URL&#8217;s. Using the Remove Internal [...]]]></description>
			<content:encoded><![CDATA[<p>Just the other day I read an article asking whether you should <a href="http://weblogtoolscollection.com/archives/2009/10/04/pinging-your-own-blog-posts-good-or-bad/">ping your own posts or not</a>.  I wrote a plugin that will remove the rel=&#8221;external nofollow&#8221; tag from all links that are from your blog URL, but it will still leave the tag on all of the external URL&#8217;s. Using the Remove Internal Link nofollow plugin will ensure that all of your internal links will get the link juice, and none of the external links.<span id="more-126"></span></p>
<p>There isn&#8217;t much to it, just unzip &#8220;remove-internal-nofollow.zip&#8221; and then upload it to your &#8220;/wp-content/plugins/&#8221; directory.  Once that&#8217;s done visit the Installed Plugins admin page and activate the plugin.  There are no settings to configure.</p>
<p>Download <a href="http://www.sevenpixels.com/wp-content/uploads/2009/10/remove-internal-nofollow.zip">remove-internal-nofollow.zip</a> (4 KB)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sevenpixels.com/2009/10/wordpress-plugin-remove-internal-link-nofollow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
