<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Status Not Quo</title>
	<atom:link href="http://blog.statusnotquo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.statusnotquo.com</link>
	<description>Not your ordinary consulting firm</description>
	<lastBuildDate>Fri, 17 Feb 2012 23:10:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.statusnotquo.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Status Not Quo</title>
		<link>http://blog.statusnotquo.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.statusnotquo.com/osd.xml" title="Status Not Quo" />
	<atom:link rel='hub' href='http://blog.statusnotquo.com/?pushpress=hub'/>
		<item>
		<title>TextboxTitle &#8211; a jQuery plugin</title>
		<link>http://blog.statusnotquo.com/2012/02/13/textboxtitle-a-jquery-plugin/</link>
		<comments>http://blog.statusnotquo.com/2012/02/13/textboxtitle-a-jquery-plugin/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 01:45:48 +0000</pubDate>
		<dc:creator>Ben Loveless</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Business Objectives]]></category>
		<category><![CDATA[competitive advantage]]></category>
		<category><![CDATA[Consulting]]></category>
		<category><![CDATA[Custom Software Development]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[IT Project]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Status Not Quo]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[System Design]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Vision]]></category>

		<guid isPermaLink="false">http://blog.statusnotquo.com/?p=766</guid>
		<description><![CDATA[Earlier this week I found myself needing to create a simple but effective User Interface tweak on a client’s website – I needed to include a label for a text field within the field itself.  I find the need for this type of UI enhancement a lot on mobile websites, where real estate is so [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=766&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Earlier this week I found myself needing to create a simple but effective User Interface tweak on a client’s website – I needed to include a label for a text field within the field itself.  I find the need for this type of UI enhancement a lot on mobile websites, where real estate is so limited, but I have found it to be just as useful for desktop-browser websites, so I decided to implement it as a jQuery plugin, and it worked well enough that I thought I share it here.</p>
<p>First, to give a clearer picture of what I’m talking about, imagine a simple mobile website with the following simple form:</p>
<p><a href="http://statusnotquo.files.wordpress.com/2012/02/form01.jpg"><img class="alignnone size-full wp-image-767" title="Form01" src="http://statusnotquo.files.wordpress.com/2012/02/form01.jpg?w=600" alt=""   /></a></p>
<p>This form is in need of some UI elements to explain what each of the two text fields is for, but with such limited space on a mobile form, it’s often not practical to add label elements either above or to the side of our textboxes.  So, the obvious solution is to put the labels in the textboxes themselves, like this:</p>
<p><a href="http://statusnotquo.files.wordpress.com/2012/02/form02.jpg"><img class="alignnone size-full wp-image-768" title="Form02" src="http://statusnotquo.files.wordpress.com/2012/02/form02.jpg?w=600" alt=""   /></a></p>
<p>This is a pretty simple function, but let’s take a look at the required functionality.</p>
<ol>
<li>It needs to be simple to apply to any text field.</li>
<li>The “title” text should be visually different (in my case I made the text a lighter shade of grey).</li>
<li>The “title” text needs to disappear whenever the form element is given focus, and any text typed into the field by the user should be the normal visual style.</li>
<li>When focus is lost, the element should maintain any user-entered text, or, if the element is empty, the “title” text should reappear.</li>
<li>If the “title” text is still in the field when the form is submitted, the form should treat it as an empty field.</li>
</ol>
<p>My solution is the jQuery plugin you can find <a title="jquery.textboxTitle.js" href="http://www.statusnotquo.com/resources/blog/textboxtitle/jquery.textboxTitle.js" target="_blank">here</a>.  To use it, first add the .js file to your HTML page, along with the usual jQuery script include:</p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;../resources/script/jquery.textboxTitle.js&#8221;&gt;&lt;/script&gt;</p></blockquote>
<p>Next, on your form fields, add the following class:</p>
<blockquote><p>&lt;input type=&#8221;text&#8221; class=&#8221;inputTextboxTitle&#8221; /&gt;</p></blockquote>
<p>In ASP.net, it would look like this:</p>
<blockquote><p>&lt;asp:TextBox runat=&#8221;server&#8221; ID=&#8221;txtLastName&#8221; Width=&#8221;150px&#8221; CssClass=&#8221;inputTextboxTitle /&gt;</p></blockquote>
<p>Last, add the text you want to appear within the textbox using the “title” name / value pair:</p>
<blockquote><p>&lt;input type=&#8221;text&#8221; title=&#8221;First Name&#8221; /&gt;</p></blockquote>
<p>In ASP.net, the ToolTip attribute relates to “title” when the input field is rendered as HTML:</p>
<blockquote><p>&lt;asp:TextBox runat=&#8221;server&#8221; ID=&#8221;txtLastName&#8221; Width=&#8221;150px&#8221; CssClass=&#8221;inputTextboxTitle&#8221; ToolTip=&#8221;Last Name&#8221; /&gt;</p></blockquote>
<p>And that’s it.  The class name is only used to make it easier for jQuery to find the form fields – all necessary CSS for the functionality is created dynamically by the plugin.  If you start typing in one of the fields, your text will appear normal (not the lighter shade of grey), and when the form is submitted, the plugin will remove the “title” text first, so the fields are truly empty when your server-side code tries to handle the submission.</p>
<p>I hope someone out there can find this useful.  I don’t usually blog this specifically about my code, but building this as a plugin was fun and I thought it might be of use to the community.  If you do find this useful, or have any questions about it, please let me know.</p>
<p><a href="http://statusnotquo.files.wordpress.com/2012/02/form03.jpg"><img class="alignnone size-full wp-image-770" title="Form03" src="http://statusnotquo.files.wordpress.com/2012/02/form03.jpg?w=600" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statusnotquo.wordpress.com/766/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statusnotquo.wordpress.com/766/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statusnotquo.wordpress.com/766/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statusnotquo.wordpress.com/766/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statusnotquo.wordpress.com/766/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statusnotquo.wordpress.com/766/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statusnotquo.wordpress.com/766/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statusnotquo.wordpress.com/766/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statusnotquo.wordpress.com/766/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statusnotquo.wordpress.com/766/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statusnotquo.wordpress.com/766/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statusnotquo.wordpress.com/766/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statusnotquo.wordpress.com/766/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statusnotquo.wordpress.com/766/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=766&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.statusnotquo.com/2012/02/13/textboxtitle-a-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc92e807e18c51d53eacf653be0ab05a?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Ben</media:title>
		</media:content>

		<media:content url="http://statusnotquo.files.wordpress.com/2012/02/form01.jpg" medium="image">
			<media:title type="html">Form01</media:title>
		</media:content>

		<media:content url="http://statusnotquo.files.wordpress.com/2012/02/form02.jpg" medium="image">
			<media:title type="html">Form02</media:title>
		</media:content>

		<media:content url="http://statusnotquo.files.wordpress.com/2012/02/form03.jpg" medium="image">
			<media:title type="html">Form03</media:title>
		</media:content>
	</item>
		<item>
		<title>Success Defined</title>
		<link>http://blog.statusnotquo.com/2012/02/08/success-defined/</link>
		<comments>http://blog.statusnotquo.com/2012/02/08/success-defined/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 22:07:45 +0000</pubDate>
		<dc:creator>Pam Capistrano</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Status Not Quo]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Custom Software Development]]></category>
		<category><![CDATA[business strategy]]></category>
		<category><![CDATA[strategic management]]></category>
		<category><![CDATA[success]]></category>
		<category><![CDATA[Santa Clarita]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Consulting]]></category>
		<category><![CDATA[Business Objectives]]></category>
		<category><![CDATA[Vision]]></category>
		<category><![CDATA[Client Relations]]></category>

		<guid isPermaLink="false">http://blog.statusnotquo.com/?p=759</guid>
		<description><![CDATA[I came across what I thought was a really good definition of Success and wanted to share it with you. To me, success is about making a difference for good in the lives of others and in the organizations we support.  Helping people and organizations make positive changes is fulfilling work, and that is at [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=759&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I came across what I thought was a really good definition of Success and wanted to share it with you.</p>
<blockquote><p>To me, success is about making a difference for good in the lives of others and in the organizations we support.  Helping people and organizations make positive changes is fulfilling work, and that is at the heart of success, in my opinion.  Perhaps the best measure of this comes from how much we would be missed if we were gone.  Wealth, fame, power, or stature do define success &#8211; making a difference does.</p>
<p><a title="~Ken Kaufman - CFOWise.com - April 2010" href="http://cfowise.com/cfo-services/what-your-definition-success" target="_blank">~Ken Kaufman - CFOWise.com April 2010</a></p></blockquote>
<p>I hope that you choose today to work in a way that you would be missed and hope that I do the same.</p>
<p>Pam Capistrano<br />
Status Not Quo<br />
<a href="http://www.statusnotquo.com">www.statusnotquo.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statusnotquo.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statusnotquo.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statusnotquo.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statusnotquo.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statusnotquo.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statusnotquo.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statusnotquo.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statusnotquo.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statusnotquo.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statusnotquo.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statusnotquo.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statusnotquo.wordpress.com/759/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statusnotquo.wordpress.com/759/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statusnotquo.wordpress.com/759/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=759&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.statusnotquo.com/2012/02/08/success-defined/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f3588682d217a0d0c220ae8fc0eda82?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Pam Capistrano</media:title>
		</media:content>
	</item>
		<item>
		<title>Degrees of Separation</title>
		<link>http://blog.statusnotquo.com/2012/02/03/degrees-of-separation/</link>
		<comments>http://blog.statusnotquo.com/2012/02/03/degrees-of-separation/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 17:45:19 +0000</pubDate>
		<dc:creator>Shawn M. Capistrano</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Business Objectives]]></category>
		<category><![CDATA[business strategy]]></category>
		<category><![CDATA[competitive advantage]]></category>
		<category><![CDATA[Degrees of separation]]></category>
		<category><![CDATA[Executive Presentation]]></category>
		<category><![CDATA[Nuggets of Wisdom]]></category>
		<category><![CDATA[Priorities]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Status Not Quo]]></category>

		<guid isPermaLink="false">http://blog.statusnotquo.com/2012/02/03/degrees-of-separation/</guid>
		<description><![CDATA[It’s an incredibly small world when you start looking at degrees of separation in business.  Go one, two, maybe a few more steps and you can find someone who knows of or has worked with someone you’re looking to do business with. And that means that your relationships and how you handled yourself in them [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=757&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It’s an incredibly small world when you start looking at degrees of separation in business.  Go one, two, maybe a few more steps and you can find someone who knows of or has worked with someone you’re looking to do business with. And that means that your relationships and how you handled yourself in them will forever be your shadow.  That shadow can haunt you or promote you – and you make that decision every day.</p>
<p>A broker who is notified that they’re losing an account under management can react one of two ways.  One, continue to deliver exemplary service.  Two, check out.   Given the many reasons that could have driven the decision, such as a new executive’s personal relationships, the first scenario lays the ground for future business opportunities with everyone involved.  The second guarantees not only that those involved won’t consider them for future opportunities, they will recommend against them whenever asked with the specifics. </p>
<p>On the other hand, let’s look at an employee who is “transitioned out” due to management changes (their manager is replaced and the new manager has their own team).  Again, two choices.  One, they conduct themselves professionally, don’t badmouth the company or management, and work to make the transition seamless.  This stands out, and will be remembered and talked about around the cooler.  It can lead to opportunities or clench the deal.  Or two, they check out.  They badmouth everyone involved.  And do nothing to assist the transition or worse, sabotage it.  Again, this will come back to bite. </p>
<p>Bottom line, you determine everyday what kind of relationship you’re developing – and you need to decide if you’re going to build the relationship, or blow it up.  Your choice – and the results will be right behind you for the rest of your career.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statusnotquo.wordpress.com/757/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statusnotquo.wordpress.com/757/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statusnotquo.wordpress.com/757/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statusnotquo.wordpress.com/757/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statusnotquo.wordpress.com/757/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statusnotquo.wordpress.com/757/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statusnotquo.wordpress.com/757/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statusnotquo.wordpress.com/757/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statusnotquo.wordpress.com/757/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statusnotquo.wordpress.com/757/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statusnotquo.wordpress.com/757/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statusnotquo.wordpress.com/757/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statusnotquo.wordpress.com/757/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statusnotquo.wordpress.com/757/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=757&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.statusnotquo.com/2012/02/03/degrees-of-separation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3bc360f71a52aed447f97c5f4645244d?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">shawncap</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Social Media in your Business</title>
		<link>http://blog.statusnotquo.com/2012/01/16/using-social-media-in-your-business/</link>
		<comments>http://blog.statusnotquo.com/2012/01/16/using-social-media-in-your-business/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 08:33:20 +0000</pubDate>
		<dc:creator>Tati Santos</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.statusnotquo.com/?p=752</guid>
		<description><![CDATA[Imagine millions of potential consumers around the globe united in one place, sharing information, photos, videos, links, ideas and concepts. All your target audience located a few clicks away and your products announced in a very effective and instantaneous manner. The same results that traditional media allows for a high cost, are being accomplished by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=752&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Imagine millions of potential consumers around the globe united in one place, sharing information, photos, videos, links, ideas and concepts.  All your target audience located a few clicks away and your products announced in a very effective and instantaneous manner. The same results that traditional media allows for a high cost, are being accomplished by online media, with much smaller budgets and a more targeted delivery. That’s Social Media in a nutshell.</p>
<p>This article offers a five-step approach on how to start on the social media world.</p>
<p>1 – Create a Facebook page for your business<br />
Facebook is unarguably the place to start, with more than 800 million active users, more than half of whom log in on any given day, it’s by far the single biggest social network in the world. You may already have a personal Facebook profile, but it’s important to note that it’s against Facebook policy to use your personal profile for a group, organization, or business.</p>
<p>Once you created your business page, make sure you update your status regularly. The updates can be informative, educational, promotional, or just plain fun. </p>
<p>2 – Start tweeting<br />
Twitter has 175 million registered users who tweet 95 million times per day.<br />
You can use twitter to meet a variety of needs, from customer service to brand awareness. Setting up a twitter profile takes only a few minutes. The bigger challenge with Twitter is finding followers. The best way to gain followers is to tweet and retweet (repeating other people’s tweets) regularly. Specially retweeting tweets from industry leaders.</p>
<p>3 – Posting videos on YouTube<br />
YouTube is the 2nd most popular website in the world, with 790 million unique monthly visitors and 100 billion page views. Besides its popularity, YouTube offers a tremendous opportunity to gain a foothold in Google search results.<br />
Setting up a YouTube account takes only a few seconds, but you need to make sure you choose a username that ties closely to your business identity, so people can find it when they search for your business. Thanks to modern technology, making digital videos is easy, with an abundance of tools available to edit them.</p>
<p>4 – Social media aggregation<br />
So you are on Facebook, Twitter, YouTube. Maybe you took a step further and signed up for LinkedIn and Google+. Now you’re faced with keeping them all up-do-date.<br />
It’s simple to connect your Twitter to your Facebook and LinkedIn, so whenever you tweet something new, it gets posted to your wall on Facebook and becomes your latest status update on LinkedIn.</p>
<p>An even better solution is to sign up for a social media aggregation site such as TweetDeck, HootSuite or FlipBook. These display all of your accounts on a single page, allowing you to update your status and easily track them all.</p>
<p>5 – Online reputation<br />
As social media becomes more and more popular, reputations are increasingly being built and managed online. But considering the velocity at which information spreads on the internet, this can either be your worst enemy or your best friend. Take advantage and publish and promote your brand online.</p>
<p>The very first steps to be taken in establishing a proper online reputation is to have a presence on all well-known social media platforms, which will go a long way towards driving down unwanted search results. Also, setting up a Google alert utilizing search terms that identify your business as well as any other keywords you feel are important.</p>
<p>Social media is about people, it is about relationships, and it is about communications. A social media presence is about educating, engaging, and growing your audience, and potentially improving the bottom line of your business.  If you haven’t started using social media as a marketing tool for your business, the time is now.</p>
<p>Tati Santos<br />
Executive Vice President<br />
Status Not Quo<br />
<a href="http://www.statusnotquo.com" title="Status Not Quo">www.statusnotquo.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statusnotquo.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statusnotquo.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statusnotquo.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statusnotquo.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statusnotquo.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statusnotquo.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statusnotquo.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statusnotquo.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statusnotquo.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statusnotquo.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statusnotquo.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statusnotquo.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statusnotquo.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statusnotquo.wordpress.com/752/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=752&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.statusnotquo.com/2012/01/16/using-social-media-in-your-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea225c7abf4ca24820b30ce7f425428d?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">tatixoobis</media:title>
		</media:content>
	</item>
		<item>
		<title>On Friday the 13th, beware &#8211; the Zombies will attack and you better be ready!!</title>
		<link>http://blog.statusnotquo.com/2012/01/09/on-friday-the-13th-beware-the-zombies-will-attack-and-you-better-be-ready/</link>
		<comments>http://blog.statusnotquo.com/2012/01/09/on-friday-the-13th-beware-the-zombies-will-attack-and-you-better-be-ready/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 17:57:55 +0000</pubDate>
		<dc:creator>Pam Capistrano</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Android Games]]></category>
		<category><![CDATA[App]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[competitive advantage]]></category>
		<category><![CDATA[Consulting]]></category>
		<category><![CDATA[Custom Software Development]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[innovation]]></category>
		<category><![CDATA[innovative solutions]]></category>
		<category><![CDATA[iPad Games]]></category>
		<category><![CDATA[iPhone App]]></category>
		<category><![CDATA[IT Project]]></category>
		<category><![CDATA[Mobile Gaming]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Santa Clarita]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Status Not Quo]]></category>
		<category><![CDATA[strategic management]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[Vision]]></category>
		<category><![CDATA[Zombies]]></category>

		<guid isPermaLink="false">http://blog.statusnotquo.com/?p=743</guid>
		<description><![CDATA[You may be asking yourself why would a generally business based blog be warning its readers about a Zombie invasion.  Well, on Friday the 13th, our sister company, Xoobis, will be releasing our first game since the merger with Status Not Quo.  It is the best Zombie Shooter Game I&#8217;ve ever seen &#8211; the graphics [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=743&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You may be asking yourself why would a generally business based blog be warning its readers about a Zombie invasion.  Well, on Friday the 13th, our sister company, <a title="Xoobis" href="http://www.Xoobis.com" target="_blank">Xoobis</a>, will be releasing our first game since the merger with Status Not Quo.  It is the best Zombie Shooter Game I&#8217;ve ever seen &#8211; the graphics and story line are amazing!</p>
<p>Zombie Wonderland 2 will be available on the iTunes store for iPhone and iPad this Friday (actually, it&#8217;ll be available on Thursday, but Friday the 13th sounds so much better for a Zombie game don&#8217;t you think?).  The game will arrive very soon after for Android users as well.</p>
<p>Check out the trailers here:</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='600' height='368' src='http://www.youtube.com/embed/pTs-EPp9N-I?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<p>&nbsp;</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='600' height='368' src='http://www.youtube.com/embed/UaKKmYyyzLo?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<p>Happy Hunting!</p>
<p>Pam</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statusnotquo.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statusnotquo.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statusnotquo.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statusnotquo.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statusnotquo.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statusnotquo.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statusnotquo.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statusnotquo.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statusnotquo.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statusnotquo.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statusnotquo.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statusnotquo.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statusnotquo.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statusnotquo.wordpress.com/743/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=743&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.statusnotquo.com/2012/01/09/on-friday-the-13th-beware-the-zombies-will-attack-and-you-better-be-ready/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f3588682d217a0d0c220ae8fc0eda82?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Pam Capistrano</media:title>
		</media:content>
	</item>
		<item>
		<title>Fare thee well 2011</title>
		<link>http://blog.statusnotquo.com/2011/12/27/fare-thee-well-2011/</link>
		<comments>http://blog.statusnotquo.com/2011/12/27/fare-thee-well-2011/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 01:46:03 +0000</pubDate>
		<dc:creator>Pam Capistrano</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[2012]]></category>
		<category><![CDATA[Business Objectives]]></category>
		<category><![CDATA[business strategy]]></category>
		<category><![CDATA[Happy New Year]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[Mobile Gaming]]></category>
		<category><![CDATA[Nuggets of Wisdom]]></category>
		<category><![CDATA[Santa Clarita]]></category>
		<category><![CDATA[Status Not Quo]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[success]]></category>
		<category><![CDATA[tags: business]]></category>
		<category><![CDATA[Thank You]]></category>
		<category><![CDATA[Zombies]]></category>

		<guid isPermaLink="false">http://blog.statusnotquo.com/?p=737</guid>
		<description><![CDATA[As we approach the New Year, I wanted to take a moment to thank all of you for visiting our Blog throughout the year.  During the past year Status Not Quo has had tremendous growth and prosperity and we feel extremely blessed.  We have more than doubled in size, opened two new offices, and entered a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=737&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://statusnotquo.files.wordpress.com/2011/12/2012_happynewyear.jpg"><img class="alignnone size-medium wp-image-738" title="2012_HappyNewYear" src="http://statusnotquo.files.wordpress.com/2011/12/2012_happynewyear.jpg?w=300&#038;h=186" alt="" width="300" height="186" /></a></p>
<p>As we approach the New Year, I wanted to take a moment to thank all of you for visiting our Blog throughout the year.  During the past year Status Not Quo has had tremendous growth and prosperity and we feel extremely blessed.  We have more than doubled in size, opened two new offices, and entered a new industry:  Mobile and Gaming Application development.  It’s been a “whirlwind” to say the least.</p>
<p>During the past year, we have enjoyed many exciting and challenging engagements and have reveled in the professional and individual growth these have fostered.  We pride ourselves in the relationships we have built with our clients and are incredibly blessed to have become good friends with many of them over the years.  We are so thankful to our clients who continue to partner with Status Not Quo in their business success.</p>
<p>Finally, I want to take a moment to say a very heartfelt thank you to both our employees and partners.  We have such an amazing team and words can’t express what it means to us as a company to know that all of our team members are willing to do whatever it takes to get the job done right.</p>
<p>May all of you find many blessings in the New Year and Prosperity to us all!</p>
<p>PS (Ok, so maybe it&#8217;s not a post script yet) &#8211; We&#8217;ll be launching our new Game for Mobile Devices on Friday the 13th!  Look for Zombie Wonderland 2: Outta Time! in the iTunes store and the Android Market.  It&#8217;s amazing!!</p>
<p>Warmest Regards,</p>
<p>Pam</p>
<p><a title="www.statusnotquo.com" href="http://www.statusnotquo.com" target="_blank">www.statusnotquo.com</a></p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statusnotquo.wordpress.com/737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statusnotquo.wordpress.com/737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statusnotquo.wordpress.com/737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statusnotquo.wordpress.com/737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statusnotquo.wordpress.com/737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statusnotquo.wordpress.com/737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statusnotquo.wordpress.com/737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statusnotquo.wordpress.com/737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statusnotquo.wordpress.com/737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statusnotquo.wordpress.com/737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statusnotquo.wordpress.com/737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statusnotquo.wordpress.com/737/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statusnotquo.wordpress.com/737/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statusnotquo.wordpress.com/737/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=737&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.statusnotquo.com/2011/12/27/fare-thee-well-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f3588682d217a0d0c220ae8fc0eda82?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Pam Capistrano</media:title>
		</media:content>

		<media:content url="http://statusnotquo.files.wordpress.com/2011/12/2012_happynewyear.jpg?w=300" medium="image">
			<media:title type="html">2012_HappyNewYear</media:title>
		</media:content>
	</item>
		<item>
		<title>The Ethics of Being a Manager</title>
		<link>http://blog.statusnotquo.com/2011/12/19/the-ethics-of-being-a-manager/</link>
		<comments>http://blog.statusnotquo.com/2011/12/19/the-ethics-of-being-a-manager/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 21:10:51 +0000</pubDate>
		<dc:creator>Shawn M. Capistrano</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Business Objectives]]></category>
		<category><![CDATA[business strategy]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[Nuggets of Wisdom]]></category>
		<category><![CDATA[Santa Clarita]]></category>
		<category><![CDATA[Status Not Quo]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[success]]></category>

		<guid isPermaLink="false">http://blog.statusnotquo.com/2011/12/19/the-ethics-of-being-a-manager/</guid>
		<description><![CDATA[We hear about ethics in business all the time.  We talk about doing the right thing, about making the right choice, dealing with that hard decision.  We require classes that teach how to evaluate decisions and arrive at the ethical decision.  But we seldom talk about the ethics of being a manager and how that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=735&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We hear about ethics in business all the time.  We talk about doing the right thing, about making the right choice, dealing with that hard decision.  We require classes that teach how to evaluate decisions and arrive at the ethical decision.  But we seldom talk about the ethics of being a manager and how that impacts our interaction with people.</p>
<p>We joke about being in management and getting those so-called big bucks – but there’s a reason we have that title, and there are responsibilities that go hand in hand with it.  Sometimes it sucks, and seems the rewards are few and far between. But that’s part of the job.  As the manager, our responsibility is managing our team, and reviewing their work.  If something goes wrong, it’s our job to step up, take responsibility and then ensure that it doesn’t occur again.  We don’t throw the junior to the wolves, and blame them.  We have the final responsibility to make sure it’s right.  And that means making the ethical, responsible choice to suck it up and take responsibility regardless of the fact that we didn’t actually make the mistake – bottom line, it’s our responsibility to manage the team in such a way that the mistakes get caught before they get out of the department.</p>
<p>And when things go right?  We give credit to the team members who delivered.  Always.  Say thank you, and then highlight the players.  Never take credit for someone else’s efforts.</p>
<p>Think about the type of manager you’d want to work for, or the kind of colleagues you’d want to work with on a project.  Your colleagues, your team and your executives are aware of more than you may realize – and the respect you garner as a mentor, a team player, a great manager and a trustworthy person by acting in such an ethical manner is worth more than words can say – because actions always speak louder than words.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statusnotquo.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statusnotquo.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statusnotquo.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statusnotquo.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statusnotquo.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statusnotquo.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statusnotquo.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statusnotquo.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statusnotquo.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statusnotquo.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statusnotquo.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statusnotquo.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statusnotquo.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statusnotquo.wordpress.com/735/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=735&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.statusnotquo.com/2011/12/19/the-ethics-of-being-a-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3bc360f71a52aed447f97c5f4645244d?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">shawncap</media:title>
		</media:content>
	</item>
		<item>
		<title>Adobe Flash and the Mobile Web</title>
		<link>http://blog.statusnotquo.com/2011/11/15/adobe-flash-and-the-mobile-web/</link>
		<comments>http://blog.statusnotquo.com/2011/11/15/adobe-flash-and-the-mobile-web/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 02:16:49 +0000</pubDate>
		<dc:creator>Ben Loveless</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[business strategy]]></category>
		<category><![CDATA[competitive advantage]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[IT Project]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Status Not Quo]]></category>
		<category><![CDATA[System Design]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://blog.statusnotquo.com/?p=728</guid>
		<description><![CDATA[A little while ago Adobe announced that they are officially pulling out of the race to be THE platform for delivering rich content to mobile browsers.  This means that the old standby of the PC era, Flash, is being effectively abandoned when it comes to the mobile browsing experience.  Of course, in a very real [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=728&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A little while ago Adobe announced that they are officially pulling out of the race to be THE platform for delivering rich content to mobile browsers.  This means that the old standby of the PC era, Flash, is being effectively abandoned when it comes to the mobile browsing experience.  Of course, in a very real sense, that decision had already been made for Adobe.  The fact is that the #1 and #2 best-selling phones in the world are still the Apple iPhone 4S and the Apple iPhone 3gs, and neither one of those phone supports in-browser Flash applications (not to mention the dominant leader of the tablet world, the iPad).  So, as a developer, if I intend for my website to be visible and useable by someone on a mobile device, I simply can&#8217;t use Flash as the delivery system for that content.</p>
<p>So the next question is, does this mean the death of the Adobe Flash platform completely?  Well, Adobe is trying to make sure the answer to that question is &#8220;no&#8221; by taking two pretty important steps.  First, they have released a new, free tool, that will translate animations created for Flash into HTML5.   This is huge because it allows Flash developers to work in their favorite environment, but the results of that work can still be delivered to Apple devices.  Second, Adobe has launched their FlashBuilder platform, which is an application designed to build iOS and Android apps using a Flash-like interface, and the familiar scripting language behind Flash, ActionScript.</p>
<p>This is a very savvy move by Adobe.  Not only does it extend the life of Flash technology in general, but it also opens up a new market to developers like me, who prefer to program on a PC (as opposed to a Mac).  Also, and let&#8217;s be honest here, Objective-C, the primary object-oriented programming language for the iOS, is pretty clunky.  Now, with FlashBuilder, I can do just about everything the Mac-based programming environment would allow me to do, at least within the realm of mobile devices, without having to use Objective-C.</p>
<p>Now, that&#8217;s not to say that the Flash environment, and now, it&#8217;s bigger brother, FlashBuilder, don&#8217;t have their problems, too.  Ultimately, I think that Apple made the right move by restricting Flash from their devices.  The argument Apple has always made is that Flash isn&#8217;t stable enough to use in an environment with such limited resources as a phone or tablet, and that Flash security is sub-par.  I agree completely with both of those points (especially the security one &#8211; I once had my World of Warcraft account hacked and stolen because of faulty security programming in Flash).</p>
<p>However, I also think that Flash still has a place in the world of the modern web.  For example, HTML 5 has a very nice new tag that allows me to display and control video files within a website.  The tag, very appropriately called &lt;video /&gt;, can be set up to use multiple file types, and will play the first one in the list that the browser is capable of interpreting.  It even has a section for displaying alternate HTML if the &lt;video /&gt; tag isn&#8217;t supported by the user&#8217;s browser.  That&#8217;s all very clean and cool.  But, it&#8217;s not very customizable.  What if my client doesn&#8217;t like the way the HTML 5 video controls are displayed?  What if I need some special functionality, like an overlay that will pop-up over part of the video playback at a certain frame?  If all I have to work with is HTML 5, I&#8217;m either out of luck, or I need to do some pretty sophisticated Javascript acrobatics to accomplish my goal, but with a Flash movie player, all of those tasks become simple.  In this scenario, even if my user&#8217;s browser supports the nifty new &lt;video /&gt; tag, I&#8217;m likely to try to get them to display a Flash movie first, and then fall back to HTML 5 if that&#8217;s my only option (i.e., on Apple devices).</p>
<p>Also, the last I read, the Flash platform achieved better than 99% market penetration for desktop and laptop computers that are web-enabled.  That&#8217;s just staggering, and frankly, there are plenty of applications I can think of that can make good use of Flash simply because the intended audience isn&#8217;t using the application on a phone.</p>
<p>Here at SNQ, what all of this comes down to is that nothing has really changed.  We&#8217;ll continue to evaluate the available technologies with each new project we face, and just like before, if that project will have a mobile audience, Flash won&#8217;t be our first choice, but that doesn&#8217;t mean that it&#8217;s time to throw away all of the knowledge and expertise we&#8217;ve worked so hard to gain, either.  We take pride in never letting the technology drive the direction we want to go with a project &#8211; rather, we look at the goals and decide on the best technologies to serve the need.  With that perspective in mind, I&#8217;m sure I&#8217;ll be running Google searches on some obscure ActionScript command again before too long.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statusnotquo.wordpress.com/728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statusnotquo.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statusnotquo.wordpress.com/728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statusnotquo.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statusnotquo.wordpress.com/728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statusnotquo.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statusnotquo.wordpress.com/728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statusnotquo.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statusnotquo.wordpress.com/728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statusnotquo.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statusnotquo.wordpress.com/728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statusnotquo.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statusnotquo.wordpress.com/728/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statusnotquo.wordpress.com/728/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=728&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.statusnotquo.com/2011/11/15/adobe-flash-and-the-mobile-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cc92e807e18c51d53eacf653be0ab05a?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Ben</media:title>
		</media:content>
	</item>
		<item>
		<title>The Facebook fishing pole</title>
		<link>http://blog.statusnotquo.com/2011/10/25/the-facebook-fishing-pole/</link>
		<comments>http://blog.statusnotquo.com/2011/10/25/the-facebook-fishing-pole/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 03:51:33 +0000</pubDate>
		<dc:creator>Scott Capistrano</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[competitive advantage]]></category>
		<category><![CDATA[Consulting]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Plug-in]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Status Not Quo]]></category>
		<category><![CDATA[strategic management]]></category>
		<category><![CDATA[Vision]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.statusnotquo.com/?p=721</guid>
		<description><![CDATA[Today we launched our first WordPress “plug-in” named &#8220;Social Dragonflys!&#8221; – essentially it’s a cool little tool that allows a WordPress user to easily create a Facebook company welcome page using WordPress – very quickly and painlessly – and very inexpensively. We created this based on a growing demand for companies to have a corporate [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=721&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today we launched our first WordPress “plug-in” named &#8220;Social Dragonflys!&#8221; – essentially it’s a cool little tool that allows a WordPress user to easily create a Facebook company welcome page using WordPress – very quickly and painlessly – and very inexpensively.</p>
<p>We created this based on a growing demand for companies to have a corporate Facebook presence. People often mistakenly think that a company presence on Facebook needs to pertain to selling or doing something on Facebook. Not true. The real reason is very simple – expose your company to the millions of Facebook users who probably wouldn’t need your company’s services while they’re playing Farmville, but may need you when they get back to their “day job”. Once you’ve gotten their attention, the company page just needs to get them to visit your primary marketing asset – which is your corporate web site.</p>
<p>All interesting, but why did I name this entry “The Facebook fishing pole”? Glad you asked. We also created a Facebook sponsored ad campaign to promote the plug-in. If you haven’t worked with one of these before, it’s very interesting. Our first ad targets Facebook users who “Like” WordPress and PhP (which is a web language with a connection to WordPress), live in the United States, and are over 18. Apparently this ad targets 140,600 users. That’s a pretty big pond. And with that, we cast out our line.</p>
<p>Time will tell how this method works, but I absolutely know it requires fine tuning – the demographics, the interest filters, and even the geographic focus. However, I can say that within 30 minutes, the ad had been seen by 3,840 users, and even clicked through 4 times. Not a great ratio, but nibbles none the less. Stay tuned, and if you would like to make our day by checking out the plug-in, <a title="Social Dragonflys" href="http://www.socialdragonflys.com" target="_blank">here’s the ultra-colorful website </a>– with lots of fun mascots. Thanks!</p>
<p>Scott Capistrano</p>
<p>President</p>
<p>Status Not Quo</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statusnotquo.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statusnotquo.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statusnotquo.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statusnotquo.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statusnotquo.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statusnotquo.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statusnotquo.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statusnotquo.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statusnotquo.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statusnotquo.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statusnotquo.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statusnotquo.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statusnotquo.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statusnotquo.wordpress.com/721/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=721&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.statusnotquo.com/2011/10/25/the-facebook-fishing-pole/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3af9055dd4be5dcec75475ac198d00db?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Scott Capistrano</media:title>
		</media:content>
	</item>
		<item>
		<title>Thank You For the Teaching &#8211; Fare Thee Well &#8220;Character Counts&#8221;!</title>
		<link>http://blog.statusnotquo.com/2011/10/22/thank-you-for-the-teaching-fare-thee-well-character-counts/</link>
		<comments>http://blog.statusnotquo.com/2011/10/22/thank-you-for-the-teaching-fare-thee-well-character-counts/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 07:08:24 +0000</pubDate>
		<dc:creator>Pam Capistrano</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[ethics]]></category>
		<category><![CDATA[Michael Josephson]]></category>

		<guid isPermaLink="false">http://blog.statusnotquo.com/?p=713</guid>
		<description><![CDATA[Dr. Seuss Quote: &#8220;Don&#8217;t cry because it&#8217;s over, smile because it happened&#8221; &#8211; So sorry to hear that Michael Josephson will no longer be heard on KNX 1070 radio Thanks for the wonderful Character Education throughout the years! (Quote borrowed from his blog)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=713&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dr. Seuss Quote: &#8220;Don&#8217;t cry because it&#8217;s over, smile because it happened&#8221; &#8211; So sorry to hear that Michael Josephson will no longer be heard on KNX 1070 radio <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Thanks for the wonderful Character Education throughout the years! (Quote borrowed from his blog)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/statusnotquo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/statusnotquo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/statusnotquo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/statusnotquo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/statusnotquo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/statusnotquo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/statusnotquo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/statusnotquo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/statusnotquo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/statusnotquo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/statusnotquo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/statusnotquo.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/statusnotquo.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/statusnotquo.wordpress.com/713/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.statusnotquo.com&amp;blog=9317334&amp;post=713&amp;subd=statusnotquo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.statusnotquo.com/2011/10/22/thank-you-for-the-teaching-fare-thee-well-character-counts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4f3588682d217a0d0c220ae8fc0eda82?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Pam Capistrano</media:title>
		</media:content>
	</item>
	</channel>
</rss>
