<?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>Drawne</title>
	
	<link>http://drawne.com/blog</link>
	<description>A blog of web design, coding, gadgets, and portfolio items</description>
	<lastBuildDate>Fri, 11 May 2012 03:11:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Drawne" /><feedburner:info uri="drawne" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Pop In Effect with CSS Keyframe Animation</title>
		<link>http://feedproxy.google.com/~r/Drawne/~3/9BDxDs8ns4E/</link>
		<comments>http://drawne.com/blog/tutorials/pop-in-effect-with-css3-keyframe-animation/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 23:14:01 +0000</pubDate>
		<dc:creator>Andy Feliciotti</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[Keyframe]]></category>

		<guid isPermaLink="false">http://drawne.com/blog/?p=608</guid>
		<description><![CDATA[Building custom animations is easy with CSS3&#8242;s Keyframe property. In this tutorial I&#8217;m going to show you how to create a small &#8220;pop in&#8221; animation. The code below will define the animation needed for our effect. @-webkit-keyframes pop-in { 0% { opacity: 0;-moz-transform: scale(0.5);-webkit-transform: scale(0.5); } 100% { opacity: 1;-moz-transform: scale(1);-webkit-transform: scale(1); } } @-moz-keyframes [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-641 aligncenter" title="Pop in Effect with CSS Keyframe Animations" src="http://static.drawne.com/blog/wp-content/uploads/2012/04/css3-popin-effect.jpg" alt="Pop in Effect with CSS Keyframe Animations" width="525" height="85" /><br />
Building custom animations is easy with CSS3&#8242;s Keyframe property. In this tutorial I&#8217;m going to show you how to create a small &#8220;pop in&#8221; animation.<span id="more-608"></span></p>
<p>The code below will define the animation needed for our effect.</p>
<p><code>@-webkit-keyframes pop-in {<br />
0% { opacity: 0;-moz-transform: scale(0.5);-webkit-transform: scale(0.5); }<br />
100% { opacity: 1;-moz-transform: scale(1);-webkit-transform: scale(1); }<br />
}<br />
@-moz-keyframes pop-in {<br />
0% { opacity: 0;-moz-transform: scale(0.5);-webkit-transform: scale(0.5); }<br />
100% { opacity: 1;-moz-transform: scale(1);-webkit-transform: scale(1); }<br />
}<br />
@-ms-keyframes pop-in {<br />
0% { opacity: 0;-moz-transform: scale(0.5);-webkit-transform: scale(0.5); }<br />
100% { opacity: 1;-moz-transform: scale(1);-webkit-transform: scale(1); }<br />
}</code></p>
<p>As you can tell the custom keyframe code has huge potential for lots of effects happening all at once, for more detail check out <a title="CSS Tricks Keyframe Animation" href="http://css-tricks.com/snippets/css/webkit-keyframe-animation-syntax/">CSS-Trick&#8217;s Article</a>.</p>
<p>Now that our animation has been defined we have to apply it to a class. This can be done by adding the following code below to any style.</p>
<p><code>-webkit-animation:pop-in 0.5s;<br />
-moz-animation:pop-in 0.5s;<br />
-ms-animation:pop-in 0.5s;</code></p>
<p>These are the bare essentials needed for a pop-in animation, feel free to experiment with different effects, transition timing, and styles.</p>
<p><em>Feel free to leave an example of a pop-in effect in the comments</em></p>
<img src="http://feeds.feedburner.com/~r/Drawne/~4/9BDxDs8ns4E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://drawne.com/blog/tutorials/pop-in-effect-with-css3-keyframe-animation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://drawne.com/blog/tutorials/pop-in-effect-with-css3-keyframe-animation/</feedburner:origLink></item>
		<item>
		<title>8 Resources &amp; Tools I Use Daily</title>
		<link>http://feedproxy.google.com/~r/Drawne/~3/ymvnL4p1cZs/</link>
		<comments>http://drawne.com/blog/articles/8-resources-tools-i-use-daily/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 23:27:49 +0000</pubDate>
		<dc:creator>Andy Feliciotti</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://drawne.com/blog/?p=584</guid>
		<description><![CDATA[I&#8217;ve decided to compile a small list of resources I use on a daily bases including tools for optimizing your site, photoshop resources and a few blogs I read. Pingdom &#8211; Pingdom is a great tool for finding bottle necks and testing the general speed of your pages Kraken &#8211; This amazing tool will compress [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-600" title="8 Web Tools I use Daily" src="http://static.drawne.com/blog/wp-content/uploads/2012/03/8-resources-and-tools-daily.png" alt="8 Web Tools I use Daily" width="525" height="85" /><br />
I&#8217;ve decided to compile a small list of resources I use on a daily bases including tools for optimizing your site, photoshop resources and a few blogs I read.<span id="more-584"></span></p>
<p><a title="Pingdom Speed Test" href="http://tools.pingdom.com/">Pingdom</a> &#8211; Pingdom is a great tool for finding bottle necks and testing the general speed of your pages</p>
<p><a href="http://tools.pingdom.com/"><img class="alignnone size-full wp-image-593" title="pingdom" src="http://static2.drawne.com/blog/wp-content/uploads/2012/03/pingdom.png" alt="" width="525" height="285" /></a></p>
<p><a title="Kraken Web Optimizer" href="http://kraken.io/"> Kraken</a> &#8211; This amazing tool will compress any images/css/js you have to smaller sizes to optimize your site&#8217;s speed</p>
<p><a href="http://kraken.io/"><img class="alignnone size-full wp-image-591" title="kraken" src="http://static2.drawne.com/blog/wp-content/uploads/2012/03/kraken.png" alt="" width="525" height="285" /></a></p>
<p><a title="Sprite Cow CSS Sprite Helper" href="http://www.spritecow.com/"> Sprite Cow</a> &#8211; If you&#8217;re building CSS sprites for your site you need this tool, it will give you the css for each image you select in your sprite</p>
<p><a href="http://www.spritecow.com/"><img class="alignnone size-full wp-image-596" title="sprite-cow" src="http://static3.drawne.com/blog/wp-content/uploads/2012/03/sprite-cow.png" alt="" width="525" height="285" /></a></p>
<p><a title="Subtle Patterns" href="http://subtlepatterns.com/"> Subtle Patterns</a> &#8211; This site is full of subtle patterns which are amazing for any web or graphic design projects</p>
<p><a href="http://subtlepatterns.com/"><img class="alignnone size-full wp-image-597" title="subtle-patterns" src="http://static3.drawne.com/blog/wp-content/uploads/2012/03/subtle-patterns.png" alt="" width="525" height="285" /></a></p>
<p><a title="Premium Pixels" href="http://www.premiumpixels.com/"> Premium Pixels</a> &#8211; An excellent resource of quality PSDs from Orman Clark</p>
<p><a href="http://www.premiumpixels.com/"><img class="alignnone size-full wp-image-594" title="ppixels" src="http://static3.drawne.com/blog/wp-content/uploads/2012/03/ppixels.png" alt="" width="525" height="285" /></a></p>
<p><a title="Smashing Magazine" href="http://www.smashingmagazine.com/"> Smashing Magazine</a> - If you&#8217;re in the web profession you should be reading this blog</p>
<p><a href="http://www.smashingmagazine.com/"><img class="alignnone size-full wp-image-595" title="smashing-mag" src="http://static3.drawne.com/blog/wp-content/uploads/2012/03/smashing-mag.png" alt="" width="525" height="285" /></a></p>
<p><a title="Line 25" href="http://line25.com/"> Line 25</a> &#8211; A great blog by Chris Spooner with a new article in web design weekly, including tutorials and inspiration</p>
<p><a href="http://line25.com/"><img class="alignnone size-full wp-image-592" title="line25" src="http://static2.drawne.com/blog/wp-content/uploads/2012/03/line25.png" alt="" width="525" height="285" /></a></p>
<p><a title="zscreen" href="http://code.google.com/p/zscreen/"> zscreen</a> &#8211; This Windows program will allow you to screenshot anything on your computer and instantly upload it to any image host</p>
<p><a href="http://code.google.com/p/zscreen/"><img class="alignnone size-full wp-image-598" title="zscreen" src="http://static2.drawne.com/blog/wp-content/uploads/2012/03/zscreen.png" alt="" width="525" height="285" /></a></p>
<p><em>What tools do you use in your daily web adventures?</em></p>
<img src="http://feeds.feedburner.com/~r/Drawne/~4/ymvnL4p1cZs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://drawne.com/blog/articles/8-resources-tools-i-use-daily/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://drawne.com/blog/articles/8-resources-tools-i-use-daily/</feedburner:origLink></item>
		<item>
		<title>Slick 3D Buttons (PSD)</title>
		<link>http://feedproxy.google.com/~r/Drawne/~3/YSBzDmCdJVY/</link>
		<comments>http://drawne.com/blog/freebies/slick-3d-buttons-psd/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 16:30:15 +0000</pubDate>
		<dc:creator>Andy Feliciotti</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[Freebie]]></category>
		<category><![CDATA[psd]]></category>

		<guid isPermaLink="false">http://drawne.com/blog/?p=576</guid>
		<description><![CDATA[Here are a few buttons including default, hover and active states. These are great if you need an eye catching call to action. The font used was Nevis which you can get for free here.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-579" title="slick-buttons-psd" src="http://static2.drawne.com/blog/wp-content/uploads/2012/03/preview1.jpg" alt="Slick 3D Buttons (PSD)" width="525" height="285" /></p>
<p>Here are a few buttons including default, hover and active states. These are great if you need an eye catching call to action.</p>
<p>The font used was Nevis which you can get for free <a title="Nevis font" href="http://www.tenbytwenty.com/nevis.php">here</a>.</p>
<img src="http://feeds.feedburner.com/~r/Drawne/~4/YSBzDmCdJVY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://drawne.com/blog/freebies/slick-3d-buttons-psd/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://drawne.com/blog/freebies/slick-3d-buttons-psd/</feedburner:origLink></item>
		<item>
		<title>Sleek Contact Form (PSD)</title>
		<link>http://feedproxy.google.com/~r/Drawne/~3/cjn-4P5Ji90/</link>
		<comments>http://drawne.com/blog/freebies/sleek-contact-form-psd/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 02:39:21 +0000</pubDate>
		<dc:creator>Andy Feliciotti</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[Contact Form]]></category>
		<category><![CDATA[Form]]></category>
		<category><![CDATA[Freebie]]></category>
		<category><![CDATA[psd]]></category>
		<category><![CDATA[sleek]]></category>

		<guid isPermaLink="false">http://drawne.com/blog/?p=570</guid>
		<description><![CDATA[Here&#8217;s a simple contact box made in Photoshop for any project requiring a sleek contact form.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-572" title="Simple Contact Form" src="http://static3.drawne.com/blog/wp-content/uploads/2012/02/preview1.jpg" alt="Simple Contact Form PSD" width="525" height="355" /></p>
<p>Here&#8217;s a simple contact box made in Photoshop for any project requiring a sleek contact form.</p>
<img src="http://feeds.feedburner.com/~r/Drawne/~4/cjn-4P5Ji90" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://drawne.com/blog/freebies/sleek-contact-form-psd/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://drawne.com/blog/freebies/sleek-contact-form-psd/</feedburner:origLink></item>
		<item>
		<title>Quick View Shopping Cart (PSD)</title>
		<link>http://feedproxy.google.com/~r/Drawne/~3/jpsSRQ4b0kg/</link>
		<comments>http://drawne.com/blog/freebies/quick-view-shopping-cart-psd/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 05:45:52 +0000</pubDate>
		<dc:creator>Andy Feliciotti</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Cart]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[Freebie]]></category>
		<category><![CDATA[psd]]></category>

		<guid isPermaLink="false">http://drawne.com/blog/?p=550</guid>
		<description><![CDATA[Here&#8217;s a fabulous shopping cart quick view dropdown which is great for any eCommerce project you&#8217;re working on. This Freebie was inspired by Orman Clark on PremiumPixels.com]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-553" title="Quick View Shopping Cart Dropdown (PSD)" src="http://static2.drawne.com/blog/wp-content/uploads/2012/02/preview.jpg" alt="Quick View Shopping Cart Dropdown (PSD)" width="525" height="355" /></p>
<p>Here&#8217;s a fabulous shopping cart quick view dropdown which is great for any eCommerce project you&#8217;re working on.<span id="more-550"></span></p>
<p>This Freebie was inspired by <a href="http://www.premiumpixels.com/freebies/shopping-cart-quick-view-psd/">Orman Clark on PremiumPixels.com</a></p>
<img src="http://feeds.feedburner.com/~r/Drawne/~4/jpsSRQ4b0kg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://drawne.com/blog/freebies/quick-view-shopping-cart-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://drawne.com/blog/freebies/quick-view-shopping-cart-psd/</feedburner:origLink></item>
		<item>
		<title>8mm Rokinon Fisheye Lens Review</title>
		<link>http://feedproxy.google.com/~r/Drawne/~3/uPhyF6wUJY0/</link>
		<comments>http://drawne.com/blog/articles/8mm-rokinon-fisheye-lens-review/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 19:22:23 +0000</pubDate>
		<dc:creator>Andy Feliciotti</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[lens]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Rokinon]]></category>

		<guid isPermaLink="false">http://drawne.com/blog/?p=497</guid>
		<description><![CDATA[After reading Lifehacker&#8217;s &#8220;2011 The Best Photo Gear of the Year&#8221; and only seeing one lens on the list, I knew I had to purchase it. That lens was the 8mm Rokinon Fisheye Lens (for Canon/Nikon/Sony/Etc Cameras) which was a great deal at $300. Using the lowest aperture of 3.5, there is some difficulty taking [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-504" title="Rokinon 8mm Fisheye Lens Review" src="http://static.drawne.com/blog/wp-content/uploads/2011/11/8mmrokinonreview.png" alt="Rokinon 8mm Fisheye Lens Review" width="525" height="85" /><br />
After reading Lifehacker&#8217;s &#8220;<a title="The Best Photo Gear of the Year" href="http://gizmodo.com/5857652/the-best-photo-gear-of-the-year/">2011 The Best Photo Gear of the Year</a>&#8221; and only seeing one lens on the list, I knew I had to purchase it. That lens was the 8mm Rokinon Fisheye Lens (for Canon/Nikon/Sony/Etc Cameras) which was a great deal at $300.<span id="more-497"></span></p>
<p>Using the lowest aperture of 3.5, there is some difficulty taking photos in low light, but still works great in most night shots without the need for a stand. The 8mm viewing angle produces some great photos on my camera (Canon T1i), even on a cropped sensor. The lens also has very little distortion and no vignette on the edges, which was a surprise to me. The main buying point for this lens is the price sadly, for $300 it&#8217;s hard to beat such a cheap lens.</p>
<p><a href="http://static2.drawne.com/blog/wp-content/uploads/2011/11/IMG_2211.jpg"><img class="alignnone size-thumbnail wp-image-508" title="Outside shot with the 8mm Rokinon Fisheye Lens on Canon T1i" src="http://static2.drawne.com/blog/wp-content/uploads/2011/11/IMG_2211-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://static2.drawne.com/blog/wp-content/uploads/2011/11/IMG_2321-e1321729812396.jpg"><img class="alignnone size-thumbnail wp-image-515" title="Rokinon 8mm Fisheye" src="http://static.drawne.com/blog/wp-content/uploads/2011/11/IMG_2321-e1321729812396-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://static3.drawne.com/blog/wp-content/uploads/2011/11/IMG_2271.jpg"><img class="alignnone size-thumbnail wp-image-510" title="Inside shot with the 8mm Rokinon Fisheye Lens on Canon T1i" src="http://static2.drawne.com/blog/wp-content/uploads/2011/11/IMG_2271-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>Since the lens is made for a variety of cameras, it doesn&#8217;t communicate well with the Canon T1i, meaning aperture settings need to be set on the lens itself and a lot of photos will appear under exposed or over exposed. The image quality of the photos produced by the Rokinon was also below the quality I expected, a lot of grain and unsharp areas were noticeable to me.</p>
<p><a href="http://static3.drawne.com/blog/wp-content/uploads/2011/11/IMG_2279.jpg"><img class="alignnone size-thumbnail wp-image-511" title="Inside the mall shot with the 8mm Rokinon Fisheye Lens on Canon T1i" src="http://static2.drawne.com/blog/wp-content/uploads/2011/11/IMG_2279-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://static3.drawne.com/blog/wp-content/uploads/2011/11/IMG_2294.jpg"><img class="alignnone size-thumbnail wp-image-514" title="Inside Shot with the 8mm Rokinon Fisheye Lens on Canon T1i" src="http://static2.drawne.com/blog/wp-content/uploads/2011/11/IMG_2294-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://static3.drawne.com/blog/wp-content/uploads/2011/11/IMG_2291.jpg"><img class="alignnone size-thumbnail wp-image-513" title="Shot with the 8mm Rokinon Fisheye Lens on Canon T1i" src="http://static3.drawne.com/blog/wp-content/uploads/2011/11/IMG_2291-150x150.jpg" alt="" width="150" height="150" /></a></p>
<h2>The Verdict</h2>
<p>If you&#8217;re a photographer on a budget and need a great wide angle lens, you should defenently pick up the <a href="http://www.amazon.com/gp/product/B002LTWDSK/ref=as_li_ss_tl?ie=UTF8&amp;tag=drawne-20">Rokinon 8mm</a>.</p>
<p><a title="Rokinon Wide Angle Shots on Flickr" href="http://www.flickr.com/photos/someguy/sets/72157628053967461">View more images from my Flickr set here</a></p>
<p><em>Have you purchased a lens not made by your camera manufacturer?<br />
let us know in the comments!</em></p>
<img src="http://feeds.feedburner.com/~r/Drawne/~4/uPhyF6wUJY0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://drawne.com/blog/articles/8mm-rokinon-fisheye-lens-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://drawne.com/blog/articles/8mm-rokinon-fisheye-lens-review/</feedburner:origLink></item>
		<item>
		<title>A Day with the iPhone 4S</title>
		<link>http://feedproxy.google.com/~r/Drawne/~3/AZk40L0niy8/</link>
		<comments>http://drawne.com/blog/articles/iphone-4s-review/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 03:15:30 +0000</pubDate>
		<dc:creator>Andy Feliciotti</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone 4s]]></category>

		<guid isPermaLink="false">http://drawne.com/blog/?p=456</guid>
		<description><![CDATA[After spending an entire day with the new iPhone 4S after upgrading from an iPhone 4 the differences between the two products are lackluster. Here are my impressions I waited in line for an hour to get the iPhone 4S at 8am today with 30 other crazy people (mostly Blackberry users) but the experience was [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-489" title="a-day-with-the-iphone-4s" src="http://static2.drawne.com/blog/wp-content/uploads/2011/10/a-day-with-the-iphone-4s.png" alt="" width="525" height="85" /></p>
<p>After spending an entire day with the new iPhone 4S after upgrading from an iPhone 4 the differences between the two products are lackluster. Here are my impressions<span id="more-456"></span></p>
<p>I waited in line for an hour to get the iPhone 4S at 8am today with 30 other crazy people (mostly Blackberry users) but the experience was easy going. While setting up the phone I logged in to my iCloud account and got it restored from my iPhone 4 iCloud back up which worked pretty well until I left the store (and leaving the wifi). At this point I couldn&#8217;t sync from iCloud  without wifi, so I went to work and it took 2 minutes for it to sync settings. After my 8gb of files were synced, the phone was exactly how I had it setup on my previous iPhone, down to the tabs open in the browser. This was such an easy migration period, which is why I love iCloud.</p>
<p><a href="http://static3.drawne.com/blog/wp-content/uploads/2011/10/IMG_0418.png"><img class="aligncenter size-thumbnail wp-image-475" title="Siri-settings" src="http://static2.drawne.com/blog/wp-content/uploads/2011/10/IMG_0418-150x150.png" alt="" width="150" height="150" /></a><a href="http://static3.drawne.com/blog/wp-content/uploads/2011/10/IMG_0434.jpg"><img class="aligncenter size-thumbnail wp-image-476" title="IMG_0434" src="http://static2.drawne.com/blog/wp-content/uploads/2011/10/IMG_0434-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://static3.drawne.com/blog/wp-content/uploads/2011/10/iphone-4-vs-iphone-4s.jpg"><img class="aligncenter size-thumbnail wp-image-491" title="iphone-4-vs-iphone-4s" src="http://static2.drawne.com/blog/wp-content/uploads/2011/10/iphone-4-vs-iphone-4s-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>Siri and voice-to-text work wonders but it&#8217;s not much more than what we&#8217;ve seen on Android based phones. That said Siri is pretty fun to interact with, asking it things such as &#8220;Call my brother&#8221;, Siri will ask who is your brother and remember who it was.</p>
<p>The camera is noticeably improved but nothing to write home about, and the speed tweaks to the device it self are slight. What&#8217;s more noticeable are the iOS5 and iCloud tweaks which is available on both devices. If you are on an iPhone 4 I&#8217;d say stay with it, but I&#8217;d recommend the iPhone 4/4S experience to any new comer.</p>
<p><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='390' src='http://www.youtube.com/embed/rcbv7slur0w?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span></p>
<p>Here are a few random shots I&#8217;ve taken with the new 8MP camera.</p>
<p><a href="http://static2.drawne.com/blog/wp-content/uploads/2011/10/iphone-4s-photo.jpg"><img class="aligncenter size-thumbnail wp-image-466" title="iphone-4s-photo" src="http://static3.drawne.com/blog/wp-content/uploads/2011/10/iphone-4s-photo-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://static2.drawne.com/blog/wp-content/uploads/2011/10/iphone-4s-photo2.jpg"><img class="aligncenter size-thumbnail wp-image-467" title="iphone-4s-photo2" src="http://static3.drawne.com/blog/wp-content/uploads/2011/10/iphone-4s-photo2-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://static3.drawne.com/blog/wp-content/uploads/2011/10/iphone-4s-siri.png"><img class="aligncenter size-thumbnail wp-image-468" title="iphone-4s-siri" src="http://static3.drawne.com/blog/wp-content/uploads/2011/10/iphone-4s-siri-150x150.png" alt="" width="150" height="150" /></a></p>
<h2>Further Reading</h2>
<p><a title="Engadget iPhone 4s Review" href="http://www.engadget.com/2011/10/14/iphone-4s-review/">Engadget</a> has a great breakdown of the new product.</p>
<p><a href="http://www.youtube.com/watch?v=UCenZ7rWHvM">Techno buffalo</a> has a nice video comparing speed between iPhone 4 and iPhone 4s</p>
<p>and Finally <a href="http://gizmodo.com/5850026/iphone-4s-vs-the-competition-benchmarked">Gizmodo</a> has a nice speed comparison between the various 3g/4g devices</p>
<p>&nbsp;</p>
<p><em>Did you buy the iPhone 4S today? What did you think about it?</em></p>
<img src="http://feeds.feedburner.com/~r/Drawne/~4/AZk40L0niy8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://drawne.com/blog/articles/iphone-4s-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://drawne.com/blog/articles/iphone-4s-review/</feedburner:origLink></item>
		<item>
		<title>How I Find New Music</title>
		<link>http://feedproxy.google.com/~r/Drawne/~3/ytDbOGBBKR8/</link>
		<comments>http://drawne.com/blog/articles/how-to-find-fresh-music/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 03:41:37 +0000</pubDate>
		<dc:creator>Andy Feliciotti</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[radio]]></category>

		<guid isPermaLink="false">http://drawne.com/blog/?p=424</guid>
		<description><![CDATA[I spend much of my time listening to music, and I just wanted to share some of the websites and methods I use to find fresh music. Almost always when you find me at the computer or in the car I&#8217;m listening to music. With over 4000 songs in my Zune I still crave more, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-446" title="How I find new slamming tracks online" src="http://static2.drawne.com/blog/wp-content/uploads/2011/06/finding-new-music-online.png" alt="" width="525" height="85" />I spend much of my time listening to music, and I just wanted to share some of the websites and methods I use to find fresh music.</p>
<p><span id="more-424"></span>Almost always when you find me at the computer or in the car I&#8217;m listening to music. With over 4000 songs in my Zune I still crave more, here are some of the ways I pursue new music.</p>
<p><img class="aligncenter size-full wp-image-436" title="hypem" src="http://static.drawne.com/blog/wp-content/uploads/2011/06/hypem.png" alt="The Hypem Machine" width="525" height="85" /><a title="The Hype Machine" href="http://hypem.com"></a></p>
<p><a title="The Hype Machine" href="http://hypem.com">Hype Machine</a> has to be one of my favorite sites, it basically tracks music blogs and lets users vote on them. I spend a lot of time listening to the &#8220;popular&#8221; page of the site to see what is upcoming (Hypem&#8217;s popular is usually upcoming songs). The site allows you to monitor searches for your favorite artists also, creating a unique feed for artists you like. (If you&#8217;re interested here&#8217;s <a title="Andy Feliciotti's Hypem" href="http://hypem.com/someguy9">my Hypem profile</a>)</p>
<p><img class="aligncenter size-full wp-image-438" title="xm-radio" src="http://static.drawne.com/blog/wp-content/uploads/2011/06/xm-radio.png" alt="" width="525" height="85" /></p>
<p>While driving a great way to explore a genre is to have <a title="Sirius XM Radio" href="http://www.siriusxm.com/">XM</a> or <a title="Sirius XM Radio" href="http://www.siriusxm.com/">Sirius</a> in your car. I&#8217;ve discovered plenty of songs through satellite radio, and the best part is if you like a song you can see the title right on the display. (My favorite stations include BPM, BBC Radio 1, and SiriusXM U)</p>
<p><img class="aligncenter size-full wp-image-444" title="wadiomedia-online-radio" src="http://static.drawne.com/blog/wp-content/uploads/2011/06/wadiomedia-online-radio.png" alt="Wa wa wa waaaadio" width="525" height="85" /></p>
<p>If you like to let the DJ (or robot DJ) do all the work for you, you might want to find a nice online radio station. I&#8217;ve found plenty of older and newer songs I&#8217;ve never heard of while listening to internet radio, and after downloading they&#8217;ve been a great addition to my collection. I suggest browsing station in the <a title="Shoutcast Radio" href="http://www.shoutcast.com/">Shoutcast</a> directory using <a title="It really whips the llama's ass" href="http://www.winamp.com/">WinAmp</a>. A few of my favorite stations include <a title="French Kiss FM" href="http://www.frenchkissfm.com/">FrenchKiss FM</a>, <a title="Wadio Media" href="http://www.wad.io/">Wadio</a>, and <a title="Techno Base FM" href="http://www.technobase.fm/">TechnoBase FM</a>.</p>
<p><img class="aligncenter size-full wp-image-449" title="Friends" src="http://static3.drawne.com/blog/wp-content/uploads/2011/06/friends.png" alt="" width="525" height="85" /></p>
<p>When all else fails see what your friends are tuning into, it also helps to &#8220;like&#8221; bands and artits on Facebook to see when they release new work.</p>
<p>How do you explore music? Grooveshark? Pandora? Concerts? Let us know in the comments!</p>
<p><em>Article header image by Daniel Paxton via <a href="http://www.flickr.com/photos/allthatimprobableblue/5426123400/">Flickr</a></em></p>
<img src="http://feeds.feedburner.com/~r/Drawne/~4/ytDbOGBBKR8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://drawne.com/blog/articles/how-to-find-fresh-music/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://drawne.com/blog/articles/how-to-find-fresh-music/</feedburner:origLink></item>
		<item>
		<title>iPhone iOS5 Hands-on</title>
		<link>http://feedproxy.google.com/~r/Drawne/~3/2QXOtOtJXao/</link>
		<comments>http://drawne.com/blog/articles/ios5-hands-on-impressions/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 23:28:26 +0000</pubDate>
		<dc:creator>Andy Feliciotti</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://drawne.com/blog/?p=385</guid>
		<description><![CDATA[With iOS5 announced and coming fall of 2011 I decided to run the developer version of iOS5 on my iPhone. Apple has seemed to fix every complaint and issue people have had with the OS, and it works wonderfully. The biggest change is to notifications, it no longer pops up interfering with what you are doing but [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-415" title="ios5-hands-on" src="http://static3.drawne.com/blog/wp-content/uploads/2011/06/ios5-hands-on.png" alt="Impressions of iOS5" width="525" height="85" />With <a title="Apple iOS 5 Features" href="http://www.apple.com/ios/ios5/features.html">iOS5 announced</a> and coming fall of 2011 I decided to run the developer version of iOS5 on my iPhone. Apple has seemed to fix every complaint and issue people have had with the OS, and it works wonderfully.<span id="more-385"></span></p>
<p><a href="http://static.drawne.com/blog/wp-content/uploads/2011/06/iPhone-ios5-setup.png"><img class="aligncenter size-thumbnail wp-image-396" title="iPhone-ios5-setup" src="http://static3.drawne.com/blog/wp-content/uploads/2011/06/iPhone-ios5-setup-150x150.png" alt="ios5 setup screen" width="150" height="150" /></a><a href="http://static3.drawne.com/blog/wp-content/uploads/2011/06/ios5-notification-bar.png"><img class="aligncenter size-thumbnail wp-image-393" title="ios5-notification-bar" src="http://static3.drawne.com/blog/wp-content/uploads/2011/06/ios5-notification-bar-150x150.png" alt="iOS5 notification bar widgets" width="150" height="150" /></a><a href="http://static.drawne.com/blog/wp-content/uploads/2011/06/ios5-lockscreen1.png"><img class="aligncenter size-thumbnail wp-image-400" title="ios5-lockscreen" src="http://static3.drawne.com/blog/wp-content/uploads/2011/06/ios5-lockscreen1-150x150.png" alt="iOS5 notifications on lockscreen" width="150" height="150" /></a></p>
<p>The biggest change is to notifications, it no longer pops up interfering with what you are doing but rather gives you an Android like alert at the top of the screen. To see all your notifications you just drag down the top of your screen to see notifications, and they even added a stock and weather widget in the dropdown.</p>
<p><a href="http://static.drawne.com/blog/wp-content/uploads/2011/06/ios5-text-messaging.png"><img class="aligncenter size-thumbnail wp-image-395 alignnone" title="ios5-text-messaging" src="http://static3.drawne.com/blog/wp-content/uploads/2011/06/ios5-text-messaging-150x150.png" alt="iOS visual differences in messages" width="150" height="150" /></a><a href="http://static.drawne.com/blog/wp-content/uploads/2011/06/ios5-notification-settings1.png"><img class="aligncenter size-thumbnail wp-image-408" title="ios5-notification-settings" src="http://static3.drawne.com/blog/wp-content/uploads/2011/06/ios5-notification-settings1-150x150.png" alt="" width="150" height="150" /></a></p>
<p>A lot of visual tweaks are welcomed, such as changes in the messaging apps and adding a slightly different style around menus. The notification settings are also a lot more complex than they used to be, which is a great addition if you preferred the old style messages.</p>
<p><a href="http://static.drawne.com/blog/wp-content/uploads/2011/06/ios5-camera-button.png"><img class="aligncenter size-thumbnail wp-image-389" title="ios5-camera-button" src="http://static2.drawne.com/blog/wp-content/uploads/2011/06/ios5-camera-button-150x150.png" alt="" width="150" height="150" /></a><a href="http://static2.drawne.com/blog/wp-content/uploads/2011/06/ios5-download-cloud-app.png"><img class="aligncenter size-thumbnail wp-image-390" title="ios5-download-cloud-app" src="http://static3.drawne.com/blog/wp-content/uploads/2011/06/ios5-download-cloud-app-150x150.png" alt="" width="150" height="150" /></a><a href="http://static2.drawne.com/blog/wp-content/uploads/2011/06/ios5-notification.png"><img class="aligncenter size-thumbnail wp-image-392" title="ios5-notification" src="http://static.drawne.com/blog/wp-content/uploads/2011/06/ios5-notification-150x150.png" alt="" width="150" height="150" /></a>Being able to setup/sync your device all wirelessly is a nice addition. They even had a setting during start up that allowed me to sync everything from iCloud, meaning when I get a new iPhone I can pull all my photos and settings back down without having to do anything besides logging in. Apple has improved iOS in nearly every way, some issues were it ran a little slower and a few apps don&#8217;t work, but I assume these issues will be resolved by it&#8217;s fall launch.</p>
<p>iOS and Android&#8217;s OS are pretty tightly matched after iOS5 in my opinion, but what do you think?</p>
<img src="http://feeds.feedburner.com/~r/Drawne/~4/2QXOtOtJXao" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://drawne.com/blog/articles/ios5-hands-on-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://drawne.com/blog/articles/ios5-hands-on-impressions/</feedburner:origLink></item>
		<item>
		<title>Switching from Droid to iPhone</title>
		<link>http://feedproxy.google.com/~r/Drawne/~3/tpsbQa2kRyM/</link>
		<comments>http://drawne.com/blog/articles/thoughts-switching-from-android-to-iphone/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 02:55:13 +0000</pubDate>
		<dc:creator>Andy Feliciotti</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://drawne.com/blog/?p=315</guid>
		<description><![CDATA[I recently got an iPhone 4 after having an Android phone (Motorola Droid) for over a year. Making the switch really gave me a better perspective on the different mobile platforms, and I&#8217;m sharing my experience. (note: this is not a guide/tutorial) My first smartphone endeavor began with the Motorola Droid on Verizon which I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-345" title="android-to-iphone" src="http://static.drawne.com/blog/wp-content/uploads/2011/03/android-to-iphone.png" alt="" width="525" height="85" />I recently got an iPhone 4 after having an Android phone (<a rel="nofollow"  rel="nofollow"  href="http://www.google.com/search?sourceid=chrome&amp;ie=UTF-8&amp;q=motorola+droid">Motorola Droid</a>) for over a year. Making the switch really gave me a better perspective on the different mobile platforms, and I&#8217;m sharing my experience. <em>(note: this is not a guide/tutorial)</em></p>
<div>
<p><span id="more-315"></span>My first smartphone endeavor began with the Motorola Droid on Verizon which I bought on launch in November 2009. I mainly purchased it because it was one of the first Android powered phones on Verizon, and the rockin&#8217; keyboard drew me in. After about a year of loving the phone, I realized it was getting a tad slow compared to the current generation of phones, so I bought the iPhone 4 in March of 2011 on Verizon <em>(My first Apple product!)</em>.</p>
<p><a href="http://static.drawne.com/blog/wp-content/uploads/2011/03/IMG_0006.jpg"><img class="aligncenter size-thumbnail wp-image-325" title="iPhone4 Box" src="http://static3.drawne.com/blog/wp-content/uploads/2011/03/IMG_0006-150x150.jpg" alt="iPhone4 Box" width="150" height="150" /></a><a href="http://static3.drawne.com/blog/wp-content/uploads/2011/03/iphonehomescreen.png"><img class="aligncenter size-thumbnail wp-image-326" title="iPhone Screen" src="http://static3.drawne.com/blog/wp-content/uploads/2011/03/iphonehomescreen-150x150.png" alt="" width="150" height="150" /></a><a href="http://static.drawne.com/blog/wp-content/uploads/2011/03/IMG_0779.jpg"><img class="aligncenter size-thumbnail wp-image-342" title="iPhone4" src="http://static3.drawne.com/blog/wp-content/uploads/2011/03/IMG_0779-150x150.jpg" alt="iPhone4" width="150" height="150" /></a></p>
<p>Right after installing a few apps on my iPhone I realized the differences in app quality versus Android was dramatic. Mainly everything was polished and little functionality compared to my Droid, like not being able to select multiple emails and marking them as read in iOS4 was mind blowing to me. The app selection was disappointing as well.  Apple always boasts about having 350k+ apps which sounds great but when the majority of them are fart/uesless apps it doesn’t do much for my phone’s functionality. Apps that gave me the ability to backup and search my SMS/MMS/Call Logs in Gmail was great on Android, and due to the limited API of iOS4 iPhone apps can&#8217;t achieve such functionality.</p>
<p><a href="http://static2.drawne.com/blog/wp-content/uploads/2011/03/IMG_0768.jpg"><img class="aligncenter size-thumbnail wp-image-338" title="iPhone4" src="http://static.drawne.com/blog/wp-content/uploads/2011/03/IMG_0768-150x150.jpg" alt="iPhone4" width="150" height="150" /></a></p>
<p>I quickly got over things like a broken notification system. Granted the notification system on Android is amazing and Apple will most likely mimic it in iOS5, so I was ok with the current one. Having no delay opening or switching apps gave a nice feel as I was used to waiting a second for apps to load. Granted giving up &#8220;true&#8221; multitasking, having  extended battery life and speed is worth it.<br />
Having a quick phone and polished experience is worth it on the iPhone for the most part. Most users don&#8217;t use all their functions on their phone like I do, so small things I notice really don&#8217;t matter to most. But this whole experance taught me how much better the Android OS was than iOS, Apple only having to make iOS for a few devices makes the experience way better. It&#8217;s only a phone, why not enjoy the time with it, which is why I&#8217;m keeping my iPhone4.</p>
<p><a href="http://static3.drawne.com/blog/wp-content/uploads/2011/03/IMG_0763.jpg"><img class="aligncenter size-thumbnail wp-image-340" title="iPhone4" src="http://static3.drawne.com/blog/wp-content/uploads/2011/03/IMG_0763-150x150.jpg" alt="iPhone4" width="150" height="150" /></a></p>
<p>I am aware I&#8217;m comparing devices that are almost a year apart and that&#8217;s why things are faster/better on the iPhone, but this is meant to be a general comparison between devices. I have used newer Android devices and the slight delay when using the touchscreen just ruins a lot of how the devices should feel.</p>
<p>I can&#8217;t wait to see what Apple does in iOS5, I&#8217;ll be sticking with iPhone in the meantime! <em>(See you in line for iPhone5)</em></p>
<p>Has anyone else made a switch to a different mobile OS, if so how was it?</p>
</div>
<img src="http://feeds.feedburner.com/~r/Drawne/~4/tpsbQa2kRyM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://drawne.com/blog/articles/thoughts-switching-from-android-to-iphone/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://drawne.com/blog/articles/thoughts-switching-from-android-to-iphone/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 10/16 queries in 0.019 seconds using disk: basic
Content Delivery Network via static.drawne.com

Served from: drawne.com @ 2012-05-22 14:41:03 -->

