<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tiny Factory</title>
	<atom:link href="http://www.tinyfactory.co/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tinyfactory.co</link>
	<description>San Diego Mobile App &#38; Web Development Agency</description>
	<lastBuildDate>Wed, 04 Jan 2012 20:09:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>TINYFACTORY.CO Wins the First Bulby Award for BEST CREATIVE AGENCY</title>
		<link>http://www.tinyfactory.co/marketing/tinyfactory-co-wins-the-first-bulby-award-for-best-creative-agency</link>
		<comments>http://www.tinyfactory.co/marketing/tinyfactory-co-wins-the-first-bulby-award-for-best-creative-agency#comments</comments>
		<pubDate>Thu, 21 Jul 2011 20:50:34 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.tinyfactory.co/?p=628</guid>
		<description><![CDATA[All the votes are in. All the clicks have been counted, and the &#8220;.COmmunity&#8221; has spoken! TINYFACTORY.CO has been awarded the first ever Bulby Award for Best Creative Agency! TINY FACTORY is recognized for its impressive body of work, which &#8230; ]]></description>
			<content:encoded><![CDATA[<p>All the votes are in.  All the clicks have been counted, and the &#8220;.COmmunity&#8221; has spoken!  TINYFACTORY.CO has been awarded the first ever Bulby Award for Best Creative Agency!</p>
<p>TINY FACTORY is recognized for its impressive body of work, which has been consistently creative, imaginative and innovative.  The world of website and mobile design has taken notice of TINY FACTORY&#8217;s contribution of well thought out and fully optimized sites and mobile applications.</p>
<p>We faced tough competition from our category competitors and are looking forward to next years competition.  If you’d like to enter your business you can already <a href="http://www.opportunity.co/case-studies/submit.php">here</a>.</p>
<p>Founded by Michael Sacca &amp; Alex Rolek more than two years ago, TINY FACTORY firmly believes in offering clients high quality work delivered with an air of friendly professionalism.  Experts in developing and coding mobile applications and website designs, TINY FACTORY is rapidly becoming an industry trailblazer.  They are a progressive and forward looking team, living on the cutting edge of technological advances.</p>
<p>Kudos to TINYFACTORY.CO for raising the bar and presenting the industry with a solid example of excellence.  Note to TINY FACTORY&#8217;s followers, in August 2011, the company will be relocating their main operations to San Diego, CA, and will be available at 1043 6th Avenue, San Diego 92101.   Feel free to stop by and meet the team who won the First Bulby Award for the BEST CREATIVE AGENCY in the &#8220;.co&#8221; community.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tinyfactory.co/marketing/tinyfactory-co-wins-the-first-bulby-award-for-best-creative-agency/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimizing with ySlow!  (Part 1)</title>
		<link>http://www.tinyfactory.co/web-design/optimizing-with-yslow-part-1</link>
		<comments>http://www.tinyfactory.co/web-design/optimizing-with-yslow-part-1#comments</comments>
		<pubDate>Mon, 11 Apr 2011 21:23:15 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Page Speed]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Bounce Rate]]></category>

		<guid isPermaLink="false">http://www.tinyfactory.co/?p=529</guid>
		<description><![CDATA[Once again we see an emerging interest in page speed (thanks Google!) that leaves many webmasters and SEO experts wondering what they can do to optimize their page speed and keep the search engines happy.  It used to be all &#8230; ]]></description>
			<content:encoded><![CDATA[<p>Once again we see an emerging interest in page speed (thanks Google!) that leaves many webmasters and SEO experts wondering what they can do to optimize their page speed and keep the search engines happy.  It used to be all about slicing images and reducing image size and, while those things still may be relevant much of what is causing your page speed to be slow is on the server side.  But not to worry, there are some excellent resources out there that will have your page flying in no time.  We&#8217;re going to go through Yahoo&#8217;s page speed recommendations and demystify some of the cryptic requests.</p>
<h4><strong>1.  Make Fewer HTTP Requests</strong></h4>
<p>What this means is each element that appears on your site needs to be downloaded and delivered to your visitors browser.   This could be an image, stylesheet, javascript file, flash element etc.  The idea here is to minimize the number of times the browser has to jump back and forth grabbing content.  Now if you&#8217;re like us and still want to have some images on your site, here are a couple ways to reduce your HTTP requests while still maintaining your company branding:<br />
<strong>CSS Sprites:</strong> If we&#8217;re dealing with images, CSS Sprites are an excellent way to reduce the number of calls your asking the browser to make.  A sprite is one large image compiled of all the main images on your site.  Using CSS we can then call the location of that image to appear, much like targeting longitude and latitude coordinates.  So instead of calling in 47 separate images, we just ask the browser to load in one image greatly reducing our http requests.  If you want more information on this, CSS Tricks has posted an excellent article on CSS Sprites</p>
<p><strong>Combine Files:</strong> Another method to reduce your HTTP requests is to combine your CSS stylesheets and JavaScript files into one &#8220;minified&#8221; file each.  Typically we keep the master files (fully commented) stored in a client file, and serve the minified version to the server.  This way we&#8217;ll always have the documented version on hand which makes it easier if we ever have to make changes.</p>
<h4><strong>2.  Use a Content Delivery Network: </strong></h4>
<p>OK &#8211; now this may sound like a huge task but don&#8217;t let it discourage you.  What a Content Delivery Network (CDN) does, is to deploy your content across multiple, geographically dispersed servers making your pages load faster from the user&#8217;s perspective.  The idea is that a user&#8217;s download rates are faster the closer they are to the server,  so by delivering the content across multiple servers it speeds up their download rates and they see your page faster.   Services such as Amazon CloudFront or Rackspace&#8217;s Cloud Files make it much easier to deploy a CDN at a fraction of the cost.</p>
<p><strong>How it works:</strong> When you upload files to your CDN, a copy of the files will be cached in various servers that are spread across important cities in US, Europe and Asia. So a visitor from India will be served content by the server located in Asia and so on.</p>
<p><strong>Setting it up:</strong> Setting up a CDN with Amazon or Rackspace is very similar to serving your images from a sub-domain (as we do on our site).   If you&#8217;re using Amazon&#8217;s CloudFront there&#8217;s a firefox plugin that allows you to manage your distributions.  You would then associate a CNAME (some easy to remember sub-domain name) with your S3 bucket so it becomes easy to link to the files from your web page.  Amazon and Rackspace both start at .15 cents a GB/mo.</p>
<h4><strong>3. Avoid empty src or href</strong></h4>
<p>This is really self explanatory.  When tell the browser to retrieve an empty file it wastes it&#8217;s resources trying to find something that doesn&#8217;t exist.  Reducing these requests will speed up the amount of time it takes for the browser to load your page.</p>
<h4><strong>4. Add Expires headers</strong></h4>
<p>This can be a difficult issues to resolve if you&#8217;re using multiple scripts that you&#8217;re calling from outside of your domain.  But what you can do, is for any scripts that you&#8217;re calling from your domain, make sure you&#8217;re letting the browser know to cache them.  The piece of code will go into your .htaccess file and will look something like this:</p>
<p>&nbsp;</p>
<pre class="qoate-code">
&lt;FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$"&gt;
Header set Expires "Thu, 15 Apr 2011 20:00:00 GMT"
&lt;/FilesMatch&gt;
</pre>
<p>What this piece of code will do is for the listed file extensions it will let the browser know to cache them until the date you provide.  A first-time visitor to your page will make several HTTP  requests to download all your sites files, but using the Expires header  you make those files cacheable. This avoids unnecessary HTTP  requests on subsequent page views. Expires headers should be used on all  components including scripts, stylesheets, and Flash components.</p>
<p>in Part II will take a look at gZip compression and the location of your CSS &amp; Javascript files.  Let us know if you have any questions in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tinyfactory.co/web-design/optimizing-with-yslow-part-1/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Our Best and Worst picks for Super Bowl Commercials</title>
		<link>http://www.tinyfactory.co/marketing/our-best-and-worst-picks-for-super-bowl-commercials</link>
		<comments>http://www.tinyfactory.co/marketing/our-best-and-worst-picks-for-super-bowl-commercials#comments</comments>
		<pubDate>Mon, 07 Feb 2011 07:02:30 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Commercials]]></category>
		<category><![CDATA[Super Bowl]]></category>

		<guid isPermaLink="false">http://www.tinyfactory.co/?p=576</guid>
		<description><![CDATA[Mini Darth Vader, Kim Kardashian's worst voice-over, Cuba Gooding Jr.  What else did you expect from the Super Bowl 2011 Commercial Roundup?  ]]></description>
			<content:encoded><![CDATA[<p>Call me crazy &#8211; but honestly I didn&#8217;t watch the Superbowl.  That being said &#8211; I did make sure to check out what everyone will actually be talking about tomorrow.  The commercials.  As it is every year, we expect any number of car commercials, insurance commercials and beverage commercials but a welcome addition this year was the online coupon commercials.   This was the first cross-over from web advertising to TV for Groupon &amp; Living Social, and so there  was a lot of anticipation for their national face-off.  Take a look as some of the highlights from the Super Bowl commercials this year:</p>
<h4>Groupons: Whales</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/zcZuYjo5OnEMOxyyUl9UxQ" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="288" src="http://www.hulu.com/embed/zcZuYjo5OnEMOxyyUl9UxQ" allowfullscreen="true"></embed></object></p>
<p>Honestly this one was a bit disappointing &#8211; the twist didn&#8217;t seem to hold much of a punch.  I was really hoping Groupon would win this as they&#8217;ve been somewhat of a start-up darling this year.  Unfortunately, I have to admit I enjoyed Living Socials offering better.</p>
<h4>Living Social: It&#8217;ll Change Your Life</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/U7bDduMCoiWcSit5j_iVUw" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="288" src="http://www.hulu.com/embed/U7bDduMCoiWcSit5j_iVUw" allowfullscreen="true"></embed></object></p>
<h4>Chevrolet: Cruze Eco Misunderstanding</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/HDK1wNClQ-HGMOg3hTVTCA" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="288" src="http://www.hulu.com/embed/HDK1wNClQ-HGMOg3hTVTCA" allowfullscreen="true"></embed></object><br />
They had me at &#8220;42 wild Italians&#8221; &#8211; it was a nice break from the intensity of many of the car commercials this year to throw in some humor.  Plus, how many times did they get Eco into this one minute ad? Well done.</p>
<h4>Motorola: Empower the People</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/t0dVpAioFYiajqL18KGk-Q" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="288" src="http://www.hulu.com/embed/t0dVpAioFYiajqL18KGk-Q" allowfullscreen="true"></embed></object><br />
I&#8217;m an iPad guy myself &#8211; but I&#8217;m also a sucker for the loan geek with a tablet.  Well done Motorola.</p>
<h4>Careerbuilder: Parking Lot</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/kye7Qj-FoWldRrqRgZDU_A" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="288" src="http://www.hulu.com/embed/kye7Qj-FoWldRrqRgZDU_A" allowfullscreen="true"></embed></object><br />
Monkeys are always funny.  Probably not the best of the bunch, but you have to admit at least it made you smile.</p>
<h4>Bridgestone</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/BWqSteiy1QCeuyje8r1jFA" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="288" src="http://www.hulu.com/embed/BWqSteiy1QCeuyje8r1jFA" allowfullscreen="true"></embed></object><br />
You know we&#8217;ve all done it.  This commercial brought me right back to Monday morning.</p>
<h4>NFL: Super Bowl Celebration</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/iuD5c4qGuIeQZfS8sOQitQ" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="288" src="http://www.hulu.com/embed/iuD5c4qGuIeQZfS8sOQitQ" allowfullscreen="true"></embed></object><br />
For nostalgia sake, this commercial <strong>is</strong><em> </em>the first ten years of my life &#8211; when I really did watch the Super Bowl for the football (I swear).<em><br />
</em></p>
<h4>Volkswagen: The Force</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/RWZOl8Dg037PpPx46KbaTQ" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="288" src="http://www.hulu.com/embed/RWZOl8Dg037PpPx46KbaTQ" allowfullscreen="true"></embed></object><em><br />
</em>This is the obvious winner this year.  I&#8217;m sure we&#8217;ll be seeing this thousands of times, but it did earn a mention.  Brilliant stuff!</p>
<h2>&#8230;and some of the worst</h2>
<p>Not every commercial this year was a hit &#8211; here are a couple of our worst picks.</p>
<h4>Skechers: Kim Kardashian: Hello Skechers</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/OJ2QtMfBAsmlb7yS4onxug" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="288" src="http://www.hulu.com/embed/OJ2QtMfBAsmlb7yS4onxug" allowfullscreen="true"></embed></object><em><em><br />
</em></em>Wow.  The voice-over couldn&#8217;t be any more flat.  I&#8217;ve never watched her show, but I couldn&#8217;t stand that voice for 30 seconds let alone 30 minutes.</p>
<h4>Salesforce: Chatter.com Launch: Do Impossible Things</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/ccZCB27Cq8XIiI2zLzTXmA" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="288" src="http://www.hulu.com/embed/ccZCB27Cq8XIiI2zLzTXmA" allowfullscreen="true"></embed></object><em><em><br />
</em></em>As a fan of Salesforce, I really wanted to like this.   But something about it just falls incredibly flat.</p>
<h4>Chrysler: Imported From Detroit</h4>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="288" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/nP9rEwfKT-RLeCm6zNyz6g" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="288" src="http://www.hulu.com/embed/nP9rEwfKT-RLeCm6zNyz6g" allowfullscreen="true"></embed></object><em><em><em><em><br />
</em></em></em></em>It&#8217;s not an awful commercial.  But it&#8217;s way to intense for my liking.</p>
<p><em><em><em><em>So where were some of your favorites?  Let me know if the comments below.</em></em></em></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tinyfactory.co/marketing/our-best-and-worst-picks-for-super-bowl-commercials/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>They Use WordPress?!</title>
		<link>http://www.tinyfactory.co/web-design/they-use-wordpress-an-overview-of-sites-built-on-wordpress</link>
		<comments>http://www.tinyfactory.co/web-design/they-use-wordpress-an-overview-of-sites-built-on-wordpress#comments</comments>
		<pubDate>Mon, 10 Jan 2011 23:57:55 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress theme]]></category>

		<guid isPermaLink="false">http://www.tinyfactory.co/?p=475</guid>
		<description><![CDATA[We take a look at well known brands who use Wordpress to maintain their website.  A seemingly growing trend we're happy to see. ]]></description>
			<content:encoded><![CDATA[<p>Wordpress has been growing in popularity over the past few years mainly due to the flexibility of its framework .  With the release of WordPress 3.0, it has turned from a blogging platform with the ability to be hacked, into a website into a full blown content management system.  Take a look at these sites that utilize WordPress themes for their websites.</p>
<h4>Lexus</h4>
<p><a href="http://www.darkersideofgreen.com/" target="_blank"><img class="alignnone size-full wp-image-477" title="lexus" src="http://img.tinyfactory.co/uploads/2011/01/lexus.png" alt="" width="700" height="350" /></a><br />
They&#8217;ve made some major modifications to the standard WordPress framework here &#8211; and the result is a beautiful custom theme.</p>
<h4>Kobe Bryant</h4>
<p><a href="http://www.kb24.com" target="_blank"><img class="alignnone size-full wp-image-482" title="kobebryant" src="http://img.tinyfactory.co/uploads/2011/01/kobebryant.jpg" alt="" width="700" height="350" /></a><br />
One of our favorites around here for obvious reasons &#8211; but a beautiful theme none-the-less.</p>
<h4>Ebay Ink</h4>
<p><a href="http://ebayinkblog.com/" target="_blank"><img class="alignnone size-full wp-image-483" title="ebay" src="http://img.tinyfactory.co/uploads/2011/01/ebay.jpg" alt="" width="700" height="350" /></a><br />
A straight forward approach for Ebay&#8217;s offical blog &#8220;ink.&#8221;  Still a really solid layout staying true to Ebay&#8217;s brand.</p>
<h4>NASA</h4>
<p><a href="http://www.nasa.gov/centers/ames/home/index.html" target="_blank"><img class="alignnone size-full wp-image-484" title="nasa" src="http://img.tinyfactory.co/uploads/2011/01/nasa.jpg" alt="" width="700" height="350" /></a><br />
One of the more dated looking sites on the list &#8211; but hey &#8211; it&#8217;s NASA, and it certainly houses a ton of content.</p>
<h4>Spotify</h4>
<p><a href="http://www.spotify.com" target="_blank"><img class="alignnone size-full wp-image-486" title="spotify" src="http://img.tinyfactory.co/uploads/2011/01/spotify.jpg" alt="" width="700" height="350" /></a><br />
A lovely example of WordPress as a full CMS.  Spotify has created a really nice user interface that&#8217;s easy to navigate through.</p>
<h4>Yahoo!</h4>
<p><a href="http://ycorpblog.com/" target="_blank"><img class="alignnone size-full wp-image-487" title="yahoo" src="http://img.tinyfactory.co/uploads/2011/01/yahoo.jpg" alt="" width="700" height="350" /></a><br />
Yahoo uses WordPress to power multiple blogs that they own.</p>
<h4>Ford</h4>
<p><a href="http://www.thefordstory.com/" target="_blank"><img class="alignnone size-full wp-image-488" title="ford" src="http://img.tinyfactory.co/uploads/2011/01/ford.jpg" alt="" width="700" height="350" /></a><br />
Another blog on our list that would use a little love, but here&#8217;s Ford using WordPress to power their blog.</p>
<h4>Wall Street Journal</h4>
<p><a href="http://blogs.wsj.com/law/" target="_blank"><img class="alignnone size-full wp-image-489" title="wsj" src="http://img.tinyfactory.co/uploads/2011/01/wsj.jpg" alt="" width="700" height="350" /></a><br />
The Wall Street Journal powers their blogs with WordPress.</p>
<h4>Ben &amp; Jerry&#8217;s</h4>
<p><a href="http://www.benjerry.fr/blog/" target="_blank"><img class="alignnone size-full wp-image-491" title="b&amp;j" src="http://img.tinyfactory.co/uploads/2011/01/bj.jpg" alt="" width="700" height="350" /></a><br />
A really playful blog from Ben &amp; Jerry&#8217;s for their French site.</p>
<h4>SONY Playstation</h4>
<p><a href="http://blog.us.playstation.com/" target="_blank"><img class="alignnone size-full wp-image-492" title="playstation" src="http://img.tinyfactory.co/uploads/2011/01/playstation.jpg" alt="" width="700" height="350" /></a><br />
Sony&#8217;s Playstation blog created for users to find out the latest updates and releases.</p>
<h4>People Magazine</h4>
<p><a href="http://stylenews.peoplestylewatch.com/" target="_blank"><img class="alignnone size-full wp-image-493" title="people" src="http://img.tinyfactory.co/uploads/2011/01/people.jpg" alt="" width="700" height="350" /></a></p>
<p>Do you love Pete Wentz&#8217;s curly hair?  You can weigh in on this pressing issue and others on People Magazines WordPress blog.</p>
<h4>CNN</h4>
<p><a href="http://politicalticker.blogs.cnn.com/" target="_blank"><img class="alignnone size-full wp-image-494" title="cnn" src="http://img.tinyfactory.co/uploads/2011/01/cnn.jpg" alt="" width="700" height="350" /></a><br />
CNN has built a massive <a title="Las Vegas WordPress" href="http://www.tinyfactory.co/">WordPress blog</a> for their political ticker blog.</p>
<h4>SONY make.believe</h4>
<p><a href="http://electronicsblog.sel.sony.com/" target="_blank"><img class="alignnone size-full wp-image-495" title="Sony" src="http://img.tinyfactory.co/uploads/2011/01/Sony.jpg" alt="" width="700" height="350" /></a><br />
SONY built this beautiful WordPress theme for their make.believe blog where they discuss all things electronics.</p>
<h4>New York Times</h4>
<p><a href="http://www.nytimes.com/interactive/blogs/directory.html"><img class="alignnone size-full wp-image-497" title="nyt" src="http://img.tinyfactory.co/uploads/2011/01/nyt.jpg" alt="" width="700" height="350" /></a><br />
The New York Times relies on WordPress for their blog section.</p>
<h4>Samsung</h4>
<p><a href="http://www.samsungusanews.com/" target="_blank"><img class="alignnone size-full wp-image-498" title="samsung" src="http://img.tinyfactory.co/uploads/2011/01/samsung.jpg" alt="" width="700" height="350" /></a><br />
A very straight forward theme from Samsung for their blog</p>
<h4>TED</h4>
<p><a href="http://blog.ted.com/" target="_blank"><img class="alignnone size-full wp-image-499" title="Ted WordPress" src="http://img.tinyfactory.co/uploads/2011/01/red.jpg" alt="" width="700" height="350" /></a><br />
The non-profit group TED uses WordPress to power their blog</p>
<h4>Top Gear</h4>
<p><a href="http://transmission.blogs.topgear.com/" target="_blank"><img class="alignnone size-full wp-image-500" title="Topgear WordPress Theme" src="http://img.tinyfactory.co/uploads/2011/01/topgear.jpg" alt="Top Gear WordPress Theme" width="700" height="350" /></a><br />
One of our favorite Sunday night activities is watch Top Gear on the BBC channel, it might have something to do with their sharp WordPress blog.</p>
<h4>Mozilla</h4>
<p><a href="http://blog.mozilla.com/"><img class="alignnone size-full wp-image-501" title="mozilla" src="http://img.tinyfactory.co/uploads/2011/01/mozilla.jpg" alt="" width="700" height="350" /></a><br />
Our favorite browser&#8217;s blog is powered by WordPress</p>
<h4>Katy Perry</h4>
<p><a href="http://www.katyperry.com" target="_blank"><img class="alignnone size-full wp-image-502" title="KatyPerry" src="http://img.tinyfactory.co/uploads/2011/01/KatyPerry.jpg" alt="" width="700" height="350" /></a><br />
One of the biggest female pop stars in the world just got a little sexier with the addition of WordPress powering her website.</p>
<h4>MySpace Developers</h4>
<p><a href="http://developer.myspace.com/wordpress/" target="_blank"><img class="alignnone size-full wp-image-503" title="myspace" src="http://img.tinyfactory.co/uploads/2011/01/myspace.jpg" alt="" width="700" height="350" /></a><br />
Is myspace making a comeback?  We&#8217;re not sure &#8211; but their developers blog is built in WordPress.</p>
<h4>Adobe</h4>
<p><a href="http://blogs.adobe.com/" target="_blank"><img class="alignnone size-full wp-image-505" title="adobe WordPress Blog" src="http://img.tinyfactory.co/uploads/2011/01/adobe.jpg" alt="" width="700" height="350" /></a><br />
Alexa rank of 54?  Yep!  Adobe Chooses WordPress for their blogging platform.</p>
<h4>Nokia</h4>
<p><a href="http://nowplaying.nokia.com/" target="_blank"><img class="alignnone size-full wp-image-506" title="nokia" src="http://img.tinyfactory.co/uploads/2011/01/nokia.jpg" alt="" width="700" height="350" /></a><br />
Nokia has a futuristic looking WordPress theme for their blog</p>
<h4>NFL</h4>
<p><a href="http://blogs.nfl.com/" target="_blank"><img class="alignnone size-full wp-image-507" title="nfl wordpress theme" src="http://img.tinyfactory.co/uploads/2011/01/nfl.jpg" alt="" width="700" height="350" /></a><br />
The NFL uses WordPress for their blog.</p>
<h4>Nikon</h4>
<p><a href="http://press.nikonusa.com/" target="_blank"><img class="alignnone size-full wp-image-508" title="nikon" src="http://img.tinyfactory.co/uploads/2011/01/nikon.jpg" alt="" width="700" height="350" /></a><br />
Nikons simple WordPress blog to highlight their latest news</p>
<h4>Wired</h4>
<p><a href="http://www.webmonkey.com/" target="_blank"><img class="alignnone size-full wp-image-509" title="wired" src="http://img.tinyfactory.co/uploads/2011/01/wired.jpg" alt="" width="700" height="350" /></a><br />
Wired Magazine&#8217;s Web Monkey blog is built on the WordPress framework.</p>
<h4>Flickr</h4>
<p><a href="http://code.flickr.com/blog/"><img class="alignnone size-full wp-image-510" title="flickr" src="http://img.tinyfactory.co/uploads/2011/01/flickr.jpg" alt="" width="700" height="350" /></a><br />
Not sure what&#8217;s happening with the gears and rainbow &#8211; but flickr relies on WordPress for it&#8217;s blog.</p>
<h4>Network Solutions</h4>
<p><a href="http://about.networksolutions.com/" target="_blank"><img class="alignnone size-full wp-image-511" title="network-solutions" src="http://img.tinyfactory.co/uploads/2011/01/network-solutions.jpg" alt="" width="700" height="350" /></a><br />
An excellent example of WordPress as a full CMS.</p>
<h4>Cpanel</h4>
<p><a href="http://www.cpanel.net/news.html" target="_blank"><img class="alignnone size-full wp-image-512" title="cpanel WordPress Theme" src="http://img.tinyfactory.co/uploads/2011/01/cpanel.jpg" alt="" width="700" height="350" /></a><br />
Cpanels straight forward WordPress blog.</p>
<h4>MTVU</h4>
<p><a href="http://www.mtvu.com/"><img class="alignnone size-full wp-image-513" title="mtvu WordPress Theme" src="http://img.tinyfactory.co/uploads/2011/01/mtvu.jpg" alt="" width="700" height="350" /></a><br />
MTVU uses WordPress to power it&#8217;s interactive website</p>
<h4>Pepsi</h4>
<p><a href="http://www.refresheverything.com/blog/" target="_blank"><img class="alignnone size-full wp-image-514" title="pepsi WordPress Theme" src="http://img.tinyfactory.co/uploads/2011/01/pepsi.jpg" alt="pepsi WordPress Theme" width="700" height="350" /></a><br />
The Pepsi Refresh Project was a huge social hit and they use WordPress to power their blog.</p>
<h4>United States Mission Geneva</h4>
<p><a href="http://geneva.usmission.gov/" target="_blank"><img class="alignnone size-full wp-image-515" title="Goverment WordPress Theme" src="http://img.tinyfactory.co/uploads/2011/01/Goverment-Wordpress-Theme.jpg" alt="Goverment WordPress Theme" width="700" height="350" /></a><br />
Even the United States Government is getting in on the WordPress action.  Check out the United Nations and Other International Organizations in Geneva website for an example.</p>
<h4>Harvard</h4>
<p><a href="http://news.harvard.edu/gazette/" target="_blank"><img class="alignnone size-full wp-image-516" title="harvard wordpress theme" src="http://img.tinyfactory.co/uploads/2011/01/harvard.jpg" alt="harvard wordpress theme" width="700" height="350" /></a><br />
The scholars over at Harvard University choose WordPress to power their schools blog.</p>
<h4>National Geographic</h4>
<p><a href="http://img.tinyfactory.co/uploads/2011/01/nationalgeo.jpg" target="_blank"><img class="alignnone size-full wp-image-517" title="nationalgeo WordPress Theme" src="http://img.tinyfactory.co/uploads/2011/01/nationalgeo.jpg" alt="nationalgeo WordPress Theme" width="700" height="350" /></a><br />
National Geographic utilizes a WordPress theme for their nature blog</p>
<h4>Forbes</h4>
<p><a href="http://blogs.forbes.com/" target="_blank"><img class="alignnone size-full wp-image-519" title="forbes WordPress theme" src="http://img.tinyfactory.co/uploads/2011/01/forbes.jpg" alt="Forbes WordPress Theme" width="700" height="350" /></a><br />
Many magazines are using Worpdress to power their blog.  If it&#8217;s good enough for Forbes&#8230;</p>
<h4>USG Magazine</h4>
<p><a href="http://ugsmag.com/" target="_blank"><img class="alignnone size-full wp-image-520" title="usgmagazine" src="http://img.tinyfactory.co/uploads/2011/01/usgmagazine.jpg" alt="" width="700" height="350" /></a><br />
They may not be a household name &#8211; but USG Magazine&#8217;s WordPress theme is an example of a beautiful WordPress theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tinyfactory.co/web-design/they-use-wordpress-an-overview-of-sites-built-on-wordpress/feed</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Sitting In A Bowl Of Oatmeal</title>
		<link>http://www.tinyfactory.co/web-design/sitting-in-a-bowl-of-oatmeal</link>
		<comments>http://www.tinyfactory.co/web-design/sitting-in-a-bowl-of-oatmeal#comments</comments>
		<pubDate>Thu, 16 Dec 2010 20:16:47 +0000</pubDate>
		<dc:creator>Cecilia</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.tinyfactory.co/?p=462</guid>
		<description><![CDATA[Does sitting in a bowl of oatmeal make you a raisin? ]]></description>
			<content:encoded><![CDATA[<p>People like to say that Web designers are a dime a dozen, and quite frankly the same is often said about artists.  I know this because I grew up believing that one day I would become a successful professional artist.  Anyway, I’m getting off topic.  The point is, calling yourself a web designer doesn’t necessarily make you a web designer anymore than sitting in a bowl of oatmeal makes you a raisin.</p>
<p>We know it’s possible to take a template and create a website.  It is also possible to use a stencil to draw a picture, but would you then call yourself an artist?  If you’re wondering, the answer is NO.  The point I’m making here is that a true website designer is a gifted artist whose work is recognizable for its uniquely distinctive look and appeal.   The finished product accomplishes what it sets out to do, but in an uncommon and captivating way.</p>
<p>To begin the process of retraining your eye for website design excellence, let’s begin with a few key factors which can make or break a website at first glance.   We know that if your sight does not have visual appeal, it’s not likely to efficiently attract new business.</p>
<p>Beginning checklist for appropriately assessing website designs:</p>
<p>1. Is there inconsistent spacing and an obvious lack of understanding of white-space issues?</p>
<p>2. Is there a healthy balance between text and imagery?</p>
<p>3. Is the text presented in an interesting and appealing way which draws the viewer’s attention and keeps them reading your message?</p>
<p>4. Is there an overabundance of stock imagery?  Don’t risk eliciting the “Yeah, yeah we’ve seen this before” response from your site visitors.  This can become irritating to shoppers and ultimately lumps your site in with all the rest leaving you no way to distance yourself from the herd.</p>
<p>5. Are there wingdings in the text due to invalid html characters (typically caused by improper use of copy and paste commands)?  Believe it or not there are websites online that are just that sloppy.  We’ve seen them, and it makes us sad.  At least clean up the obvious flaws.</p>
<p>These are just a few common errors we’ve noticed while browsing various websites.  A true web artist doesn’t settle for anything less than excellence in the performance of his/her craft.  Stick with us and we’ll teach you more.  Hire us and you’ll experience the difference between hacks and artists.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tinyfactory.co/web-design/sitting-in-a-bowl-of-oatmeal/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

