<?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>TAKA DESIGNS</title>
	
	<link>http://www.takadesigns.com/blog</link>
	<description>Mike Takahashi</description>
	<lastBuildDate>Wed, 28 Jul 2010 15:41:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/takadesigns" /><feedburner:info uri="takadesigns" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Quick Guide: Creating a Plone 3 theme product on the file system</title>
		<link>http://feedproxy.google.com/~r/takadesigns/~3/NKDOixkkRwE/</link>
		<comments>http://www.takadesigns.com/blog/2010/07/28/creating-a-plone-3-theme-product-on-the-file-system/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 15:30:54 +0000</pubDate>
		<dc:creator>Mike Takahashi</dc:creator>
				<category><![CDATA[Plone]]></category>

		<guid isPermaLink="false">http://www.takadesigns.com/blog/?p=1025</guid>
		<description><![CDATA[Creating a Plone 3 theme product on the file system can be notoriously daunting for beginners. A lot of documentation exists, but it is somewhat fragmented and can be confusing. I&#8217;ve been designing and skinning themes for Plone for quite sometime now and thought it would be nice to have a quick guide on how [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: none; float: right; margin: 0 0 15px 15px" src="http://www.takadesigns.com/blog/images/plone-logo.png" alt="Plone logo" /></p>
<p>Creating a <a href="http://www.plone.org">Plone</a> 3 theme product on the file system can be notoriously daunting for beginners. A lot of documentation exists, but it is somewhat fragmented and can be confusing. I&#8217;ve been <a href="http://www.takadesigns.com/plone">designing and skinning themes for Plone</a> for quite sometime now and thought it would be nice to have a quick guide on how to create Plone 3 theme products on the file system.</p>
<p><span id="more-1025"></span></p>
<p>There are essentially 3 things that you need to do which involve:</p>
<ol>
<li>Moving viewlets</li>
<li>Modifying viewlets</li>
<li>Adding theme files</li>
</ol>
<p>To start, you should first create your theme through the web in the ZMI and place all of the files in the <span class="source-code">/custom</span> folder.  Once your design is finalized, you can then move everything into your product on the file system. I like to use <a href="http://www.zope.org/Members/tseaver/FSDump">FSDump</a> to dump files from the ZMI into the file system.</p>
<h3>Through the web</h3>
<p><strong>1. Moving viewlets</strong></p>
<p>Plone’s default layout is composed of <a href="http://plone.org/documentation/manual/theme-reference/elements/viewlet">viewlets</a> such as the <span class="source-code">globalnav</span> (top navigation) that are controlled by viewlet managers. These viewlets can be re-arranged by re-ordering the viewlets through the web by appending <span class="source-code">@@manage-viewlets</span> to the end of your site URL: <span class="source-code">http://[your_plone_site]/@@manage-viewlets</span>.</p>
<p>For a quick reference on what each viewlet is, check out <a href="https://weblion.psu.edu/trac/weblion/wiki/PloneThreeWhereIsWhat">Where is What in Plone 3</a>.</p>
<p><strong>2. Modifying viewlets</strong></p>
<p>To modify the templates for each viewlet, you’ll need to go into the ZMI to <span class="source-code">/portal_view_customizations</span>.</p>
<p><strong>3. Adding theme files</strong></p>
<p>Files such as images and CSS should be placed in the <span class="source-code">/custom</span> folder within the ZMI</p>
<h3>The file system</h3>
<p>Once your design is finalized,  you need to transfer all of the files and layout changes from the web to the file system to create a Plone 3 theme product.</p>
<p>You should use Paster to generate the initial framework and files for your Plone 3 theme product on the file system. For more information on how to use Paster, check out <a href="http://plone.org/documentation/kb/how-to-create-a-plone-3-theme-product-on-the-filesystem">How to Create a Plone 3 Theme Product on the Filesystem</a>.</p>
<p><strong>1. Moving viewlets</strong></p>
<p>Re-ordering viewlets through the web is quite easy using the <span class="source-code">@@manage-viewlets</span> option. However, when creating a product on the file system, you’ll need to re-order these by calling specific rules within <span class="source-code">profiles/default/viewlets.xml</span>, which is created by Paster.</p>
<p>Let’s say you moved the <span class="source-code">personal_bar</span> to the top of the layout. You need to locate the viewlet manager that contains the viewlet using <span class="source-code">@@manage-viewlets</span>.</p>
<p><img src="http://www.takadesigns.com/blog/images/plone-viewlet-manager.jpg" alt="Screenshot of manage viewlet screen" /></p>
<p>By default, <span class="source-code">plone.personal_bar</span> is managed by the <span class="source-code">plone.portaltop</span> viewlet manager. A rule needs to be applied that re-orders the <span class="source-code">plone.personal_bar</span> viewlet within the <span class="source-code">plone.portaltop</span> viewlet manager.</p>
<p>Here is the rule within <span class="source-code">viewlets.xml</span>:</p>
<pre>...

 &lt;order manager="plone.portaltop" skinname="[YOUR_PLONE_THEME]"
     based-on="Plone Default"&gt;
     &lt;viewlet name="plone.personal_bar" insert-before="*"/&gt;
 &lt;/order&gt;

...
</pre>
<p>This rule says to place <span class="source-code">plone.personal_bar</span> before all other viewlets that are managed by the <span class="source-code">plone.portaltop</span> viewlet manager.</p>
<p>For more detailed information on moving viewlets, check out <a href="https://weblion.psu.edu/trac/weblion/wiki/MoveViewletsBetweenViewletManagers">Move Viewlets Between Viewlet Managers</a>.</p>
<p><strong>2. Modifying viewlets</strong></p>
<p>Any viewlets that you customized in <span class="source-code">/portal_view_customizations</span> through the ZMI goes into the <span class="source-code">browser/</span> folder of your theme that was created by Paster.</p>
<p>Let’s say you customized the <span class="source-code">footer</span> and <span class="source-code">global_sections</span>.  You’ll need to add the <span class="source-code">footer.pt</span> and <span class="source-code">sections.pt</span> templates in the <span class="source-code">browser/</span> folder and then reference them in <span class="source-code">browser/configure.zcml</span>:</p>
<pre>...

&lt;browser:viewlet
    name="plone.footer"
    for="*"
    manager="plone.app.layout.viewlets.interfaces.IPortalFooter"
    layer=".interfaces.IThemeSpecific"
    template="footer.pt"
    permission="zope.Public"
/&gt;

&lt;browser:viewlet
    name="plone.global_sections"
    for="*"
    manager="plone.app.layout.viewlets.interfaces.IPortalHeader"
    class=”plone.app.layout.viewlets.common.GlobalSectionsViewlet”
    layer=".interfaces.IThemeSpecific"
    template="sections.pt"
    permission="zope2.View"
/&gt;

...
</pre>
<p>One important thing to note is the <span class="source-code">class=&#8221;plone.app.layout.viewlets.common.GlobalSectionsViewlet&#8221;</span> attribute in <span class="source-code">global_sections</span>.</p>
<p><span class="source-code">global_sections</span> creates content dynamically and therefore references a special class. If you forget to include it, you’ll get an error. The footer on the other hand is only static text by default, so it doesn’t need the class attribute.</p>
<p>The <span class="source-code">manager=&#8221; &#8220;</span> attribute can also be found in <span class="source-code">@@manage-viewlets</span>.</p>
<p><img src="http://www.takadesigns.com/blog/images/plone-viewlet-manager-2.jpg" alt="Screenshot of manage viewlet screen" /></p>
<p><strong>3. Adding theme files</strong></p>
<p>You’ll need to place your theme files such as images and CSS in the <span class="source-code">skins/</span> folder, which is broken up into three sections:</p>
<p><span class="source-code">skins/plonetheme_[your_product_name]_custom_images</span><br />
<span class="source-code">skins/plonetheme_[your_product_name]_custom_templates</span><br />
<span class="source-code">skins/plonetheme_[your_product_name]_styles</span></p>
<p>Any custom CSS files also need to be be registered within <span class="source-code">portal_css</span>.  To do this, you’ll need to reference them in <span class="source-code">profiles/default/cssregistry.xml</span>.  Paster should have created them for you.</p>
<p>Note, you have two options for your image and CSS files. You can either place them in the <span class="source-code">skins/</span> folder or in the <span class="source-code">browser/</span> folder.  However, if you’ll be using any custom DTML calls in your CSS such as <span class="source-code">&amp;dtml-portal_url;</span> to generate your URL dynamically, you’ll need to keep them in the <span class="source-code">skins/</span> folder.  Only static CSS files can go into the <span class="source-code">browser/</span> folder.</p>
<p>As best practice, you should also create an <a href="https://weblion.psu.edu/trac/weblion/wiki/PloneThreeThemeUninstallProfile">uninstall profile</a>.  If you don’t, when your theme is uninstalled it may not reset your Plone site back to its default layout.</p>
<p>Now that you have your product, <a href="http://plone.org/documentation/kb/how-to-install-a-3-x-theme-using-buildout">install it</a>!</p>
<img src="http://feeds.feedburner.com/~r/takadesigns/~4/NKDOixkkRwE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.takadesigns.com/blog/2010/07/28/creating-a-plone-3-theme-product-on-the-file-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.takadesigns.com/blog/2010/07/28/creating-a-plone-3-theme-product-on-the-file-system/</feedburner:origLink></item>
		<item>
		<title>How to effectively use Twitter as a marketing tool</title>
		<link>http://feedproxy.google.com/~r/takadesigns/~3/IvfWBia72JY/</link>
		<comments>http://www.takadesigns.com/blog/2010/07/01/how-to-effectively-use-twitter-as-a-marketing-tool/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 15:42:16 +0000</pubDate>
		<dc:creator>Mike Takahashi</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.takadesigns.com/blog/?p=918</guid>
		<description><![CDATA[Twitter can be used as more than just a platform for saying what&#8217;s on your mind. I talked about the power of real-time search with Twitter in a previous post of mine. Simply having a Twitter account will do nothing for your company or brand. In order to use Twitter effectively and gain the benefits [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: none; float: right; margin: 0 0 15px 15px" src="http://www.takadesigns.com/blog/images/twitter-logo.png" alt="Twitter logo" /></p>
<p>Twitter can be used as more than just a platform for saying what&#8217;s on your mind.  I talked about <a href="http://www.takadesigns.com/blog/2009/09/18/the-power-of-real-time-search-with-twitter/">the power of real-time search</a> with Twitter in a previous post of mine.</p>
<p>Simply having a Twitter account will do nothing for your company or brand.  In order to use Twitter effectively and gain the benefits it can provide, you need to engage with your users and give them a reason to follow you. What&#8217;s great about Twitter is that anyone can do it and most importantly, it&#8217;s free. <a href="http://www.takadesigns.com/blog/2010/03/29/the-conan-obrien-brand-with-special-guest-twitter/">Conan O&#8217;Brien knows this all too well</a>.</p>
<p>The topics covered here are based on &#8220;<a href="http://holykaw.alltop.com/twitter-as-a-weapon-demo-script">How to Use Twitter as a Marketing Weapon</a>&#8221; by Guy Kawasaki who gave a great talk at <a href="http://ucladay.ucla.edu/2010/">UCLA Alumni Day</a> in May.</p>
<p><span id="more-918"></span></p>
<h3>1. Monitor Your Audience</h3>
<p>What are people saying about your brand on Twitter? If you don&#8217;t care, then you should leave right now.  Twitter gives you unfiltered access to what people are saying and feeling about your brand RIGHT NOW. No amount of research or focus groups will give you this kind of data. </p>
<p>You can use <a href="http://search.twitter.com">http://search.twitter.com</a> to search what&#8217;s happening in real-time on Twitter. Let&#8217;s say I&#8217;m Canon since I&#8217;m a Canon fan (P.S. &#8211; Canon, if you&#8217;re monitoring this, feel free to send me free stuff.  I REALLY want the <a href="http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&#038;fcategoryid=139&#038;modelid=19356">7D</a>).  In this example, I&#8217;m doing a quick search on the word &#8220;<a href="http://search.twitter.com/search?q=Canon ">Canon</a>.&#8221;</p>
<p><img src="http://www.takadesigns.com/blog/images/twitter-canon.jpg" alt="Screenshot of Canon keyword search on Twitter" /></p>
<p>If I&#8217;m Canon and I&#8217;m monitoring Twitter like in the search above, I have a great opportunity to reach out to <a href="http://twitter.com/krrrsten">@krrrsten</a> who tweeted that she isn&#8217;t sure about her new Canon SD1400is. I could offer to help answer any questions she might have or provide her with some links to great reviews about the model.</p>
<p>Now let&#8217;s see what people are saying about my competitor <a href="http://search.twitter.com/search?q=Nikon">Nikon</a>.</p>
<p><img src="http://www.takadesigns.com/blog/images/twitter-nikon.jpg" alt="Screenshot of Nikon keyword search on Twitter" /></p>
<p>Looks like Nikon is where it&#8217;s at according to <a href="http://twitter.com/pointlessramble">@pointlessramble</a>. They obviously have some passionate followers.  </p>
<p>You can also see what people are saying directly to you.  Canon has an official Twitter account with <a href="http://twitter.com/Canon_Camera">@Canon_Camera</a>. Twitter users can send messages directed to Canon by adding @Canon_Camera in their messages. Unless you are following someone, you won&#8217;t be able to see any messages directed at you. So you&#8217;ll need to find them by adding &#8220;to:&#8221; in your search.  For Canon, you&#8217;d search for &#8220;<a href="http://search.twitter.com/search?q=to%3ACanon_Camera">to:Canon_Camera</a>.&#8221;</p>
<p><img src="http://www.takadesigns.com/blog/images/twitter-tocanon.jpg" alt="Screenshot of Canon search on Twitter" /></p>
<p>We can see that <a href="http://twitter.com/ugogalassi">@ugogalassi </a> is showing love for Canon. Word-of-mouth advertising is in full effect here.</p>
<h3>2. Engage Your Audience</h3>
<p>Twitter also gives you an opportunity to engage with your audience directly.</p>
<p>If you&#8217;ve ever flown on Virgin, you know it&#8217;s a unique experience.  <a href="http://www.virginamerica.com/va/vaDifference.do">Mood lighting</a>, extra amenities, and great customer service are just some of the perks you&#8217;ll receive.</p>
<p><a href="http://twitter.com/virginamerica">@Virgin America</a> extends their service on Twitter and does a great job with its customers.  It&#8217;s constantly active, responding to customer questions and offering special deals and tips on flights.</p>
<p><img src="http://www.takadesigns.com/blog/images/twitter-virgin.jpg" alt="Screenshot of Virgin Airlines on Twitter" /></p>
<h3>3. Sell and Promote</h3>
<p><a href="http://twitter.com/kogibbq">Kogi BBQ</a></p>
<p><img src="http://www.takadesigns.com/blog/images/twitter-kogi.jpg" alt="Screenshot of Kogi on Twitter" /></p>
<p>If you haven&#8217;t heard of <a href="http://www.kogibbq.com">Kogi BBQ</a>, you&#8217;re probably watching too much Dancing with the Stars.  Kogi BBQ is enormously successful, and sells a fusion of Korean and Mexican style tacos and burritos from taco trucks that drive around Los Angeles. What made Kogi BBQ unique was that it was one of the first well known cases that effectively used Twitter to help their business grow. Each day it announces the locations of where it will be, providing daily updates and announcements to its customers.</p>
<p><a href="http://twitter.com/delloutlet">Dell Outlet</a></p>
<p><img src="http://www.takadesigns.com/blog/images/twitter-dell.jpg" alt="Screenshot of Dell Outlet on Twitter" /></p>
<p>Dell Outlet has been a huge success story for large companies using Twitter.  It uses Twitter to sell excess inventory at major discounts directly to customers.  At the end of 2009 revenue had reached $6.5 million from sales through Twitter.</p>
<p>Keep in mind that users are following you for a reason.  They want special offers or incentives. Give them a compelling reason to follow you.   </p>
<h3>4. Support</h3>
<p><a href="http://twitter.com/comcastcares">Comcast</a></p>
<p><img src="http://www.takadesigns.com/blog/images/twitter-comcast.jpg" alt="Screenshot of Comcast on Twitter" /></p>
<p>Companies have also been using Twitter to provide support for its customers. Comcast is a good example of what is possible by communicating and responding to customers.</p>
<h3>5. Prospect</h3>
<p>This is where we start to dig in deeper into the advanced tools that Twitter offers within its search.</p>
<p><strong>Search by Location</strong></p>
<p>Let&#8217;s say you&#8217;re a camera shop in Anaheim and you want to find out who your potential customers are.  Since every Twitter account has a location field in its profile you can search for any tweets on photography within, say 25 miles, of Anaheim by typing &#8220;<a href="http://search.twitter.com/search?q=+photography+near:92802+within:25mi">photography near:92802 within:25mi</a>.&#8221;</p>
<p><img src="http://www.takadesigns.com/blog/images/twitter-location.jpg" alt="Screenshot of Location search on Twitter" /></p>
<p>You now have a target market who you can reach out to with people that are interested in photography within your area of business.</p>
<p><strong>Search by Keyword</strong></p>
<p>Every Twitter account also has a Bio section where you can enter information about who you are.  </p>
<p><img src="http://www.takadesigns.com/blog/images/twitter-bio.jpg" alt="Screenshot of Bio on Twitter" /></p>
<p>So  let&#8217;s find all the people who say they are photographers on Twitter.  For this, you&#8217;ll need to use Google to search within Twitter by typing  &#8220;<a href="http://www.google.com/search?hl=en&#038;q=intext%3A%22bio+*+photographer%22+site%3Atwitter.com&#038;aq=f&#038;aqi=&#038;aql=&#038;oq=">intext:&#8221;bio * photographer&#8221; site:twitter.com</a>.&#8221; This will search the entire Twitter site for the word &#8220;photographer&#8221; in the Bio section. </p>
<p><img src="http://www.takadesigns.com/blog/images/twitter-google.jpg" alt="Screenshot of Google search on Twitter" /></p>
<p>This is just the tip of the iceberg. There are plenty of other ways to use Twitter, but these tips should help you get started.  If you&#8217;re curious to see how other brands and companies are using Twitter, check out <a href="http://twitter.com/cleveraccounts">Clever Accounts</a> which is run by Twitter&#8217;s Communication department.  Interesting and clever use cases of Twitter are posted by their team.</p>
<img src="http://feeds.feedburner.com/~r/takadesigns/~4/IvfWBia72JY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.takadesigns.com/blog/2010/07/01/how-to-effectively-use-twitter-as-a-marketing-tool/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.takadesigns.com/blog/2010/07/01/how-to-effectively-use-twitter-as-a-marketing-tool/</feedburner:origLink></item>
		<item>
		<title>Get more out of Google Analytics with Site Search and Event Tracking</title>
		<link>http://feedproxy.google.com/~r/takadesigns/~3/moaLNYX5Xq0/</link>
		<comments>http://www.takadesigns.com/blog/2010/06/01/getting-more-out-of-google-analytics-with-site-search-and-event-tracking/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 15:27:40 +0000</pubDate>
		<dc:creator>Mike Takahashi</dc:creator>
				<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.takadesigns.com/blog/?p=916</guid>
		<description><![CDATA[Google Analytics comes with two very useful tools that aren&#8217;t enabled by default: Site Search and Event Tracking. When used, these tools can help give more meaningful statistics about users on your site. Site Search Site Search uses internal search data to track and analyze what visitors are searching for within your site. Internal search [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: right; margin: 0 0 15px 15px" src="http://www.takadesigns.com/blog/images/google-analytics.jpg" alt="Screenshot of Google Analytics" /></p>
<p>Google Analytics comes with two very useful tools that aren&#8217;t enabled by default: <a href="http://analytics.blogspot.com/2009/04/using-site-search-features-in-creative.html">Site Search</a> and <a href="http://analytics.blogspot.com/2009/06/event-tracking-now-available-in-all.html">Event Tracking</a>.  When used, these tools can help give more meaningful statistics about users on your site.  </p>
<p><span id="more-916"></span></p>
<h3>Site Search</h3>
<p>Site Search uses internal search data to track and analyze what visitors are searching for within your site. Internal search data is very important because it helps give insight into what your visitors want and why they are there. Here&#8217;s a quick snapshot of some top searches on <a href="http://happenings.ucla.edu">UCLA Happenings</a>.</p>
<p><img src="http://www.takadesigns.com/blog/images/site-search.jpg" alt="Screenshot of Site Search on Google Analytics" /></p>
<p>Using this information, you can find out if your site has the content your visitors need. Site Search can also tell you how effective your content is organized and if it can be easily found.</p>
<p>For example, when visitors use your search, which link do they click on first within the search results? Is it the correct page? Or do they search for a few pages, then get discouraged and leave your site? These are just some of the important questions that Site Search can help answer to help manage your content.</p>
<h3>Event Tracking</h3>
<p>Event Tracking allows you to track events such as clicks to external links, downloads of files such as PDF&#8217;s, interaction with Flash objects, and more. For the <a href="http://www.ucla.edu">UCLA gateway</a> this is hugely beneficial for us.  The majority of our pages such as <a href="http://www.ucla.edu/academics.html">Academics</a> act as a &#8220;gateway&#8221; by providing external links to other departments and organizations within UCLA. By analyzing the data from Event Tracking, we&#8217;re now able to determine which links are the most popular and which links are just not working.</p>
<p><img src="http://www.takadesigns.com/blog/images/event-tracking.jpg" alt="Screenshot of Event Tracking on Google Analytics" /><br />
<em style="font-size: 90%">Event Tracking report for <a href="http://www.ucla.edu/academics.html">Academics</a>.</em></p>
<p>We can also easily track how many times files such as PDF&#8217;s are downloaded like our <a href="http://www.ucla.edu/map/">campus map</a>. Statistics such as these can be very useful in determining whether or not we still need to publish a static version of our campus map. </p>
<p><img src="http://www.takadesigns.com/blog/images/event-tracking-campus-map.jpg" alt="Screenshot of Event Tracking on Google Analytics" /><br />
<em style="font-size: 90%">Event Tracking report for file downloads.</em></p>
<p>In order to implement Event Tracking, you&#8217;ll need to customize the way you call your Google Analytics code a little and use jQuery, but it&#8217;s not that hard. There is a great tutorial called <a href="http://www.carronmedia.com/extend-google-analytics-with-jquery/">Extend Google Analytics with jQuery</a> on how to do this. </p>
<p>Using these tools will help give you a greater understanding of what your users are looking for. It will help you understand them more effectively, lead to greater usability, and deliver the most out of your website.</p>
<img src="http://feeds.feedburner.com/~r/takadesigns/~4/moaLNYX5Xq0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.takadesigns.com/blog/2010/06/01/getting-more-out-of-google-analytics-with-site-search-and-event-tracking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.takadesigns.com/blog/2010/06/01/getting-more-out-of-google-analytics-with-site-search-and-event-tracking/</feedburner:origLink></item>
		<item>
		<title>Keeping users engaged with Facebook social plugins</title>
		<link>http://feedproxy.google.com/~r/takadesigns/~3/RcdZfaRZAyA/</link>
		<comments>http://www.takadesigns.com/blog/2010/05/11/keeping-users-engaged-with-facebook-social-plugins/#comments</comments>
		<pubDate>Tue, 11 May 2010 14:29:06 +0000</pubDate>
		<dc:creator>Mike Takahashi</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.takadesigns.com/blog/?p=887</guid>
		<description><![CDATA[At UCLA Happenings, we are constantly trying to improve our site and keep our users engaged. A while back we integrated comments for every event via Facebook&#8217;s social plugins. Facebook also makes it very easy to integrate these plugins with little work. In most cases, only a few lines of HTML code need to be [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: none; float: right; margin-left: 10px;" src="http://www.takadesigns.com/blog/images/facebook-logo.jpg" alt="Facebook logo button" /></p>
<p>At <a href="http://happenings.ucla.edu">UCLA Happenings</a>, we are constantly trying to improve our site and keep our users engaged.  A while back we integrated comments for every event via <a href="http://developers.facebook.com/plugins">Facebook&#8217;s social plugins</a>.  Facebook also makes it very easy to integrate these plugins with little work. In most cases, only a few lines of HTML code need to be added and you&#8217;re ready to go. We&#8217;ve seen activity and usage steadily grow as many users have begun actively engaging with our site. </p>
<p><span id="more-887"></span></p>
<p> Recently, Facebook launched a new plugin called <a href="http://developers.facebook.com/docs/reference/plugins/recommendations">Recommendations</a> that allows users to recommend any piece of content on your website.  We&#8217;ve decided to implement this feature for every event on UCLA Happenings.  Users can now recommend events they like by clicking the &#8220;Recommend&#8221; button when viewing an event.  </p>
<p><img src="http://www.takadesigns.com/blog/images/facebook-recommend-button.jpg" alt="Screenshot of Facebook Recommend button" /></p>
<p>Once clicked, the event is also published on their Facebook profile so that other Facebook users can see which events they have recommended. </p>
<p><img src="http://www.takadesigns.com/blog/images/facebook-recommend-profile.jpg" alt="Screenshot of Facebook profile" /></p>
<p>Additionally, we also display the number of recommendations each event has on our summary of event listings. By doing so, we hope to encourage and engage our users to check out more events that have been recommended.   </p>
<p><img src="http://www.takadesigns.com/blog/images/facebook-recommend-listing.jpg" alt="Screenshot of Facebook Recommend listing" /></p>
<p>What&#8217;s also important to note is that our users are creating word-of-mouth for events.  Word-of-mouth has always been one of the most powerful tools of marketing. According to a <a href="http://blog.nielsen.com/nielsenwire/consumer/global-advertising-consumers-trust-real-friends-and-virtual-strangers-the-most/">survey</a> conducted online by Nielsen in 2009 of over 25,000 Internet consumers from 50 countries, 90 percent of its consumers surveyed trust recommendations from people they know.</p>
<p>The power of content sharing through mediums such as Facebook&#8217;s social plugins can help leverage your brand and create word-of-mouth. Your sites can become more social and engaging and have the potential to reach a vast network of users.  It&#8217;s a service that&#8217;s worth trying and it&#8217;s easy to implement.</p>
<img src="http://feeds.feedburner.com/~r/takadesigns/~4/RcdZfaRZAyA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.takadesigns.com/blog/2010/05/11/keeping-users-engaged-with-facebook-social-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.takadesigns.com/blog/2010/05/11/keeping-users-engaged-with-facebook-social-plugins/</feedburner:origLink></item>
		<item>
		<title>Online review ratings: 5 stars or like/dislike?</title>
		<link>http://feedproxy.google.com/~r/takadesigns/~3/Cku_qT80F6g/</link>
		<comments>http://www.takadesigns.com/blog/2010/04/20/online-review-ratings-5-stars-or-like-dislike/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 15:12:10 +0000</pubDate>
		<dc:creator>Mike Takahashi</dc:creator>
				<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.takadesigns.com/blog/?p=824</guid>
		<description><![CDATA[YouTube recently rolled out a newly redesigned layout to the cringe of many users. However, what was interesting was their new review ratings. They&#8217;ve moved from a 5-star ratings system to a like/dislike system that most users have probably seen on Facebook. YouTube Most Liked Facebook Like What YouTube found was that users were inclined [...]]]></description>
			<content:encoded><![CDATA[<p>YouTube recently rolled out a newly <a href="http://youtube-global.blogspot.com/2010/03/new-video-page-launches-for-all-users.html">redesigned layout</a> to the cringe of many users. However, what was interesting was their new review ratings.  They&#8217;ve moved from a 5-star ratings system to a like/dislike system that most users have probably seen on Facebook.</p>
<p><span id="more-824"></span></p>
<p><img src="http://www.takadesigns.com/blog/images/youtube-like.jpg" alt="Screenshot of YouTube like feature" /><br />
<em>YouTube Most Liked</em></p>
<p><img src="http://www.takadesigns.com/blog/images/facebook-like.jpg" alt="Screenshot of Facebook like feature" /><br />
<em>Facebook Like</em></p>
<p>What YouTube found was that users were inclined to rate videos extremely high or low depending on whether they liked or disliked a video.  In this situation, the 5-star ratings system was highly ineffective. A post on their <a href="http://youtube-global.blogspot.com/2009/09/five-stars-dominate-ratings.html">blog</a> goes on to explain, &#8220;Seems like when it comes to ratings it&#8217;s pretty much all or nothing. Great videos prompt action; anything less prompts indifference. Thus, the ratings system is primarily being used as a seal of approval, not as an editorial indicator of what the community thinks about a video.&#8221;</p>
<p>On sites such as <a href="http://www.yelp.com">Yelp</a>, review ratings can be significantly skewed based on customer emotions or experiences.  If a customer receives terrible service but the food is excellent, how is that factored in Yelp&#8217;s 5-star ratings system? Customers will often give 1-star simply because their waiter was rude or the service was terrible. These factors aren&#8217;t conveyed appropriately into their ratings system.</p>
<p><a href="http://www.tripadvisor.com">TripAdvisor</a>, which focus on hotel reviews, takes a more holistic approach. Unlike Yelp, their ratings are based on the average of several specific criteria such as rooms, location, cleanliness, service and sleep quality. Did you have terrible service but an amazing room and location?  On TripAdvsior, your ratings can be more refined with an average that is reflective of the overall experience.</p>
<p><img src="http://www.takadesigns.com/blog/images/tripadvisor-reviews.jpg" alt="Screenshot of TripAdvisor reviews" /><br />
<em>TripAdvisor holistic reviews</em></p>
<p>Amazon tries to implement the best of both worlds.  It uses a 5-star ratings system and a version of like/dislike that allows users to note if a review was helpful or not.  Thus helping to filter out only the most useful reviews.</p>
<p><img src="http://www.takadesigns.com/blog/images/amazon-reviews.jpg" alt="Screenshot of Amazon reviews" /><br />
<em>Amazon helpful review</em></p>
<p>It will be interesting to see what trends and patterns continue to emerge with online review ratings.  Each system has its advantages and disadvantages.  While like/dislike may work well for sites such as YouTube, a more holistic approach can be beneficial for sites such as Yelp. Yelp, please take note.</p>
<h3>Resources</h3>
<p><em><a href="http://www.technologyreview.com/web/23477/?a=f">Can You Trust Crowd Wisdom?</a></em>, Technology Review MIT, September 16, 2009<br />
<em><a href="http://online.wsj.com/article/SB125470172872063071.html">On the Internet, Everyone&#8217;s a Critic But They&#8217;re Not Very Critical</em></a>, The Wall Street Journal, October 5, 2009</p>
<img src="http://feeds.feedburner.com/~r/takadesigns/~4/Cku_qT80F6g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.takadesigns.com/blog/2010/04/20/online-review-ratings-5-stars-or-like-dislike/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.takadesigns.com/blog/2010/04/20/online-review-ratings-5-stars-or-like-dislike/</feedburner:origLink></item>
		<item>
		<title>The Conan O’Brien Brand with special guest Twitter</title>
		<link>http://feedproxy.google.com/~r/takadesigns/~3/6NGMdHl13eI/</link>
		<comments>http://www.takadesigns.com/blog/2010/03/29/the-conan-obrien-brand-with-special-guest-twitter/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 15:32:26 +0000</pubDate>
		<dc:creator>Mike Takahashi</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.takadesigns.com/blog/?p=769</guid>
		<description><![CDATA[If you were one of the lucky fans who scored tickets to Conan O&#8217;Brien&#8217;s upcoming sold out tour, you were probably following him on Twitter, or heard about it from someone who did. How do I know? Because the only advertising was through a post by Conan O&#8217;Brien (@ConanOBrien) on his Twitter account. No other [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: right; margin-left: 10px" src="http://www.takadesigns.com/blog/images/conan.jpg" alt="Photo of Conan O'Brien" /></p>
<p>If you were one of the lucky fans who scored tickets to Conan O&#8217;Brien&#8217;s <a href="http://www.teamcoco.com">upcoming sold out tour</a>, you were probably following him on Twitter, or heard about it from someone who did. How do I know? Because the only advertising was through a post by Conan O&#8217;Brien (<a href="http://www.twitter.com/conanobrien">@ConanOBrien</a>) on his Twitter account. No other form of traditional advertising was done, and within a few hours after his post, most of the dates had already sold out.   </p>
<p><span id="more-769"></span></p>
<p>With less than a month since joining Twitter, Conan has already amassed more than 734,000+ loyal followers. Since then, he has been actively engaged with his audience, providing everything from jokes to personal photos online. Conan illustrates a great example of how brands can successfully engage and leverage their audience online. Many brands or businesses think they need to have a Twitter account, but fail to use it in an effective matter. To be successful on Twitter, brands need to engage with their audience and offer compelling reasons for them to continue following them. Dues to his existing fan base, Conan has been able to successfully do this in just a short amount of time. It illustrates what is possible when social media tools such as Twitter are used effectively.  If you&#8217;re a small or large brand, there&#8217;s no reason why your brand can&#8217;t do the same. </p>
<p>American Express, who is sponsoring Conan&#8217;s shows, is also using Twitter as a platform to generate more publicity and word of mouth advertising.  Fans can win the chance to meet Conan by first following him on Twitter and then tweeting the following: </p>
<blockquote><p>Hey @americanexpress I want to be with Coco in (insert city from list below). Pick me! http://bit.ly/bEUqsh #amexConan</p></blockquote>
<p>Reported cost for NBC to let Conan go? $45 million</p>
<p>Cost to advertise his sold out tour? $0</p>
<p>For everything else there&#8217;s Master&#8230;wait, my bad.  This tour is sponsored by American Express.  Don&#8217;t leave home without it.</p>
<p><img src="http://www.takadesigns.com/blog/images/conan-amex.jpg" alt="Photo of Conan O'Brien" /></p>
<img src="http://feeds.feedburner.com/~r/takadesigns/~4/6NGMdHl13eI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.takadesigns.com/blog/2010/03/29/the-conan-obrien-brand-with-special-guest-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.takadesigns.com/blog/2010/03/29/the-conan-obrien-brand-with-special-guest-twitter/</feedburner:origLink></item>
		<item>
		<title>Creating a custom branded URL shortener with bit.ly Pro</title>
		<link>http://feedproxy.google.com/~r/takadesigns/~3/XEWzXppw4hg/</link>
		<comments>http://www.takadesigns.com/blog/2010/02/22/creating-a-custom-branded-url-shortener-with-bit-ly-pro/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 17:18:12 +0000</pubDate>
		<dc:creator>Mike Takahashi</dc:creator>
				<category><![CDATA[Branding]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.takadesigns.com/blog/?p=736</guid>
		<description><![CDATA[URL shorteners have recently exploded in popularity with the emergence of Twitter. One of the most popular services bit.ly recently launched a free service called bit.ly Pro that creates custom branded short URLs. Companies such as Facebook and Google have also created their own using fb.me and goo.gl. So what&#8217;s the big deal? Custom shortened [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border:none; float: right; margin-left: 10px" src="http://www.takadesigns.com/blog/images/bitlypro.png" alt="Logo of bitly Pro" /></p>
<p>URL shorteners have recently exploded in popularity with the emergence of Twitter. One of the most popular services <a href="http://bit.ly">bit.ly</a> recently launched a free service called <a href="http://blog.bit.ly/post/356400453/bit-ly-pro-open-beta-and-enterprise-service">bit.ly Pro</a> that creates custom branded short URLs.  Companies such as Facebook and Google have also created their own using <a href="http://fb.me">fb.me</a> and <a href="http://goo.gl">goo.gl</a>.  So what&#8217;s the big deal?  </p>
<p><span id="more-736"></span></p>
<p>Custom shortened URLs can act as verified links and be used as an important branding tool for your business or organization.  In time, users who are familiar with your brand can also learn to trust them. bit.ly also includes real-time statistics associated with each link, which can be helpful when trying to monitor the success of <a href="http://en.wikipedia.org/wiki/Click-through_rate">click-through rates</a> for links that you send out.</p>
<p>At UCLA, we&#8217;ve chosen to create our own branded URL shortener at <a href="http://ucla.in">ucla.in</a> using bit.ly Pro. bit.ly Pro offers a service that integrates any custom domain with bit.ly&#8217;s existing service.  It also includes several features such as a publishers dashboard, which provides aggregate real-time statistics from the past 24 hours.  Partners already include AOL, The Wall Street Journal and the New York Times. </p>
<p>You can also customize the service by using <a href="http://code.google.com/p/bitly-api/wiki/ApiDocumentation">bit.ly&#8217;s API</a>.  By default, bit.ly allows users to shorten any URL. This can lead to the creation of malicious links and spam, potentially hurting your brand.   For ucla.in, we&#8217;ve integrated a white list that only allows the creation of shortened links to sites in the *.ucla.edu and UCLA-owned domains. So when users go to use ucla.in, they won&#8217;t be able to create links to unaffiliated websites. </p>
<p>There is always a risk of using URL shorteners because links are now being redirected through a middleman. What happens if bit.ly&#8217;s service goes down, or a malicious attacker takes over, similar to what happend with <a href="http://blog.cli.gs/news/cligs-got-hacked-restoration-from-backup-started">Cligs</a>?  These are still issues to consider.  However, bit.ly appears to be a well established player, and with so many high profile organizations now on board, it&#8217;s a service you should consider.</p>
<img src="http://feeds.feedburner.com/~r/takadesigns/~4/XEWzXppw4hg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.takadesigns.com/blog/2010/02/22/creating-a-custom-branded-url-shortener-with-bit-ly-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.takadesigns.com/blog/2010/02/22/creating-a-custom-branded-url-shortener-with-bit-ly-pro/</feedburner:origLink></item>
		<item>
		<title>Developing a mobile website strategy</title>
		<link>http://feedproxy.google.com/~r/takadesigns/~3/Pj8_6Sg5Y_M/</link>
		<comments>http://www.takadesigns.com/blog/2010/01/26/developing-a-mobile-website-strategy/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 15:43:29 +0000</pubDate>
		<dc:creator>Mike Takahashi</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.takadesigns.com/blog/?p=702</guid>
		<description><![CDATA[As applications continue to migrate toward the web, mobile devices are an even more integral part of our everyday lives. According to The Mobile Internet Report released by Morgan Stanley in December 2009, the mobile internet will be twice the size of the desktop internet. More users will connect to the web through mobile devices [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border:none; float: right" src="http://www.takadesigns.com/blog/images/mobile-phone.png" alt="Screenshot of UCLA Happenings website on a mobile phone" /></p>
<p>As applications continue to migrate toward the web, mobile devices are an even more integral part of our everyday lives. According to <a href="http://www.morganstanley.com/institutional/techresearch/mobile_internet_report122009.html">The Mobile Internet Report</a> released by Morgan Stanley in December 2009, the mobile internet will be twice the size of the desktop internet.  More users will connect to the web through mobile devices than desktop computers within 5 years. With the emergence of the iPhone and Google&#8217;s Android platform now able to create quality user experiences on the web, these findings shouldn&#8217;t come as much of a surprise.</p>
<p>At UCLA, we recently launched a mobile version of the UCLA Happenings website, our campus events calendar at <a href="http://m.happenings.ucla.edu">http://m.happenings.ucla.edu</a>. If you haven&#8217;t thought about it already, then it&#8217;s only a matter of time before you&#8217;ll need to consider what you&#8217;re mobile strategy will be.  Here are a few things to consider.</p>
<p><span id="more-702"></span></p>
<h3>Understand your audience</h3>
<p>These days everyone seems to be creating an iPhone specific application for their website. However, it&#8217;s important to think twice before you spend time and resources developing one. First, ask yourself who your target audience is. Take things into consideration.  For example, business people are more likely to use a Blackberry, whereas more technically savvy and creative people use the iPhone. If you create an iPhone application for your website, what happens to the rest of your audience who don&#8217;t have one? Will you be developing and maintaining two different platforms? For UCLA Happenings, we chose to be platform independent so we could reach the widest possible audience. As a result, our website works well across all platforms and browsers.</p>
<h3>Don&#8217;t copy</h3>
<p>Your mobile website shouldn&#8217;t simply copy your existing website, it should complement it. Users to mobile websites are typically on the go and they want to find information quickly and easily. Think of the context of your website and what you need to deliver to your audience. A successful mobile design will deliver the most important information quickly, easily and intuitively.</p>
<p>Best Buy&#8217;s mobile website (<a href="http://m.bestbuy.com">http://m.bestbuy.com</a>) does this well. They have two main options: <strong>Search Products</strong> and <strong>Find Store</strong>.</p>
<p><img src="http://www.takadesigns.com/blog/images/bestbuy-screenshot.jpg" width="250" alt="Screenshot of Best Buy mobile website" /></p>
<p>Urban Outfitters (<a href="http://m.urbanoutfitters.com">http://m.urbanoutfitters.com</a>) is also very similar.</p>
<p><img src="http://www.takadesigns.com/blog/images/uo-screenshot.jpg" width="250" alt="Screenshot of Urban Outfitters mobile website" /></p>
<p>For UCLA Happenings, we stripped out many additional features of the desktop website and concentrated on the delivery of events. Two functions we&#8217;ve concentrated on are search and finding events by date.</p>
<h3>Keeping it simple</h3>
<p>You should always separate content from presentation as much as possible while using semantic markup. Take into consideration that each device will differ in aspects such as the speed of connection, layout, screen size and color depth.  Many devices may not support CSS, or have it disabled by default, such as Blackberry.</p>
<p>Here is how UCLA Happenings looks with CSS diabled. </p>
<p><img src="http://www.takadesigns.com/blog/images/happenings-screenshot.jpg" width="250" alt="Screenshot of Happenings mobile website with CSS disabled" /></p>
<p>By keeping the markup simple and semantic, even with CSS disabled, the site is still quite usable.</p>
<h3>Browser Compatibility</h3>
<p>There are so many different phones and browsers that you&#8217;ll never be able to support them all.  One approach is to start off by looking at the statistics of visitors to your website to see which browsers are the most popular. As your website gains more users, you can always add additional browser support in the future as needed. For UCLA Happenings, we implemented a <a href="http://en.wikipedia.org/wiki/Progressive_enhancement">progressive enhancement</a> strategy to give the best possible experience regardless of what mobile device the user is on.</p>
<h3>Testing and more Testing</h3>
<p>Many of the popular devices such as iPhone, Blackberry and Android allow you to download emulators for your desktop. However, there can be inconsistencies between emulators and real devices as we found.  When we were testing for Blackberry, the emulators were correctly displaying the website.  However, some of our co-workers who had a Blackberry weren&#8217;t rendering the website correctly.  After some more testing and research, we found that many Blackberry devices have CSS disabled by default. To get the best experience possible, you should try and use the actual device.  If you don&#8217;t have access to certain devices, you can always go down to the local cell phone providers store and test them out.</p>
<h3>Resources</h3>
<p><a href="http://www.mobiledesign.org/">Mobile Design and Development</a> by Brian Fling &#8211; This is an excellent resource that provides great insight, background and information on creating mobile websites and applications. The book is very thorough and covers everything from basic design design and development principles to more advanced topics such as markup and and styling techniques.</p>
<p><a href="http://www.smashingmagazine.com/2009/01/13/mobile-web-design-trends-2009">Mobile Web Design Trends for 2009</a>  &#8211; A great article that details mobile web design trends and strategies.</p>
<img src="http://feeds.feedburner.com/~r/takadesigns/~4/Pj8_6Sg5Y_M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.takadesigns.com/blog/2010/01/26/developing-a-mobile-website-strategy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.takadesigns.com/blog/2010/01/26/developing-a-mobile-website-strategy/</feedburner:origLink></item>
		<item>
		<title>You should be monitoring your online audience</title>
		<link>http://feedproxy.google.com/~r/takadesigns/~3/6g1-aVN34Fo/</link>
		<comments>http://www.takadesigns.com/blog/2009/12/09/you-should-be-monitoring-your-online-audience/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 16:13:27 +0000</pubDate>
		<dc:creator>Mike Takahashi</dc:creator>
				<category><![CDATA[Branding]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.takadesigns.com/blog/?p=562</guid>
		<description><![CDATA[Traditional methods of gaining feedback about your brand or website online have typically relied on blogs, surveys or polls. With the emergence of social media sites and tools such as Twitter, Facebook and Google Alerts, you now have the ability to monitor and listen to your audience in an indirect way. A recent article from [...]]]></description>
			<content:encoded><![CDATA[<p>Traditional methods of gaining feedback about your brand or website online have typically relied on blogs, surveys or polls.  With the emergence of social media sites and tools such as Twitter, Facebook and Google Alerts, you now have the ability to monitor and listen to your audience in an indirect way. </p>
<p><span id="more-562"></span></p>
<p>A recent article from the Wall Street Journal entitled &#8220;<a href="http://voices.allthingsd.com/20091123/marketers-find-web-chat-can-be-inspiring/">Marketers Find Web Chat Can Be Inspiring&#8221;</a> describes how <a href="www.harrahs.com">Harrah&#8217;s Entertainment</a> started monitoring Twitter and Facebook to find out what consumers were saying about their casinos, hotels and spas.</p>
<p>They found that many consumers were interested in hotel amenities such as room size and details of menu offerings and services.  It quickly made adjustments to their marketing messages in online ads by adding the square footage of its suites.  These subtle changes boosted Harrah&#8217;s online bookings by a double-digit percentage.</p>
<p>Setting up monitoring tools are free and easy. Using them will allow you to engage and understand your audience more effectively while staying relevant with them. </p>
<p>Here are a few: </p>
<h3>Google Alerts</h3>
<p><a href="http://alerts.google.com">http://alerts.google.com</a></p>
<p><img src="http://www.takadesigns.com/blog/images/googlealerts.jpg" alt="Screenshot of Google Alerts" /></p>
<p>Google Alerts allows you select specific search terms and notifies you via email or an RSS feed anytime that phrase is found by Google. It gives you the ability to search within blogs, news, groups, video and the web.</p>
<h3>Twitter</h3>
<p><a href="http://search.twitter.com">http://search.twitter.com</a></p>
<p><img src="http://www.takadesigns.com/blog/images/twitter-search.jpg" alt="Screenshot of Twitter Search" /></p>
<p>Twitter’s search function allows you to monitor what people are saying in real-time and save the results as an RSS feed. Additionally, within the advanced options, you can limit searches to particular locations, dates, and even if users are asking a question.</p>
<img src="http://feeds.feedburner.com/~r/takadesigns/~4/6g1-aVN34Fo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.takadesigns.com/blog/2009/12/09/you-should-be-monitoring-your-online-audience/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.takadesigns.com/blog/2009/12/09/you-should-be-monitoring-your-online-audience/</feedburner:origLink></item>
		<item>
		<title>Google’s Chrome OS is the direction of the future</title>
		<link>http://feedproxy.google.com/~r/takadesigns/~3/YZWfQwDBdqQ/</link>
		<comments>http://www.takadesigns.com/blog/2009/11/24/googles-chrome-os-is-the-direction-of-the-future/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 17:16:10 +0000</pubDate>
		<dc:creator>Mike Takahashi</dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.takadesigns.com/blog/?p=530</guid>
		<description><![CDATA[The new Google Chrome OS has been getting a lot of attention recently. In short, it will be a light weight operating system for netbooks that rely on applications residing in the cloud, such as Google Docs. Nothing gets installed or updated on your machine. It&#8217;s the complete opposite of traditional operating systems such as [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: right; padding: 0; border: 0" src="http://www.takadesigns.com/blog/images/google-chrome-logo.gif" height="150" width="150" alt="Logo of Google Chrome" /></p>
<p>The new <a href="http://en.wikipedia.org/wiki/Google_Chrome_OS">Google Chrome OS</a> has been getting a lot of attention recently. In short, it will be a light weight operating system for netbooks that rely on applications residing in the cloud, such as <a href="http://docs.google.com">Google Docs</a>. Nothing gets installed or updated on your machine.  It&#8217;s the complete opposite of traditional operating systems such as Windows.</p>
<p>So why is this such a big deal?  </p>
<p><span id="more-530"></span></p>
<p>As Sundar Pichai, vice president of product management for Google has stated, &#8220;Every capability you want today [in native applications], in the future it will be written as a web application.&#8221;  The future of applications will be in the cloud.  You&#8217;re currently already using the cloud when you use web-based applications such as Gmail for email or Flickr to store photos. This is just the beginning as high profile applications like Microsoft Office are slowly migrating to the cloud as well.</p>
<p>By using applications online, you&#8217;ll be able to access information anywhere from any device that has access to the internet. Dependency issues on specific machines at work or home will be a thing of the past.  From an infrastructure point, the cloud can also be beneficial in areas such as cost, collaboration, maintenance and flexibility.  However, these benefits also draw issues and concerns regarding the privacy and security of your data, since it is no longer locally managed and in your control.</p>
<p>As other applications and ideas continue to evolve in the cloud, the web will become an even more integral part of our daily lives.  It will be interesting to see how Chrome OS will be adopted. It may not be the end all solution, but it&#8217;s certainly heading toward the right direction of how we will be interacting with content and accessing information in the future. </p>
<h3>Resources</h3>
<ul>
<li><a href="http://www.pcworld.com/article/182718/google_chrome_os_its_promises_and_secrets.html">Google Chrome OS: Its Promises and Secrets</a></li>
<li><a href="http://gizmodo.com/5408504/everything-you-need-to-know-about-chrome-os">Everything You Need To Know About Chrome OS </a></li>
<li><a href="http://www.npr.org/templates/story/story.php?storyId=102453091">Counting On The Cloud To Drive Computing&#8217;s Future</a></li>
</ul>
<img src="http://feeds.feedburner.com/~r/takadesigns/~4/YZWfQwDBdqQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.takadesigns.com/blog/2009/11/24/googles-chrome-os-is-the-direction-of-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.takadesigns.com/blog/2009/11/24/googles-chrome-os-is-the-direction-of-the-future/</feedburner:origLink></item>
	</channel>
</rss>
