<?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>Flowz &#187; General</title>
	<atom:link href="http://flowz.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://flowz.com</link>
	<description>Our brain goo cup overfloweth</description>
	<lastBuildDate>Thu, 28 Jul 2011 02:31:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Apple Disabled Audio/Video Playback in HTML5</title>
		<link>http://flowz.com/2011/03/apple-disabled-audiovideo-playback-in-html5/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=apple-disabled-audiovideo-playback-in-html5</link>
		<comments>http://flowz.com/2011/03/apple-disabled-audiovideo-playback-in-html5/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 03:22:11 +0000</pubDate>
		<dc:creator>Mike Wille</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://flowz.com/?p=1141</guid>
		<description><![CDATA[While putting together an HTML5 prototype for a client, we ran into an unexpected hurdle: Apple has disabled programmatic playback of audio and video in HTML5. Essentially, the only way a webpage can play audio or video for a user, is if that user clicks a play button. This works: &#60;a href="javascript:audio.play()"&#62;Play&#60;/a&#62; This doesn&#8217;t: &#60;script&#62;...]]></description>
			<content:encoded><![CDATA[<p>While putting together an HTML5 prototype for a client, we ran into an unexpected hurdle:</p>
<p>Apple has disabled programmatic playback of audio and video in HTML5.  Essentially, the only way a webpage can play audio or video for a user, is if that user clicks a play button.</p>
<p>This works:</p>
<pre>
&lt;a href="javascript:audio.play()"&gt;Play&lt;/a&gt;
</pre>
<p>This doesn&#8217;t:</p>
<pre>
&lt;script&gt;
setTimeout("audio.play()", 1000);
&lt;/script&gt;
</pre>
<p>Despite all of Apple&#8217;s statements about being pro web standards, they have crippled HTML5 as an App platform.  Here is their reasoning:</p>
<blockquote><p>
In Safari on iOS (for all devices, including iPad), where the user may be on a cellular network and be charged per data unit, preload and autoplay are disabled. No data is loaded until the user initiates it.<br /><a href="http://developer.apple.com/library/safari/#documentation/AudioVideo/Conceptual/Using_HTML5_Audio_Video/Device-SpecificConsiderations/Device-SpecificConsiderations.html" target="_blank">Source</a></p></blockquote>
<p>Even though they state autoplay is disabled, all JavaScript initiated play() calls are ignored in MobileSafari.</p>
<p>That reasoning is hogwash.  Two out of the three iOS devices are sold wifi only (iPad &#038; iPod Touch).  This business decision (not a technical one, mind you) completely eliminates an entire class of web applications.  Those that would mimic native Apps found in the Apple App Store.</p>
<p>Awesome HTML5 Games like: <a href="http://playbiolab.com/" target="_blank">Bio Lab</a> and HTML5 game engines like: <a href="http://impactjs.com/" target="_blank">Impact</a> are now useless on iOS.  A simple thing like making a click sound when a user touches a button and playing background audio at the same time will not work.</p>
<p>While desperately searching for workarounds, I&#8217;ve found a few possible solutions.  However, as of iOS 4.2.1, even these are now all disabled by Apple.  There has been surprisingly little noise about this.  I suspect that it has flown under the radar so far.</p>
<h3>Technical Details</h3>
<p>I spent quite a bit of time hunting down possible workarounds.  Here is what I found (applies to both audio and video):</p>
<ol>
<li>MobileSafari will initiate a audiotag.load() inline when audiotag.play() is called without audiotag.load() called first.</li>
<li>MobileSafari will not allow audiotag.load() to be called by asynchronous javascript.  (i.e., not initiated by a user action.)</li>
<li>You must call audiotag.load() then audiotag.play() on MobileSafari.  Because load() has to be user initiated, we must call load() on every audio track that will be played in the current chapter.  (A.K.A., preloading)</li>
<li>Preloading using existing methods does not work because MobileSafari does not send onload events.  We must listen to the progress event to determine an asset as loaded.  (Platform specific workaround)</li>
<li>MobileSafari will give a &#8220;stalled&#8221; event when trying to preload a second audio track after the first is loaded.  It will not load the second track.  Calls to play() on this track will fail silently.  (Likely, this is a memory issue.  MobileSafari is working with 256 MB of memory, it probably can&#8217;t hold more than a few tracks in memory and, thus, will not allow more than one audio/video track loaded.  We would typically just not preload the audio tracks.  However, because of #2, we are now in Game Over Man)</li>
</ol>
<p>As a last resort, I created a shell iPad App that had a single UIWebView.  You can use these properties:</p>
<pre>
UIWebView.allowsInlineMediaPlayback = YES;
UIWebView.mediaPlaybackRequiresUserAction = NO;
</pre>
<p>This will allow you to work around the issue.  But, hey, we are no longer an HTML5 app available online now are we?</p>
]]></content:encoded>
			<wfw:commentRss>http://flowz.com/2011/03/apple-disabled-audiovideo-playback-in-html5/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Now Hiring</title>
		<link>http://flowz.com/2011/02/now-hiring/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=now-hiring</link>
		<comments>http://flowz.com/2011/02/now-hiring/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 16:37:35 +0000</pubDate>
		<dc:creator>Mike Wille</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://flowz.com/?p=1135</guid>
		<description><![CDATA[Hello Folks! I am happy to announce that Flowz is currently hiring for a variety of roles around iOS development in the Detroit Metro Area. Now you maybe thinking, &#8220;Damn, I really would love to work for such an awesome, cutting-edge company. But I don&#8217;t know Jack about iOS!&#8221; Well, that&#8217;s just fine! We have...]]></description>
			<content:encoded><![CDATA[<p>Hello Folks!</p>
<p>I am happy to announce that Flowz is currently hiring for a variety of roles around iOS development in the Detroit Metro Area.</p>
<p>Now you maybe thinking, &#8220;Damn, I really would love to work for such an awesome, cutting-edge company.  But I don&#8217;t know Jack about iOS!&#8221;  </p>
<p>Well, that&#8217;s just fine!  We have internship positions open, as well.  We&#8217;ll train you in the Flowz way!  Details and applications go here:</p>
<p><a href="http://www.internships.com/posting/iOS-Developer">http://www.internships.com/posting/iOS-Developer</a></p>
<p>And some of you might be saying, &#8220;I&#8217;m not ready for a long term relationship, yet.&#8221;  That&#8217;s fine too.  We love freelancers!  We have a cozy network of people with no ties to us other than their 1099.  Introduce yourself and let&#8217;s make something great!</p>
<p><a href="http://flowz.com/home/hiring/">Apply within&#8230;</a></p>
<p>We are looking forward to meeting you!</p>
]]></content:encoded>
			<wfw:commentRss>http://flowz.com/2011/02/now-hiring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raveal Voice Opened to Free Plans</title>
		<link>http://flowz.com/2010/10/raveal-voice-opened-to-free-plans/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=raveal-voice-opened-to-free-plans</link>
		<comments>http://flowz.com/2010/10/raveal-voice-opened-to-free-plans/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 20:04:35 +0000</pubDate>
		<dc:creator>Mike Wille</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://flowz.com/?p=990</guid>
		<description><![CDATA[We are working on some new things for Raveal. I can&#8217;t wait to talk about that. In the mean time, I have some other goodies. We added Raveal Voice some time ago as a way to better capture your professional profile. Your resume and portfolio are great for the long term vision of what you...]]></description>
			<content:encoded><![CDATA[<p>We are working on some new things for Raveal.  I can&#8217;t wait to talk about that.  In the mean time, I have some other goodies.</p>
<p>We added Raveal Voice some time ago as a way to better capture your professional profile.  Your resume and portfolio are great for the long term vision of what you have done.  But the sampling rate of projects, galleries, and employers isn&#8217;t quite high enough to match the rapid updates of today&#8217;s social networks.  Additionally, you likely care about your job and talk and write about it outside of work.  A resume and portfolio doesn&#8217;t capture this.  Raveal Voice does.</p>
<p>It&#8217;s very simple to configure:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-995" title="Clickity-Click to Add Networks" src="http://flowz.com/wp-content/uploads/2010/10/Screen-shot-2010-10-04-at-4.03.35-PM.png" alt="" width="791" height="319" /></p>
<p>Visitors to your profile see your content from other networks:</p>
<p><img class="aligncenter size-medium wp-image-991" title="Youtube, Blog, and Twitter" src="http://flowz.com/wp-content/uploads/2010/10/Screen-shot-2010-10-04-at-3.54.14-PM-300x200.png" alt="" width="300" height="200" /></p>
<p>Raveal Voice was introduced as an option only available to Pro users.  Today we are announcing that going forward, Raveal Voice will be available for all Raveal individual accounts holders.</p>
]]></content:encoded>
			<wfw:commentRss>http://flowz.com/2010/10/raveal-voice-opened-to-free-plans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing the new Flowz.com</title>
		<link>http://flowz.com/2010/07/introducing-the-new-flowz-com/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=introducing-the-new-flowz-com</link>
		<comments>http://flowz.com/2010/07/introducing-the-new-flowz-com/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 16:34:05 +0000</pubDate>
		<dc:creator>Mike Wille</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://flowz.com/?p=787</guid>
		<description><![CDATA[For the longest time, flowz.com (and the blog, over.flowz.com) was a dark plain website.  This was intentional.  When we started out, we weren&#8217;t quite sure who we were just yet.  Flowz itself was dark and mysterious.  Why bother trying to answer that question when we could be working on new apps? Just about every second...]]></description>
			<content:encoded><![CDATA[<p>For the longest time, flowz.com (and the blog, over.flowz.com) was a dark plain website.  This was intentional.  When we started out, we weren&#8217;t quite sure who we were just yet.  Flowz itself was dark and mysterious.  Why bother trying to answer that question when we could be working on new apps?</p>
<p>Just about every second of our first two years was spent working on products.  This past month, we decided to take a breather and work on our own website.  With this launch, you&#8217;ll find more about who we are as a company.  Not just our products, but our services and even our open source contributions.</p>
<p>We are putting more focus on development.  You&#8217;ll see new blog posts about development tips and tricks.  (We have quite a few up our sleeve.)  I&#8217;m very happy about this.  Until now, all of my technical content was shoved out to a personal website.</p>
<p>Also, you might notice a new product being flashed on the home page.  That&#8217;s BounceOff.  We are quite proud of it but not yet ready to talk in depth about it.  However, if diving into new products and blazing the beta trail is your thing, go request an invite to join in at <a href="http://bounceoff.com" target="_blank">http://bounceoff.com</a>.</p>
<p>Now, back to the coal mines&#8230;</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-836 plain" title="logo-214" src="http://flowz.com/wp-content/uploads/2010/07/logo-214.png" alt="" width="214" height="160" /></p>
]]></content:encoded>
			<wfw:commentRss>http://flowz.com/2010/07/introducing-the-new-flowz-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flickr</title>
		<link>http://flowz.com/2009/12/flickr/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flickr</link>
		<comments>http://flowz.com/2009/12/flickr/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 17:32:26 +0000</pubDate>
		<dc:creator>Mike Wille</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://over.flowz.com/?p=637</guid>
		<description><![CDATA[Woohoo!  As of today, you can now link your Flickr account with your Voice tab.  To enable it, go to your Voice.  Click on Add Network.  Choose Flickr and click the &#8220;Login with Flickr&#8221; button. Here is a sample of what it looks like (with uninspiring techno geek images): I&#8217;m really excited to finally get...]]></description>
			<content:encoded><![CDATA[<p>Woohoo!  As of today, you can now link your Flickr account with your Voice tab.  To enable it, go to your Voice.  Click on Add Network.  Choose Flickr and click the &#8220;Login with Flickr&#8221; button.</p>
<p>Here is a sample of what it looks like (with uninspiring techno geek images):</p>
<div id="attachment_638" class="wp-caption alignnone" style="width: 567px"><img class="size-full wp-image-638" title="Screen shot 2009-12-18 at 12.27.49 PM" src="http://over.flowz.com/wp-content/uploads/2009/12/Screen-shot-2009-12-18-at-12.27.49-PM.png" alt="Flickr stream" width="557" height="179" /><p class="wp-caption-text">Flickr stream</p></div>
<p>I&#8217;m really excited to finally get this out to users.  This functionality was actually developed way back in August!  We had to disable it in production because Flickr&#8217;s approval process might be the only thing on the planet worse the the iPhone App Store approval process.  It took 5 months to get approved!</p>
<p>But hey, at least it is here now.</p>
]]></content:encoded>
			<wfw:commentRss>http://flowz.com/2009/12/flickr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Stats</title>
		<link>http://flowz.com/2009/06/browser-stats/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=browser-stats</link>
		<comments>http://flowz.com/2009/06/browser-stats/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 14:23:28 +0000</pubDate>
		<dc:creator>Mike Wille</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://over.flowz.com/?p=340</guid>
		<description><![CDATA[We have been seeing some significant traffic in 2009.  The result of that traffic makes for some interesting statistics. Our visits to Raveal, broken down by browser: 1. Safari 43.96% 2. Firefox 43.86% 3. Internet Explorer 7.22% 4. Chrome 3.15% 5. Opera 0.83% To me, the insanely interesting bit is that IE is only #3...]]></description>
			<content:encoded><![CDATA[<p>We have been seeing some significant traffic in 2009.  The result of that traffic makes for some interesting statistics.</p>
<p>Our visits to <a href="http://raveal.com/">Raveal</a>, broken down by browser:</p>
<table border="0">
<tbody>
<tr>
<td>1.</td>
<td>Safari</td>
<td>43.96%</td>
</tr>
<tr>
<td>2.</td>
<td>Firefox</td>
<td>43.86%</td>
</tr>
<tr>
<td>3.</td>
<td>Internet Explorer</td>
<td>7.22%</td>
</tr>
<tr>
<td>4.</td>
<td>Chrome</td>
<td>3.15%</td>
</tr>
<tr>
<td>5.</td>
<td>Opera</td>
<td>0.83%</td>
</tr>
</tbody>
</table>
<p>To me, the insanely interesting bit is that IE is only #3 and is actually way, way behind.  That Safari is our #1 browser, though Firefox is only a tenth of a precent behind, is also shocking.</p>
<p>Obviously, that shows that the majority of our audience is Mac users.</p>
<p>Looking at <a href="http://flowzit.com">Flowzit</a>, the numbers are similar:</p>
<table border="0">
<tbody>
<tr>
<td>1.</td>
<td>Safari</td>
<td>53.76%</td>
</tr>
<tr>
<td>2.</td>
<td>Firefox</td>
<td>39.75%</td>
</tr>
<tr>
<td>3.</td>
<td>Internet Explorer</td>
<td>3.52%</td>
</tr>
<tr>
<td>4.</td>
<td>Chrome</td>
<td>2.14%</td>
</tr>
<tr>
<td>5.</td>
<td>Camino</td>
<td>0.41%</td>
</tr>
</tbody>
</table>
<p>Though, IE is even further behind in this case.</p>
<p>If you are like me, then what you really want to know is when will the world finally kick the dead weight of IE6 to the curb?  Of course, our numbers are a minority representation.  But still.  Check it out:</p>
<p>Raveal:<br />
Internet Explorer 6: <strong>%0.0133</strong></p>
<p>Flowzit:<br />
Internet Explorer 6: <strong>%0.0028</strong></p>
<p>Wow!  That gives me warm and fuzzies!</p>
]]></content:encoded>
			<wfw:commentRss>http://flowz.com/2009/06/browser-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Worker Daily Article</title>
		<link>http://flowz.com/2009/05/web-worker-daily-article/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=web-worker-daily-article</link>
		<comments>http://flowz.com/2009/05/web-worker-daily-article/#comments</comments>
		<pubDate>Mon, 11 May 2009 21:10:29 +0000</pubDate>
		<dc:creator>Mike Wille</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://over.flowz.com/?p=329</guid>
		<description><![CDATA[There is an article on Raveal up over at WebWorkerDaily.com.  Check it out: http://webworkerdaily.com/2009/05/11/raveal-the-future-of-online-job-hunting/ We are thrilled to have such positive feedback for an app in its early stages.  And we are taking the criticism to heart.  :)  We are working on better categories right this minute. UPDATE 5/11: (later that day&#8230;) CNN Money has...]]></description>
			<content:encoded><![CDATA[<p>There is an article on Raveal up over at WebWorkerDaily.com.  Check it out:</p>
<p><a href="http://webworkerdaily.com/2009/05/11/raveal-the-future-of-online-job-hunting/">http://webworkerdaily.com/2009/05/11/raveal-the-future-of-online-job-hunting/</a></p>
<p>We are thrilled to have such positive feedback for an app in its early stages.  And we are taking the criticism to heart.  :)  We are working on better categories right this minute.</p>
<p>UPDATE 5/11: (later that day&#8230;) CNN Money has picked it up: <a href="http://money.cnn.com/news/newsfeeds/gigaom/startups/2009_05_11_raveal_the_future_of_online_job_hunting.html">http://money.cnn.com/news/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://flowz.com/2009/05/web-worker-daily-article/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launch Control, We Have Lift-off</title>
		<link>http://flowz.com/2008/11/tower-we-have-liftoff/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tower-we-have-liftoff</link>
		<comments>http://flowz.com/2008/11/tower-we-have-liftoff/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 17:13:26 +0000</pubDate>
		<dc:creator>Mike Wille</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Product]]></category>

		<guid isPermaLink="false">http://over.flowz.com/?p=17</guid>
		<description><![CDATA[There are any number of ways to start your very first introduction to the world.  In many ways, saying hello might be one of the more difficult things to do in life.  First impressions are always tough.  I can talk for days about the virtues of any particular programming language or the reasons behind the...]]></description>
			<content:encoded><![CDATA[<p>There are any number of ways to start your very first introduction to the world.  In many ways, saying hello might be one of the more difficult things to do in life.  First impressions are always tough.  I can talk for days about the virtues of any particular programming language or the reasons behind the use of a particular algorithm.  I can sit with you for hours discussing the benefits of simple and precise user interface design.  But for the life of me, I can&#8217;t figure out how to say hello and get it all started.</p>
<p>Instead, let me jump into why we created Flowzit when there are already dozens of &#8220;File Sharing&#8221; applications out there. It can be summed up pretty easily:</p>
<p>They all got it wrong.  ;)</p>
<p>Every one tries to simply solve the problem of email and large files, each with a different twist or trick.  But no one took a step back and looked at why we even need to send large files in the first place!  There is more to it then just uploading a file, typing a message, and sending an email.  That would be like just saying, &#8220;Here you go!&#8221;  When, many times, you really need to say, &#8220;Here you go, what do you think?&#8221;</p>
<p>That&#8217;s why Flowzit&#8217;s motto is: &#8220;Present, Share, Approve&#8221; and not &#8220;Here you go.&#8221;</p>
<p>Any file sent with Flowzit can be part of approval process.  Files are shown, for lack of a better term, visually so they look great as part of a presentation to prospective or existing clients.  For the non-business folk out there, having a conversation with an old friend and sharing pictures is actually really FUN and EASY.</p>
<div id="attachment_60" class="wp-caption aligncenter" style="width: 390px"><img class="size-full wp-image-60 " title="long-thread-example2" src="http://over.flowz.com/wp-content/uploads/2008/11/long-thread-example2.png" alt="Messages are more akin to forum posts" width="380" height="167" /><p class="wp-caption-text">Messages are more akin to forum posts</p></div>
<p style="text-align: left;">One more way we were thinking &#8220;out of the box&#8221; with Flowzit is our built-in support for &#8220;mini-sites.&#8221;  You can zip up an entire folder of HTML, images, css, and javascript and Flowzit will present it to your recipients (and only your recipients<sup id="fnr1-2008-11-18"><a href="#fn1-2008-11-18">1</a></sup>) in a preview window just like it was a single file.  You can even click through the site contents!  To see what I mean, check out this <a href="http://support.flowz.com/forums/11072/entries/14076">video howto</a> on mini-sites.</p>
<div id="attachment_33" class="wp-caption aligncenter" style="width: 360px"><img class="size-full wp-image-33 " title="screen-website" src="http://over.flowz.com/wp-content/uploads/2008/11/screen-website.png" alt="An entire website in a controlled environment!" width="350" height="270" /><p class="wp-caption-text">An entire website in a controlled environment!</p></div>
<p>Are we done after Flowzit?  No way.  Flowzit is actually the smallest player in an overall scheme of <span style="text-decoration: line-through;">world domination</span> a much larger product suite.  Of course, I&#8217;m not going to say anymore on that.  :)</p>
<p>If you haven&#8217;t already done so, go check <a href="http://flowzit.com">Flowzit</a> out.</p>
<div class="footnotes">
<hr />   </p>
<ol>
<li id="fn1-2008-11-18"> If you have ever had to present a website to a client before, you know what a pain it can be to manage that process.  Maintaining the server you demo on, updating secure user credentials, reminding users of forgotten credentials, etc&#8230; It is painful! <a class="footnoteBackLink" title="Jump back to footnote 1 in the post." href="#fnr1-2008-11-18">↩</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://flowz.com/2008/11/tower-we-have-liftoff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modicum of Reason*</title>
		<link>http://flowz.com/2008/11/modicum-of-reason/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=modicum-of-reason</link>
		<comments>http://flowz.com/2008/11/modicum-of-reason/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 15:41:56 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://over.flowz.com/?p=40</guid>
		<description><![CDATA[It has been reported that there are over 3 million, that&#8217;s 3,000,000, new small business created every year! We must be number 3,000,000 and 1.  Luckily, people are not presented with those facts on a daily basis or one might wonder just what is the point of starting a new business?  Competition like that must...]]></description>
			<content:encoded><![CDATA[<p>It has been reported that there are over 3 million, that&#8217;s 3,000,000, new small business created every year!</p>
<p>We must be number 3,000,000 and 1.  Luckily, people are not presented with those facts on a daily basis or one might wonder just what is the point of starting a new business?  Competition like that must be tough.  After all, given those numbers, odds are, you are competing against at least 10,000 other businesses trying to do the same thing.  How do you differentiate yourself?</p>
<p>Well, there are a few things I have learned during my time in various industries.  After years and years of pounding my head against the insurmountable brick wall of illogical reasoning, I have discovered the following rules, which I dub, &#8220;Flowz&#8217; Laws of Business Asininity:&#8221;</p>
<ol>
<li>Business is too complicated.</li>
<li>People, naturally, try to over complicate process.</li>
<li>Technology is getting in the way of getting things done.</li>
</ol>
<p>Obviously, these are not good laws.  We do not like them Sam-I-Am!  But what can we do about it?  Fight back!  That&#8217;s what!</p>
<p>Suddenly, we have a reason to be 3,000,000 and 1!  We must provide asylum to poor individuals and businesses running from the chaos of illogical reasoning.  Fear not my ravaged children, there is hope!</p>
<p>Our general philosophy is that these rules need not apply.  We can make business simple!  We can simplify process!  And, of course, technology should be our friend!</p>
<p>This is the FLOWZ way of thinking.</p>
<p>Our first step is to provide the technology that doesn&#8217;t break any of the 3 Asininity Laws.  We put together this blog as a second step towards pointing out the asinine and what to do about it.  Too many applications out there took input from customers and clients that started off with something like &#8220;We need to add this field&#8221; or &#8220;We must have two-phase commits&#8221; or &#8220;We must use this multi-step workflow&#8221;.  All that remains, when 1.0 is released, is complex software that, in the end, only a small number of people use.</p>
<p>Enter stage left: Flowzit.  This application provides a relatively simple work flow: sending and receiving large files.  However, we applied the FLOWZ way of thinking when we started the project by first asking WHY and not HOW.  That one decision changed everything.  I have a file, I need to send it to someone.  The question isn&#8217;t HOW shall I send this file, but WHY am I sending this file?</p>
<p>The result is an application that is simple, flexible, powerful, and most important of all, improves your daily workflow.</p>
<p>This is just our first step.  We have a long road ahead of us.  Why don&#8217;t you join in on the fun?  Every so often, check out this blog (<a href="http://over.flowz.com">over.flowz.com</a>), and of course, go create an account with <a href="http://flowzit.com">Flowzit.com</a>.</p>
<div class="footnotes">
<hr /><span style="font-size: 1.2em">*</span>Quantum of Solace was not as good as it could have been.</div>
]]></content:encoded>
			<wfw:commentRss>http://flowz.com/2008/11/modicum-of-reason/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

