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

<channel>
	<title>Zeek Interactive</title>
	<atom:link href="http://zeek.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://zeek.com</link>
	<description>We Make Cool Shit</description>
	<lastBuildDate>Thu, 16 May 2013 02:51:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>add_feed();</title>
		<link>http://zeek.com/add_feed/</link>
		<comments>http://zeek.com/add_feed/#comments</comments>
		<pubDate>Sat, 23 Mar 2013 17:00:56 +0000</pubDate>
		<dc:creator>Steve Zehngut</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=5719</guid>
		<description><![CDATA[<p>I discussed this function during the lightning round at WordCamp San Diego 2013. add_feed() adds a custom feed to your WordPress site. I discovered this function recently when I needed to create a feed that uses a custom query. Specifically, a client needed a feed that pulled together content in a single category from multiple [...]</p><p>The post <a href="http://zeek.com/add_feed/">add_feed();</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I discussed this function during the lightning round at WordCamp San Diego 2013.</p>
<p>add_feed() adds a custom feed to your WordPress site. I discovered this function recently when I needed to create a feed that uses a custom query. Specifically, a client needed a feed that pulled together content in a single category from multiple custom post types. The default WordPress category feeds will not pull content from multiple custom post types.</p>
<p>The code below can be dropped into functions.php in your theme folder or it could be rolled into a plugin.</p>
<pre class="brush: php; title: ; notranslate">
add_feed( 'games' , 'make_games_feed' );

function make_games_feed(){
 $args = array(
 'post_type' =&gt; array('post','project'),
 'cat' =&gt; get_cat_id('games')
 );

query_posts($args);
 include_once(ABSPATH . 'wp-includes/feed-rss2.php');
 wp_reset_query();
}
</pre>
<p>After this code is added to your site, you must flush the rewrite rules to get it to take effect. A quick way to do this is to go to SETTINGS -> PERMALINKS and click SAVE CHANGES. You don&#8217;t have to actually make a change.</p>
<p>The post <a href="http://zeek.com/add_feed/">add_feed();</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/add_feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nobody Should Feel The Need To Rent Their Web Presence</title>
		<link>http://zeek.com/dont-rent-your-web-presence/</link>
		<comments>http://zeek.com/dont-rent-your-web-presence/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 15:57:26 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[posterous]]></category>
		<category><![CDATA[tumblr]]></category>
		<category><![CDATA[user experience]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=5540</guid>
		<description><![CDATA[<p>Simply put, it&#8217;s better to own your main web presence. I was not surprised by the announcement that Posterous will turn off on April 30. Even before they were bought by Twitter a year ago, I was warning people of the danger involved in renting a web presence. If you don&#8217;t own it, you don&#8217;t [...]</p><p>The post <a href="http://zeek.com/dont-rent-your-web-presence/">Nobody Should Feel The Need To Rent Their Web Presence</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>Simply put, it&#8217;s better to own your main web presence.</strong></p>
<p>I was not surprised by the announcement that <a href="http://blog.posterous.com/thanks-from-posterous" target="_blank">Posterous will turn off on April 30</a>. Even before they were bought by Twitter a year ago, I was warning people of the danger involved in renting a web presence. If you don&#8217;t own it, you don&#8217;t really control it.</p>
<blockquote class="twitter-tweet" width="500"><p>“@<a href="https://twitter.com/digitaltrends">digitaltrends</a>: Twitter will shut down Posterous at the end of April <a href="http://t.co/12S1nXxD" title="http://bit.ly/XMvIQz">bit.ly/XMvIQz</a>”. &lt; @<a href="https://twitter.com/jeffturner">jeffturner</a> You warned me re this 2 yrs ago</p>
<p>&mdash; That Peter Brewer (@thatpeterbrewer) <a href="https://twitter.com/thatpeterbrewer/status/302669517925011456">February 16, 2013</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<p>But the announcement did help to reinforce the concept in my own mind. Recently I&#8217;ve been flirting with the idea of recommending to a friend that they use <a href="http://www.tumblr.com" target="_blank">Tumblr</a> instead of WordPress for a personal wine blog. It seems like a perfect option for them. It&#8217;s easy to set up, easy to maintain, comes with a built in community, and the Tubmlr app makes it brain dead simple to add content. Except for the content part, it sounds like a description for a great apartment complex.</p>
<p><strong>Owning is often too hard.</strong></p>
<p><img class="alignright size-medium wp-image-5545" alt="wordpress_vs_tumblr" src="http://zeek.com/wp-content/uploads/2013/02/wordpress_vs_tumblr-300x265.jpg" width="300" height="265" />We should be able to have the best of both worlds. I&#8217;ve been banging on this drum for several years to no avail. The <a href="http://zeek.com/the-promise-of-wordpress-3-1-easy/" target="_blank">promise of WordPress 3.1</a> was supposed to be &#8220;easy.&#8221; And it didn&#8217;t deliver. Here we are two years later and  the WordPress dashboard can still be a daunting place for a beginner. It&#8217;s frustrating for experienced users too. And it&#8217;s even more frustrating to see sites like Tumblr release tools that make publishing to WordPress look like rocket surgery. I find myself longing for the ease that these sites deliver.</p>
<p>For example, when I&#8217;m posting a photo to my photo blog, <a href="http://www.intheviewfinder.com" target="_blank">In The Viewfinder</a>, using the WordPress app, it forces me to deal with the raw html code in the edit window and forces me to go to preview mode to see what it would look like if I add text. Compare that with the overall experience of the <a href="https://itunes.apple.com/us/app/tumblr/id305343404?mt=8" target="_blank">Tumblr app</a> and you can see why people would want to use it instead. The app gets the code out of the way and makes it easy for the average person to attach a photo and know that it&#8217;s done. And <a href="http://posterous.com/#backup" target="_blank">Posterous</a> was just as simple.</p>
<p><strong>I think it&#8217;s long past time for the WordPress community to step up and build a better user experience for self-hosted blogs.</strong> This means removing the clutter from the online dashboard and improving the mobile app experience. There&#8217;s no reason the average user should have to deal with the distractions WordPress offers today. If we could make owning easier, renting wouldn&#8217;t seem like such an attractive option.</p>
<p>The post <a href="http://zeek.com/dont-rent-your-web-presence/">Nobody Should Feel The Need To Rent Their Web Presence</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/dont-rent-your-web-presence/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>When Developers Go Rogue</title>
		<link>http://zeek.com/developer-goes-rogue/</link>
		<comments>http://zeek.com/developer-goes-rogue/#comments</comments>
		<pubDate>Fri, 15 Feb 2013 18:36:36 +0000</pubDate>
		<dc:creator>Steve Zehngut</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[fitness]]></category>
		<category><![CDATA[managing expectations]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=5465</guid>
		<description><![CDATA[<p>Yesterday, Suzette Franck posted the following to the OC WordPress Facebook group: A German developer named Frank Jonen had a dispute with his client, Fitness SF. He claims that the client did not pay their bill. Frank took his dispute to the web by hijacking Fitnes SF&#8217;s website and posted a note complaining (frankly, whining) to the [...]</p><p>The post <a href="http://zeek.com/developer-goes-rogue/">When Developers Go Rogue</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>Yesterday, <a href="http://twitter.com/mt_Suzette" target="_blank">Suzette Franck</a> posted the following to the OC WordPress Facebook group: </strong>A German developer named Frank Jonen had a dispute with his client, <a href="http://fitnesssf.com/" target="_blank">Fitness SF</a>. He claims that the client did not pay their bill. Frank took his dispute to the web by hijacking Fitnes SF&#8217;s website and posted a note complaining (frankly, whining) to the world about his client. What Frank Jonen has done is completely unprofessional.</p>
<p>A screenshot of the hijacked page is at the bottom of this post. Leading up to the hijack, Frank tweeted about what he was doing.</p>
<blockquote class="twitter-tweet" width="500"><p>I bet these bastards still think I won&#8217;t fight back and let them get away with betraying me and escaping payment.But first, coffee.</p>
<p>&mdash; Frank Jonen (@frankjonen) <a href="https://twitter.com/frankjonen/status/301886527540195328">February 14, 2013</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<blockquote class="twitter-tweet" width="500"><p>They thought paying invoices was &#8216;optional&#8217;. They ignored all reminders. Let&#8217;s see if they&#8217;ll ignore this: <a href="http://t.co/V9xjnW2U" title="http://fitnesssf.com/">fitnesssf.com</a></p>
<p>&mdash; Frank Jonen (@frankjonen) <a href="https://twitter.com/frankjonen/status/301894155204964354">February 14, 2013</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<h3><strong>Bad form, dude.</strong></h3>
<p>Frank, I get it. You&#8217;re pissed. You feel wronged. You want revenge. This is not the way to go about it. Here&#8217;s why:</p>
<ul>
<li>If you had any chance of reconciling a business relationship with this client, you can kiss it goodbye. You put a nail in the coffin. You will never have a relationship with this client and you will never get paid. Instead, you may be facing a possible lawsuit.</li>
<li>The page you posted is getting traffic on Twitter and you are getting noticed. But this is not the kind of press you want. Any potential clients that see this page will never hire you. You will forever be labeled as unstable.</li>
<li>It looks like you were attempting to make Fitness SF look bad and that you want their clients to take action. Make no mistake, you are the only one who looks bad here. And you look really, really bad.</li>
</ul>
<h3><strong>Managing Expectations</strong></h3>
<p>I do not know the details of the relationship between Frank and his client and I have no idea what led up to the relationship going sour. Frank may have delivered late. He may have delivered work that was not what Fitness SF was expecting. Fitness SF may not have paid their bill for a number of reasons, many of which are not malicious. Who knows&#8230;</p>
<p>Regardless, Frank&#8217;s expectations about how he was to get paid were not met. And it was Frank&#8217;s responsibility to communicate those expectations before things got out of hand. I wonder if the milestones were set up in a way where the majority of payment was paid after the project was delivered. If they were, Fitness SF would have been motivated to make sure their entire project was absolutely final before paying for their project.</p>
<p><strong>We prefer to establish milestones for our projects that include interval payments.</strong> This ensures that we ask for approvals throughout the project. Aside from payments, we make every effort to stay in constant communication with our clients. We request client feedback throughout our production process, at some points on a daily basis. If there is something wrong, we know very quickly and we can address it right away. Small problems should never have a chance to escalate to the level of complete dissatisfaction. But even with the best of intentions, it can happen.</p>
<p>Lots of things can change while working on a web project. I have never been on a project where the scope hasn&#8217;t changed over the course of the project. How you deal with scope change is what separates a good developer from a great developer.</p>
<p><strong style="font-size: 1.17em;">This is a sad day for web developers everywhere.</strong></p>
<p>The reason I&#8217;m disappointed is because Frank&#8217;s actions make all developers look bad. It tarnishes our industry and creates a trust barrier between clients and developers. I have spoken to many potential clients in my career who have a horror story about a former developer. I&#8217;m sure Fitness SF has their own story to tell.</p>
<p>Not getting paid is usually a matter of expectations being out of whack. We&#8217;ve had clients that weren&#8217;t able to pay their bills. It happens. And while I don&#8217;t like it, we have always found a way to deal with it peacefully.</p>
<p><strong>Don&#8217;t be like Frank.</strong></p>
<p>For more, see this <a href="http://www.adweek.com/adfreak/agency-replaces-clients-website-nasty-letter-after-not-getting-paid-147291" target="_blank">AdWeek</a> post.</p>
<p><a href="http://zeek.com/wp-content/uploads/2013/02/fitnesssf.png"><img class="alignnone size-full wp-image-5468" alt="fitnesssf" src="http://zeek.com/wp-content/uploads/2013/02/fitnesssf-640x1283.png" width="640" height="1283" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a href="http://zeek.com/developer-goes-rogue/">When Developers Go Rogue</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/developer-goes-rogue/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Mobile Speech To Text Is A Hurdle, Not A Barrier</title>
		<link>http://zeek.com/mobile-speech-to-text-not-barrier/</link>
		<comments>http://zeek.com/mobile-speech-to-text-not-barrier/#comments</comments>
		<pubDate>Mon, 11 Feb 2013 18:30:46 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[speech-to-text]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=5404</guid>
		<description><![CDATA[<p>I read a post this morning titled, &#8220;You Won’t See Facebook’s Graph Search On iPhone Or Android Anytime Soon,&#8221; that has left me scratching my head a bit. Surely I&#8217;m missing something. The entire basis of Tareq Ismail&#8217;s argument was the difficulty of typing in long sentences on a mobile phone. &#8220;It’s simple: Graph Search for mobile would need to [...]</p><p>The post <a href="http://zeek.com/mobile-speech-to-text-not-barrier/">Mobile Speech To Text Is A Hurdle, Not A Barrier</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I read a post this morning titled, &#8220;<a href="http://techcrunch.com/2013/02/09/why-you-wont-see-facebooks-graph-search-on-iphone-or-android-anytime-soon/" target="_blank">You Won’t See Facebook’s Graph Search On iPhone Or Android Anytime Soon</a>,&#8221; that has left me scratching my head a bit. Surely I&#8217;m missing something.</p>
<p>The entire basis of Tareq Ismail&#8217;s argument was the difficulty of typing in long sentences on a mobile phone. &#8220;It’s simple: Graph Search for mobile would need to incorporate speech, which is a different beast altogether,&#8221; Tareq wrote. &#8220;Many of the examples given during the Graph Search keynote contained long sentences, which are not easy to type on a mobile device. Think of the example “My college friends who like roller blading that live in Palo Alto.” Search engines like Google get around this on mobile by offering autofill suggestions, but their suggestions come from billions of queries. For Facebook, since their search is based on hundreds of individual values like “fencing” or “college friends” specific to each user and not a group, autofill suggestions will often not be useful<b>, </b>or worse<b>,</b> will require a lot of tapping and swiping to drill down to the full request.&#8221;</p>
<p>I&#8217;m in a noisy Starbucks as I type this. I just pulled up the notes app on my iPhone and spoke the words from above, “My college friends who like roller blading that live in Palo Alto.” Guess what? That&#8217;s exactly what Siri returned in the text. Perfectly.</p>
<p><img class="alignright size-medium wp-image-5405" alt="myFirstAm_speechtotext" src="http://zeek.com/wp-content/uploads/2013/02/myFirstAm_speechtotext-300x267.jpg" width="300" height="267" /><strong>On modern smart phones, this is a non-issue.</strong> The ability to &#8220;incorporate speech&#8221; into an app is simply built in to the latest iPhones and iPads using the up-to-date iOS software. The images to the right show how it&#8217;s implemented, automatically, into the <a title="MyFirstAm" href="http://zeek.com/myfirstam/" target="_blank">myFirstAm app</a> we built for First American Title. There was no special coding required to make this possible.</p>
<p>Speech to text is also an integrated part of the Android operating system. In fact, it&#8217;s been <a href="http://www.makeuseof.com/tag/free-hands-speechtotext-android/" target="_blank">possible for several years</a>. The author also argues, &#8220;speech recognition doesn&#8217;t come cheap.&#8221; I just don&#8217;t get it. How much cheaper could free be? Ongoing improvements and investment in speech-to-text technology will be coming from the mobile OS side, not the app side.</p>
<p><strong>I will agree with two of Tareq&#8217;s arguments, however.</strong> First he says, &#8220;Names are Facebook&#8217;s strength and speech recognition&#8217;s weakness.&#8221; No doubt&#8230; but I think this is a minor hurdle for Facebook to overcome in getting mobile adoption for their Facebook graph search, not a roadblock.</p>
<p>Second, he rightly states, &#8220;Facebook has over a billion users who collectively speak hundreds of different languages. Facebook has said they’re beginning their launch with English. How long until all billion users’ languages are supported for the desktop?&#8221; As an English speaking American with no discernable accent, speech to text is significantly better for me than most people. I realize this. And yet, I still don&#8217;t see this as a barrier to Facebook launching graph search on mobile. As iPhone and Android grow their ability to recognize and translte speech into text, in any language, all apps that take advantage of it will grow as well.</p>
<p><em><strong>If Facebook&#8217;s graph search has value, people will find a way to use it on mobile.</strong> </em>Its adoption, as well as other natural language search, won&#8217;t be slowed by speech-to-text. If it&#8217;s useful, it will get used, even if I have to type a long sentence.</p>
<p>&nbsp;</p>
<p>The post <a href="http://zeek.com/mobile-speech-to-text-not-barrier/">Mobile Speech To Text Is A Hurdle, Not A Barrier</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/mobile-speech-to-text-not-barrier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overspending in Aliso Viejo</title>
		<link>http://zeek.com/overspending-in-aliso-viejo/</link>
		<comments>http://zeek.com/overspending-in-aliso-viejo/#comments</comments>
		<pubDate>Thu, 07 Feb 2013 06:24:34 +0000</pubDate>
		<dc:creator>Steve Zehngut</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=5365</guid>
		<description><![CDATA[<p>Joanna Clay recently interviewed me for an article she wrote in the OC Register: Aliso Viejo website arouses security, cost questions. She asked my opinions on alisoviejoexchange.com, a site built by a local developer. They were paid $37,500 to build the site and that it took 5 months to develop. D&#8217;oh! It&#8217;s not really my desire to [...]</p><p>The post <a href="http://zeek.com/overspending-in-aliso-viejo/">Overspending in Aliso Viejo</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-5372" alt="aliso" src="http://zeek.com/wp-content/uploads/2013/02/aliso.png" width="506" height="230" /></p>
<p><a href="https://twitter.com/joannaclay" target="_blank">Joanna Clay</a> recently interviewed me for an article she wrote in the OC Register: <a href="http://www.ocregister.com/articles/city-413778-website-viejo.html" target="_blank">Aliso Viejo website arouses security, cost questions</a>. She asked my opinions on <a href="http://alisoviejoexchange.com/" target="_blank">alisoviejoexchange.com</a>, a site built by a local developer. They were paid $37,500 to build the site and that it took 5 months to develop.</p>
<h3><strong>D&#8217;oh!</strong></h3>
<p>It&#8217;s not really my desire to judge other developers, but my initial reaction was that this does not feel like a site that would cost $38k to develop. This is a very simple directory site that looks like it was built with an existing template. Even if it was built from scratch, the whole site is comprised of three page templates: The home page, the detail page and the static content page. Oh and let&#8217;s not forget the sweet YouTube video splash screen!</p>
<p>Judging turnaround time is complex, however. It&#8217;s impossible to look at a site and understand what may have happened behind the scenes to cause delays. As any developer knows, a simple project can go sideways quick when communication breaks down with a client or when scope shifts. In a perfect world, sure, 5 months is way too long. But the development world is never perfect.</p>
<p>As I told Joanna during the interview, it is difficult to say exactly what went wrong with this project as I was not privy to the internal development process. My comments were based on my own experience and I made several assumptions.</p>
<h3><strong>So I asked the people&#8230;The people of WordPress</strong></h3>
<p>I run a private Facebook group for the <a href="http://www.meetup.com/OC-Wordpress-Group/" target="_blank">OC WordPress Meetup</a> and I posted a link to the article for discussion. My friend <a href="https://twitter.com/jeffhester" target="_blank">Jeff Hester</a> asked &#8220;<em>Based on the article, what do you think the lesson is for developers?</em>&#8221; Great question. Here are a few of my thoughts&#8230;</p>
<h3><strong>1. Be transparent</strong></h3>
<p>My assumption is that there wasn&#8217;t a lot of transparency on this project. Projects can get bloated when the developer is &#8220;hiding&#8221; something from the client. It appears to me that We The Creative does not have a lot of web development experience in their portfolio and they may not have been forthcoming with this.</p>
<p>I am a firm believer in full transparency with my clients. I let them know very clearly what we can and cannot do. We are transparent with our core strengths and we let them know if a task is not in our wheelhouse. We let our clients know what technologies we are utilizing and why. We build on WordPress and we use existing plugins and themes. Leveraging existing technology provides a quicker time to market and that is a value to our clients.</p>
<h3><strong>2. Use common tools</strong></h3>
<p>A search on <a href="http://builtwith.com/alisoviejoexchange.com" target="_blank">builtwith.com</a> will expose that the developer used Ruby on Rails to build this site. An earlier search showed that they used a CMS called <a href="http://www.sdl.com/products/tridion/?utm_expid=61136112-4" target="_blank">SDL Tridion</a>, although that isn&#8217;t showing up any longer (I&#8217;m not sure why). When a developer builds with not-so common technologies, it locks the client in with that developer. There aren&#8217;t as many developers experienced with these platforms. If things go south with that developer, the next one will will most likely recommend a compete rebuild.</p>
<p>We only build sites using common tools. And our clients own the code. If something were to go wrong, our clients all have the peace of mind of knowing that their development can be taken over by another resource. And most importantly, other resources are available.</p>
<h3><strong>3. Be responsible</strong></h3>
<p>I am betting that the original timeline on this project was not 5 months. It had to have been far shorter. Who would sign off on 5 months for such a simple website?!? Something caused a delay in the schedule. I assume the deadlines got pushed on either the client side or the developer side or both.</p>
<p>The responsibility of controlling deadlines lies with the developer. It is the job of the developer to set the expectations early in the project, specifically what happens when the schedule slips. When there are no expectations, minor slippage can turn into major slippage quickly.</p>
<h3><strong>I would like to hear your thoughts on this.</strong></h3>
<p>The post <a href="http://zeek.com/overspending-in-aliso-viejo/">Overspending in Aliso Viejo</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/overspending-in-aliso-viejo/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>A Leap Into The Future Of Computer Interface</title>
		<link>http://zeek.com/leap-future-computer-interface/</link>
		<comments>http://zeek.com/leap-future-computer-interface/#comments</comments>
		<pubDate>Mon, 21 Jan 2013 19:21:58 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Product Development]]></category>
		<category><![CDATA[computer interface]]></category>
		<category><![CDATA[leap]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[user interface]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=5309</guid>
		<description><![CDATA[<p>We're not sure what we're going to do with our Leap Motion test unit here at Zeek Interactive yet, but I couldn't pass up the opportunity to at least be at the forefront of experiencing this new "leap" forward in computer interaction.</p><p>The post <a href="http://zeek.com/leap-future-computer-interface/">A Leap Into The Future Of Computer Interface</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>Our <a href="http://www.leapmotion.com" target="_blank">Leap Motion Controller</a> development unit has arrived. </strong></p>
<p><img class="alignright size-thumbnail wp-image-5310" alt="Leap Motion Controller" src="http://zeek.com/wp-content/uploads/2013/01/IMG_8497-150x150.jpg" width="150" height="150" />That sentence should probably have an exclamation point at the end of it. The matter of fact tone doesn&#8217;t seem to do its arrival justice, given the wow factor the device brings with it.  The Leap Motion web site probably states it best, &#8220;For four years we&#8217;ve been obsessed with one question: how can we interact with computers in a better, more natural way? We finally found the answer: the Leap Motion controller. Our breakthrough technology uses a mathematical approach to bring you 3D, touch-free motion control that’s unlike anything else. Ever.&#8221;</p>
<p><strong>I&#8217;m in agreement with those that feel gesture control is the future of computer interface.</strong> We&#8217;ve already seen what can happen to the user experience on touch devices and I&#8217;d personally be lost without even the touchpad gesture controls of the Macbook Pro on which I&#8217;m typing this blog post.</p>
<p>We&#8217;re not sure what we&#8217;re going to do with our test unit here at Zeek Interactive yet, but I couldn&#8217;t pass up the opportunity to at least be at the forefront of experiencing this new &#8220;leap&#8221; forward in computer interaction. My first experience with it had just the cool factor I thought it would, even if only to to watch my fingers move in the air to move my curser around the visualizer that is part of the dev kit download.</p>
<p>If you&#8217;ve never seen what the Leap Motion Controller can do, this video should get you as excited as it got me.</p>
<p><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='390' src='http://www.youtube.com/embed/_d6KuiuteIA?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span></p>
<p>&nbsp;</p>
<p>The post <a href="http://zeek.com/leap-future-computer-interface/">A Leap Into The Future Of Computer Interface</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/leap-future-computer-interface/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mobile Users Deserve A Mobile Experience</title>
		<link>http://zeek.com/mobile-users-deserve-a-mobile-experience/</link>
		<comments>http://zeek.com/mobile-users-deserve-a-mobile-experience/#comments</comments>
		<pubDate>Tue, 31 Jul 2012 18:21:02 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=5062</guid>
		<description><![CDATA[<p>When First American Title came to us with the desire to build an iPhone app for their already existing myFirstAm.com web experience, we were excited. And not for the obvious reasons. Too often we have prospective clients who approach us with the desire to simply mimic their website experience in an attempt to have &#8220;something&#8221; [...]</p><p>The post <a href="http://zeek.com/mobile-users-deserve-a-mobile-experience/">Mobile Users Deserve A Mobile Experience</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>When <a href="http://www.firstam.com/" target="_blank">First American Title</a> came to us with the desire to build an iPhone app for their already existing <a href="https://myfirstam.com/Security/Login?ReturnUrl=%2f" target="_blank">myFirstAm.com</a> web experience, we were excited. And not for the obvious reasons.</p>
<p>Too often we have prospective clients who approach us with the desire to simply mimic their website experience in an attempt to have &#8220;something&#8221; in the iTunes store. Unless a website naturally lends itself to a mobile environment, which few do, this doesn&#8217;t excite us very much. If you&#8217;re simply attempting to mirror your web experience in an iPhone app, my advice is almost always going to be, &#8220;don&#8217;t build an app.&#8221;</p>
<p><a href="http://www.linkedin.com/pub/alan-arora/8/b65/3a1"><img class="alignright size-thumbnail wp-image-5090" title="Alan Arora" alt="Alan Arora" src="http://zeek.com/wp-content/uploads/2012/07/Alan_Arora-150x150.jpg" width="150" height="150" /></a><a href="http://www.linkedin.com/pub/alan-arora/8/b65/3a1" target="_blank">Alan Arora</a>, VP of Customer Facing Technology at First American Title, and his team came to us with a different mission. &#8220;We want to make the myFirstAm iPhone app incredibly cool,&#8221; Alan said, &#8220;but to us that doesn’t mean just a pretty iPhone version of our web app. We want the customer experience in the app to be in tune with the way Realtors® actually work on the go, as if it were one step ahead in anticipating their needs. If we could do that we think our customers would agree that is cool!” This was music to our ears.</p>
<p><strong>A User-Focused App Experience Goal</strong></p>
<p>Our goal was to make some assumptions about how the app would be used on the road, and present a &#8220;typical user&#8221; experience that would create a high value right at launch. What we found, in looking at competitive apps, is that other title company apps were doing exactly what we advise against. They presented an essentially non-mobile experience to the app upon launch, pushing the user to menu-based options right out of the gate. As you can see from the screen grabs below, each app presented basically the same experience. And that experience did not take advantage of the unique capabilities of a truly mobile app or make any assumptions about what a mobiel user would be doing in their app.</p>
<p><img class="alignnone size-full wp-image-5071" title="competitors_640" alt="" src="http://zeek.com/wp-content/uploads/2012/07/competitors_640.jpg" width="640" height="313" /></p>
<p>Thankfully, we happen to have a former real estate agent managing our production here at Zeek, <a href="http://www.linkedin.com/in/kelleykoehler" target="_blank">Kelley Koehler</a>. So, we turned to Kelley to provide us with insight on how, as a real estate agent, she would want to use an app that gave her access to property records and related documents. &#8220;If I&#8217;m going to use this app on my phone, I&#8217;m most likely out with clients, trying to find answers about the home we&#8217;re standing in at the time.  Or wanting information about the neighbor&#8217;s home.  Or quick comps for that area,&#8221; Kelley said. &#8220;If I&#8217;m using this on a mobile device, I want fast information about the homes around me, without having to tell the app where I am.&#8221;</p>
<p><img class="size-full wp-image-5072 alignright" title="myFirstAm" alt="" src="http://zeek.com/wp-content/uploads/2012/07/photo-1-e1343421754595.png" width="300" height="450" /><strong>So, we painted the picture of a specific user type for this app experience.</strong> As a result, the <a href="http://itunes.apple.com/us/app/myfirstam/id541310683" target="_blank">myFirstAm iPhone app</a> uses a very different approach than the competitor apps. It takes advantage of the phone&#8217;s ability to know exactly where you are, and makes an educated assumption, backed up by web data, about how a real estate agent would want to use the app on their phone. In doing so, it purposefully strays from the standard menu-based approach that other mobile title apps take.</p>
<p>The myFirstAm iPhone app completely deviates from the myFirstAm web experience and returns, upon launch, a completed search for property data based on where you are when you launch the app. It also drops the results on a hybrid satellite view of the location to make it easy to verify that the results returned are indeed the right results. &#8220;This house has a pool in the backyard,&#8221; for example.</p>
<p>In one click, you have the property records. If you want to do a more advanced search, you can do that right from the launch screen and in one click can also expose a menu for options to view things like title and escrow orders or ordering customer service. The &#8220;typical user&#8221; assumption does not impede easy access to the other options for accessing information. That&#8217;s important.</p>
<p><strong>We believe mobile users require their own user experience.</strong> We believe myFirstAm delivers on that belief. Too often companies mimic their online experience simply to keep the &#8220;brand experience&#8221; consistent. In many cases, this is simply a mistake. It&#8217;s based on a misconception of what &#8220;brand&#8221; really means and often sacrifices the user at the altar of corporate consistency.</p>
<p>The myFirstAm iPhone/iPad app is making its public debut at <a href="http://www.realestateconnect.com/sf12" target="_blank">Inman Connect</a>&#8216;s &#8220;<a href="http://next.inman.com/2012/07/connect-sherry-chris-on-show-me-your-app/" target="_blank">Show Me Your App</a>&#8221; party on Wednesday, August 1, 2012. It will be free to download and requires a myFirstAm.com account to use. A <a href="http://www.myfirstam.com" target="_blank">myFirstAm.com</a> account is also free. A First American Title representative can assist you in setting up your account.</p>
<p>We&#8217;re thankful for the opportunity to work with a company that understood, from the beginning, that the mobile user deserved a unique mobile experience. And we&#8217;re thankful for the freedom to build it.</p>
<p>&nbsp;</p>
<p>The post <a href="http://zeek.com/mobile-users-deserve-a-mobile-experience/">Mobile Users Deserve A Mobile Experience</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/mobile-users-deserve-a-mobile-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wanted: Software Tester In Huntington Beach, California</title>
		<link>http://zeek.com/wanted-software-tester-in-huntington-beach-california/</link>
		<comments>http://zeek.com/wanted-software-tester-in-huntington-beach-california/#comments</comments>
		<pubDate>Tue, 12 Jun 2012 21:35:57 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[employment]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[quality assurance]]></category>
		<category><![CDATA[software tester]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=5035</guid>
		<description><![CDATA[<p>Zeek Interactive is looking for a Software Tester. This position is located at our office in Huntington Beach, CA.</p><p>The post <a href="http://zeek.com/wanted-software-tester-in-huntington-beach-california/">Wanted: Software Tester In Huntington Beach, California</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>Zeek Interactive is looking for a Software Tester.</strong></p>
<p>This position is located in Huntington Beach, CA.</p>
<p><img class="alignright size-full wp-image-5038" title="qualityassurance" alt="" src="http://zeek.com/wp-content/uploads/2012/06/qualityassurance.jpg" width="137" height="500" />This individual will be responsible for testing a wide variety of both web applications and iOS applications, handling multiple projects of different scale at the same time.  Projects involve both ongoing regression testing of websites in maintenance mode, as well as the creation and execution of test cases against new projects in development.</p>
<p>The ideal candidate will have a background in computer science or in software testing, meticulous attention to detail, strong analytical skills, and strong written and verbal communication skills.  A degree in CS or web development experience is desired, but is not required.</p>
<p>Candidates with prior QA experience will be preferred.</p>
<p><strong>Responsibilities:</strong></p>
<ul>
<li>Analyze requirements and designs</li>
<li>Create test plans and use cases</li>
<li>Execute test plans</li>
<li>Identify issues and generate bug reports</li>
<li>Work closely with development staff to resolve issues</li>
<li>Identify potential UI/UX errors or improvements</li>
<li>Identify functional opportunities for improvement within the software to create a better user experience</li>
<li>Contribute to future planning and development</li>
</ul>
<p><strong>Qualifications:</strong></p>
<ul>
<li>Strong understanding of web applications is required</li>
<li>Experience in test/QA</li>
<li>Familiarity with HTML, CSS, PHP, MySQL, WordPress, and mobile applications is preferred</li>
<li>Background in Computer Science, web development, or related field is a plus</li>
<li>Very detailed and task oriented</li>
<li>Strong written and verbal skills</li>
<li>Able to work independently, managing your own time, and focused on completing tasks</li>
<li>Experience with customer service is a plus</li>
<li>Must work out of the Huntington Beach office</li>
</ul>
<p><strong>NO AGENCIES.</strong></p>
<p><em>Please submit resumes to jobs at zeek dot com. </em></p>
<p>___</p>
<p>photo credit: via Flickr by <a href="http://www.flickr.com/photos/thoth-god/">Thoth, God of Knowledge</a></p>
<p>&nbsp;</p>
<p>The post <a href="http://zeek.com/wanted-software-tester-in-huntington-beach-california/">Wanted: Software Tester In Huntington Beach, California</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/wanted-software-tester-in-huntington-beach-california/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Responsive Design, WordPress Security and Ghetto Coding</title>
		<link>http://zeek.com/responsive-design-wordpress-security-and-ghetto-coding/</link>
		<comments>http://zeek.com/responsive-design-wordpress-security-and-ghetto-coding/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 18:37:37 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[responsive design]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4563</guid>
		<description><![CDATA[<p>A few Wordpress  highlights from my Twitter surfing over the past week. FYI:  I used the Dashter Premium Wordpress Plugin to help me curate the tweets and add my commentary as I stumble on them.</p><p>The post <a href="http://zeek.com/responsive-design-wordpress-security-and-ghetto-coding/">Responsive Design, WordPress Security and Ghetto Coding</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-4592" title="Wordpress" alt="" src="http://zeek.com/wp-content/uploads/2011/11/wordpress-logo-notext-rgb-300x300.png" width="216" height="216" />Here are a few WordPress  highlights from my Twitter surfing over the past week. FYI:  I used the <a href="http://www.dashter.com" target="_blank">Dashter Premium WordPress Plugin</a> to help me curate the tweets and add my commentary as I stumble on them. The people mentioned in the post are being alerted automatically, using the Dashter twitter queuing system.</p>
<p><strong>Responsive Design Themes are beginning to show up in larger numbers. </strong></p>
<blockquote class="curated"><p><img class="curated_tweet_img" alt="Ahmed Esam" src="http://a3.twimg.com/profile_images/126268588/thumbnail_normal.jpg" width="48" height="48" align="left" />Ahmed Esam &#8211; @<a href="http://twitter.com/drtemon">drtemon</a><br />
Good Minimal A Responsive WordPress Theme. #wordpress <a href="http://t.co/tj017Vr9" target="_new">http://t.co/tj017Vr9</a></p></blockquote>
<p>As responsive design continues to move into the mainstream, we&#8217;re going to be seeing a lot of themes pop up with responsive design characteristics built in. The Good Minimal theme&#8217;s menu breaks down at one point in the page width adjustments, but it&#8217;s a good example of what&#8217;s to come in this area. <em>What are your favorite themes that have responsive design built in?</em></p>
<p><strong>Dre Armeda on WordPress Security</strong></p>
<blockquote class="curated"><p><img class="curated_tweet_img" alt="bkmacdaddy designs" src="http://a0.twimg.com/profile_images/304077418/twitter_avatar_normal.jpg" width="48" height="48" align="left" />bkmacdaddy designs &#8211; @<a href="http://twitter.com/bkmacdaddy">bkmacdaddy</a><br />
#WordPress End-User Security by Dre Armeda &#8211; <a href="http://t.co/iOvaLm0g" target="_new">http://t.co/iOvaLm0g</a></p></blockquote>
<p><a href="http://dre.im/" target="_blank">Dre Armeda</a> is our favorite WordPress security expert. If you&#8217;ve never seen one of his security presentations, here&#8217;s a chance to see him in action online. Even if you have seen his presentation before, chances are you&#8217;re not doing everything he suggests, so watch it again. <img src='http://zeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>WordPress 3.3 is on its way</strong></p>
<blockquote class="curated"><p><img class="curated_tweet_img" alt="beAutomated" src="http://a2.twimg.com/profile_images/1296183995/be-logo-500_normal.png" width="48" height="48" align="left" />beAutomated &#8211; @<a href="http://twitter.com/beAutomated">beAutomated</a><br />
As of today, we are a steamroller paving the way to WordPress 3.3 launch <a href="http://t.co/m9qixnCw" target="_new">http://t.co/m9qixnCw</a> #web #cms #WordPress</p></blockquote>
<p>Yes, WordPress 3.3 is on the way. For those of us lucky enough to have been given indepth tours and insight into coming features, the update is eagerly awaited. This is a great post by <a href="http://www.twitter.com/janeforshort" target="_blank">Jane Wells</a>, and she rightly comments, &#8220;For the people working on the release, most of whom run trunk on their own sites for at least a month or two (if not longer) before each launch, it’s easy to forget that features we had done months ago — flyout menus, drag and drop uploading — are still being hoarded by us (and more recently by the lucky recipients of a merge onto wordpress.com) and are not available on the sites of regular users.&#8221; <em>This kind of sentiment is what makes the WordPress community and platform so great.</em> We at Zeek are proud to be a part of it.</p>
<p>And some thoughts from Mashable on important 3.3 features:</p>
<blockquote class="curated"><p><img alt="dean guadagni" src="http://a3.twimg.com/profile_images/660141308/Dean_at_Christmas_Dinner_normal.jpg" width="48" height="48" align="left" />dean guadagni &#8211; @<a href="http://twitter.com/deansguide">deansguide</a><br />
Do you use #wordpress for your business? <a href="http://t.co/1mrtmIUZ" target="_new">http://t.co/1mrtmIUZ</a> v. 3.3&#8242;s 11 most important features</p></blockquote>
<p><strong>Resist the urge to take shortcuts</strong></p>
<blockquote class="curated"><p><img class="curated_tweet_img" alt="Todd Carpenter" src="http://a3.twimg.com/profile_images/552107759/todd-carpenter_normal.jpg" width="48" height="48" align="left" />Todd Carpenter &#8211; @<a href="http://twitter.com/tcar">tcar</a><br />
How ghetto is it to use an HTML table to format a WordPress Page? #idontwanttowriteacutompagetemplate cc @housechick @zengy @ReggieRPR</p></blockquote>
<p>The answer, and I know that Mr. Carpenter knows this, is yes, and it&#8217;s also just a bad practice. &#8220;The problem with using HTML tables,&#8221; according to <a href="http://www.twitter.com/zengy" target="_blank">Steve Zehngut</a>, &#8220;is that page sizes are much larger, the tables often take longer to load and by using tables, you&#8217;re not really future proofing your site. In addition divs are simply more SEO friendly.&#8221;</p>
<p><strong>And A New Feature in Jetpack 1.2 &#8211; Email Subscriptions</strong></p>
<blockquote class="curated"><p><img alt="beAutomated" src="http://a2.twimg.com/profile_images/1296183995/be-logo-500_normal.png" width="48" height="48" align="left" />beAutomated &#8211; @<a href="http://twitter.com/beAutomated">beAutomated</a><br />
How to use Email Subscriptions in Jetpack 1.2 <a href="http://t.co/qqMB8es3" target="_new">http://t.co/qqMB8es3</a> #WordPress #Automattic #Jetpact #Email #Subscriptions</p></blockquote>
<p>According to Automattic, &#8220;All features in Jetpack 1.2 are on by default. So subscriptions, like all other features in Jetpack, requires no magic to activate. Visitors to your blog can choose to subscribe to new posts, or to subscribe to new comments on a post they have already commented on.&#8221;</p>
<p><strong>Where will the email subscription links appears on your blog?</strong> &#8221;Two places. One is on by default, the other you have to activate manually. By default, you will see two new checkboxes on every blog post, at the bottom of the comments form. To add the Subscriptions Widget to your sidebar, go to your Dashboard. Then click on Widgets. You will see a widget called &#8216;Blog Subscriptions (Jetpack)&#8217;. Click on it, and drag it to the sidebar on the right.&#8221;</p>
<p>&nbsp;</p>
<p>The post <a href="http://zeek.com/responsive-design-wordpress-security-and-ghetto-coding/">Responsive Design, WordPress Security and Ghetto Coding</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/responsive-design-wordpress-security-and-ghetto-coding/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Please Vote for My Session</title>
		<link>http://zeek.com/please-vote-for-my-session/</link>
		<comments>http://zeek.com/please-vote-for-my-session/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 18:15:21 +0000</pubDate>
		<dc:creator>Steve Zehngut</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4540</guid>
		<description><![CDATA[<p>In 2011, I led a Core Conversation to a standing-room only crowd about how to hire and manage a web developer. During that session, we discussed the client&#8217;s responsibility when managing a developer. For 2012, I will focus on the responsibilities of the developer. That&#8217;s right, developers! It&#8217;s time to grow up and start owning [...]</p><p>The post <a href="http://zeek.com/please-vote-for-my-session/">Please Vote for My Session</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>In 2011, I led a Core Conversation to a standing-room only crowd about how to hire and manage a web developer. During that session, we discussed the client&#8217;s responsibility when managing a developer. For 2012, I will focus on the responsibilities of the developer. That&#8217;s right, developers! It&#8217;s time to grow up and start owning your part in the working relationship. Or you can ignore my advice and continue to lose business to me.</p>
<p>This conversation will cover the following:</p>
<ul>
<li>Setting client expectations throughout the software development process.</li>
<li>Asking questions that help eliminate unnecessary work.</li>
<li>Executing a Statement of Work (SOW): why it is mandatory and what goes in.</li>
<li>Eliminating small problems before they become big problems.</li>
<li>Putting yourself in your client&#8217;s shoes when building a website.</li>
<li>Getting clients and (more importantly) keeping clients.</li>
</ul>
<p>What qualifies me to speak on this topic? Over Zeek&#8217;s 16 years in business, we have enjoyed long-term relationships with several great clients. And we do this by being honest and open with our strengths as well as our limitations. There are no secrets that we keep from our clients and we make it clear what they are getting into at the start of the working relationship. We have realized over time that this is a key differentiator between Zeek and other developers. Both developers and clients will benefit from the session.</p>
<p>I need votes! Please click the &#8220;thumbs up&#8221; button now on this page: <a href="http://bit.ly/oIDGeU" target="_blank">http://bit.ly/oIDGeU</a></p>
<p>The post <a href="http://zeek.com/please-vote-for-my-session/">Please Vote for My Session</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/please-vote-for-my-session/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Listening To Help &#8211; inboxQ</title>
		<link>http://zeek.com/listening-to-help-inboxq/</link>
		<comments>http://zeek.com/listening-to-help-inboxq/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 23:48:49 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Site Reviews]]></category>
		<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[inboxq]]></category>
		<category><![CDATA[listening]]></category>
		<category><![CDATA[strategy]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4406</guid>
		<description><![CDATA[<p>I've been using various tools as part of my  listening strategy on Twitter for a long time now. Few tools have impressed me as much as inboxQ.</p><p>The post <a href="http://zeek.com/listening-to-help-inboxq/">Listening To Help &#8211; inboxQ</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>I&#8217;ve been using various tools as part of my  <a href="http://www.jeffturner.info/listening-as-strategy-snippet/">listening strategy</a> on Twitter for a long time now. Few tools have impressed me as much as <a href="http://www.inboxq.com/" target="_blank">inboxQ</a>.</strong></p>
<p><a href="http://www.twitter.com/gahlord" target="_blank">Gahlord Dewald</a> clued me in on this one. He knows how much I desire to listen and we have shared a common <a href="http://www.jeffturner.info/listening-as-strategy-slides/" target="_blank">listening strategy</a> for years. We try to listen to help. Gahlord likes to look for &#8220;<a href="http://thoughtfaucet.com/making-things/examples/stop-trying-to-engage-your-audience/" target="_blank">the special hashtag people use when looking to be helped.</a>&#8221; It&#8217;s called a question mark. And it&#8217;s a powerful hashtag indeed.</p>
<p>The folks at inboxQ understand this: &#8220;We started InboxQ because we realized that there were lots of questions being asked by people on Twitter but most weren&#8217;t receiving very useful answers. In fact, most questions go completely unanswered on Twitter.&#8221; And that&#8217;s a fact.</p>
<p><strong>What inboxQ does is find that special hashtag for you.</strong> Pop in a few keywords and inboxQ begins scouring twitter, looking for people you can assist. Your first step is to create what they call &#8220;campaigns.&#8221;</p>
<p><img class="alignnone size-full wp-image-4407" title="Screen shot 2011-03-11 at 2.59.41 PM" alt="" src="http://zeek.com/wp-content/uploads/2011/03/Screen-shot-2011-03-11-at-2.59.41-PM.png" width="383" height="644" /></p>
<p>A campaign is simply a category of keywords or hashtags used to delineate possible questions to be answered. You can create as many campaigns as you wish. The campaign opened for view above is called &#8220;wordpress.&#8221; And I&#8217;ve been using the inboxQ Chrome extension to answer questions using the Zeek Interactive account on Twitter for a few days now.</p>
<p><strong>It  has been uncovering 20-30 questions each day. </strong></p>
<p><strong><a href="http://zeek.com/wp-content/uploads/2011/03/Screen-shot-2011-03-11-at-10.49.04-AM.png"><img class="alignnone size-full wp-image-4412" title="Screen shot 2011-03-11 at 10.49.04 AM" alt="" src="http://zeek.com/wp-content/uploads/2011/03/Screen-shot-2011-03-11-at-10.49.04-AM.png" width="383" height="644" /></a></strong></p>
<p>You can answer the questions right in the extension&#8217;s window, without having to fire up Twitter or any of their third party apps, as you can see above. Of course, you can also see that I could be a bit more diligent about opening up the extension. Questions, after all, are best answered when someone is around to listen. Though, my results have been pretty good so far, even without constant attention.</p>
<p><strong>Blog Post Fodder</strong></p>
<p>Another thing the questions are good for is blog post ideas. I&#8217;m using the &#8220;TODO&#8221; tab to save questions I feel require more than 140 characters. Like these:</p>
<p><img class="alignnone size-full wp-image-4413" title="Screen shot 2011-03-11 at 2.54.33 PM" alt="" src="http://zeek.com/wp-content/uploads/2011/03/Screen-shot-2011-03-11-at-2.54.33-PM.png" width="383" height="644" /></p>
<p><strong>After a few days, the results have been very positive.</strong> I&#8217;ve been able to answer a few questions and create some good dialogue around WordPress, conversations we want to take part in. I&#8217;m not answering the question with any other desire than to help. But sometimes the questions open up an opportunity to talk about what we do as well. <em>Witness this exchange:</em></p>
<p><a href="http://zeek.com/wp-content/uploads/2011/03/Screen-shot-2011-03-11-at-2.49.47-PM.png"><img class="alignnone size-full wp-image-4414" title="Screen shot 2011-03-11 at 2.49.47 PM" alt="" src="http://zeek.com/wp-content/uploads/2011/03/Screen-shot-2011-03-11-at-2.49.47-PM.png" width="384" height="293" /></a></p>
<p>I didn&#8217;t know <a href="http://www.hicksnewmedia.com/" target="_blank">James Hicks</a> before I saw his question. And I know I would never have seen his question before inboxQ. I have no idea where it will lead, but I already consider the minute (total) I spent on it valuable. I hope James does as well.</p>
<p><strong>What&#8217;s missing from inboxQ?</strong></p>
<p>It does what it says it does really well, so there are only two things I&#8217;d really like to see added. First, the ability to add multiple accounts. I&#8217;d like to use the tool for other Twitter accounts I monitor, but it only allows for one account to be connected at a time right now. I can&#8217;t imagine this isn&#8217;t part of their future development strategy. Second, I&#8217;d like them to charge for it. I&#8217;m tired of seeing services like this drop off the map because they don&#8217;t have a way of making money. I&#8217;d pay for this one.</p>
<p><strong>What kind of &#8220;listening to help&#8221; campaigns would you create?</strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a href="http://zeek.com/listening-to-help-inboxq/">Listening To Help &#8211; inboxQ</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/listening-to-help-inboxq/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Zeekchick? We Like The Sound Of It.</title>
		<link>http://zeek.com/zeekchick-we-like-the-sound-of-it/</link>
		<comments>http://zeek.com/zeekchick-we-like-the-sound-of-it/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 21:45:47 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[herding cats]]></category>
		<category><![CDATA[housechick]]></category>
		<category><![CDATA[kelley koehler]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4378</guid>
		<description><![CDATA[<p>We are happy to announce a new member is joining our team - Kelley Koehler, aka @housechick.</p><p>The post <a href="http://zeek.com/zeekchick-we-like-the-sound-of-it/">Zeekchick? We Like The Sound Of It.</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>We&#8217;re good at a lot of things here at Zeek Interactive. Herding cats is not one of them.</strong></p>
<p><img class="alignright size-full wp-image-4379" title="Kelley_Koehler" alt="" src="http://zeek.com/wp-content/uploads/2011/03/Kelley_Koehler.png" width="220" height="232" />And make no mistake about it, we&#8217;re cats. Self-herding is not in our nature. <em>We need help.</em> Luckily, we&#8217;ve found it. We are happy to announce a new member is joining our team &#8211; <a href="http://kelleykoehler.com/" target="_blank">Kelley Koehler</a>, aka <a href="http://www.twitter.com/housechick">@housechick</a>.</p>
<p>While Kelley is best known for her work as a REALTOR® in Tucson, Arizona, and as a nationally recognized real estate blogger, she has always thought of herself as &#8220;just a geek in realtor clothing.&#8221; And for good reason.</p>
<p>She graduated Cum Laude from the University of Arizona, Tucson with a degree in Systems and Sofware Engineering and immediately moved into the tech space as a Systems Engineer at Siemens/Gardner Transportation Systems. In her duties at Gardner Systems, Kelley was responsible for the creation, implementation, and maintenance of quality control and testing for the company’s various software systems. She was also Co-Owner of Applied Real Estate Technology, where she helped develop and market a cutting-edge IDX solution with an indexable WordPress aspect. She is a member of the advisory board for the Social Media Marketing Institute and is a highly regarded speaker on topics related to optimizing lead-generating websites and social media profiles to drive sales.</p>
<p><strong>We are honored to have her join our team. </strong>At Zeek, she will combine her sales and marketing background with her passion for all things geek to help us better serve our clients and insure that every product we create is delivered with the highest level of testing and quality control.</p>
<p>She will be moving from Tucson to Southern California to join us full time in early April. We can&#8217;t wait!</p>
<p>___________________________________________<br />
edit: from Kelley: &#8220;<a href="http://www.mytucsonblog.com/odds-and-ends/making-the-next-leap/" target="_blank">Making The Next Leap</a>&#8221;<br />
edit2: from Jay: &#8220;<a href="http://www.phoenixrealestateguy.com/bidding-a-fond-farewell-to-kelley-koehler-aka-housechick/" target="_blank">Bidding A Fond Farewell</a>&#8220;</p>
<p>The post <a href="http://zeek.com/zeekchick-we-like-the-sound-of-it/">Zeekchick? We Like The Sound Of It.</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/zeekchick-we-like-the-sound-of-it/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Testing SocialEyes With David Geller &#8211; We Didn&#8217;t Do Very Well</title>
		<link>http://zeek.com/testing-socialeyes-with-david-geller-we-didnt-do-very-well/</link>
		<comments>http://zeek.com/testing-socialeyes-with-david-geller-we-didnt-do-very-well/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 18:35:01 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[eyejot]]></category>
		<category><![CDATA[socialeyes]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4365</guid>
		<description><![CDATA[<p>I did a quick screencast of our attempt to add a third party, Hector Diaz, to a video chat on SocialEyes.com. As you'll see in the video, we didn't do very well.</p><p>The post <a href="http://zeek.com/testing-socialeyes-with-david-geller-we-didnt-do-very-well/">Testing SocialEyes With David Geller &#8211; We Didn&#8217;t Do Very Well</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>If it has anything to do with video chat, I can usually find <a href="http://www.twitter.com/davidgeller" target="_blank">David Geller</a>, CEO of <a href="http://www.eyejot.com/et?ResPres-4011821" target="_blank">Eyejot</a>, one of the first to give it a try</strong>. Today was no exception. And since he was one of my first Facebook friends to show up on <a href="http://socialeyes.com">SocialEyes</a> and be live (<a href="http://www.twitter.com/nik_nik" target="_blank">Nicole</a>, you were not available.), I did a quick screencast of our attempt to add a third party, <a href="http://twitter.com/#!/HectorGDiaz" target="_blank">Hector Diaz</a>, to our conversation. <em>As you&#8217;ll see in the video, we didn&#8217;t do very well. </em></p>
<p><iframe src="http://player.vimeo.com/video/20478829?title=0&amp;byline=0&amp;portrait=0&amp;color=dbaf2a" height="400" width="640" frameborder="0"></iframe></p>
<p><strong>Lesson for today?</strong> Don&#8217;t judge too soon. <img src='http://zeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The post <a href="http://zeek.com/testing-socialeyes-with-david-geller-we-didnt-do-very-well/">Testing SocialEyes With David Geller &#8211; We Didn&#8217;t Do Very Well</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/testing-socialeyes-with-david-geller-we-didnt-do-very-well/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Promise Of WordPress 3.1 &#8211; Easy</title>
		<link>http://zeek.com/the-promise-of-wordpress-3-1-easy/</link>
		<comments>http://zeek.com/the-promise-of-wordpress-3-1-easy/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 16:07:56 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[bookmarklet]]></category>
		<category><![CDATA[ease]]></category>
		<category><![CDATA[posterous]]></category>
		<category><![CDATA[tumblr]]></category>
		<category><![CDATA[wordpress 3.1]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4342</guid>
		<description><![CDATA[<p>The promise of Wordpress 3.1 is ease of use. We're close. We're just missing one piece.</p><p>The post <a href="http://zeek.com/the-promise-of-wordpress-3-1-easy/">The Promise Of WordPress 3.1 &#8211; Easy</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>&#8220;Blogs don&#8217;t work for most people.&#8221;</strong></p>
<p><img class="alignright size-full wp-image-4343" title="Just_Dug_Up_300" alt="" src="http://zeek.com/wp-content/uploads/2011/02/Just_Dug_Up_300.jpg" width="300" height="416" /></p>
<p>That was one of the reasons Tumblr founder David Karp gave to TechCrunch this week when asked <a href="http://techcrunch.com/2011/02/21/founder-stories-why-david-karp-started-tumblr-blogs-dont-work-for-most-people/" target="_blank">why he created the Tumblr blogging platform</a>. “All blogs took the same form,” he notes. “I wanted something much more free-form, much less verbose.” And the beauty of micro-blogging platforms like Tumblre and Posterous is how easy they are to use. Tumblr&#8217;s bookmarklet is beautiful and the foundation of Posterous is email, but both have moved on to created incredibly simple to use iPhone apps the compliment their original ease of use propositions.</p>
<p><strong>Another beauty of Tumblr, specifically, is the way it handles different post formats.</strong> Highlight a selection of copy in an article and click on the Tumblre bookmarklet and it knows you want to make a quote. It presents you with a dialogue that makes sense for that format and then posts using a style that enhances that format.</p>
<p>I&#8217;ve been using Tumblr to drive <a href="http://justdugup.com" target="_blank">Just Dug Up</a> (see the image to the right) for many years now. I use it because it&#8217;s simple. I use it because it makes the tidbits I find during my web wanderings look better than they actually are. I don&#8217;t have to think hard, I don&#8217;t have to format anything, I just click. Easy. Fast. Painless.</p>
<p>Similarly, I&#8217;ve used Posterous for <a href="http://jeffturner.mobi" target="_blank">JeffTurner.mobi</a> since Posterous was launched. I use it when I&#8217;m on the go or when I want to do a quick review of a mobile app that requires multiple screen shots. Again, Posterous makes is simple. Email the group of screenshots or use their iPhone app and it takes care of creating an image viewer, like the one below, without any intervention on my part.</p>
<p><img class="size-full wp-image-4347 alignnone" title="jeffturner_mobi_sample" alt="" src="http://zeek.com/wp-content/uploads/2011/02/jeffturner_mobi_sample.jpg" width="640" height="138" /></p>
<p><strong>Why can&#8217;t WordPress be that simple?</strong></p>
<p>I&#8217;ve wondered out loud about this in the past. <a href="http://zeek.com/why-should-this-headline-be-my-status-update/">Why can&#8217;t the existing WordPress &#8221;press this&#8221; bookmarklet be turned into something more intelligent</a>, like Tumblr&#8217;s bookmarklet? Why can&#8217;t it sense that when I&#8217;m highlighting text, I probably want to format it like a quote? Why can&#8217;t I post multiple photos and have WordPress understand that I want them shown in a slideshow format? <em>And herein lies the promise of WordPress 3.1, at least in part.</em></p>
<p>When Matt Mullenweg announced the live version of <a href="http://wordpress.org/news/2011/02/threeone/" target="_blank">WordPress 3.1</a>, he said, &#8220;There’s a bucket of candy for developers as well, including our new <strong>Post Formats support</strong> which makes it easy for themes to create portable tumblelogs with different styling for different types of posts&#8230;&#8221;</p>
<p><a href="http://zeek.com/wp-content/uploads/2011/02/Publish-to-your-WordPress-tumblog-from-your-iPhone.png"><img class="alignright size-medium wp-image-4354" title="Publish to your WordPress tumblog from your iPhone" alt="" src="http://zeek.com/wp-content/uploads/2011/02/Publish-to-your-WordPress-tumblog-from-your-iPhone-199x300.png" width="199" height="300" /></a>And there are some really promising Themes ready to carry out that task, including <a href="http://themify.me/demo/#theme=wumblr" target="_blank">Wumblr</a>, <a href="http://www.elegantthemes.com/preview/LightBright/" target="_blank">Lightbright</a>, and from WooThemes,  <a href="http://demo.woothemes.com/?name=auld" target="_blank">Auld</a>, each of which do a great job of taking advantage of this new post format feature. Auld distinguishes itself already by taking advantage of a slew of &#8220;Tumblog&#8221; utilities that WooThemes has provided for some time now, including <a href="http://www.express-app.com/" target="_blank">Express App for iPhone</a>, extensive multimedia support, and their advanced QuickPress funtionality that is built into the theme.</p>
<p>The good folks at WooThemes have made their <a href="http://wordpress.org/extend/plugins/woo-tumblog/" target="_blank">Tumblog Plugin</a> available to everyone. And <a href="http://www.woothemes.com/support/wootumblog/" target="_blank">their documentation</a> on what to do to make your blog tumblog read is extensive. So, you can tune any theme to take advantage of the power of the new WordPress 3.1 features. The Tumblog plugin automatically enables their QuickPress widget. Combine that with their Express App and you&#8217;ve just taken a huge leap toward the ease of use that distinguishes platforms like Tumblr and Posterous.</p>
<p><strong>Here&#8217;s the problem. Something is missing.</strong></p>
<p>All of that is excellent, but  the main reason why I&#8217;ve been excited for the release of WordPress 3.1 is the hope that it wouldn&#8217;t require me to run to so many different sources for plugins and widgets to get to this kind of functionality. The problem? Something is still missing. It&#8217;s a better bookmarklet.</p>
<p>I don&#8217;t do most of my content creation on the go. I pick through my feed reader in the mornings looking for good content to talk about and love the ease of getting that content to Tumblr. The Tumblr bookmarklet is what makes it so simple. And while there are rumors that a new Press This! bookmarklet may be in the works for the next release of WordPress, I&#8217;m sad it didn&#8217;t make it into this release.</p>
<p>I&#8217;d rather be posting slightly longer reactions to content right here on Zeek.com, but I don&#8217;t want to have to continually jump back and forth between the wordpress dashboard, my feed reader and the post I&#8217;m reading. I want to highlight a quote, add my comments and hit send without having to think about formatting. That&#8217;s what Tumblr provides right now.</p>
<p><strong>We&#8217;re so close. </strong></p>
<p>The promise of WordPress 3.1 is ease of use. <em>We just need a better bookmarklet. </em></p>
<p>&nbsp;</p>
<p>The post <a href="http://zeek.com/the-promise-of-wordpress-3-1-easy/">The Promise Of WordPress 3.1 &#8211; Easy</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/the-promise-of-wordpress-3-1-easy/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Best New Business Is Repeat Business</title>
		<link>http://zeek.com/the-best-new-business-is-repeat-business/</link>
		<comments>http://zeek.com/the-best-new-business-is-repeat-business/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 19:20:49 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[customer service]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[new business]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4327</guid>
		<description><![CDATA[<p>Companies spend a lot of time and money trying to find new customers. We focus a great deal of attention on the process of bringing them in the door. The same attention needs to be applied to keeping them.</p><p>The post <a href="http://zeek.com/the-best-new-business-is-repeat-business/">The Best New Business Is Repeat Business</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>Our best marketing is the work we do for our customers each day. </strong></p>
<p><img class="alignright size-medium wp-image-4328" title="IMG_7268" alt="" src="http://zeek.com/wp-content/uploads/2011/02/IMG_7268-300x228.jpg" width="300" height="228" />My close friends and neighbors are moving back to Dallas, Texas. The moving van outside my front door is a sad reminder of that fact. When talking to them, my wife learned that they have used the same moving company for each of their last seven moves. That&#8217;s a pretty impressive number. It&#8217;s also represents a high return on <a href="http://www.northamerican.com/" target="_blank">North American</a>&#8216;s initial marketing investment.</p>
<p><strong>Companies spend a lot of time and money trying to find new customers</strong>. We focus a great deal of attention on the process of bringing them in the door. We make lots of promises about the kind of work we&#8217;ll do for them. The same attention needs to be applied to keeping them. It seems to me the formula for this is pretty simple.</p>
<ol>
<li>Deliver on your promise.</li>
<li>Stay in touch.</li>
</ol>
<p><strong>We forget how simple it is sometimes.</strong> I need to stop forgetting.</p>
<p>The post <a href="http://zeek.com/the-best-new-business-is-repeat-business/">The Best New Business Is Repeat Business</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/the-best-new-business-is-repeat-business/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>What Is More Dangerous Than Texting While Driving?</title>
		<link>http://zeek.com/what-is-more-dangerous-than-texting-while-driving/</link>
		<comments>http://zeek.com/what-is-more-dangerous-than-texting-while-driving/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 22:14:54 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[facetime]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4316</guid>
		<description><![CDATA[<p>I answered that pressing question today with the new Skype for iPhone update.</p><p>The post <a href="http://zeek.com/what-is-more-dangerous-than-texting-while-driving/">What Is More Dangerous Than Texting While Driving?</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>I answered that pressing question today with the new <a href="http://blogs.skype.com/en/2010/12/iphone_video_calls.html" target="_blank">Skype for iPhone</a> update. </strong></p>
<p><img class="alignright size-medium wp-image-4317" title="photo" alt="" src="http://zeek.com/wp-content/uploads/2010/12/photo-200x300.png" width="200" height="300" />Yesterday I updated with great anticipation, hoping that the quality of the new video chat capabilities on the Skype app would live up to the quality of video I&#8217;ve experienced with Apple&#8217;s Facetime. To my delight, on a WiFi connection, <a href="http://jeffturner.mobi/video-calling-from-skype-on-iphone-that-didnt" target="_blank">Skype rocked</a>.</p>
<p><strong>Video chat over 3G is the difference.</strong></p>
<p>What I was even happier to find, however, is that on a decent 3g connection, the experience was just as good. I video Skyped with <a href="http://zeek.com/team/steve-zehngut/" target="_blank">Steve Zehngut</a> in the parking lot of LA Fitness and with <a href="http://themortgagereports.com/" target="_blank">Dan Green</a> right before I got on the treadmill. No question&#8230; Skype for iPhone trumps <a href="http://www.apple.com/iphone/features/facetime.html" target="_blank">FaceTime video chat</a> with ease. If you&#8217;re a Skype user, this is a no brainer.</p>
<p><strong>Obviously, bandwidth will be an issue with any video service. </strong>So, I wanted to see how Skype behaved with a single bar. So, I dialed up <a href="http://phoenixrealestateguy.com/" target="_blank">Jay Thompson</a> while at a stop light. The result? I got a pretty decent video, but the audio was horrid. Then the light changed.</p>
<p><strong>What&#8217;s more dangerous than texting while driving?</strong> Skype video chatting while driving.</p>
<p><em>You have been warned.</em></p>
<p>The post <a href="http://zeek.com/what-is-more-dangerous-than-texting-while-driving/">What Is More Dangerous Than Texting While Driving?</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/what-is-more-dangerous-than-texting-while-driving/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Moving From Manipulation To Truth</title>
		<link>http://zeek.com/moving-from-manipulation-to-truth/</link>
		<comments>http://zeek.com/moving-from-manipulation-to-truth/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 17:12:13 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[conversation]]></category>
		<category><![CDATA[social business]]></category>
		<category><![CDATA[social tools]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4300</guid>
		<description><![CDATA[<p>Conversations are more significant than we are aware of, more powerful than we acknowledge. They are much like breathing." </p><p>The post <a href="http://zeek.com/moving-from-manipulation-to-truth/">Moving From Manipulation To Truth</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>I took 15 minutes to listen to a podcast today.</strong> I rarely listen to podcasts, but I was drawn to this <a href="http://edelmaneditions.com/2010/12/social-business-planning-podcast/" target="_blank">Social Business Planning Podcast </a> by some followup comments from one of the participants, <a href="http://www.twitter.com/armano" target="_blank">David Armano</a>.</p>
<p>About 2/3 of the way into the podcast, one of David&#8217;s Colleagues at Edelman, <a href="http://twitter.com/cybersoc" target="_blank">Robin Hamman</a>, mentioned how social technology was leading companies to &#8220;involve internal stakeholders more widely.&#8221; His focus quickly shifted to examples that seemed more external stakeholder focused, but this is an area of social technology that fascinates me. How can we better use social tools to change the conversations inside of organizations, not simply as new marketing vehicles.</p>
<p><strong><img class="alignright size-full wp-image-4306" title="authentic_conversations" alt="" src="http://zeek.com/wp-content/uploads/2010/12/authentic_conversations.png" width="225" height="333" />I&#8217;ve long promoted the fact that my all-time favorite business book is <a href="http://www.amazon.com/Leadership-New-Science-Discovering-Chaotic/dp/1576753441/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1292604870&amp;sr=1-1" target="_blank"><em>Leadership And The New Science</em></a>, by Margaret J. Wheatley.</strong> She wrote the foreward to another book I just recently began reading titled, <em><a href="http://www.amazon.com/Authentic-Conversations-Moving-Manipulation-Commitment/dp/1576755959" target="_blank">Authentic Conversations: Moving From Manipulaton To Truth And Commitment</a></em>, by Jamie and Maren Showkeir. They begin with a premise that I agree with, &#8220;I believe we can change the world if we just start talking to one another again.&#8221;</p>
<p>It is an extremely simple premise, but one I find incredibly powerful. &#8220;Conversations are more significant than we are aware of, more powerful than we acknowledge. They are much like breathing.&#8221; And this is one of the great promises of social tools&#8230; that they will provide the mechanism for better conversations inside organizations.</p>
<p><strong>We Have To Change Our Conversations.</strong></p>
<p>We have to move away from the notion we&#8217;ve all grown up with, that conversations in organizations are tools for getting what we want, &#8220;for winning others over to our points of view.&#8221; We have to move away from conversations that are rooted in the thinking of the industrial age and move to new conversations that obliterate command and control boundaries. These conversations will necessarily involve internal stakeholders more widely and will &#8220;create, reveal, sustain or change organizational culture.&#8221;</p>
<p><strong>These are exciting times we live in.</strong></p>
<p>The post <a href="http://zeek.com/moving-from-manipulation-to-truth/">Moving From Manipulation To Truth</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/moving-from-manipulation-to-truth/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>QR Codes: You Don&#8217;t Need An Elephant To Tie Your Shoes</title>
		<link>http://zeek.com/qr-codes-you-dont-need-an-elephant-to-tie-your-shoes/</link>
		<comments>http://zeek.com/qr-codes-you-dont-need-an-elephant-to-tie-your-shoes/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 14:43:48 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Technosanity]]></category>
		<category><![CDATA[hype]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[qr codes]]></category>
		<category><![CDATA[real estate]]></category>
		<category><![CDATA[savvy]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4287</guid>
		<description><![CDATA[<p>There are certainly going to be some unique uses for QR codes, but using them as a replacement for a URL is not one of them. It's like looking for an elephant to tie your shoes. Or a lumberjack to pour your milk. </p><p>The post <a href="http://zeek.com/qr-codes-you-dont-need-an-elephant-to-tie-your-shoes/">QR Codes: You Don&#8217;t Need An Elephant To Tie Your Shoes</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>I still have kids young enough to enjoy <a href="http://www.lyricspond.com/artist-raffi/lyrics-oh-me-oh-my" target="_blank">Raffi</a>.</strong> It&#8217;s the bain of my existence, but they love it. The other night, while listening to the following lyrics, I couldn&#8217;t help but think about QR codes.</p>
<blockquote><p><img class="alignright size-full wp-image-4288" title="QR Code Madness" alt="" src="http://zeek.com/wp-content/uploads/2010/12/qrcode_flickr.png" width="150" height="150" /><em>Oh me, oh my! What&#8217;ll I do?<br />
I can&#8217;t find an elephant to tie my shoe.<br />
But I know what, and so do you,<br />
I don&#8217;t need an elephant to tie my shoe.<br />
No, you don&#8217;t need an elephant to tie your shoe.</em></p></blockquote>
<p><strong>I&#8217;ve tried to stay away from writing about QR codes. </strong>I&#8217;ve done thismainly because I just don&#8217;t care about them, but somewhat out of fear that I&#8217;ll simply add to the already ridiculous level of hype. There is a special level of hype around <a href="http://www.flickr.com/photos/respres/5246500479/" target="_blank">QR codes in the real estate industry</a>. Realtors® wishing to be perceived as &#8220;tech savvy&#8221; are plastering them on everything they can, but rarely doing anything more than linking back to a website that would be just as easily, and more broadly, reached via a shortened URL.</p>
<p>There are certainly going to be some <a href="http://mashable.com/2009/01/07/qr-codes/" target="_blank">unique uses for QR codes</a>, but using them as a replacement for a URL is not one of them.  It&#8217;s like looking for an elephant to tie your shoes. Or a lumberjack to pour your milk.</p>
<blockquote><p><em>Oh me, oh my! What&#8217;ll I do?<br />
I can&#8217;t find a lumberjack to pour my milk.<br />
But I know what, and so do you,<br />
I don&#8217;t need a lumberjack to pour my milk.<br />
No, I don&#8217;t need a lumberjack to pour my milk.</em></p></blockquote>
<p>The post <a href="http://zeek.com/qr-codes-you-dont-need-an-elephant-to-tie-your-shoes/">QR Codes: You Don&#8217;t Need An Elephant To Tie Your Shoes</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/qr-codes-you-dont-need-an-elephant-to-tie-your-shoes/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>What If The Stars &#8220;Die&#8221; And Nobody Cares?</title>
		<link>http://zeek.com/what-if-the-stars-die-and-nobody-cares/</link>
		<comments>http://zeek.com/what-if-the-stars-die-and-nobody-cares/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 19:18:25 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[aids]]></category>
		<category><![CDATA[celebrity]]></category>
		<category><![CDATA[charity]]></category>
		<category><![CDATA[CNN]]></category>
		<category><![CDATA[HIV]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4265</guid>
		<description><![CDATA[<p>On December 1, a slew of celebrities "died" online. Their digital identities at Twitter and Facebook were killed off in an attempt to raise $1 Million for Alicia Key's BuyLife.org. The success of this charity endeavor would seem to fall on whether their fans were truly engaged.</p><p>The post <a href="http://zeek.com/what-if-the-stars-die-and-nobody-cares/">What If The Stars &#8220;Die&#8221; And Nobody Cares?</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>On December 1, a slew of celebrities &#8220;died&#8221; online. </strong>Their digital identities at Twitter and Facebook were killed off in an attempt to raise $1 Million for Alicia Key&#8217;s <a href="http://www.buylife.org" target="_blank">BuyLife.org</a>, in conjunction with her truly worthwhile charity, <a href="http&quot;//www.KeepAChildAlive.org" target="_blank">KeepAChildAlive.org</a>. The charity provides &#8220;treatment love and support to families affected by HIV/AIDS.&#8221;</p>
<p><object id="ep" width="416" height="374" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" bgcolor="#000000"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="wmode" value="transparent" /><param name="src" value="http://i.cdn.turner.com/cnn/.element/apps/cvp/3.0/swf/cnn_416x234_embed.swf?context=embed&amp;videoId=showbiz/2010/12/03/anderson.stars.social.networks.cnn" /><embed id="ep" width="416" height="374" type="application/x-shockwave-flash" src="http://i.cdn.turner.com/cnn/.element/apps/cvp/3.0/swf/cnn_416x234_embed.swf?context=embed&amp;videoId=showbiz/2010/12/03/anderson.stars.social.networks.cnn" allowfullscreen="true" allowscriptaccess="always" wmode="transparent" bgcolor="#000000" /></object></p>
<p>I commented on the drive for CNN on Showbiz Tonight (above) and said I didn&#8217;t think there was a snowball&#8217;s chance in hell that they wouldn&#8217;t raise the money. But I was also asked a question that didn&#8217;t end up in the commentary. The question was whose followers do you think will have the greatest impact on the campaign. The answer to that question requires a bit more analysis.</p>
<p><strong>Big Number Don&#8217;t Necessarily Translate To Big Engagement<br />
</strong></p>
<p>My response was that big numbers don&#8217;t necessarily translate into big engagement. I cited the difference between Justin Timberlake and User as an example. Justin Timberlake has roughly 3.5 Million followers on Twitter, compared to Usher&#8217;s almost 1 Million. But when you look at their <a href="http://www.klout.com" target="_blank">Klout</a> numbers, <a href="http://klout.com/UsherRaymondIV/score?ct=1" target="_blank">Usher&#8217;s engagement</a> with his smaller audience creates between 5 to 7 times the number of retweets and mentions as <a href="http://klout.com/jtimberlake/score?ct=1" target="_blank">Timberlake&#8217;s engagement</a>. The differences between their Facebook fan pages is fairly stark as well. When you read the status updates from each. Usher tends to be more conversational in the updates to his 10 million Facebook fans, while Timberlake&#8217;s 5 million fans get what feels more like a series of press releases.</p>
<p><img class="alignnone size-full wp-image-4275" title="Retweets Usher Vs Justin Timberlake" alt="" src="http://zeek.com/wp-content/uploads/2010/12/Screen-shot-2010-12-03-at-10.50.37-AM-e1291402298913.jpg" width="690" height="142" /></p>
<p><em>The success of this charity endeavor would seem to fall on whether their fans were truly engaged and whether NOT being able to use their social media channels would hinder their ability to raise the funds.</em></p>
<p><strong>In truth, the accounts are not really dead.</strong> They&#8217;re mostly dead. The various Twitter accounts have continued to put out sporadic messages, like <a href="http://twitter.com/aliciakeys/status/10548861508526080" target="_blank">this tweet from Alicia Keys</a>, &#8220;@aliciakeys &#8211; is dead but Elizabeth &amp; her sone are alive thannks to KCS http://bit.ly/1Z5t7P Text ALICIA to 90999 &amp; reply YES to give $10.&#8221;</p>
<p>At the time of this writing, two days into the campaign, they have raised $183,603. More than half of that was raised on the first day. At this current pace, the $1 Million goal won&#8217;t be hit until after Christmas. Will they really refrain from using those channels for anything but the sporadic updates to reach the goal until then?</p>
<p><a href="www.annettegallagher.net" target="_blank">Annette Gallagher</a>, a Facebook friend, had this to say about their absence this morning: &#8220;I think the pics and such may have creeped out some potential donors, as well as the &#8220;stunt&#8221; aura around the whole thing. It is a fantastic charity though, and hey, I won&#8217;t complain if it takes <a href="http://twitter.com/kimkardashian" target="_blank">Ms. Kardashian</a> a little time to get back on the internets. <img src='http://zeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8221;</p>
<p><strong>It&#8217;s the last part of that comment that I&#8217;ve heard several times, &#8220;I wouldn&#8217;t mind if (fill in the blank) stopped tweeting.</strong> Others have chimed in with their thoughts as well, and they all lean toward, &#8220;I don&#8217;t really care if they stop.&#8221; This falls in line with a post this morning about <a href="http://www.imediaconnection.com/content/28118.asp" target="_blank">four social media myths that fooled marketers</a>&#8230; one of them being that &#8220;Twitter&#8217;s success hinges on celebrities.&#8221; I never personally bought into that one, and the truth of that becomes clearer every day. Personally, I hope they get to the $1 Million goal quickly. It&#8217;s a great cause.</p>
<p><strong>What&#8217;s your take? </strong>How do you think this campaign will fair and how influential do you believe celebrities are in the social media space?</p>
<p>The post <a href="http://zeek.com/what-if-the-stars-die-and-nobody-cares/">What If The Stars &#8220;Die&#8221; And Nobody Cares?</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/what-if-the-stars-die-and-nobody-cares/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Twextme Will Shut Down For Users With One Twitter Account</title>
		<link>http://zeek.com/twextme-will-shut-down-for-users-with-one-twitter-account/</link>
		<comments>http://zeek.com/twextme-will-shut-down-for-users-with-one-twitter-account/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 15:23:58 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Twext.me]]></category>
		<category><![CDATA[mentions]]></category>
		<category><![CDATA[notifications]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[twextme]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4260</guid>
		<description><![CDATA[<p>If you're currently monitoring multiple Twitter accounts using Twext.me, you will be able to continue to do so. Those of you who were monitoring a single Twitter account, we will be deleting your account.</p><p>The post <a href="http://zeek.com/twextme-will-shut-down-for-users-with-one-twitter-account/">Twextme Will Shut Down For Users With One Twitter Account</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>When Twitter announced it would be adding <a href="http://zeek.com/twitter-adds-sms-support-for-mentions/">sms support for mentions</a>, we noted that this support only allowed for a single Twitter account to send to any given cell phone number. This will not be a problem for the vast majority of Twitter users. For those will multiple Twitter accounts, it might be.</p>
<p><img class="size-full wp-image-433 alignright" title="twextme_logo300" alt="" src="http://zeek.com/wp-content/uploads/2009/04/twextme_logo300.png" width="300" height="77" />So, if you&#8217;re currently monitoring multiple Twitter accounts using <a href="http://www.twext.me" target="_blank">Twext.me</a>, you will be able to continue to do so. Those of you who were monitoring a single Twitter account, we will be deleting your account. You will be able to get instant mention notification using Twitter&#8217;s new notification features. These can be found under the mobile setting in your Twitter account.</p>
<p>And, you never know, we may add a feature or two for those power users. <img src='http://zeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The post <a href="http://zeek.com/twextme-will-shut-down-for-users-with-one-twitter-account/">Twextme Will Shut Down For Users With One Twitter Account</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/twextme-will-shut-down-for-users-with-one-twitter-account/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fourtrace Urges You To Think Before Sharing</title>
		<link>http://zeek.com/fourtrace-urges-you-to-think-before-sharing/</link>
		<comments>http://zeek.com/fourtrace-urges-you-to-think-before-sharing/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 23:18:05 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[foursquare]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4250</guid>
		<description><![CDATA[<p>"Fourtrace is a research project in "Advanced topics in Computer Networking" at University of California, Santa Barbara. Our goal is to find out if it's possible to predict where a user is at a given time."</p><p>The post <a href="http://zeek.com/fourtrace-urges-you-to-think-before-sharing/">Fourtrace Urges You To Think Before Sharing</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>Could someone predict where you&#8217;ll be tomorrow?</strong></p>
<p>According to the Fourtrace website, &#8220;Fourtrace is a research project in &#8220;Advanced topics in Computer Networking&#8221; at University of California<img src="http://twitter-badges.s3.amazonaws.com/t_mini-a.png" alt="" />, Santa Barbara. Our goal is to find out if it&#8217;s possible to predict where a user is at a given time.&#8221;</p>
<p>The site uses only the public Foursquare check-ins found on Twitter, so it is limited to only what Foursquare users choose to share. However, even those who limit their public sharing have the potential to display predictable patterns of behavior. Over a long enough period of time, even small amounts of sharing begin to add up. How could it the information be used? Time will tell.</p>
<div>
<div id="description">Fourtrace advises on their &#8220;share&#8221; page, &#8220;&#8230;sometimes it&#8217;s  smart to think twice before you share your updates publicly on twitter.&#8221;</div>
<div><strong>What do you think?</strong></div>
</div>
<p>The post <a href="http://zeek.com/fourtrace-urges-you-to-think-before-sharing/">Fourtrace Urges You To Think Before Sharing</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/fourtrace-urges-you-to-think-before-sharing/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Twitter Adds SMS Support For Mentions</title>
		<link>http://zeek.com/twitter-adds-sms-support-for-mentions/</link>
		<comments>http://zeek.com/twitter-adds-sms-support-for-mentions/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 06:17:12 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Twext.me]]></category>
		<category><![CDATA[mentions]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[twextme]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4228</guid>
		<description><![CDATA[<p>Twitter launched SMS notification for mentions today. Since this is essentially why we created Twext.me for Ben Martin, we will be evaluating what to do with Twext.me in the next 24 hours.</p><p>The post <a href="http://zeek.com/twitter-adds-sms-support-for-mentions/">Twitter Adds SMS Support For Mentions</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>Today, Twitter made this announcement about <a href="http://blog.twitter.com/2010/11/instant-notifications.html" target="_blank">Instant Notifications</a>:</strong></p>
<blockquote><p>&#8220;We want to make sure you see important Tweets even when you’re not  looking at Twitter at the moment. To help with that, today we’re  launching push notifications for @<a href="http://twitter.com/mentions">mentions</a>.&#8221;</p></blockquote>
<p><img class="alignright size-medium wp-image-4236" title="2010-11-16_21-45-19" src="http://zeek.com/wp-content/uploads/2010/11/2010-11-16_21-45-191-300x220.png" alt="" width="300" height="220" /><strong>TWEXT.ME?</strong></p>
<p>Since this is essentially why we created <a href="http://www.twext.me" target="_blank">Twext.me</a> for <a href="http://twitter.com/bkmcae" target="_blank">Ben Martin</a>, we will be evaluating what to do with Twext.me in the next 24 hours. For those of you with one Twitter account, we&#8217;d advise switching away from Twext.me immediately. The mentions notifications are sent almost instantaneously.</p>
<p>To set up your Twitter account to notify you via SMS when you get mentioned, go to your settings on Twitter, select Mobile and tell it how you want it to act. The illustration to the right shows you the setting for having all mentions from anyone sent to your phone.</p>
<p><strong>Note: </strong>Twitter will only allow one account to be associated with a phone number. So if you have multiple Twitter accounts, you can only have mentions sent to a single phone number from one of those accounts.</p>
<p><img class="alignnone size-full wp-image-4242" title="onephone" src="http://zeek.com/wp-content/uploads/2010/11/onephone.png" alt="" width="498" height="69" /></p>
<p>The post <a href="http://zeek.com/twitter-adds-sms-support-for-mentions/">Twitter Adds SMS Support For Mentions</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/twitter-adds-sms-support-for-mentions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting Creative With Pro HDR On The iPhone</title>
		<link>http://zeek.com/getting-creative-with-pro-hdr-on-the-iphone/</link>
		<comments>http://zeek.com/getting-creative-with-pro-hdr-on-the-iphone/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 18:56:16 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[analog]]></category>
		<category><![CDATA[hipstamatic]]></category>
		<category><![CDATA[infinicam]]></category>
		<category><![CDATA[lo-mob]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[plastic bullet]]></category>
		<category><![CDATA[pro hdr]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4186</guid>
		<description><![CDATA[<p>Using the "Library HDR" option from the main menu of the Pro HDR app, you can force it to process any two photos of the same size. In this example, I use two photos from Infinicam, but I have used this technique starting with Plastic Bullet and PictureShow exports as the starting point as well. </p><p>The post <a href="http://zeek.com/getting-creative-with-pro-hdr-on-the-iphone/">Getting Creative With Pro HDR On The iPhone</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong><img class="alignright size-medium wp-image-4187" title="Sunflower_base" src="http://zeek.com/wp-content/uploads/2010/11/Sunflower_base-300x297.png" alt="" width="300" height="297" />My iPhone has become my main camera. </strong></p>
<p>It&#8217;s not because the quality of the camera is so amazing, thought it&#8217;s certainly not bad. It&#8217;s because of the applications available to edit photos and create effects on the fly. I&#8217;m particularly fond of the analog camera simulation apps like <a href="http://itunes.apple.com/us/app/hipstamatic/id342115564?mt=8" target="_blank">Hipstamatic</a>, <a href="http://itunes.apple.com/us/app/pictureshow/id324243655?mt=8" target="_blank">PictureShow</a>, <a href="http://lo-mob.com/" target="_blank">Lo-Mob</a>, <a href="http://www.redgiantsoftware.com/products/all/plastic-bullet/" target="_blank">Plastic Bullet</a> and <a href="http://itunes.apple.com/us/app/infinicam/id388837429?mt=8" target="_blank">Infinicam</a>. But I love <a href="http://www.cloudburstresearch.com/autostitch/autostitch.html" target="_blank">AutoStitch</a>, <a href="http://itunes.apple.com/us/app/you-gotta-see-this/id379058646?mt=8" target="_blank">You Gotta See This!</a> and <a href="http://zeek.com/iphone-apps-true-hdr-vs-pro-hdr/" target="_blank">Pro HDR</a> as well. Each one, individually, has it&#8217;s place in my photo arsenal. And I post photos to my main photo blog, In The Viewfinder, almost exclusively using edited iPhone photos.</p>
<p><strong>But one of my favorite things to do is use the apps in combination.</strong> And I may be doing it in ways the creators never envisioned, so I thought I&#8217;d share one of my favorite ways to combine apps. The photo to the right is a photo of a sunflower straight from the iPhone without having been processed through any app.</p>
<p><strong>Infinicam + Pro HDR</strong></p>
<p>For this example, I used two photos <a href="http://www.flickr.com/photos/respres/5033707122/" target="_blank">manipulated using Infinicam</a>. I then combined those images in two different orders in Pro HDR. I have used this technique with exports from Plastic Bullet and PictureShow as the starting point as well.  Here&#8217;s a finished example from two different Plastic Bullet exports combined using Pro HDR &#8211; <a href="http://www.intheviewfinder.com/1774/rush-hour/" target="_blank">Rush Hour</a>.</p>
<p>Pro HDR is <a href="http://zeek.com/iphone-apps-true-hdr-vs-pro-hdr/" target="_self">my favorite HDR app for the iPhone</a>, and I use it a great deal in <a href="http://jeffturner.mobi/this-photo-finally-sold-me-on-the-pro-hdr-iph" target="_blank">the way it was intended to be used</a>. However, using the &#8220;Library HDR&#8221; option from the main menu of the app, you can force it to process <em>any</em> two photos of the same size. Your results will change based on which photo you choose as the &#8220;darker&#8221; image and which photo you choose as the &#8220;lighter&#8221; image. <em>Example:</em></p>
<p><img class="alignnone size-full wp-image-4197" title="Sunflower_HDRprocess1b" src="http://zeek.com/wp-content/uploads/2010/11/Sunflower_HDRprocess1b.jpg" alt="" width="690" height="232" /></p>
<p>The results can change dramatically when you simply choose the alternate photo to begin the process.<em></em></p>
<p><img class="alignnone size-full wp-image-4196" title="Sunflower_HDRprocess2b" src="http://zeek.com/wp-content/uploads/2010/11/Sunflower_HDRprocess2b.jpg" alt="" width="690" height="232" /></p>
<p><strong>There is no way to predict what the end result will be, but that&#8217;s the beauty of this process</strong>. I love the surprise of a beautifully random and unexpected combination. You may prefer the first result above. I preferred the second and published that photo to my photo blog. All of the original files can be seen at full size in this Flickr photo set -  <a href="http://www.flickr.com/photos/respres/sets/72157625173580575/" target="_blank">Using Pro HDR To Create Interesting Effects</a>.</p>
<p>Give this simple technique a shot on some of your photos and be sure to come back and put a link to your results in the comments. I&#8217;d love to see them.</p>
<p>The post <a href="http://zeek.com/getting-creative-with-pro-hdr-on-the-iphone/">Getting Creative With Pro HDR On The iPhone</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/getting-creative-with-pro-hdr-on-the-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blown Away By Grooveshark</title>
		<link>http://zeek.com/blown-away-by-grooveshark/</link>
		<comments>http://zeek.com/blown-away-by-grooveshark/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 01:26:18 +0000</pubDate>
		<dc:creator>Steve Zehngut</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Site Reviews]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4162</guid>
		<description><![CDATA[<p>I've used Blip.fm in the past as a "Be Your Own DJ" type of service. Lately, however, Blip.fm just isn't cutting it. Grooveshark is everything Blip.fm should have been and more.</p><p>The post <a href="http://zeek.com/blown-away-by-grooveshark/">Blown Away By Grooveshark</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="250" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="align" value="right" /><param name="wmode" value="window" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="hostname=cowbell.grooveshark.com&amp;widgetID=23018243&amp;style=metal&amp;bbg=000000&amp;bfg=941522&amp;bt=ffffff&amp;bth=000000&amp;pbg=ffffff&amp;pbgh=941522&amp;pfg=000000&amp;pfgh=ffffff&amp;si=ffffff&amp;lbg=ffffff&amp;lbgh=941522&amp;lfg=000000&amp;lfgh=ffffff&amp;sb=ffffff&amp;sbh=941522&amp;p=0" /><param name="src" value="http://listen.grooveshark.com/widget.swf" /><embed type="application/x-shockwave-flash" width="250" height="400" src="http://listen.grooveshark.com/widget.swf" flashvars="hostname=cowbell.grooveshark.com&amp;widgetID=23018243&amp;style=metal&amp;bbg=000000&amp;bfg=941522&amp;bt=ffffff&amp;bth=000000&amp;pbg=ffffff&amp;pbgh=941522&amp;pfg=000000&amp;pfgh=ffffff&amp;si=ffffff&amp;lbg=ffffff&amp;lbgh=941522&amp;lfg=000000&amp;lfgh=ffffff&amp;sb=ffffff&amp;sbh=941522&amp;p=0" allowscriptaccess="always" wmode="window" align="right"></embed></object></p>
<p>We are currently working on the new website for Flashback Heart Attack, a fantastic local 80s cover band. As a part of the site, I wanted to build an 80s music playlist and embed it as a sidebar widget into their new site.</p>
<p><strong>I&#8217;ve used <a href="http://blip.fm" target="_blank">Blip.fm</a> in the past as a &#8220;Be Your Own DJ&#8221; type of service.</strong> Lately, however, Blip.fm just isn&#8217;t cutting it. Most of the songs I search for either aren&#8217;t available or I get some obscure version of the song. When I do find songs that I want to blip, they&#8217;re usually the YouTube video and the sound quality is typically terrible.</p>
<p>I asked my Facebook friends for a recommendation and they turned me on to <a href="http://grooveshark.com" target="_blank">GrooveShark</a>. I&#8217;m totally blown away by this site! It is everything Blip.fm should have been and more. I highly recommend that you give it a spin.</p>
<p>Most of the songs I searched for were available and they were all high quality versions. For the few I didn&#8217;t find, I uploaded my own mp3 files to the library quickly. I created a playlist called &#8220;80s&#8221; and then added each of the songs I wanted into that list. Once I had the list the way I liked it, I clicked on the share link (under &#8220;options&#8221;) and created this widget.</p>
<p><strong>The interface is simple and the whole site is very easy to use. </strong>I am not sure if any of this is legal or not, but it sure is fun! Enjoy!</p>
<p>The post <a href="http://zeek.com/blown-away-by-grooveshark/">Blown Away By Grooveshark</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/blown-away-by-grooveshark/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why Should This Headline Be My Status Update?</title>
		<link>http://zeek.com/why-should-this-headline-be-my-status-update/</link>
		<comments>http://zeek.com/why-should-this-headline-be-my-status-update/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 22:16:51 +0000</pubDate>
		<dc:creator>Jeff Turner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[press this]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://zeek.com/?p=4140</guid>
		<description><![CDATA[<p>I think we can be smarter about how Wordpress communicates with the social web.</p><p>The post <a href="http://zeek.com/why-should-this-headline-be-my-status-update/">Why Should This Headline Be My Status Update?</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><strong>I want a different way to post updates about my blog to the social web directly from WordPress.</strong></p>
<p><img class="alignright size-full wp-image-4141" title="ZeekStatusMessage" src="http://zeek.com/wp-content/uploads/2010/10/ZeekStatusMessage.jpg" alt="" width="472" height="237" />The universally accepted &#8220;send an update to Twitter using the headline via the one allowed account tied to my blog when I hit publish&#8221; option just ain&#8217;t cutting it for me anymore.</p>
<p><strong>Can we be smarter about this?</strong> A headline is not always the best status update message. I may want to hit publish and send a message out to Twitter or Facebook at a later time or to each one at different times. I may want to make sure a second or third update gets sent out later in the day or the following week. I might want those to highlight the post from a different angle.</p>
<p>And I&#8217;d like to do all of those things at the same time that I&#8217;m writing the post, so I don&#8217;t have to think about it or remember to do it later. Let me choose from several different Twitter accounts. Let me publish to those different Twitter accounts at different times, with different messages, suited for their specific audiences. <em>Is this too much to ask?</em></p>
<p><strong>One more thing&#8230;</strong> add this same functionality to the Press This bookmarklet. This would make me happy. For now.</p>
<p>If you know of a plug-in that will make this happen right now, let me know.</p>
<p>The post <a href="http://zeek.com/why-should-this-headline-be-my-status-update/">Why Should This Headline Be My Status Update?</a> appeared first on <a href="http://zeek.com">Zeek Interactive</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zeek.com/why-should-this-headline-be-my-status-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.242 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-15 20:11:37 -->
