<?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>ATLChris.com</title>
	
	<link>http://atlchris.com</link>
	<description />
	<lastBuildDate>Sat, 03 Mar 2012 19:30:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Atlchris" /><feedburner:info uri="atlchris" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Atlchris</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Quick Tip: Hide Mobile Web Browser Address Bar Improved</title>
		<link>http://feedproxy.google.com/~r/Atlchris/~3/yE8cYK6Rq9I/</link>
		<comments>http://atlchris.com/1847/quick-tip-hide-mobile-web-browser-address-bar-improved/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 15:09:25 +0000</pubDate>
		<dc:creator>Chris Lentz</dc:creator>
				<category><![CDATA[Quick Coding Tips]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://atlchris.com/?p=1847</guid>
		<description><![CDATA[If you have ever developed for the mobile web, you have probably come across this little snippet of JavaScript which enables you to hide the mobile browsers address bar: function hideURLbar() { window.scrollTo(0, 1); } if (navigator.userAgent.indexOf('iPhone') != -1 &#124;&#124; navigator.userAgent.indexOf('Android') != -1) { addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); } This code hides [...]]]></description>
			<content:encoded><![CDATA[<p>If you have ever developed for the mobile web, you have probably come across this little snippet of JavaScript which enables you to hide the mobile browsers address bar:</p>
<pre><code>function hideURLbar() {
	window.scrollTo(0, 1);
}

if (navigator.userAgent.indexOf('iPhone') != -1 || navigator.userAgent.indexOf('Android') != -1) {
    addEventListener("load", function() {
            setTimeout(hideURLbar, 0);
    }, false);
}</code></pre>
<p>This code hides the browser address bar in iOS and Android if the length of the pages content is long enough. This is a very common function and is excellent if you would like to increase the mobile browsers content viewable area. I have one small problem with it, it doesn&#8217;t take into account page anchors (http://www.example.com/#comments). When the page loads with a page anchor, it cancels out this anchor and scrolls to the top on load.</p>
<p>I propose an improvement to this code javascript snippet that will add a page anchor check statement prior to the <code>window.scrollTo(0, 1);</code> function.</p>
<pre><code>function hideURLbar() {
	if (window.location.hash.indexOf('#') == -1) {
		window.scrollTo(0, 1);
	}
}

if (navigator.userAgent.indexOf('iPhone') != -1 || navigator.userAgent.indexOf('Android') != -1) {
    addEventListener("load", function() {
            setTimeout(hideURLbar, 0);
    }, false);
}</code></pre>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://atlchris.com/1598/htc-incredible-reviewed/" title="HTC Incredible Reviewed">HTC Incredible Reviewed</a><br /><small>The HTC Incredible on the Verizon Wirele...</small></li><li><a href="http://atlchris.com/1269/motorola-droid-review-the-software-android-2-0/" title="Motorola Droid Review: The Software (Android 2.0)">Motorola Droid Review: The Software (And...</a><br /><small>
In part 3 of my review of the Motorola...</small></li><li><a href="http://atlchris.com/1155/motorola-droid-unboxing/" title="Motorola Droid Unboxing">Motorola Droid Unboxing</a><br /><small>In this video, I am unboxing the new hig...</small></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Atlchris?a=yE8cYK6Rq9I:bF3-iT0vWH8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Atlchris?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=yE8cYK6Rq9I:bF3-iT0vWH8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=yE8cYK6Rq9I:bF3-iT0vWH8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=yE8cYK6Rq9I:bF3-iT0vWH8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=yE8cYK6Rq9I:bF3-iT0vWH8:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Atlchris/~4/yE8cYK6Rq9I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://atlchris.com/1847/quick-tip-hide-mobile-web-browser-address-bar-improved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://atlchris.com/1847/quick-tip-hide-mobile-web-browser-address-bar-improved/</feedburner:origLink></item>
		<item>
		<title>Simply Business WordPress v2.0 Update</title>
		<link>http://feedproxy.google.com/~r/Atlchris/~3/78dfsdGL8jM/</link>
		<comments>http://atlchris.com/1797/simply-business-wordpress-v2-0-update/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 14:35:49 +0000</pubDate>
		<dc:creator>Chris Lentz</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[business theme]]></category>
		<category><![CDATA[simply business]]></category>
		<category><![CDATA[Small Business]]></category>
		<category><![CDATA[ThemeForest]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://atlchris.com/?p=1797</guid>
		<description><![CDATA[Today, I have officially released version 2.0 of my popular premium business WordPress theme, Simply Business. Simply Business WordPress v2.0 brings a ton of new features, bug fixes, and full WordPress 3.3 support! This theme can be purchased on ThemeForest.net for only $30.00. Features Complex cms functionality Ajax contact form Full widget support Shortcodes Custom [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://atlchris.com/wp-content/uploads/2012/02/01_preview.jpg" alt="" title="Simply Business - WordPress: Preview" width="590" height="300" class="alignleft size-full wp-image-1803" /></p>
<div style="height: 20px; width: 100%; overflow: hidden;"></div>
<p>Today, I have officially released version 2.0 of my popular premium business WordPress theme, Simply Business. Simply Business WordPress v2.0 brings a ton of new features, bug fixes, and full WordPress 3.3 support! This theme can be purchased on <a href="http://themeforest.net/item/simply-business-wordpress/88617?ref=atlchris">ThemeForest.net</a> for only $30.00.</p>
<p><span id="more-1797"></span></p>
<h2>Features</h2>
<ul>
<li>Complex cms functionality</li>
<li>Ajax contact form</li>
<li>Full widget support</li>
<li>Shortcodes</li>
<li>Custom widgets &#038; shortcodes</li>
<li>Testimonial custom post type</li>
<li>Portfolio custom port type</li>
<li>Redesigned theme options panel</li>
<li>Unlimited color combination’s w/ color picking tool</li>
<li>Custom jQuery powered image slider</li>
<li>Search engine optimized (SEO) design and code to help you increase search engine rankings.</li>
<li>Support for WordPress menus</li>
<li>Lightbox functionality</li>
<li>Pagination support</li>
<li>Much much more&#8230;</li>
</ul>
<h2>Theme Screenshots</h2>
<p><a href="http://atlchris.com/wp-content/uploads/2012/02/Simply-Business.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Simply-Business-125x125.jpg" alt="" title="Simply Business - WordPress: Homepage" width="125" height="125" class="alignleft size-thumbnail wp-image-1827" /></a> <a href="http://atlchris.com/wp-content/uploads/2012/02/Shortcodes-Simply-Business.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Shortcodes-Simply-Business-125x125.jpg" alt="Simply Business - WordPress: Shortcodes" title="Simply Business - WordPress: Shortcodes" width="125" height="125" class="alignleft size-thumbnail wp-image-1825" /></a> <a href="http://atlchris.com/wp-content/uploads/2012/02/Testimonials-Simply-Business.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Testimonials-Simply-Business-125x125.jpg" alt="Simply Business - WordPress: Testimonials" title="Simply Business - WordPress: Testimonials" width="125" height="125" class="alignleft size-thumbnail wp-image-1826" /></a> <a href="http://atlchris.com/wp-content/uploads/2012/02/Two-Column-Template-Simply-Business.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Two-Column-Template-Simply-Business-125x125.jpg" alt="Simply Business - WordPress: Portfolio Template 2" title="Simply Business - WordPress: Portfolio Template 2" width="125" height="125" class="alignleft size-thumbnail wp-image-1822" /></a> <a href="http://atlchris.com/wp-content/uploads/2012/02/Three-Column-Template-Simply-Business.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Three-Column-Template-Simply-Business-125x125.jpg" alt="Simply Business - WordPress: Portfolio Template 3" title="Simply Business - WordPress: Portfolio Template 3" width="125" height="125" class="alignleft size-thumbnail wp-image-1828" /></a> <a href="http://atlchris.com/wp-content/uploads/2012/02/Lorem-ipsum-Simply-Business.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Lorem-ipsum-Simply-Business-125x125.jpg" alt="Simply Business - WordPress: Portfolio Item" title="Simply Business - WordPress: Portfolio Item" width="125" height="125" class="alignleft size-thumbnail wp-image-1821" /></a> <a href="http://atlchris.com/wp-content/uploads/2012/02/Blog-Simply-Business.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Blog-Simply-Business-125x125.jpg" alt="Simply Business - WordPress: Blog" title="Simply Business - WordPress: Blog" width="125" height="125" class="alignleft size-thumbnail wp-image-1823" /></a> <a href="http://atlchris.com/wp-content/uploads/2012/02/Contact-Simply-Business.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Contact-Simply-Business-125x125.jpg" alt="Simply Business - WordPress: Contact" title="Simply Business - WordPress: Contact" width="125" height="125" class="alignleft size-thumbnail wp-image-1824" /></a></p>
<div style="height: 20px; width: 100%; overflow: hidden;"></div>
<h2>Theme Options Panel Screenshots</h2>
<p><a href="http://atlchris.com/wp-content/uploads/2012/02/Theme-Options-‹-Simply-Business-—-WordPress.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Theme-Options-‹-Simply-Business-—-WordPress-125x125.jpg" alt="Simply Business - WordPress: Theme Options" title="Simply Business - WordPress: Theme Options" width="125" height="125" class="alignleft size-thumbnail wp-image-1834" /></a> <a href="http://atlchris.com/wp-content/uploads/2012/02/Theme-Options-‹-Simply-Business-—-WordPress-2.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Theme-Options-‹-Simply-Business-—-WordPress-2-125x125.jpg" alt="Simply Business - WordPress: Theme Options 2" title="Simply Business - WordPress: Theme Options 2" width="125" height="125" class="alignleft size-thumbnail wp-image-1832" /></a> <a href="http://atlchris.com/wp-content/uploads/2012/02/Theme-Options-‹-Simply-Business-—-WordPress-3.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Theme-Options-‹-Simply-Business-—-WordPress-3-125x125.jpg" alt="Simply Business - WordPress: Theme Options 3" title="Simply Business - WordPress: Theme Options 3" width="125" height="125" class="alignleft size-thumbnail wp-image-1833" /></a> <a href="http://atlchris.com/wp-content/uploads/2012/02/Theme-Options-‹-Simply-Business-—-WordPress-4.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Theme-Options-‹-Simply-Business-—-WordPress-4-125x125.jpg" alt="Simply Business - WordPress: Theme Options 4" title="Simply Business - WordPress: Theme Options 4" width="125" height="125" class="alignleft size-thumbnail wp-image-1830" /></a> <a href="http://atlchris.com/wp-content/uploads/2012/02/Theme-Options-‹-Simply-Business-—-WordPress-5.jpg"><img src="http://atlchris.com/wp-content/uploads/2012/02/Theme-Options-‹-Simply-Business-—-WordPress-5-125x125.jpg" alt="Simply Business - WordPress: Theme Options 5" title="Simply Business - WordPress: Theme Options 5" width="125" height="125" class="alignleft size-thumbnail wp-image-1831" /></a></p>
<div style="height: 20px; width: 100%; overflow: hidden;"></div>
<h2>Changelog</h2>
<ul>
<li>v2.0 &#8211; 1/20/2012:
<ul>
<li>[ADD] added the ability to upload a logo and favicon directly from the theme options panel.</li>
<li>[ADD] added portfolio custom post type with custom backend and 3 template options.</li>
<li>[ADD] pagination navigation added across the site.</li>
<li>[ADD] added footer navigation.</li>
<li>[ADD] added a color picker to all color select options in the theme options panel.</li>
<li>[ADD] added lightbox functionality throughout the site with Slimbox 2.</li>
<li>[ADD] added 8 highly customizable and well written shortcodes.</li>
<li>[ADD] added 6 highly customizable and well written widgets.</li>
<li>[CHANGE] theme completely rewritten to take full advantage of WordPress v3.3.</li>
<li>[CHANGE] fully redesigned theme options panel.</li>
<li>[CHANGE] homepage slider now uses custom/optimized jQuery.</li>
<li>[CHANGE] homepage content box 1 can now be driven by either the blog or a page. (Highly Requested Feature!)</li>
<li>[CHANGE] testimonials are now handled via custom post type for optimal integration.</li>
<li>[CHANGE] header and footer navigation is now controlled via the WordPress menus manager.</li>
</ul>
</li>
</ul>
<div style="font-size: 25px; font-weight: 700;">Simply Business WordPress is available for purchase on <a href="http://themeforest.net/item/simply-business-wordpress/88617?ref=atlchris">ThemeForest.net</a> for only $30.00!</div>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://atlchris.com/1391/simply-business-wordpress-theme-now-available/" title="Simply Business Wordpress Theme Now Available">Simply Business Wordpress Theme Now Avai...</a><br /><small>Just a quick note, to let you all know t...</small></li><li><a href="http://atlchris.com/1665/how-to-create-custom-share-buttons-for-all-the-popular-social-services/" title="How-To: Create Custom Share Buttons For All The Popular Social Services">How-To: Create Custom Share Buttons For ...</a><br /><small>For those of you that follow me, you are...</small></li><li><a href="http://atlchris.com/1543/improve-your-writing-with-wordy-com/" title="Improve Your Writing With Wordy.com">Improve Your Writing With Wordy.com</a><br /><small>A few weeks ago, I discovered a site cal...</small></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Atlchris?a=78dfsdGL8jM:U4jKxxVoJys:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Atlchris?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=78dfsdGL8jM:U4jKxxVoJys:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=78dfsdGL8jM:U4jKxxVoJys:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=78dfsdGL8jM:U4jKxxVoJys:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=78dfsdGL8jM:U4jKxxVoJys:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Atlchris/~4/78dfsdGL8jM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://atlchris.com/1797/simply-business-wordpress-v2-0-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://atlchris.com/1797/simply-business-wordpress-v2-0-update/</feedburner:origLink></item>
		<item>
		<title>COOL: The Wilderness Downtown Project</title>
		<link>http://feedproxy.google.com/~r/Atlchris/~3/VCNcvOwzqMo/</link>
		<comments>http://atlchris.com/1781/the-wilderness-downtown-project/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 18:12:27 +0000</pubDate>
		<dc:creator>Chris Lentz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://atlchris.com/?p=1781</guid>
		<description><![CDATA[OK, I don&#8217;t normally post short posts on this site, but this is worth sharing. The Wilderness Downtown Project, might be one of the coolest most creative websites I have ever come across on the web. It is an HTML 5 interactive Google Maps film that is customized for you. When you get to the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://atlchris.com/wp-content/uploads/2010/09/Screen-shot-2010-09-14-at-2.07.35-PM-275x190.png" alt="The Wilderness Downtown Project" title="The Wilderness Downtown Project" width="275" height="190" class="alignleft size-medium wp-image-1782" style="margin: 0 20px;" />OK, I don&#8217;t normally post short posts on this site, but this is worth sharing. The Wilderness Downtown Project, might be one of the coolest most creative websites I have ever come across on the web. It is an HTML 5 interactive Google Maps film that is customized for you.</p>
<p>When you get to the site, enter the address you grew up in then click search. An HTML5 video like you have never seen before will begin playing.</p>
<p>Just trust me, browse over to <a href="http://thewildernessdowntown.com/">http://thewildernessdowntown.com</a> in an HTML 5 browser and be amazed!</p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://atlchris.com/1598/htc-incredible-reviewed/" title="HTC Incredible Reviewed">HTC Incredible Reviewed</a><br /><small>The HTC Incredible on the Verizon Wirele...</small></li><li><a href="http://atlchris.com/1285/motorola-droid-review-summary/" title="Motorola Droid Review: Summary">Motorola Droid Review: Summary</a><br /><small>The 4th and final post in my series of t...</small></li><li><a href="http://atlchris.com/1269/motorola-droid-review-the-software-android-2-0/" title="Motorola Droid Review: The Software (Android 2.0)">Motorola Droid Review: The Software (And...</a><br /><small>
In part 3 of my review of the Motorola...</small></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Atlchris?a=VCNcvOwzqMo:aMYo8IEqQOo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Atlchris?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=VCNcvOwzqMo:aMYo8IEqQOo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=VCNcvOwzqMo:aMYo8IEqQOo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=VCNcvOwzqMo:aMYo8IEqQOo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=VCNcvOwzqMo:aMYo8IEqQOo:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Atlchris/~4/VCNcvOwzqMo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://atlchris.com/1781/the-wilderness-downtown-project/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://atlchris.com/1781/the-wilderness-downtown-project/</feedburner:origLink></item>
		<item>
		<title>My Apple TV / iTV Theory</title>
		<link>http://feedproxy.google.com/~r/Atlchris/~3/Hu74mEY6Lro/</link>
		<comments>http://atlchris.com/1768/my-apple-tv-itv-theory/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 16:04:55 +0000</pubDate>
		<dc:creator>Chris Lentz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iMac]]></category>
		<category><![CDATA[iTV]]></category>
		<category><![CDATA[Mac Mini]]></category>
		<category><![CDATA[Magic Trackpad]]></category>
		<category><![CDATA[media center]]></category>
		<category><![CDATA[Plex]]></category>

		<guid isPermaLink="false">http://atlchris.com/?p=1768</guid>
		<description><![CDATA[OK, just wanted to make a quick post about a little theory I have regarding Apple and the unannounced Aug/Sept event. This has nothing todo with iPod, I mean I am sure they will introduce new iPod Touches, but that is a given. My Theory is regarding the iTV. A lot of people have been [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://atlchris.com/wp-content/uploads/2010/08/images.jpg" alt="" title="Apple Logo" width="259" height="194" class="alignleft size-full wp-image-1776" /> OK, just wanted to make a quick post about a little theory I have regarding Apple and the unannounced Aug/Sept event. This has nothing todo with iPod, I mean I am sure they will introduce new iPod Touches, but that is a given. My Theory is regarding the iTV. A lot of people have been speculating that Apple is going to refresh the Apple TV. There are also rumors going around about a new mystery iLife application.</p>
<p>My theory is that the new mystery iLife application is going to be iTV. They just released a Mac Mini with HDMI out, they have an iMac large enough to use as a TV, and they have a new input device, the <a href="http://store.apple.com/us/product/MC380?mco=MTg1ODA4MTU">Magic Trackpad</a>. I think they are going to scrap Apple TV as a hardware device and introduce a new couch/remote friendly application called iTV to the iLife suite. Yes, I know they already have Front Row, but seriously, who uses that, it is total crap.</p>
<p>I personally am all for this, I currently have a Mac Mini hooked up to my 50&#8243; Plasma and am currently running Plex, a great Media Center application. Apple has hinted that streaming movies would hit the cloud before streaming music, so could the new mystery data center and the mystery iLife application be connected to allow us to download and stream TV Shows and Movies in a whole new way?</p>
<p>What are your thoughts? Would you use this?</p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://atlchris.com/1586/building-the-ultimate-media-center-pc-part-1/" title="Building The Ultimate Media Center PC: Part 1">Building The Ultimate Media Center PC: P...</a><br /><small>About 2 months ago, I decided to take it...</small></li><li><a href="http://atlchris.com/1745/iphone-4-case-program-launched/" title="iPhone 4 Case Program Launched">iPhone 4 Case Program Launched</a><br /><small>

Well, as promised Apple has activate...</small></li><li><a href="http://atlchris.com/1713/ios-4-detects-shipment-tracking-numbers/" title="iOS 4 Detects Shipment Tracking Numbers">iOS 4 Detects Shipment Tracking Numbers</a><br /><small>I opened my email today on my iPhone 4 a...</small></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Atlchris?a=Hu74mEY6Lro:eOU4pd5yTT0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Atlchris?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=Hu74mEY6Lro:eOU4pd5yTT0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=Hu74mEY6Lro:eOU4pd5yTT0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=Hu74mEY6Lro:eOU4pd5yTT0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=Hu74mEY6Lro:eOU4pd5yTT0:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Atlchris/~4/Hu74mEY6Lro" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://atlchris.com/1768/my-apple-tv-itv-theory/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://atlchris.com/1768/my-apple-tv-itv-theory/</feedburner:origLink></item>
		<item>
		<title>iPhone 4 Case Program Launched</title>
		<link>http://feedproxy.google.com/~r/Atlchris/~3/SHtz-AmCodo/</link>
		<comments>http://atlchris.com/1745/iphone-4-case-program-launched/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 14:02:35 +0000</pubDate>
		<dc:creator>Chris Lentz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Bumper]]></category>
		<category><![CDATA[iPhone 4]]></category>
		<category><![CDATA[iPhone 4 Free Case Program]]></category>

		<guid isPermaLink="false">http://atlchris.com/?p=1745</guid>
		<description><![CDATA[Well, as promised Apple has activated the iPhone 4 FREE case program. If you already purchased a bumper from Apple, you will automatically get your refund. Emails concerning this have already been floating around. How about those that didn&#8217;t buy a bump? It looks like Apple is going to be handling this through an iPhone [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://atlchris.com/wp-content/uploads/2010/07/Screen-shot-2010-07-23-at-9.54.19-AM.png"><img src="http://atlchris.com/wp-content/uploads/2010/07/Screen-shot-2010-07-23-at-9.54.19-AM-275x184.png" alt="" title="iPhone 4 Case Program" width="275" height="184" class="aligncenter size-medium wp-image-1746" /></a></p>
<p>Well, as promised Apple has activated the iPhone 4 FREE case program. If you already purchased a bumper from Apple, you will automatically get your refund. Emails concerning this have already been floating around.</p>
<p>How about those that didn&#8217;t buy a bump? It looks like Apple is going to be handling this through an iPhone app. The application you have to download is called &#8220;iPhone 4 Case Program&#8221; and it is currently available in the app store. Pretty much, you just open the app, login with your iTunes credentials, then you are presented with a list of cases. Pick which one you want, and vola, it will show up in the mail soon.<span id="more-1745"></span></p>
<p><a href="http://www.apple.com/iphone/case-program/">iPhone 4 Case Program Details</a></p>
<p>UPDATE 1: The iPhone application currently lists all cases as &#8220;Ships 3-5 weeks&#8221;.</p>
<p>UPDATE 2: In app pictures below:</p>
<p style="text-align: center;"><a href="http://atlchris.com/wp-content/uploads/2010/07/Mobile-Photo-Jul-23-2010-10-23-20-AM.jpg"><img src="http://atlchris.com/wp-content/uploads/2010/07/Mobile-Photo-Jul-23-2010-10-23-20-AM-183x275.jpg" alt="" title="iPhone 4 Case Program" width="183" height="275" class="size-medium wp-image-1751" /></a> <a href="http://atlchris.com/wp-content/uploads/2010/07/Mobile-Photo-Jul-23-2010-10-23-28-AM.jpg"><img src="http://atlchris.com/wp-content/uploads/2010/07/Mobile-Photo-Jul-23-2010-10-23-28-AM-183x275.jpg" alt="" title="iPhone 4 Case Program" width="183" height="275" class="size-medium wp-image-1752" /></a></p>
<p>UPDATE 3: I ordered the InCase Snap (Smoke) case. It seemed like a pretty solid pick out of the group. I was impressed though with the selection they had. I will do a full review on the case when it is received.</p>
<p>Stay tuned, I will post further details about shipping times and the overall ordering process.</p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://atlchris.com/1713/ios-4-detects-shipment-tracking-numbers/" title="iOS 4 Detects Shipment Tracking Numbers">iOS 4 Detects Shipment Tracking Numbers</a><br /><small>I opened my email today on my iPhone 4 a...</small></li><li><a href="http://atlchris.com/1623/wwdc-keynote-wrap-up-iphone-4-ios-facetime/" title="WWDC Keynote Wrap-Up (iPhone 4, iOS, FaceTime, &#8230;)">WWDC Keynote Wrap-Up (iPhone 4, iOS, Fac...</a><br /><small>

This morning Steve took the stage at...</small></li><li><a href="http://atlchris.com/1768/my-apple-tv-itv-theory/" title="My Apple TV / iTV Theory">My Apple TV / iTV Theory</a><br /><small> OK, just wanted to make a quick post ab...</small></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Atlchris?a=SHtz-AmCodo:YhKx1AZ2LGQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Atlchris?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=SHtz-AmCodo:YhKx1AZ2LGQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=SHtz-AmCodo:YhKx1AZ2LGQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=SHtz-AmCodo:YhKx1AZ2LGQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=SHtz-AmCodo:YhKx1AZ2LGQ:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Atlchris/~4/SHtz-AmCodo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://atlchris.com/1745/iphone-4-case-program-launched/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://atlchris.com/1745/iphone-4-case-program-launched/</feedburner:origLink></item>
		<item>
		<title>Hulu Plus Announced (With Support for iPhone &amp; iPad)</title>
		<link>http://feedproxy.google.com/~r/Atlchris/~3/GGEZxL1MO_o/</link>
		<comments>http://atlchris.com/1724/hulu-plus-announced/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 19:38:20 +0000</pubDate>
		<dc:creator>Chris Lentz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Hulu]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://atlchris.com/?p=1724</guid>
		<description><![CDATA[Today, Hulu officially announced their new premium service, Hulu Plus. Hulu Plus is a premium service that is going to be offered for $9.99 a month. No launch date for the new service is available at this time, but some are reporting the private beta preview is under way. So, what exactly do you get [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://atlchris.com/wp-content/uploads/2010/06/huluTM_355.jpg"><img src="http://atlchris.com/wp-content/uploads/2010/06/huluTM_355-275x131.jpg" alt="" title="Hulu Logo" width="275" height="131" class="alignleft size-medium wp-image-1728" /></a>Today, Hulu officially announced their new premium service, Hulu Plus. Hulu Plus is a premium service that is going to be offered for $9.99 a month. No launch date for the new service is available at this time, but some are reporting the private beta preview is under way. So, what exactly do you get for this premium $9.99/month price tag, well you get a lot:</p>
<ul>
<li>Access via many new devices including: iPhone, iPad, iPod, Internet Connected TV&#8217;s, Playstation 3, Xbox 360, and <a href="http://www.hulu.com/plus/devices">more&#8230;</a></li>
<li>Current season tickets to popular current TV shows including: Glee, The Office, Modern Family, Grey&#8217;s Anatomy, Family Guy, and <a href="http://www.hulu.com/plus/content">more&#8230;</a></li>
<li>Full series back cateloges of current and past TV Series including: Heroes, Buffy the Vampire Slayer, Arrest and Development, and <a href="http://www.hulu.com/plus/content">more&#8230;</a></li>
</ul>
<p>There is no word yet whether this premium service will be ad free or not ad-supported. I would hope that paying would remove the ads completely. Currently the service is in private beta. You can request an invite at <a href="http://www.hulu.com/plus">http://www.hulu.com/plus</a>. There is no ETA on when the service will launch publicly or when &#8220;Requested Invites&#8221; will beging to roll out. Check out the introduction video below which showcases all the new content the service has to offer.<span id="more-1724"></span></p>
<p style="text-align: center"><object width="512" height="288"><param name="movie" value="http://www.hulu.com/embed/xU5ewlrAzMdqdjaUwT5z4g"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.hulu.com/embed/xU5ewlrAzMdqdjaUwT5z4g" type="application/x-shockwave-flash"  width="512" height="288" allowFullScreen="true"></embed></object></p>
<p>I personally will sign up for the service, in fact it might be the final nail-in-the-coffin for my cable services I currently have will Charter Communications. One thing I would love to see, is the addition of premium cable series, i.e. Entourage, True Blood, &#8230; I would be willing to add another $5.00 a month if I could get some of those shows. I am also curious to whether they will be beefing up their movie catelog offerings.</p>
<p>Would you be willing to pay $9.99 for this service? </p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://atlchris.com/593/boxee-reviewed-invites/" title="Boxee Reviewed and Invites">Boxee Reviewed and Invites</a><br /><small>

What is Boxee? Well, Boxee is a must...</small></li><li><a href="http://atlchris.com/1656/apples-new-mobile-store-suffers-downtime-on-release-day/" title="Apple&#8217;s New Mobile Store Suffers Downtime On Release Day">Apple&#8217;s New Mobile Store Suffers Downtim...</a><br /><small>This morning, I was reading all about th...</small></li><li><a href="http://atlchris.com/1405/nbcs-jeff-zucker-comments-on-hulu-and-boxees-rocky-past/" title="NBC&#8217;s Jeff Zucker Comments on Hulu and Boxee&#8217;s Rocky Past">NBC&#8217;s Jeff Zucker Comments on Hulu and B...</a><br /><small>I just received an email from Andrew Kip...</small></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Atlchris?a=GGEZxL1MO_o:g3yipchnZjE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Atlchris?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=GGEZxL1MO_o:g3yipchnZjE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=GGEZxL1MO_o:g3yipchnZjE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=GGEZxL1MO_o:g3yipchnZjE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=GGEZxL1MO_o:g3yipchnZjE:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Atlchris/~4/GGEZxL1MO_o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://atlchris.com/1724/hulu-plus-announced/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://atlchris.com/1724/hulu-plus-announced/</feedburner:origLink></item>
		<item>
		<title>iOS 4 Detects Shipment Tracking Numbers</title>
		<link>http://feedproxy.google.com/~r/Atlchris/~3/yGOL0-Mi93c/</link>
		<comments>http://atlchris.com/1713/ios-4-detects-shipment-tracking-numbers/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 02:31:01 +0000</pubDate>
		<dc:creator>Chris Lentz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[DHL]]></category>
		<category><![CDATA[FedEx]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPhone 4]]></category>
		<category><![CDATA[UPS]]></category>

		<guid isPermaLink="false">http://atlchris.com/?p=1713</guid>
		<description><![CDATA[I opened my email today on my iPhone 4 and discovered that iOS 4 now detects various tracking numbers and links them to the appropriate tracking website. Not a huge find, but defiantly useful hidden feature of iOS 4. Click on a tracking number in your email, and Apple will present you with the following [...]]]></description>
			<content:encoded><![CDATA[<p>I opened my email today on my iPhone 4 and discovered that iOS 4 now detects various tracking numbers and links them to the appropriate tracking website. Not a huge find, but defiantly useful hidden feature of iOS 4. Click on a tracking number in your email, and Apple will present you with the following screen. When you click &#8220;Track Shipment&#8221; iOS 4 will figure out which shipping provider the number applies to and will link you to the appropriate tracking website.</p>
<p><a href="http://atlchris.com/wp-content/uploads/2010/06/ios4-track-shipping1.jpg"><img src="http://atlchris.com/wp-content/uploads/2010/06/ios4-track-shipping1-333x500.jpg" alt="" title="iOS 4 Shipment Tracking Feature" width="333" height="500" class="aligncenter size-large wp-image-1722" /></a></p>
<p>Have you found any not so well known features in iOS 4?</p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://atlchris.com/1623/wwdc-keynote-wrap-up-iphone-4-ios-facetime/" title="WWDC Keynote Wrap-Up (iPhone 4, iOS, FaceTime, &#8230;)">WWDC Keynote Wrap-Up (iPhone 4, iOS, Fac...</a><br /><small>

This morning Steve took the stage at...</small></li><li><a href="http://atlchris.com/1745/iphone-4-case-program-launched/" title="iPhone 4 Case Program Launched">iPhone 4 Case Program Launched</a><br /><small>

Well, as promised Apple has activate...</small></li><li><a href="http://atlchris.com/1656/apples-new-mobile-store-suffers-downtime-on-release-day/" title="Apple&#8217;s New Mobile Store Suffers Downtime On Release Day">Apple&#8217;s New Mobile Store Suffers Downtim...</a><br /><small>This morning, I was reading all about th...</small></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Atlchris?a=yGOL0-Mi93c:zgor8M_DLek:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Atlchris?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=yGOL0-Mi93c:zgor8M_DLek:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=yGOL0-Mi93c:zgor8M_DLek:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=yGOL0-Mi93c:zgor8M_DLek:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=yGOL0-Mi93c:zgor8M_DLek:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Atlchris/~4/yGOL0-Mi93c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://atlchris.com/1713/ios-4-detects-shipment-tracking-numbers/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		<feedburner:origLink>http://atlchris.com/1713/ios-4-detects-shipment-tracking-numbers/</feedburner:origLink></item>
		<item>
		<title>How-To: Create Custom Share Buttons For All The Popular Social Services</title>
		<link>http://feedproxy.google.com/~r/Atlchris/~3/FSoO3srqR2U/</link>
		<comments>http://atlchris.com/1665/how-to-create-custom-share-buttons-for-all-the-popular-social-services/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 01:03:53 +0000</pubDate>
		<dc:creator>Chris Lentz</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Delicious]]></category>
		<category><![CDATA[Digg]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google Buzz]]></category>
		<category><![CDATA[Linkedin]]></category>
		<category><![CDATA[Posterous]]></category>
		<category><![CDATA[Sharing]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[StumbleUpon]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://atlchris.com/?p=1665</guid>
		<description><![CDATA[For those of you that follow me, you are probably already know that I recently redesigned my post footer. For those that don&#8217;t know a post footer is the area just below this post with the &#8220;Share It!&#8221; and &#8220;Related Post&#8221; sections. I took it on myself to create a completely custom footer area with [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you that follow me, you are probably already know that I recently redesigned my post footer. For those that don&#8217;t know a post footer is the area just below this post with the &#8220;Share It!&#8221; and &#8220;Related Post&#8221; sections. I took it on myself to create a completely custom footer area with share links to many of the popular social services available today. I like my blog to be different from the other gazillion out there, so I choose to minimize my plugin use and create custom solutions.</p>
<p>Most of the popular social service out there offer pre-made javascript buttons that allow you share your pages or articles on their service. While this does make it easy, there is one problem with using their code generating methods; you are stuck with their styles and icons. I wanted to use a custom style with a different set of icons. To accomplish this, I had to take advantage of the services various &#8220;URL&#8221; submission methods. All the services offer this method, but most of them are poorly documented and are hard to find details on. After spending hours browsing the web for the various &#8220;URL&#8221; submission methods, I decided that once I finished I would post them all together in one place so people can easily find them and create their own custom share buttons. </p>
<p>Below, I am going to offer you the various services URL&#8217;s and teach you how to use them on your site.</p>
<h3>Twitter</h3>
<pre><code>http://twitter.com/home?status=[TITLE]+[URL]</code></pre>
<h3>Digg</h3>
<pre><code>http://www.digg.com/submit?phase=2&#038;url=[URL]&#038;title=[TITLE]</code></pre>
<h3>Facebook</h3>
<pre><code>http://www.facebook.com/share.php?u=[URL]&#038;title=[TITLE]</code></pre>
<p><span id="more-1665"></span></p>
<h3>StumbleUpon</h3</p>
<pre><code>http://www.stumbleupon.com/submit?url=[URL]&#038;title=[TITLE]</code></pre>
<h3>Delicious</h3>
<pre><code>http://del.icio.us/post?url=[URL]&#038;title=[TITLE]]&#038;notes=[DESCRIPTION]</code></pre>
<h3>Google Buzz</h3>
<pre><code>http://www.google.com/reader/link?title=[TITLE]&#038;url=[URL]</code></pre>
<h3>Linkedin</h3>
<pre><code>http://www.linkedin.com/shareArticle?mini=true&#038;url=[URL]&#038;title=[TITLE]&#038;source=[SOURCE/DOMAIN]</code></pre>
<h3>Slashdot</h3>
<pre><code>http://slashdot.org/bookmark.pl?url=[URL]&#038;title=[TITLE]</code></pre>
<h3>Technorati</h3>
<pre><code>http://technorati.com/faves?add=[URL]&#038;title=[TITLE]</code></pre>
<h3>Posterous</h3>
<pre><code>http://posterous.com/share?linkto=[URL]</code></pre>
<h3>Tumblr</h3>
<pre><code>http://www.tumblr.com/share?v=3&#038;u=[URL]&#038;t=[TITLE]</code></pre>
<h3>Reddit</h3>
<pre><code>http://www.reddit.com/submit?url=[URL]&#038;title=[TITLE]</code></pre>
<h3>Google Bookmarks</h3>
<pre><code>http://www.google.com/bookmarks/mark?op=edit&#038;bkmk=[URL]&#038;title=[title]&#038;annotation=[DESCRIPTION]</code></pre>
<h3>Newsvine</h3>
<pre><code>http://www.newsvine.com/_tools/seed&#038;save?u=[URL]&#038;h=[TITLE]</code></pre>
<h3>Ping.fm</h3>
<pre><code>http://ping.fm/ref/?link=[URL]&#038;title=[TITLE]&#038;body=[DESCRIPTION]</code></pre>
<h3>Evernote</h3>
<pre><code>http://www.evernote.com/clip.action?url=[URL]&#038;title=[TITLE]</code></pre>
<h3>Friendfeed</h3>
<pre><code>http://www.friendfeed.com/share?url=[URL]&#038;title=[TITLE]</code></pre>
<p>Those are the URL's you need to know, now, I know some of you are say what do I do with them? These are the URL you link your social icons too. Replace [TITLE] with the title of the page or article. Replace [URL] with the link back to the page or article. Both of these values need  to be URL in encoded for the submissions to process correctly. If you are using php, you can easily URL encode anything with:</p>
<pre><code>&lt;?PHP echo urlencode("VARIBLE"); ?&gt;</code></pre>
<p>If you are using WordPress, you can easily substitue the [URL] and [TITLE] values with WordPress codex functions. Below is the code you can use to replace the [TITLE] value:</p>
<pre><code>&lt;?php print(urlencode(the_title())); ?&gt;</code></pre>
<p>Now, the the code to replace the [URL] value:</p>
<pre><code>&lt;?php print(urlencode(get_permalink())); ?&gt;</code></pre>
<p>Now, lets take a look at it all put together for a general page with a "Share on Twitter" button:</p>
<pre><code>&lt;a href="http://twitter.com/home?status=This is the blog title.+http%3A%2F%2Fatlchris.com%2F1656%2Flink-to-page"&gt;
&lt;img src="http://atlchris.com/wp-content/themes/ATLChris/images/twitter.png" height="18" width="18" alt="Share On Twitter" /&gt;
&lt;/a></code></pre>
<p>Now, a wordpress example. This example substitutes the [TITLE] and [URL] values automatically with the current articles information with URL encoding:</p>
<pre><code>&lt;a href="http://twitter.com/home?status=&lt;?php print(urlencode(get_permalink())); ?&gt;+&lt;?php print(urlencode(the_title())); ?&gt;"&gt;
&lt;img src="http://atlchris.com/wp-content/themes/ATLChris/images/twitter.png" height="18" width="18" alt="Share On Twitter" /&gt;
&lt;/a&gt;</code></pre>
<p>I hope this helps to you create your very own custom share buttons. If you have any questions, please ask them below and I will answer them to the best of my ability. If I missed a service that you would like me to add, please leave a comment below.</p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://atlchris.com/160/iphone-3g-reviewed-the-apps-part-2/" title="iPhone 3G Reviewed: The Apps (Part 2)">iPhone 3G Reviewed: The Apps (Part 2)</a><br /><small>As you all already know, I am loving my ...</small></li><li><a href="http://atlchris.com/649/web-development-the-applications-and-services/" title="Web Development, The Applications and Services">Web Development, The Applications and Se...</a><br /><small>I wanted to do a little post on my web d...</small></li><li><a href="http://atlchris.com/358/me-today-10-5-2008/" title="Me Today 10-5-2008">Me Today 10-5-2008</a><br /><small>Just a quick video updating you all on e...</small></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Atlchris?a=FSoO3srqR2U:446N5JUAb4k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Atlchris?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=FSoO3srqR2U:446N5JUAb4k:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=FSoO3srqR2U:446N5JUAb4k:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=FSoO3srqR2U:446N5JUAb4k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=FSoO3srqR2U:446N5JUAb4k:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Atlchris/~4/FSoO3srqR2U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://atlchris.com/1665/how-to-create-custom-share-buttons-for-all-the-popular-social-services/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		<feedburner:origLink>http://atlchris.com/1665/how-to-create-custom-share-buttons-for-all-the-popular-social-services/</feedburner:origLink></item>
		<item>
		<title>Apple’s New Mobile Store Suffers Downtime On Release Day</title>
		<link>http://feedproxy.google.com/~r/Atlchris/~3/GfrelleArfA/</link>
		<comments>http://atlchris.com/1656/apples-new-mobile-store-suffers-downtime-on-release-day/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 02:48:48 +0000</pubDate>
		<dc:creator>Chris Lentz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apple Mobile Store]]></category>
		<category><![CDATA[Downtime]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone App Store]]></category>

		<guid isPermaLink="false">http://atlchris.com/?p=1656</guid>
		<description><![CDATA[This morning, I was reading all about the new Apple mobile store on my RSS feeds. Leave it up to Apple to figure out another damn way for me to spend to much money. Anyways, what I found interesting is that once I installed the application from the App Store, I was greeted with this [...]]]></description>
			<content:encoded><![CDATA[<p>This morning, I was reading all about the new Apple mobile store on my RSS feeds. Leave it up to Apple to figure out another damn way for me to spend to much money. Anyways, what I found interesting is that once I installed the application from the App Store, I was greeted with this beautiful store front:</p>
<div id="attachment_1657" class="wp-caption aligncenter" style="width: 330px"><a href="http://atlchris.com/wp-content/uploads/2010/06/photo.png"><img src="http://atlchris.com/wp-content/uploads/2010/06/photo.png" alt="" title="Apple Mobile Store Downtime" width="320" height="480" class="size-full wp-image-1657" /></a><p class="wp-caption-text">Apple Mobile Store Suffers From Downtime On Release Day</p></div>
<p>I don&#8217;t know about you all, but I am pretty sure Apple would never allow a third-party application to go live in the App Store if it was not working as advertised.</p>
<p>Should Apple hold themselves responsible for the same standards they hold their third-party developers responsible for? </p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://atlchris.com/1713/ios-4-detects-shipment-tracking-numbers/" title="iOS 4 Detects Shipment Tracking Numbers">iOS 4 Detects Shipment Tracking Numbers</a><br /><small>I opened my email today on my iPhone 4 a...</small></li><li><a href="http://atlchris.com/1623/wwdc-keynote-wrap-up-iphone-4-ios-facetime/" title="WWDC Keynote Wrap-Up (iPhone 4, iOS, FaceTime, &#8230;)">WWDC Keynote Wrap-Up (iPhone 4, iOS, Fac...</a><br /><small>

This morning Steve took the stage at...</small></li><li><a href="http://atlchris.com/1167/itunes-app-store-vs-android-market/" title="iTunes App Store vs. Android Market">iTunes App Store vs. Android Market</a><br /><small>

If you follow me on Twitter, you kno...</small></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Atlchris?a=GfrelleArfA:ZVyEKGP825g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Atlchris?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=GfrelleArfA:ZVyEKGP825g:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=GfrelleArfA:ZVyEKGP825g:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=GfrelleArfA:ZVyEKGP825g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=GfrelleArfA:ZVyEKGP825g:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Atlchris/~4/GfrelleArfA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://atlchris.com/1656/apples-new-mobile-store-suffers-downtime-on-release-day/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://atlchris.com/1656/apples-new-mobile-store-suffers-downtime-on-release-day/</feedburner:origLink></item>
		<item>
		<title>WWDC Keynote Wrap-Up (iPhone 4, iOS, FaceTime, …)</title>
		<link>http://feedproxy.google.com/~r/Atlchris/~3/7JkgJepvtRM/</link>
		<comments>http://atlchris.com/1623/wwdc-keynote-wrap-up-iphone-4-ios-facetime/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 01:21:34 +0000</pubDate>
		<dc:creator>Chris Lentz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[FaceTime]]></category>
		<category><![CDATA[HD Video]]></category>
		<category><![CDATA[iBooks]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPhone 4]]></category>
		<category><![CDATA[iVideo]]></category>
		<category><![CDATA[Retina Display]]></category>

		<guid isPermaLink="false">http://atlchris.com/?p=1623</guid>
		<description><![CDATA[This morning Steve took the stage at the annual World Wide Developers Conference. I know a gazillion tech blogs have already over covered today&#8217;s announcements, but I wanted to chime in and give my two cents on some of the new ones. For you who are looking for more detailed coverage of todays news, browse [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://atlchris.com/wp-content/uploads/2010/06/gallery06-20100607.jpg"><img class="aligncenter size-large wp-image-1628" title="iPhone 4" src="http://atlchris.com/wp-content/uploads/2010/06/gallery06-20100607-500x317.jpg" alt="" width="500" height="317" /></a></p>
<p>This morning Steve took the stage at the annual World Wide Developers Conference. I know a gazillion tech blogs have already over covered today&#8217;s announcements, but I wanted to chime in and give my two cents on some of the new ones. For you who are looking for more detailed coverage of todays news, browse on over to﻿ <a href="http://www.engadget.com/2010/06/07/iphone-4-announced/">Engadget</a>, <a href="http://mashable.com/2010/06/07/live-steve-jobs-keynote-at-wwdc">Mashable</a>, and <a href="http://arstechnica.com/apple/news/2010/06/iphone-4-unveiled-gets-hd-video-led-flash-dual-cameras.ars">ArsTechnica</a>.<span id="more-1623"></span></p>
<ul>
<li>
<p><a href="http://www.apple.com/iphone/features/"><strong>iPhone 4</strong></a>—New Design, Longer Battery Life, 5MP Camera (back), VGA Camera (forward), <a href="http://www.apple.com/iphone/features/retina-display.html">Retina Display</a>, <a href="http://www.apple.com/iphone/design/">Apple A4 Processor</a>, and a <a href="http://www.apple.com/iphone/design/">Gyroscope</a>. I must say, I am pretty stoked about what the new iPhone has to offer. The new design is beautiful, the <a href="http://www.apple.com/iphone/features/camera.html">5MP Camera</a> is capable of shooting <a href="http://www.apple.com/iphone/features/hd-video-recording.html">HD 720 Video</a>, which is a huge plus for me. My Flip camera broke since about 6 months and I have been missing having a camera for a long time. Being able to whip out a 720p capable camera at anytime is going to be amazing. Know, I know it wont be true 720p, but it will still be better than nothing! The Retina Display looks absolutely stunning, I am hoping a lot of the applications will update their graphics to look stunning at the new resolution.</p>
</li>
<li>
<p><a href="http://www.apple.com/iphone/softwareupdate/"><strong>iOS</strong></a>—The details of iOS have been known for sometime. I am stoked about iOS for 4 main reasons. First, multi-tasking. While it is not true multi-tasking, I think it will be an OK solution. While I wish it was full multi-tasking, I think Apple&#8217;s points about battery life and speed are legit concerns. Second, folders. I wont use folders all that much, but one area I do look forward to using it is in the static bar. I plan to use folders to have additional icons in the static bar (i.e. messages: SMS, Email, Twitter | Calling: phone, FaceTime, Skype). Three, background image. One of my big gripes with the iPhone 3G I have had for 2 years now, has been the boring visual design. From what I have seen in the screenshots, adding a background image has really changed the visual style of the iOS. The final reason, is the unified inbox. I have over 9 email addresses and it is a pain in the butt to stay on top of them all when I have about 4 button presses every time I want to look at a email on another account.﻿</p>
</li>
<li>
<p><a href="http://www.apple.com/iphone/features/facetime.html"><strong>FaceTime</strong></a>—For those that don&#8217;t know, FaceTime is going to be a new application that will allow iPhone 4 users to video chat with other iPhone 4 users over WiFi. OK, that is great. I am a little disappointed it is only over WiFi, but I understand that might not be in Apple&#8217;s control. Plus with the new AT&amp;T limitations, not having it over 3G might be a good thing for those crazy overages. What I am really excited about is not the FaceTime app, but the fact that the front-facing camera is going to be open for other applications, e.g. Skype! My girl friend and I talk over Skype all the time, and it will be nice to not have to whip out my laptop every time I want to talk to her. I am really excited to see how this will be used by other applications. Also, you know the 10k fart applications that have been released in the App Store? I call it now, expect a huge swarm of &#8220;Mirror&#8221; Applications!!!﻿</p>
</li>
<li>
<p><strong>iAds</strong>—Yes, I am excited for this! Why? Well, the reason most developers don&#8217;t give away their applications, is because they want some revenue for their widely used apps. Now that they can just flip a switch and get iAds, I think we will see a large amount of applications go free soon that are $0.99 now . I know a lot of people are not liking the idea of having ads widely used on the iPhone, but I think having quality Apple approved ads is much better than some of the crap that shows in current ads. I also see this new form of revenue as a chance for new developers to shine. I think we will see some pretty amazing apps being developed that will go for free in the App Store with iAd support.﻿</p>
</li>
</ul>
<p>Those are just a few of the new features I am most excited about. Now, some general notes about the upcoming iPhone 4. First off, it surprised me that they didn&#8217;t go any further into the new gaming network that is suppose to be included in in the new iOS. Has this been pushed back? Can someone with the developer preview tell me if it is there? I thought this would be huge, but Apple has not said much about it. Also, all you whiners crying about no Verizon iPhone, SHUT THE HELL UP! AT&amp;T works great for me. If the iPhone goes to Verizon, the Verizon network will cripple, just like the AT&amp;T network did, once all these heavy data users move over there. Also, do you all understand that Verizon is a CDMA network which means you can&#8217;t access data and cell network at the same time? So that means no browsing while on the phone! I love Verizon and I have demo&#8217;d a lot of devices for them, but their network is not perfect either, in fact, no network is perfect—any network you go to is going to have low signal areas and dropped calls. Stop complaining about it!</p>
<p>One final thing I want to discuss, is the lack of a 64GB version??? I am looking to shoot a decent bit of video with this device, and I am a little worried that an iPhone with all my music on it wont allow for much room to record video. I was really hoping to see a 64GB version when they said HD video.</p>
<p>A few days ago, in my <a href="http://atlchris.com/1598/htc-incredible-reviewed/">HTC Incredible review</a>, I said I would be switching to Android if Apple didn&#8217;t come up with some good stuff at the WWDC keynote. Well, Apple showed off a pretty awesome product, and I can tell you all now that I will be sticking with the iPhone. Android is coming up strong, but they are not surpassing Apple just yet. If the quality of Android apps improve, and AT&amp;T picks up some better Android devices, I might consider Android in the future, but right now, the iPhone still claims my heart. I will pre-order my 32GB iPhone 4 (black) on June 15th, when pre-orders start, and I will choose to pick it up at the store if they allow that option when pre-ordering. As for the price and date, if you don&#8217;t already know it, iOS comes out June 21st and iPhone 4 comes on June 24th (pre-orders start on June 15th). The 16GB version will be $199.00 w/ 2 year contract and the 32GB will be $299.00 w/ 2 year contract.</p>
<p><strong>What are your thoughts on iPhone 4, iOS, or any of the other new Apple news? What tops your excited list? Are you going to get one? Will you wait in line and get it right away, or will you wait for the storm to pass and pick it up once AT&amp;T allows you to upgrade?﻿</strong></p>
<p>More information on iPhone 4 can be found here: <a href="http://www.apple.com/iphone/">http://www.apple.com/iphone/﻿<br />
</a>Watch the keynote video: <a href="http://events.apple.com.edgesuite.net/1006ad9g4hjk/event/index.html">http://events.apple.com.edgesuite.net/1006ad9g4hjk/event/index.html﻿﻿</a></p>
<div style="text-align: center;"><a href="http://atlchris.com/wp-content/uploads/2010/06/gallery01-20100607.jpg"><img class="size-medium wp-image-1630" title="gallery01-20100607" src="http://atlchris.com/wp-content/uploads/2010/06/gallery01-20100607-275x174.jpg" alt="" width="275" height="174" /></a> <a href="http://atlchris.com/wp-content/uploads/2010/06/gallery06-20100607.jpg"><img class="size-medium wp-image-1628" title="iPhone 4" src="http://atlchris.com/wp-content/uploads/2010/06/gallery06-20100607-275x174.jpg" alt="" width="275" height="174" /></a><br />
<a href="http://atlchris.com/wp-content/uploads/2010/06/gallery09-20100607.jpg"><img class="size-medium wp-image-1634" title="iPhone 4" src="http://atlchris.com/wp-content/uploads/2010/06/gallery09-20100607-275x174.jpg" alt="" width="275" height="174" /></a> <a href="http://atlchris.com/wp-content/uploads/2010/06/gallery11-20100607.jpg"><img class="size-medium wp-image-1635" title="iPhone 4" src="http://atlchris.com/wp-content/uploads/2010/06/gallery11-20100607-275x174.jpg" alt="" width="275" height="174" /></a></div>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://atlchris.com/1713/ios-4-detects-shipment-tracking-numbers/" title="iOS 4 Detects Shipment Tracking Numbers">iOS 4 Detects Shipment Tracking Numbers</a><br /><small>I opened my email today on my iPhone 4 a...</small></li><li><a href="http://atlchris.com/1745/iphone-4-case-program-launched/" title="iPhone 4 Case Program Launched">iPhone 4 Case Program Launched</a><br /><small>

Well, as promised Apple has activate...</small></li><li><a href="http://atlchris.com/1656/apples-new-mobile-store-suffers-downtime-on-release-day/" title="Apple&#8217;s New Mobile Store Suffers Downtime On Release Day">Apple&#8217;s New Mobile Store Suffers Downtim...</a><br /><small>This morning, I was reading all about th...</small></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Atlchris?a=7JkgJepvtRM:5ZqkhbJJLyI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Atlchris?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=7JkgJepvtRM:5ZqkhbJJLyI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=7JkgJepvtRM:5ZqkhbJJLyI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Atlchris?a=7JkgJepvtRM:5ZqkhbJJLyI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Atlchris?i=7JkgJepvtRM:5ZqkhbJJLyI:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Atlchris/~4/7JkgJepvtRM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://atlchris.com/1623/wwdc-keynote-wrap-up-iphone-4-ios-facetime/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://atlchris.com/1623/wwdc-keynote-wrap-up-iphone-4-ios-facetime/</feedburner:origLink></item>
	</channel>
</rss>

