<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Zero 1 Design</title>
	
	<link>http://www.zero1design.com</link>
	<description>Mostly about 1's sometimes 0's</description>
	<lastBuildDate>Sat, 19 May 2012 16:50:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/zero1design/jVno" /><feedburner:info uri="zero1design/jvno" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>The JQuery Trap</title>
		<link>http://feedproxy.google.com/~r/zero1design/jVno/~3/0Nz0m84pd34/</link>
		<comments>http://www.zero1design.com/2012/05/19/the-jquery-trap/#comments</comments>
		<pubDate>Sat, 19 May 2012 15:53:10 +0000</pubDate>
		<dc:creator>Kelly Martinez</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.zero1design.com/?p=1152</guid>
		<description><![CDATA[JQuery is the awesomesauce. I mean it&#8217;s the bomb and John Resig (the creator) is a JavaScript god. JQuery is a very useful tool…..in the right scenario. If you don&#8217;t know what JQuery is it&#8217;s a JavaScript library that greatly simplifies accessing the DOM in the web browser.. For example, instead of selecting all the content with [...]]]></description>
			<content:encoded><![CDATA[<p>JQuery is the awesomesauce. I mean it&#8217;s the bomb and <a href="http://ejohn.org/" target="_blank">John Resig</a> (the creator) is a JavaScript god.</p>
<p>JQuery is a <strong>very </strong>useful tool…..in the right scenario.</p>
<p>If you don&#8217;t know what JQuery is it&#8217;s a JavaScript library that greatly simplifies accessing the DOM in the web browser..</p>
<p>For example, instead of selecting all the content with &#8220;myid&#8221; in the id attribute in JavaScript:</p>
<pre class="brush:js">Document.getElementBy("myid");</pre>
<p>You can do this in JQuery:</p>
<pre class="brush:js">$("#id");</pre>
<p>Or, say you have this HTML:</p>
<pre class="brush:html">
<div id="imageButton">hi</div>
<div id="2">hi</div>
<div id="imageButton">hi</div>
<div id="3">hi</div>
<div id="imageButton">hi</div>
<div id="4">hi</div>
</pre>
<p>Instead of doing this in JavaScript (which pulls in all the elements by tag, then runs a loop to check if it has a class of &#8220;imageButton&#8221; and sets the background of those to red) :</p>
<pre class="brush:js">var allLinks = document.getElementsByTagName("*"), i;
for (i in allLinks)
{
if ((" " + allLinks[i].className + " ").indexOf("imageButton") &gt; -1) {
allLinks[i].style.backgroundColor = "red";
}
}</pre>
<p>You can do this in JQuery with one line:</p>
<pre class="brush:js">$(“.imageButton”).css(“background”, “red”);​​​​​</pre>
<p>Much simpler right? Yes, but don&#8217;t be fooled, it comes at a cost.</p>
<p>Currently the JavaScript version of this script clocks in at 189 bytes minimized by the default settings of the YUI Compressor (<a href="http://refresh-sf.com/yui/">http://refresh-sf.com/yui/</a>).</p>
<p>The JQuery version comes in at 42 bytes <strong>PLUS</strong> the size of the JQuery library minimized (which on my PC is 92.6 KB). So it comes in at closer to the 92.7 KB size.</p>
<p>This difference is stark if you convert them to bytes.</p>
<p><strong>94,882.4 bytes for JQuery and 189 bytes for pure JS.</strong></p>
<p>This is a pretty big difference.</p>
<p>And yes, I realize, networks are faster these days. The amount of time to download this isn&#8217;t that significant really.</p>
<p>However, let&#8217;s say this code and functionality is much more significant in regards to JavaScript it requires. Maybe it does some really cool JavaScript&#8217;ing thing that requires hundreds of lines of pure JS.</p>
<p>I would pose that isn&#8217;t it a waste to have to download the entire JQuery library to run simple selects throughout the application?</p>
<p>The rule of thumb I go by is if I need more than two or three JQuery functions, I&#8217;m using the JQuery UI, I&#8217;m using JQuery mobile, or I&#8217;m under a deadline that prohibits me from essentially rewriting the JQuery code in pure JS then I will go ahead and include the library.</p>
<p>However, if it&#8217;s an easy swap to pure JS I will almost always choose that route. I may write the JQuery first, but on refactoring I go back through and swap for pure JS.</p>
<p>Another option to make it easier to write good JavaScript (that passes JSLint) is CoffeeScript (<a href="http://coffeescript.org/">http://coffeescript.org/</a>) as it helps write pure JavaScript in a much easier way to the developer.</p>
<p>Bottom line, if you want some easy and quick functionality and the trade-offs are nominal then JQuery (or other libraries) are the way to go.</p>
<p>However, if you&#8217;re concerned about speed, size, and overall performance pure JS is your friend.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zero1design/jVno?a=0Nz0m84pd34:dD7HbO63P1c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zero1design/jVno?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zero1design/jVno?a=0Nz0m84pd34:dD7HbO63P1c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/zero1design/jVno?i=0Nz0m84pd34:dD7HbO63P1c:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/zero1design/jVno/~4/0Nz0m84pd34" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zero1design.com/2012/05/19/the-jquery-trap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.zero1design.com/2012/05/19/the-jquery-trap/</feedburner:origLink></item>
		<item>
		<title>GiveCamp Greeley/NoCo Wrapup</title>
		<link>http://feedproxy.google.com/~r/zero1design/jVno/~3/w-FpJQ4nbzs/</link>
		<comments>http://www.zero1design.com/2012/05/11/givecamp-greeleynoco-wrapup/#comments</comments>
		<pubDate>Fri, 11 May 2012 23:16:41 +0000</pubDate>
		<dc:creator>Kelly Martinez</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[coloradogivecamp]]></category>
		<category><![CDATA[givecamp]]></category>
		<category><![CDATA[greeley]]></category>

		<guid isPermaLink="false">http://www.zero1design.com/?p=1131</guid>
		<description><![CDATA[So last weekend we held the Northern Colorado GiveCamp. A quick synopsis of GiveCamp: GiveCamp is a weekend-long event where technology professionals from designers, developers and database administrators to marketers and web strategists donate their time to provide solutions for non-profit organizations. Overall we had about 20 I.T. professionals onsite helping out 6 charities. Not [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.zero1design.com/wp-content/uploads/2012/05/logo.png"><img class="alignleft size-full wp-image-1137" title="GiveCampLogo" src="http://www.zero1design.com/wp-content/uploads/2012/05/logo.png" alt="Colorado GiveCamp" width="275" height="120" /></a>So last weekend we held the Northern Colorado GiveCamp.</p>
<p>A quick synopsis of GiveCamp:</p>
<p><em>GiveCamp is a weekend-long event where technology professionals from designers, developers and database administrators to marketers and web strategists donate their time to provide solutions for non-profit organizations.<br />
</em></p>
<p>Overall we had about 20 I.T. professionals onsite helping out 6 charities. Not bad for a sleepy little college town.</p>
<p>We had fun, food, and long hours of coding. In the end we successfully provided the following for charities in Colorado and the Greeley area:</p>
<p><strong>Camp To Belong<br />
</strong>An international non-profit 501 (c) (3) organization, has been actively re-uniting brothers and sisters placed in separate foster, adoptive or kinship homes through Summer Camp Programs and year round events since 1995<strong><br />
</strong>Built a website: <a href="http://ctbcolorado.org">http://ctbcolorado.org</a><strong><br />
</strong></p>
<p><strong>SOAR Youth and Adult Choir<br />
</strong>Gives opportunities for at-risk children to become involved in a safe community of mentoring adult performers, focusing on appreciation of the arts with an emphasis on developing skills necessary for success in life.<strong><br />
</strong>Built a website: <a href="http://soarchoir.org">http://soarchoir.org</a><strong><br />
</strong></p>
<p><strong>Global Refugee Center<br />
</strong>The Global Refugee Center, Inc. is a 501 (c) 3 non-profit in Greeley, CO that works with the refugee population to improve their quality of life and assists them in achieving self-sufficiency.<br />
Built a website: <a href="http://grccolorado.org">http://grccolorado.org</a></p>
<p><strong>Mountain View Young Marines<br />
</strong>The Mountain View Young Marines is a unit ran by the youth, for the youth, supervised by highly capable adult volunteers. We are teaching today&#8217;s youth to be tomorrow&#8217;s leaders by providing them with a safe drug free environment which will encourage their leadership abilities.<strong><br />
</strong>Built a website: <a href="http://www.mvyoungmarines.com">http://www.mvyoungmarines.com</a></p>
<p><strong>High Plains Chautauqua<br />
</strong>High Plains Chautuaqua is great fun for anyone between 8 and 80! You&#8217;ll learn a lot about history, enjoy the excitement of live theatre.<strong><br />
</strong>Built a website. (Deployment pending DNS updates) <a href="http://www.highplainschautauqua.org/">http://www.highplainschautauqua.org/</a></p>
<p><strong>Greeley Imagination Station<br />
</strong>Imagination Station is a non-profit, 100% volunteer based, parent/child interactive playgroup in Greeley.<strong><br />
</strong>Built mobile site: <a href="http://m.greeleyimaginationstation.org">http://m.greeleyimaginationstation.org</a><strong><br />
</strong></p>
<p>I&#8217;d like to again personally thank all the sponsors (<a href="http://coloradogivecamp.org/sponsor.aspx">http://coloradogivecamp.org/sponsor.aspx</a>) as well as the hard working volunteers that gave so freely with their time.</p>
<p>Stay tuned to the <a href="http://coloradogivecamp.org">coloradogivecamp.org</a> site for updates on the next GiveCamp (tentatively scheduled for October in Colorado Springs).</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zero1design/jVno?a=w-FpJQ4nbzs:mxdYTL1jIw0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zero1design/jVno?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zero1design/jVno?a=w-FpJQ4nbzs:mxdYTL1jIw0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/zero1design/jVno?i=w-FpJQ4nbzs:mxdYTL1jIw0:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/zero1design/jVno/~4/w-FpJQ4nbzs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zero1design.com/2012/05/11/givecamp-greeleynoco-wrapup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.zero1design.com/2012/05/11/givecamp-greeleynoco-wrapup/</feedburner:origLink></item>
		<item>
		<title>Getting Started With Massive Micro-ORM (video)</title>
		<link>http://feedproxy.google.com/~r/zero1design/jVno/~3/jHc5dz8m05U/</link>
		<comments>http://www.zero1design.com/2012/04/20/getting-started-with-massive-micro-orm-video/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 14:52:49 +0000</pubDate>
		<dc:creator>Kelly Martinez</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[massive]]></category>

		<guid isPermaLink="false">http://www.zero1design.com/?p=1126</guid>
		<description><![CDATA[This is a basic tutorial on getting started with Massive Micro-ORM. First video post. Be gentle and enjoy! Massive on Github: link]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.youtube.com/embed/gLPfcqMhrU8" frameborder="0" width="420" height="315"></iframe></p>
<p>This is a basic tutorial on getting started with Massive Micro-ORM.</p>
<p>First video post. Be gentle and enjoy!</p>
<p>Massive on Github: <a href="https://github.com/robconery/massive">link</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zero1design/jVno?a=jHc5dz8m05U:3Ti9ddX2C3w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zero1design/jVno?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zero1design/jVno?a=jHc5dz8m05U:3Ti9ddX2C3w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/zero1design/jVno?i=jHc5dz8m05U:3Ti9ddX2C3w:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/zero1design/jVno/~4/jHc5dz8m05U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zero1design.com/2012/04/20/getting-started-with-massive-micro-orm-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.zero1design.com/2012/04/20/getting-started-with-massive-micro-orm-video/</feedburner:origLink></item>
		<item>
		<title>GiveCamp Greeley</title>
		<link>http://feedproxy.google.com/~r/zero1design/jVno/~3/U_hYDv-E2mA/</link>
		<comments>http://www.zero1design.com/2012/04/18/givecamp-greeley/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 14:00:57 +0000</pubDate>
		<dc:creator>Kelly Martinez</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[colorado]]></category>

		<guid isPermaLink="false">http://www.zero1design.com/?p=1108</guid>
		<description><![CDATA[So it&#8217;s time once again for another GiveCamp and this time we&#8217;re hosting it here in my hometown Greeley, Colorado. It looks like we have some great sponsors lined up for the event, the charities are filling in nicely, and volunteers are trickling in. If you happen to be a GiveCamp &#8220;newb&#8221; and are on [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; padding: 0px 20px 20px 0px;"><a href="http://www.zero1design.com/wp-content/uploads/2012/04/Camp.png"><img class="size-full wp-image-1114" title="Camp" src="http://www.zero1design.com/wp-content/uploads/2012/04/Camp.png" alt="" width="253" height="64" /></a></div>
<p>So it&#8217;s time once again for another GiveCamp and this time we&#8217;re hosting it here in my hometown Greeley, Colorado.</p>
<p>It looks like we have some great sponsors lined up for the event, the charities are filling in nicely, and volunteers are trickling in.</p>
<p>If you happen to be a GiveCamp &#8220;newb&#8221; and are on the fence about participating let me fill you in a bit more about how the event typically goes.</p>
<p>On the evening of May 4<sup>th</sup> we will have all the volunteers get together and shortly thereafter pair folks off according to skill set and assign a project manager to the team.</p>
<p>Let me just say that you <strong>don&#8217;t</strong> have to be an &#8220;Uber Coder&#8221; to participate. We have DBAs, Web Designers, Project Managers, etc. participating as well.</p>
<p>Once the teams are sorted the strategizing starts to take place and the project outline and tasks start to take shape.</p>
<p>From there we work to the goal and your team will present the final product to the charities on Sunday afternoon.</p>
<p>Since we will be having folks from as far as Colorado Springs you are welcome to bring your sleeping bag and crash out, or if you live close you&#8217;re welcome to set your own hours.</p>
<p>Being at the camp full time isn&#8217;t a requirement.</p>
<p>I have to say my last experience (<a href="http://www.zero1design.com/2011/10/24/colorado-give-camp-2011-a-generous-outpouring-of-code/">see post</a>) was one of hard work, but it was a very gratifying payoff to see the charities get the final product at the end.</p>
<p>We are going to have some nice swag, free meals, and a nice fat internet connection for volunteers.<br />
Just bring your laptop and your expertise.</p>
<p>GiveCamp: <a title="Colorado GiveCamp Website" href="http://coloradogivecamp.org">Website</a><br />
Link to sign up: <a href="http://www.eventbrite.com/event/3254535403?ref=ebtnebregn">http://www.eventbrite.com/event/3254535403?ref=ebtnebregn</a></p>
<p>Hope to see you there!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zero1design/jVno?a=U_hYDv-E2mA:T3syHic45U4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zero1design/jVno?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zero1design/jVno?a=U_hYDv-E2mA:T3syHic45U4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/zero1design/jVno?i=U_hYDv-E2mA:T3syHic45U4:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/zero1design/jVno/~4/U_hYDv-E2mA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zero1design.com/2012/04/18/givecamp-greeley/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.zero1design.com/2012/04/18/givecamp-greeley/</feedburner:origLink></item>
		<item>
		<title>Do The Kan Kanban?</title>
		<link>http://feedproxy.google.com/~r/zero1design/jVno/~3/47K6QXWTQls/</link>
		<comments>http://www.zero1design.com/2012/02/23/do-the-kan-kanban/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 15:00:34 +0000</pubDate>
		<dc:creator>Kelly Martinez</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[kanban]]></category>

		<guid isPermaLink="false">http://www.zero1design.com/?p=1096</guid>
		<description><![CDATA[What is Kanban? Kanban means &#8220;billboard&#8221; or &#8220;sign&#8221; in Japanese. Originally developed as a way for Toyota to optimize their assembly line flow it has since been used for numerous other industries and even in your personal life as a form of organization. Getting started is pretty easy. First assemble the following items: Whiteboard Sticky [...]]]></description>
			<content:encoded><![CDATA[<p>What is Kanban?</p>
<p>Kanban means &#8220;billboard&#8221; or &#8220;sign&#8221; in Japanese. Originally developed as a way for Toyota to optimize their assembly line flow it has since been used for numerous other industries and even in your personal life as a form of organization.</p>
<p>Getting started is pretty easy.</p>
<p>First assemble the following items:</p>
<p>Whiteboard<br />
Sticky Notes (all same color is fine)<br />
Pen<br />
Dry Erase Markers</p>
<p><strong>First Steps<br />
</strong>Start by visualizing your workflow. This is one of the essential keys of Kanban.<strong><br />
</strong></p>
<p>Think about how you do a project, clean the house, or get tasks done. Then split your whiteboard into those sections with your markers based on that flow. Someone on twitter said &#8220;I&#8217;ve never done the same Kanban twice&#8221;. This is because it&#8217;s not rigid but extremely malleable. You grow with Kanban, not into it.</p>
<p>My Kanban at work consists of 4 columns (Ready, Doing Today, Doing, Done), but yours can be anything you want and named anything you want. There is no &#8220;wrong way&#8221;. For the sake of this post let start off with the simplest form &#8211; Ready, Doing, Done.</p>
<div class="wp-caption alignnone" style="width: 603px"><img src="http://www.zero1design.com/wp-content/uploads/2012/02/022312_0633_DoTheKanKan1.jpg" alt="" width="593" height="444" /><p class="wp-caption-text">Basic Portable Kanban</p></div>
<p><strong>Mentally Unloading<br />
</strong>Now it&#8217;s time to pull all that psychic weight out of your head. Take your pen and put each task you want to get done on separate sticky notes. No need to go into detail, you can always revisit these and break them into more notes. So you might write down &#8220;take the car to the mechanic&#8221;, &#8220;call the landlord&#8221;, &#8220;finish the report&#8221;, or &#8220;push changes to source control&#8221;. Write out everything you can think of to accomplish your long-term or daily goal.</p>
<p><strong>The Backlog<br />
</strong>Once you&#8217;ve unloaded it&#8217;s time to put them on the board. The way I do this is to actually stick them off the board first in my &#8220;Backlog&#8221;. This is the area that I keep when I have new things to add. I also am constantly re-prioritizing this and the &#8220;Ready&#8221; area with new and existing tasks.</p>
<div class="wp-caption alignnone" style="width: 601px"><img src="http://www.zero1design.com/wp-content/uploads/2012/02/022312_0633_DoTheKanKan2.jpg" alt="" width="591" height="443" /><p class="wp-caption-text">Items In The Backlog</p></div>
<p><strong>Limiting Your &#8220;WIP&#8221;</strong><br />
WIP stands for Work in Progress. This is the other essential key of Kanban. Limit your work in progress.<br />
To do this you will set limits of how many items (or notes) can be in your Doing or To Do columns at one time. Think of a juggler. A good juggler can handle juggling two items, or maybe three. Only really good jugglers can handle 4 or 5.</p>
<p>The key to Kanban success is to find your limits. Start off small and then work up. Think about what your limit is and why. It may surprise you that your limits can change based on the project or even mid-project. It&#8217;s ok, adjust these limits as you see fit. Mine in the photo below have a limit of 1 item WIP.</p>
<div class="wp-caption alignnone" style="width: 594px"><img src="http://www.zero1design.com/wp-content/uploads/2012/02/022312_0633_DoTheKanKan3.jpg" alt="" width="584" height="438" /><p class="wp-caption-text">Limiting WIP. Items flowing through.</p></div>
<p><strong>Pulling Items</strong><br />
Visualize a supermarket and how they stock their shelves. The customers at the end of the chain &#8220;pulling&#8221; these items. The process by which the store keeps shelves stocked is only by what gives the best profit/success and, ultimately, what is being &#8220;pulled&#8221; downstream.</p>
<p>Prioritize in you Backlog, move the tasks into Ready, to Doing, then Done. Watch how your WIP changes and how items flow. Tweak it where it fits your process and work flow best. This is your Kaizen or &#8220;improvement&#8221;.</p>
<div class="wp-caption alignnone" style="width: 591px"><img src="http://www.zero1design.com/wp-content/uploads/2012/02/022312_0633_DoTheKanKan4.jpg" alt="" width="581" height="436" /><p class="wp-caption-text">Pulling To Done</p></div>
<p>Visualize your flow. Limit Your WIP. You are now ready to Kanban.</p>
<p><em>Recommended Reading: Personal Kanban by Jim Benson <a href="http://www.amazon.com/Personal-Kanban-Mapping-Work-Navigating/dp/1453802266/ref=sr_1_1?ie=UTF8&amp;qid=1329978749&amp;sr=8-1">http://www.amazon.com/Personal-Kanban-Mapping-Work-Navigating/dp/1453802266/ref=sr_1_1?ie=UTF8&amp;qid=1329978749&amp;sr=8-1</a></em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zero1design/jVno?a=47K6QXWTQls:J4Br5ytRyco:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zero1design/jVno?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zero1design/jVno?a=47K6QXWTQls:J4Br5ytRyco:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/zero1design/jVno?i=47K6QXWTQls:J4Br5ytRyco:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/zero1design/jVno/~4/47K6QXWTQls" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.zero1design.com/2012/02/23/do-the-kan-kanban/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.zero1design.com/2012/02/23/do-the-kan-kanban/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Object Caching 502/569 objects using disk: basic

Served from: www.zero1design.com @ 2012-05-19 11:13:12 -->

