<?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>Irresponsibles Anonymous</title>
	<atom:link href="http://www.irresponsibles-anonymous.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.irresponsibles-anonymous.com</link>
	<description>Rehab center for procrastinators and the chronically irresponsible</description>
	<lastBuildDate>Sun, 06 Feb 2011 23:19:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>P2PU &#8211; JS Chapters 2-3</title>
		<link>http://www.irresponsibles-anonymous.com/p2pu-js-chapters-2-3-226.htm</link>
		<comments>http://www.irresponsibles-anonymous.com/p2pu-js-chapters-2-3-226.htm#comments</comments>
		<pubDate>Sun, 06 Feb 2011 23:18:28 +0000</pubDate>
		<dc:creator>Alex Mrvaljevich</dc:creator>
				<category><![CDATA[webcraft]]></category>

		<guid isPermaLink="false">http://www.irresponsibles-anonymous.com/?p=226</guid>
		<description><![CDATA[Well, this is my second post regarding the JS 101 Class, and i must admit it took me quite a while to complete the reading, mostly because  of the unfamiliarity of much of the terms, I will try to break it down as simply as I can, partly because the assignment asks us to, but [...]]]></description>
			<content:encoded><![CDATA[<p>Well, this is my second post regarding the JS 101 Class, and i must admit it took me quite a while to complete the reading, mostly because  of the unfamiliarity of much of the terms, I will try to break it down as simply as I can, partly because the assignment asks us to, but also because if I delve too deep I might get lost again.</p>
<p>The first bit is all about the history behind JS, and that is covered pretty well in the last post, but the second part goes a bit further down into the types and variables of JavaScript.</p>
<p>Most of this is pretty much the same as I was taught in Calculus: Multiply First, resolve everything above the division, then divide… its simple arithmetic and should be straightforward to anyone that paid attention in math (if you didn’t… you should have, it was fun).</p>
<p>But to tell the computer how you want the data processed, you need to define what are called Variables; think of these as the “names” you give to the stuff that gets thrown around in your program.</p>
<p>There are many kinds of variables in JS, but because it is a “loose typed” language, you can pretty much throw anything in the “var” bucked and JS will figure out what to do with it afterwards… actually JavaScript is pretty permissive with how you develop, even though I have no experience with it I guess that it can lead to some fast development, and also some sloppy code if you don’t mind your standards and conventions.</p>
<p>Some basic stuff:</p>
<ul>
<li>Use &amp;&amp; when you want to check if both conditions are true in an argument</li>
<li>Use || if you want to check if either of the conditions are true</li>
<li>Use == to check if two things are alike</li>
<li>Use != to check if two things are different</li>
</ul>
<p>The rest of the chapter goes on to define some other basic functionalities of development, the famous IF statement that has been around for aaaaages and its variations (If else, for, while, etc.) where it really starts to get complicated in is functions (chapter 3).</p>
<p>To me the most difficult part to understand was the bit about recursion, I never seem to understand how the program knows when to stop, but I guess I will pick that up in further chapters, for now the basics are that you use functions as segments of code you can call up at any time to solve the different problems you come across during your program, They are there to help, but in a non-obtrusive way: variables defined within functions can use any name without interfering with other variables, they can be nested within each other to create complexity but still be unobtrusively tucked away in the “stack”.</p>
<p>Complex themes like recursion and “closure” took me a bit of a read to understand, but I hope as we delve deeper into the book the exercises help understand the rest. For now, here are my assignments:</p>
<p>Ex. 2.1:</p>
<p>((False) || (True)) &amp;&amp;</p>
<p>! ((False) &amp;&amp; (True))</p>
<p>(True) &amp;&amp; ! (False)</p>
<p>(True) &amp;&amp; (True)</p>
<p>(True)</p>
<p>Ex. 2.2:</p>
<p>var base = 2;<br />
var power = 2;</p>
<p>while (power &lt;=10 ) {</p>
<p>power = power + 1;<br />
base = base * 2;<br />
}<br />
print (base);</p>
<p>Ex.  2.3</p>
<p>var line = &#8221;";<br />
var count = 0;<br />
while (count &lt; 10) {<br />
line = line + &#8221;#&#8221;;<br />
print(line);<br />
count = count + 1;<br />
}</p>
<p>Ex. 2.4</p>
<p>var base = 1;</p>
<p>for (var power = 0; power &lt; 10; power = power + 1) {<br />
base = base * 2;<br />
}<br />
print(base);<br />
&#8212;&#8211;</p>
<p>var line = &#8221;";</p>
<p>for (var count = 0; count &lt; 10; count = count +1) {</p>
<p>line = line + &#8221;#&#8221;;<br />
print(line);</p>
<p>}</p>
<p>Ex. 2.5</p>
<p>var result = 4;<br />
var answer = Number(prompt(&#8220;2 + 2 is&#8230;?&#8221;, &#8221;you can do it&#8221;));</p>
<p>if (answer == 4)<br />
alert (&#8220;whow!&#8221;);<br />
else if (answer == 3)<br />
alert(&#8220;Almost!&#8221;);<br />
else if (answer == 5)<br />
alert (&#8220;Almost!&#8221;);<br />
else<br />
alert (&#8220;Something Mean <img src='http://www.irresponsibles-anonymous.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> &#8221;);</p>
<p>Ex. 2.6<br />
var answer;<br />
while (true) {<br />
answer = Number(prompt(&#8220;2 + 2 is&#8230;?&#8221;, &#8221;you can do it&#8221;));<br />
if (answer == 4) {<br />
alert (&#8220;whow!&#8221;);<br />
break;<br />
}<br />
else if (answer == 3 || answer == 5) {<br />
alert(&#8220;Almost!&#8221;);<br />
}<br />
else {<br />
alert (&#8220;Something Mean <img src='http://www.irresponsibles-anonymous.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> &#8221;);<br />
}<br />
}</p>
<p>Ex 3.1</p>
<p>function absolute(number) {<br />
var result = &#8221;";<br />
if (number &lt; 0)<br />
result = number * -1;<br />
else<br />
result = number;<br />
return result;<br />
}<br />
show (absolute(-3))</p>
<p>Ex 3.2</p>
<p>function greaterThan(number) {<br />
return function Test(argument) {<br />
return argument&gt;number;<br />
}<br />
}</p>
<p>var input = greaterThan (90);<br />
show (input(100));</p>
]]></content:encoded>
			<wfw:commentRss>http://www.irresponsibles-anonymous.com/p2pu-js-chapters-2-3-226.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla &#8211; P2PU School of webcraft</title>
		<link>http://www.irresponsibles-anonymous.com/mozilla-p2pu-school-of-webcraft-198.htm</link>
		<comments>http://www.irresponsibles-anonymous.com/mozilla-p2pu-school-of-webcraft-198.htm#comments</comments>
		<pubDate>Sun, 09 Jan 2011 17:12:19 +0000</pubDate>
		<dc:creator>Alex Mrvaljevich</dc:creator>
				<category><![CDATA[webcraft]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[learning]]></category>

		<guid isPermaLink="false">http://www.irresponsibles-anonymous.com/?p=198</guid>
		<description><![CDATA[For the following 10 weeks, i will digress from the original concept of this blog as i will (hopefully) be attending some classes at  Mozilla-P2PU School of Webcraft, this post in particular relates to a Javascript 101 class that i will be applying for. The assignment was to watch a video (here), a brief introduction [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.p2pu.org/sites/p2pu.org/themes/p2pu10/images/logos/logo-section-webcraft.png"><img class="alignleft" title="School of Webcraft" src="http://www.irresponsibles-anonymous.com/wp-content/uploads/2011/01/logo-section-webcraft.png" alt="School of Webcraft" width="150" height="65" /></a> For the following 10 weeks, i will digress from the original concept of this blog as i will (hopefully) be attending some classes at  Mozilla-P2PU School of Webcraft, this post in particular relates to a Javascript 101 class that i will be applying for.</p>
<p>The assignment was to watch a video (<a title="JavaScript Lecture" href="http://www.diycomputerscience.com/courses/course/JAVASCRIPT/competency/185" target="_blank">here</a>), a brief introduction to JavaScript and blog about it.</p>
<p>First, i want to clear something up&#8230; i finally understood the joke &#8220;Java is to Javascript as Car y to Carpet&#8221;.</p>
<p>The main reason why i was never interested in JS was that i thought it was just an version of Java, which through the video y learned has nothing to do with each other, which is a very unfortunate mishap for the language as it gets a very bad rep.</p>
<p>It is important also to state that i am not a web developer, as such this is all a bit daunting for me, but also necessary. I did not know about &#8220;loose typing&#8221; Vs. &#8220;strong typing&#8221;, seeing as how Java ys a Loose Typing language (i.e. the &#8220;Types&#8221; of the variables don&#8217;t have to be set when you initialize them) i can understand both the benefit of added flexibility and coding speed, as well as the dangers of misstyping a variable and having the code blow up in your face.</p>
<p>The second assignment was a simple alert bot, (which you can find <a href="http://www.irresponsibles-anonymous.com/dev/jstask1.html">here</a>) and the first thing that happened was that i concatenated using the + sign instead of adding, you have to be very careful of that as the sign has multiple uses and if you don&#8217;t add the proper syntax you can end up with cases like &#8220;2&#8243; + &#8220;2&#8243; getting 22 as a result.</p>
<p>All in all it was a fun morning, the video is very entertaining, and i hope i am accepted into the program.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.irresponsibles-anonymous.com/mozilla-p2pu-school-of-webcraft-198.htm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Limits of Memory</title>
		<link>http://www.irresponsibles-anonymous.com/limits-of-memory-180.htm</link>
		<comments>http://www.irresponsibles-anonymous.com/limits-of-memory-180.htm#comments</comments>
		<pubDate>Tue, 10 Aug 2010 19:32:02 +0000</pubDate>
		<dc:creator>Alex Mrvaljevich</dc:creator>
				<category><![CDATA[Further Reading]]></category>
		<category><![CDATA[I.A.]]></category>
		<category><![CDATA[Step 02]]></category>
		<category><![CDATA[bioloical limitation]]></category>
		<category><![CDATA[forgetting]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[writing things down]]></category>

		<guid isPermaLink="false">http://www.irresponsibles-anonymous.com/?p=180</guid>
		<description><![CDATA[I have referred often to the limits of human short-term memory, but on this occasion I wanted to delve a Little deeper to evidence exactly why we forget our commitments. “The role of leadership is to create an alignment of strengths such as weaknesses become irrelevant” -       Peter Drucker Understanding the memory is essential to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin: 6px;" title="limits of memory" src="http://www.irresponsibles-anonymous.com/wp-content/uploads/2011/01/Memoria.jpg" alt="Limits of Memory" width="276" height="181" /></p>
<p>I have referred often to the limits of human short-term memory, but on this occasion I wanted to delve a Little deeper to evidence exactly why we forget our commitments.</p>
<p style="text-align: right;">“The role of leadership is to create an alignment of strengths such as weaknesses become irrelevant”</p>
<p style="text-align: right;">-       Peter Drucker</p>
<p>Understanding the memory is essential to make, as Drucker says, its weaknesses irrelevant.</p>
<p><strong>Memory… What memory?</strong></p>
<p>The first thing that needs to be clarified is that the brain has different kinds of memory, to simplify we will divide them in two types: “Working Memory” and “Storage Memory”<span id="more-180"></span></p>
<p><strong>Working Memory</strong>: is the part(s) of the brain that keeps things within reach of our reasoning, it is what we “have in mind”</p>
<p><strong>Storage Memory: </strong>is the filing cabinet of our brain, where everything is stored so that we can recall in the long term. The thing is, we cannot function with the information in Storage Memory, it just doesn’t work that way. In order to co-relate or “use” different data, it has to be retrieved from storage and put in Working Memory.</p>
<p>Studies done by Timothy Brady have proven the massive capacity of our Storage Memory, in it is contained virtually all information you have come across in your life.</p>
<p><strong>So… why do I forget things?</strong></p>
<p><strong> </strong></p>
<p>The is a wide range of factors, but the most important are:</p>
<ol>
<li><strong>Bad Encoding:</strong> Working memory captures the stimuli that we receive and evaluates which one is the focus of attention, then tries to figure out the <em>reason </em>why is should be stored so it can properly encode the information and pass it to Storage Memory. Think of it as a filing process where you add a couple of labels to a file, if you put the wrong labels its impossible to find the file.A good example of this is a study performed by Dr. Cowan, where he presented people with a series of coins and asked them to remember the denomination of the currency; a very large percentage of people remembered right when asked the pertinent information, but when asked, almost no one could recall the year that was minted on the front.In this case, the coins where coded as “denomination 5, Denomination 25&#8230; Etc.” and thus there is no information on storage of the minted year.</li>
<li><strong>Interference: </strong>The process of memory recall is directly related to the code or stimulus that fired the process, if more calls come in at the same time, the mind can wander in search of different memories; this is known as interference and is one of the reasons for the “tip of the tongue” effect, where the memory was already recalled but has not yet been delivered.</li>
<li><strong>Interception: </strong>Memories are stored all over the brain, and as such its hard for the human body not to react as if it was re-living the event all over again, if it was a traumatic moment the recall will be intercepted by the negative reaction of the body</li>
</ol>
<p><strong>Why do things slip away?</strong></p>
<p><strong> </strong></p>
<p>Have you ever had an important call to make, and after a very busy workday you get home only to remember with anguish that to forgot?</p>
<p>The reason for this is that Storage Memory doesn’t allow us to reason, think of it like a DVD filled with videos on the shelf of your house, its all there but cant actually do anything with it.</p>
<p>You can only “think” (deducting, correlating, task execution, problem solving, pattern recognition, logic, etc.) with the things you can hold in Working Memory, here is where the limitation comes in: according to Dr. Millier, and later corroborated by Dr. Cowan, the maximum capacity of your Working Memory is between 4 and 7 “chunks” of data.</p>
<p>People that seem to remember more are just very adept at encoding, or can memorize large sets of data into a single chunk, for example the digits 584246609978 are biologically impossible to maintain in working memory without losing focus or sending something else over to Storage. However, the phone number +(58) (country code for Venezuela), 424 (cell phone code), 660 (area) 9978 (number) are a lot easier to remember, because in reality its just 4 “chunks” of data.</p>
<p>Working memory maintains information for 10-15 seconds before sending it over to storage, so what you are doing most of the time is just juggling the different stimuli you receive throughout your workday.</p>
<p>So if I ask you to do 7 things, then during 15 seconds I ask you to memorize a 7 number string of digits, you no longer have the <em>biological </em>capacity to maintain your tasks in operation; they are now filed and stored away, and unless you happen to randomly come across the proper stimulus, then recall the proper encoding, you wont remember them.</p>
<p>To beat this limitation you have to do one of two things:</p>
<ol>
<li>Spend years training in advanced mnemotecnic methods and coplex encoding exercises to maximize recall capacity or…</li>
<li>Write things down.</li>
</ol>
<p>Do you have any encoding tricks? What stimuli do you use to recall? I’m eager to hear from you in the comments section or on my twitter @alexmrv.</p>
<p style="text-align: right;">Photo by  <a href="http://www.redicecreations.com/article.php?id=4784">red ice</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.irresponsibles-anonymous.com/limits-of-memory-180.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More Life</title>
		<link>http://www.irresponsibles-anonymous.com/173-173.htm</link>
		<comments>http://www.irresponsibles-anonymous.com/173-173.htm#comments</comments>
		<pubDate>Tue, 06 Jul 2010 22:11:16 +0000</pubDate>
		<dc:creator>Alex Mrvaljevich</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Step 11]]></category>
		<category><![CDATA[better life]]></category>
		<category><![CDATA[demanding more]]></category>
		<category><![CDATA[getting a life]]></category>
		<category><![CDATA[living]]></category>
		<category><![CDATA[sacrifices]]></category>

		<guid isPermaLink="false">http://www.irresponsibles-anonymous.com/?p=173</guid>
		<description><![CDATA[“When life demands more of people than they demand of life &#8211; as is ordinarily the case &#8211; what results is a resentment of life almost as deep-seated as the fear of death” - Tom Robbins What do you demand of life? David Allen used that quote in his “Getting Things Done” book, and I [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><em><img class="alignleft" style="margin: 6px; border: 0px;" title="Smile" src="http://www.irresponsibles-anonymous.com/wp-content/uploads/2011/01/Sol-y-Sonrisas.jpg" alt="Smile" width="300" height="225" />“When life demands more of people than they demand of life &#8211; as is ordinarily the case &#8211; what results is a resentment of life almost as deep-seated as the fear of death”</em></p>
<p style="text-align: right;"><strong>- Tom Robbins</strong></p>
<p>What do you demand of life?</p>
<p>David Allen used that quote in his “Getting Things Done” book, and I remember reading it and thinking about the amount of work that I did for others, and how little I demanded in return.</p>
<p>I don’t refer to compensation; money by itself does not represent anything real. Neither do I mean getting something back out of a gesture… a good deed that demands something in return stops being good and becomes a service.</p>
<p>I’m referring to how many of your initiatives you do for yourself, and what do you ask in return of your sacrifices.<span id="more-173"></span></p>
<p>In college, one of my teachers spoke of “Responsible Egoism”; this was a concept that changed me in a fundamental way: “Not feeding your ego, taking care of those that surround you, but never forgetting yourself”</p>
<p>There is this social stigma with individual thinking, the threat of being called “egoist” and the way we demonize the “taking care of #1”  concept, leads us into being embarrassed any time we try to care for our future and interests.</p>
<p>It’s just that there is so much more to life than getting up in the morning to go to work, chasing the “Friday” rainbow for the “weekend” pot of gold, and every time it just goes 7 days away again. This total lack of attention to things that make you happy generates the anxiety that leads to our generation’s favorite addiction: work.</p>
<p>“If I only got a raise, I would have enough money for…”, “It’s just for a little while then I can focus on my dream”, “the economy is tough”.</p>
<p>Yeah, ok, many of those things are true in certain situations, but what I ask is: What are you demanding in return?</p>
<p>“I demand to spend more time with my kids”, “I require respect at work”, “I need that all new project teaches me something”, are all valid responses to any sacrifice you have to make in a particular situation.</p>
<p>Money is important as a trading tool, but on a “reality” level, its hard for our brains to wrap around the concept of a million bucks, even if I transferred them to your account today, it would not provide a feeling of wholeness and completion. It would probably be very exalting, and surely it would be key to achieving many dreams, but the mere existence of the cash in your account does not provide self-realization, this can only be achieved with goals that transcend the material and a number, and must be demanded out of life.</p>
<p>So take stock of how much you are giving away, and make a balance of what you are asking in return, and in some way, try and get more out of life.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.irresponsibles-anonymous.com/173-173.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Riding the third wave</title>
		<link>http://www.irresponsibles-anonymous.com/riding-the-third-wave-164.htm</link>
		<comments>http://www.irresponsibles-anonymous.com/riding-the-third-wave-164.htm#comments</comments>
		<pubDate>Mon, 14 Jun 2010 16:51:19 +0000</pubDate>
		<dc:creator>Alex Mrvaljevich</dc:creator>
				<category><![CDATA[I.A.]]></category>
		<category><![CDATA[Dan Pink]]></category>
		<category><![CDATA[Google IO]]></category>
		<category><![CDATA[motivation]]></category>
		<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[Ted]]></category>
		<category><![CDATA[Third Wave]]></category>

		<guid isPermaLink="false">http://www.irresponsibles-anonymous.com/?p=164</guid>
		<description><![CDATA[What is the third wave? In 1979, futurist Alvin Toffler wrote a book called Future Shock, where he goes into the process of change in social, political and economic structure. Alvin describes three “waves”, the first one being the Agrarian Revolution (8000 A.C.  Until the 17th Century), during which we built the social paradigms needed [...]]]></description>
			<content:encoded><![CDATA[<h2><strong><a href="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/06/Tercera-Ola.jpg"><img class="alignleft size-medium wp-image-165" style="margin: 6px; border: 0px;" title="Third Wave" src="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/06/Tercera-Ola-300x217.jpg" alt="Third Wave" width="300" height="217" /></a>What is the third wave?</strong></h2>
<p>In 1979, futurist Alvin Toffler wrote a book called Future Shock, where he goes into the process of change in social, political and economic structure.</p>
<p>Alvin describes three “waves”, the first one being the Agrarian Revolution (8000 A.C.  Until the 17<sup>th</sup> Century), during which we built the social paradigms needed to end our nomadic phase and construct the cities that gave origin to our civilization.</p>
<p>The second wave  was the industrial revolution (1650), changing the way the world was organized by replacing human effort with advanced tools, thus empowering mass production and expansion, the caveat was that it led to a unification of products, media and ideology, all because of the inflexibility of our tools at the time.</p>
<p>According to Toffler, in 1979 we were in the cusp of a third wave, in which the tools become flexible enough to bring about a change in production paradigm oriented towards individuality and self-expression.</p>
<p>The advent of customized products coupled with the recently established Internet would bring about an important change in human society characterized by decentralization, demassification and personalization… all necessary to satisfy the human need to differentiate.<span id="more-164"></span></p>
<h2><strong>Riding the third wave</strong></h2>
<p>It’s no longer important to manufacture 1.000 objects of a single model, but rather 100 objects of 100 different models… examples like the giant success of Dell computers, where each computer is built under user specifications, are key to the definition of any third wave effort.</p>
<p>It’s also crucial to understand that the Internet will impact every medium in every field of every economic sector in the world…without exceptions. A good example is NetFlix, a company that “rents” movies online for the user to watch whenever he wants through video streaming,  this disruptive change devastated Blockbuster, the largest movie rental chain in the U.S., in a single quarter.</p>
<p>The challenge presented by the Internet is the velocity of change: The entire world is exposed to the same information, presenting equal opportunities for any organization.</p>
<p>At any time an equivalent of “Netflix” will appear in your market, with a disruptive innovation so profound that you must be able to adapt with agility and be willing to re-structure your Business Model in less than a quarter.</p>
<p>To summarize, if you want to ride the third wave you need:</p>
<ul>
<li>Creativity and flexibility to generate products that promote differentiation and adapt to the users Identity and need of self-expression.</li>
<li>Productivity to cover needs on a global scale by inserting your product/service/industry on the Internet before somebody else does… and if the competition is already there, you must have the flexibility to adapt quickly.</li>
<li>Adaptability to change your business model with excellence when the market thus dictates.</li>
</ul>
<h2><strong>The key to success</strong></h2>
<p>First you need to change a few paradigms:</p>
<ul>
<li>Today’s technology is accessible to almost anyone, and there is an open solution to most problems, trade secrets are no longer the key.</li>
<li>All providers are just one Google away from potential distributors, controlling the chain of supply is no longer the key.</li>
<li>Business processes have escalated to a level of speed and complexity that no single person can effectively manage, individual leadership is no longer the key.</li>
</ul>
<p>If not the recipe, or the kitchen, or the cook… What else is there?</p>
<p>There is the sum of all the parts in a multi-disciplinary team that is motivated, focused and committed; <strong>the key to the third wave is the people.</strong></p>
<p>It no longer suffices to have “employees”, because these will not have the level of commitment and motivation necessary to survive in the market.</p>
<p>Another paradigm shift: Variable payments don’t work either. Of course you have to provide a just wage for the work and get the money issue out of the way, but systems based on monetary rewards are still second wave and recent studies have demonstrated that they do more harm than good.</p>
<p>In the third wave you need a team that is intrinsically motivated, driven forward by the primary factors that Positive Psychology and Neuroscience have determined as optimal:</p>
<p style="padding-left: 30px;"><strong>1. Autonomy: </strong>If there is something that differentiates us from the rest of life on earth, is our impulse to be free. This motivator has generated enormous acts of nobility and courage that we remember as pivotal points in history.</p>
<p style="padding-left: 30px;">When a person has the freedom to work with his own rhythms, under his own terms, he will fight to retain that autonomy with all his effort and any means necessary, a company of co-creators with a shared focus will fight to maintain its competitive advantage and self-sustainability with much more energy than a group of obedient subordinates.</p>
<p style="padding-left: 30px;"><strong>2. Mastery</strong>: Another primary impulse is to be masters of our craft, the samurai dedicated their lives to be supreme in the use of the sword, Zen monks are focused beyond measure in the search of enlightenment, Greek masters searched for the secrets of nature with passion and constancy…none of them had as a final objective a new pair of Calvin Klein shoes.</p>
<p style="padding-left: 30px;">By empowering your team to achieve mastery in many disciplines, the result will not only be a more capable team, but also a more motivated one.</p>
<p style="padding-left: 30px;"><strong>3. Purpose: </strong>What is the point of all this effort? If for the organization, company or even family, the goal is collecting good dividends at years end, the objective of the members will be equivalent in measure: Getting a good paycheck. The result is that everyone pushes on their independent directions and there will be no cohesion of efforts.</p>
<p style="padding-left: 30px;">One of the biggest tragedies of our modern world is that we have lost our sense of purpose; few people today set long term goals or life objectives. The top level of Maxwell’s Pyramid of human motivation is self-realization, if there is nothing to achieve then this point is impossible to reach.</p>
<p style="padding-left: 30px;">The organization must have a common end that transcends the financial, and must help its members to find their own objectives, giving a sense of purpose that provide cohesion of efforts with the determination of the Samurai Warrior, the focus of the Zen Monk and the passion of the Greek Master.</p>
<p>Once the organization creates a context of work that allows a team to have autonomy, mastery and purpose; leadership is there to facilitate the work, putting itself at the service of the Team to maximize its production capacity and guide efforts towards common goals, <strong>staying the course without limiting flexibility.</strong></p>
<p>It’s a juggling act between structure and innovation… a difficult to achieve balance that if found will surely enable you to ride the third wave.</p>
<p>I invite you watch the following videos:</p>
<p>This is a TED talk by Dan Pink, acclaimed business author, on intrinsic motivation (20 min):</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="446" height="326" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent" /><param name="bgColor" value="#ffffff" /><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/DanielPink_2009G-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/DanielPink-2009G.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=618&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=dan_pink_on_motivation;year=2009;theme=speaking_at_tedglobal2009;theme=not_business_as_usual;theme=the_creative_spark;event=TEDGlobal+2009;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><param name="src" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /><param name="bgcolor" value="#ffffff" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="446" height="326" src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" flashvars="vu=http://video.ted.com/talks/dynamic/DanielPink_2009G-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/DanielPink-2009G.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=618&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=dan_pink_on_motivation;year=2009;theme=speaking_at_tedglobal2009;theme=not_business_as_usual;theme=the_creative_spark;event=TEDGlobal+2009;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" bgcolor="#ffffff" wmode="transparent" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The second is a Tech Talk at the 2010 Google IO (which I had the good fortune to attend), by Brian W. Fitzpatrick and Ben Collins-Sussman, about the new role of the leader: Facilitating the work of the team. (60 minutes)</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/skD1fjxSRog&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/skD1fjxSRog&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: right;"><em><span style="font-size: xx-small;">Foto por: </span></em><a href="https://tigscollaborate.wikispaces.com/fc_ubiquitous"><em><span style="font-size: xx-small;">https://tigscollaborate.wikispaces.com/fc_ubiquitous</span></em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.irresponsibles-anonymous.com/riding-the-third-wave-164.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Checking and Remaking your navigation map</title>
		<link>http://www.irresponsibles-anonymous.com/checking-and-remaking-your-navigation-map-133.htm</link>
		<comments>http://www.irresponsibles-anonymous.com/checking-and-remaking-your-navigation-map-133.htm#comments</comments>
		<pubDate>Tue, 25 May 2010 04:01:14 +0000</pubDate>
		<dc:creator>Alex Mrvaljevich</dc:creator>
				<category><![CDATA[Step 12]]></category>
		<category><![CDATA[constant improvement]]></category>
		<category><![CDATA[improvement]]></category>
		<category><![CDATA[iteration]]></category>
		<category><![CDATA[iterative cycle]]></category>
		<category><![CDATA[kaisen]]></category>
		<category><![CDATA[step 12]]></category>

		<guid isPermaLink="false">http://www.irresponsibles-anonymous.com/?p=133</guid>
		<description><![CDATA[Irresponsibility can be an addiction as strong as drugs or alcohol, Irresponsible Anonymous is a 12 step program to kick the habit of breaking promises, this is Step 12 and it’s about implementing iterative cycles of self-improvement. It’s impressive how fast 12 weeks pass, the experience of writing these articles has been very revealing, and [...]]]></description>
			<content:encoded><![CDATA[<address style="text-align: right;"><em><span style="color: #888888;"><a href="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/05/Like-Clockwork-12.jpg"><img class="alignleft size-medium wp-image-134" style="margin: 6px;" title="Like Clockwork" src="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/05/Like-Clockwork-12-300x199.jpg" alt="Like Clockwork" width="240" height="159" /></a>Irresponsibility can be an addiction as strong as drugs or alcohol,</span></em><em><span style="color: #888888;"> </span></em><em><a href="http://www.irresponsibles-anonymous.com/12-step-program-4.htm"><span style="color: #888888;">Irresponsible Anonymous</span></a><span style="color: #888888;"> is a 12 step program to kick the habit of breaking promises, this is Step 12 and it’s about implementing iterative cycles of self-improvement.</span></em></address>
<p>It’s impressive how fast 12 weeks pass, the experience of writing these articles has been very revealing, and has forced me to retake things I though left behind and do lot of exercises I had forgotten.</p>
<p>I’m a defender of utopic ideals; it is part of my personal philosophy and hope to keep it that way. It doesn’t mean I consider them possible, but it’s a tragedy to abandon the search for perfection simply because it’s impossible.</p>
<p>For us, the naturally irresponsible, the process of taking control is cyclical. The search of a state of relaxed execution, where we are masters of what we say and do, achieving in all contexts of life with singular perfection, is a goal that seem unachievable…and it is; But we have to be unstoppable in the search for a better life, and when we achieve it, it’s time to fight for an even better standard.</p>
<p>The 12<sup>th</sup> step is to return to the beginning, starting a new iteration in the way we live, act, think, love, laugh… it’s the essence of being human, the search for an elevated state of conscience where we achieve wonderful things every day, doing the impossible and living our dreams.</p>
<p>It’s time to review and redo our plans, accept that even though we have taken control, some things slip, processes are lost and ideas remain undone. Getting better is just a matter of practice and evaluation of what we have done in the past.</p>
<p>I know some of the steps are hard, each speaks to different aspects of life and as such, each of us has different opportunities for improvement, and let’s admit it…we are irresponsible.</p>
<p>So some of the steps have gone by with a half-hearted effort, or have remained in promises without being incorporated into the daily routine, that is ok, because nothing and no one starts out perfect.  Its only you that decides how much is “enough”  response-ability, and if you are there, then I congratulate you and wish you well, but if not, I invite you to read back to the points where there is still work to be done, and do it.</p>
<p>I will continue to post material to help with each of the steps, but the essence of the process is already here, I hope it has been helpful and want to remind you to carve your own path in the process, there is no “right” way, only “your” way.</p>
<p>Thank you for reading,</p>
<p>Alex.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.irresponsibles-anonymous.com/checking-and-remaking-your-navigation-map-133.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putting together the most beautiful puzzle in the universe</title>
		<link>http://www.irresponsibles-anonymous.com/putting-together-the-most-beautiful-puzzle-in-the-universe-126.htm</link>
		<comments>http://www.irresponsibles-anonymous.com/putting-together-the-most-beautiful-puzzle-in-the-universe-126.htm#comments</comments>
		<pubDate>Tue, 18 May 2010 04:01:17 +0000</pubDate>
		<dc:creator>Alex Mrvaljevich</dc:creator>
				<category><![CDATA[Step 11]]></category>
		<category><![CDATA[dreams]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[life purpose]]></category>
		<category><![CDATA[long term goals]]></category>
		<category><![CDATA[objective]]></category>
		<category><![CDATA[something to strive for]]></category>
		<category><![CDATA[step 11]]></category>

		<guid isPermaLink="false">http://www.irresponsibles-anonymous.com/?p=126</guid>
		<description><![CDATA[Irresponsibility can be an addiction as strong as drugs or alcohol, Irresponsible Anonymous is a 12 step program to kick the habit of breaking promises, this is Step 11 and it’s about figuring out your life’s purpose. What is my purpose in life? This question has frozen a lot of us in our tracks, the [...]]]></description>
			<content:encoded><![CDATA[<address style="text-align: right;"><em><span style="color: #888888;"><a href="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/05/Puzzles-11.jpg"><img class="alignleft size-medium wp-image-127" style="margin: 6px;" title="Puzzles" src="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/05/Puzzles-11-199x300.jpg" alt="Putting the puzzle together" width="159" height="240" /></a>Irresponsibility can be an addiction as strong as drugs or alcohol,</span></em><em><span style="color: #888888;"> </span></em><em><a href="http://www.irresponsibles-anonymous.com/12-step-program-4.htm"><span style="color: #888888;">Irresponsible Anonymous</span></a><span style="color: #888888;"> is a 12 step program to kick the habit of breaking promises, this is Step </span></em><em><span style="color: #888888;">11 and it’s about figuring out your life’s purpose.</span></em><em> </em></address>
<p><strong>What is my purpose in life?</strong></p>
<p><strong> </strong></p>
<p>This question has frozen a lot of us in our tracks, the extent of the answer and its ramifications are so huge that it looks like an impossible riddle.</p>
<p>Any problem you tackle in life is made easy if you do two things:</p>
<p>1. Achieve a clear understanding of the problem.<br />
2. Fragment it into smaller, easier problems.</p>
<p>If the objective is to find your purpose in life, you can divide the problem into 10 small steps, which can be done in a week each, and in only 3 months it’s possible to get a clear vision of something that was murky and hard to define.</p>
<p><span id="more-126"></span></p>
<p>The motive behind each article in this program has been to find the pieces of the puzzle that is called your life. So if you have been following the series of articles during the past 3 months, it’s now time to sit down and put it all together, on the contrary I invite you to start at step one.</p>
<p>For this step you only need a quiet place to think, your lists, pencil and paper.</p>
<p>The process is:</p>
<ol>
<li>Check your commitments list to make sure that your projects lists is complete, an inventory of the end points of all current efforts.</li>
<li>Read the projects list carefully, trying to find the inherent pattern inside it, this is akin to decoding a cipher: there is no recipe that always works. But I can assure you that there is something your projects have in common, a series of Macro-Projects that are almost never more than 7, they can be in the type of “Getting a promotion” “Be a better father” or “keeping my spouse happy”.</li>
<li>When you find the 7 Macro-Projects, imagine that 10 years have passed and every one of them was successfully completed, visualize that future self and ask the question: Is this who I want to be?</li>
<li>If the answer is affirmative, I congratulate you and admit to some envy… in my case it was very different, I noticed that my Macro-Projects, the things that all my tasks had in common, was a road that others had chosen for me and was leading to someone who I did not want to become. I didn’t know what I wanted, but at least I was clear that my life was being led down the wrong road.</li>
<li>Once you get the big picture clear, try to relate this pattern with the journal, finding entries in common with the Macro-Projects. Evaluate which of the entries are happy, and which are sad… remember that our feelings are like an internal compass that helps us find the correct direction. Now ask yourself: Which of my Macro-Projects gives me the most joy? In your life and in your actions there is happiness, and in it is the key to discovering your mission and destiny.</li>
<li>Think of the Macro-Projects that point you in the happiest direction, and try to find the pattern contained within them. There you will find your purpose in life.</li>
</ol>
<p>This exercise was one of the most revealing moments in my life, and even though a lot has changed from that day, every time I do the exercise I’m surprised to find out that my end goals have not changed, even though I do.</p>
<p>It’s like a central anchor point, where you can always return in times of trouble, part of my purpose is to help others find that center and even though the actions I take to achieve this change over time, the final objective remains the same.</p>
<p>Never lose sight of that goal, even though it may sometimes seem unattainable and frustration makes you want to give up, someday a surprise will come and you will find out that no step was taken in vain.</p>
<p>I would love to read your goals; you can post them on the comments section of this post or at my @alexmrv twitter.</p>
<p>Happy decoding!</p>
<p>Alex.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.irresponsibles-anonymous.com/putting-together-the-most-beautiful-puzzle-in-the-universe-126.htm/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Captains Log: Creating your own story</title>
		<link>http://www.irresponsibles-anonymous.com/captains-log-creating-your-own-story-120.htm</link>
		<comments>http://www.irresponsibles-anonymous.com/captains-log-creating-your-own-story-120.htm#comments</comments>
		<pubDate>Tue, 11 May 2010 04:01:15 +0000</pubDate>
		<dc:creator>Alex Mrvaljevich</dc:creator>
				<category><![CDATA[Step 10]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[journal]]></category>
		<category><![CDATA[logs]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[mnemonic]]></category>
		<category><![CDATA[picture album]]></category>
		<category><![CDATA[scrapbook]]></category>
		<category><![CDATA[step 10]]></category>

		<guid isPermaLink="false">http://www.irresponsibles-anonymous.com/?p=120</guid>
		<description><![CDATA[Irresponsibility can be an addiction as strong as drugs or alcohol, Irresponsible Anonymous is a 12 step program to kick the habit of breaking promises, this is Step 10 and it’s about creating a record of your day to day life. This is a guest post by Psic. Jorge Graterol How many times have you [...]]]></description>
			<content:encoded><![CDATA[<address style="text-align: right;"><em><span style="color: #888888;"><a href="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/05/Captains-log-10.jpg"><img class="alignleft size-medium wp-image-121" style="margin: 6px;" title="Captains log" src="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/05/Captains-log-10-300x222.jpg" alt="Captains log" width="240" height="178" /></a>Irresponsibility can be an addiction as strong as drugs or alcohol,</span></em><em><span style="color: #888888;"> </span></em><em><a href="http://www.irresponsibles-anonymous.com/12-step-program-4.htm"><span style="color: #888888;">Irresponsible Anonymous</span></a><span style="color: #888888;"> is a 12 step program to kick the habit of breaking promises, this is Step 10 and it’s about creating a record of your day to day life. This is a guest post by Psic. Jorge Graterol</span></em></address>
<p>How many times have you been unable to remember a face, a gesture, a moment that was an important part of your life?</p>
<p>Our memories are stored in different sections of the brain through a complex process of segmentation. For example, visuals are stored in the occipital cortex, but that doesn’t imply sounds, smells, or tastes… all of which are stored in different areas of the brain, the result is a fragmented memory that is hard to access.<span id="more-120"></span></p>
<p>As a species, we have recognized the importance of having some kind of external registry: Historians dedicate their professional lives to keeping alive the image of our culture, as archeologists try to reconstruct the pieces of how we used to be.</p>
<p>We could hardly learn from our mistakes if we didn’t have the capacity to remember and analyze in what moment we deviated from the intended road, or reacted inadequately to a completely new situation.</p>
<p>Its key, to create our own story through a series of processes that allow us to access in an easier way our memory during the course of our lives, it doesn’t have to be written, every person should manage information in their own way. The important thing is to create a system with an easy to use method. Some recommendations are:</p>
<ul>
<li><strong>Mnemonics</strong>: Consists of a series of mental processes, systematic exercises, repetitions, etc. to facilitate remembering something. A common example is: <strong><em>K</em></strong><em>eep <strong>P</strong>ond <strong>C</strong>lean <strong>O</strong>r <strong>F</strong>rogs <strong>G</strong>et <strong>S</strong>ick, </em>which is a mnemonic device to remember the classification methods in zoology: <strong>K</strong>ingdom, <strong>P</strong>hylum, <strong>C</strong>lass, <strong>O</strong>rder, <strong>F</strong>amily, <strong>G</strong>enus, <strong>S</strong>pecies).</li>
<li><strong>Scrapbooks</strong>: The idea is to have a notebook to glue together a mashup of pictures, magazines, books, news, etc. All relative to important events in your life.</li>
<li><strong>Personal Journal</strong>: Are the more traditional method and consist of having a diary with a brief description of what happened in the day. A lot of people do this through Blog platforms, to share their life with others.</li>
<li><strong>Picture Albums: </strong>Are more structured spaces to place images of particular events and thus trigger the memory process.</li>
<li><strong>Voice Notes:</strong> Very common with healthcare professionals, a series of spoken registries of the day. They were usually hard to maintain because of the tapes, but with digital recordings it’s much easier today.</li>
</ul>
<p>Personally, I use <a href="http://www.evernote.com">evernote </a>for my journal with a little of all the things mentioned above, and highly recommend it.</p>
<p>A common mistake is to create entries only for events that seem important at the time; our perception is always modified by the conditions of the moment, so having an external memory can give us a different point of view, I recommend making a daily entry even if the fact seems trivial at the time.</p>
<p>So take note of everything, you don’t know at what time it may seem useful, and if it doesn’t, I can guarantee it will be a valuable resource to your future generations: What wouldn’t you give to know what your ancestors throughout history did or thought in their daily lives?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.irresponsibles-anonymous.com/captains-log-creating-your-own-story-120.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small Wins, Small losses: The power of constancy</title>
		<link>http://www.irresponsibles-anonymous.com/small-wins-small-losses-the-power-of-constancy-117.htm</link>
		<comments>http://www.irresponsibles-anonymous.com/small-wins-small-losses-the-power-of-constancy-117.htm#comments</comments>
		<pubDate>Tue, 04 May 2010 04:01:57 +0000</pubDate>
		<dc:creator>Alex Mrvaljevich</dc:creator>
				<category><![CDATA[Step 09]]></category>
		<category><![CDATA[constancy]]></category>
		<category><![CDATA[determination]]></category>
		<category><![CDATA[hundred year war]]></category>
		<category><![CDATA[long term goals]]></category>
		<category><![CDATA[long view]]></category>
		<category><![CDATA[prolonged effort]]></category>
		<category><![CDATA[step 9]]></category>

		<guid isPermaLink="false">http://www.irresponsibles-anonymous.com/?p=117</guid>
		<description><![CDATA[Irresponsibility can be an addiction as strong as drugs or alcohol, Irresponsible Anonymous is a 12 step program to kick the habit of breaking promises, this is Step 9 and it’s about seeing the long term and not getting stuck on the small defeats. Between 1337 and 1452 occurred a series of events historians call [...]]]></description>
			<content:encoded><![CDATA[<address style="text-align: right;"><em><span style="color: #888888;"><a href="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/05/Joan-of-Arc-8.jpg"><img class="alignleft size-medium wp-image-118" style="margin: 6px;" title="Joan of Arc" src="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/05/Joan-of-Arc-8-239x300.jpg" alt="Joan of Arc" width="191" height="240" /></a>Irresponsibility can be an addiction as strong as drugs or alcohol,</span></em><em><span style="color: #888888;"> </span></em><em><a href="http://www.irresponsibles-anonymous.com/12-step-program-4.htm"><span style="color: #888888;">Irresponsible Anonymous</span></a><span style="color: #888888;"> is a 12 step program to kick the habit of breaking promises, this is Step 9 and it’s about seeing the long term and not getting stuck on the small defeats.</span></em></address>
<p>Between 1337 and 1452 occurred a series of events historians call “the war of the 100 years”.</p>
<p>The 113 years of conflict between England and France is a period that defined our global reality, and I take it as an example of persistency and focus.</p>
<p>The war was eventually “won” (if such a thing can be said about war), by France. This victory wasn’t the consequence of one heroic encounter between two majestic armies, like in the movies, but the sum of battles beyond count, not only in the field of war, but also in politics, religion and economy.</p>
<p><span id="more-117"></span></p>
<p>Our modern culture of “immediate resolution” has taught us that things get resolved within fixed timeframes: Soccer matches get won in 90 minutes if the allotted time runs out we go to penalties to resolve the issue… our relationships have shorter courtships (sex on the third date) and our food gets served in 90 seconds. Even websites highlight what we should read and products offer immediate and easy solutions to all kinds of problems.</p>
<p>I believe this is the reason we react to badly to a defeat, we think it’s the end of the war; we have lost the ability to see our efforts as the sum of a series of small victories during a span of time.</p>
<p>In the war of the 100 years, England had the strategic, economic and military advantage. Their advanced technology (the long bow) and their revolutionary government of centralized parliament gave them the abilities they needed to take most of France.</p>
<p>But, just when Orleans was under siege, Joan of Arc arrived and led to a series of events that eventually ended with the expulsion of the English army from French territory.</p>
<p>If we see this story from different points of view, we can extract different lessons:</p>
<ol>
<li>The English: It doesn’t matter if you have a position of power, if you overextend and commit with more than you can achieve, its only matter of time until someone finds your weak point and exploits it to defeat you. Advance should be timely, calculated and inexhaustible. 100 years of victory count for nothing if you are defeated in the next 13, we have to be patient and constant in our goals.</li>
<li>The French: You haven’t lost until you are defeated. Even if there were only a square foot of French territory, they didn’t give up. Morale was low and everything seemed to be lost, but the inspiration of Joan of Arc arrived, then Burgundy made a change of alliance, then the war ended with Jeans Bureau.</li>
</ol>
<p>During the Second World War, Sir Winston Churchill said of the potential German invasion of England: “We will fight them in our beaches, we will fight them in our fields, we will fight in the hills and in the streets… we will never surrender!”</p>
<p>This is a war, have no doubt of it. A continuous struggle between the will to be better than we are and the temptation to just let go, so reward yourself for the small victories, and don’t punish the small losses; Down the road you will find a lot of both, but as long as the conviction is firm and the step is constant, I don’t know how, I don’t know when, but I can guarantee you will emerge in glory as conqueror of your life.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.irresponsibles-anonymous.com/small-wins-small-losses-the-power-of-constancy-117.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Letting go of the Wheel: learning to weather a storm</title>
		<link>http://www.irresponsibles-anonymous.com/letting-go-of-the-wheel-learning-to-weather-a-storm-113.htm</link>
		<comments>http://www.irresponsibles-anonymous.com/letting-go-of-the-wheel-learning-to-weather-a-storm-113.htm#comments</comments>
		<pubDate>Tue, 27 Apr 2010 04:01:30 +0000</pubDate>
		<dc:creator>Alex Mrvaljevich</dc:creator>
				<category><![CDATA[Step 08]]></category>
		<category><![CDATA[bad days]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[failure]]></category>
		<category><![CDATA[lack of organization]]></category>
		<category><![CDATA[step 8]]></category>
		<category><![CDATA[stress]]></category>

		<guid isPermaLink="false">http://www.irresponsibles-anonymous.com/?p=113</guid>
		<description><![CDATA[Irresponsibility can be an addiction as strong as drugs or alcohol, Irresponsible Anonymous is a 12 step program to kick the habit of breaking promises, this is Step 8 and it’s about learning to cope with chaotic days. Failure has become the greatest Taboo of our generation. The obsession of our modern society with winning [...]]]></description>
			<content:encoded><![CDATA[<address style="text-align: right;"><em><span style="color: #888888;"><a href="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/05/Bubble-in-the-Storm-8.jpg"><img class="alignleft size-medium wp-image-114" style="margin: 6px;" title="Bubble in the Storm" src="http://www.irresponsibles-anonymous.com/wp-content/uploads/2010/05/Bubble-in-the-Storm-8-300x222.jpg" alt="Bubble in the storm" width="300" height="222" /></a>Irresponsibility can be an addiction as strong as drugs or alcohol,</span></em><em><span style="color: #888888;"> </span></em><em><a href="http://www.irresponsibles-anonymous.com/12-step-program-4.htm"><span style="color: #888888;">Irresponsible Anonymous</span></a><span style="color: #888888;"> is a 12 step program to kick the habit of breaking promises, this is Step 8 and it’s about learning to cope with chaotic days.</span></em></address>
<p>Failure has become the greatest Taboo of our generation.</p>
<p>The obsession of our modern society with winning (being competitive if you want more subtlety), has created a whole generation of human beings that measure their success in quantifiable terms: Account statements, Increments in Percentages and KPIs (Key Performance Indicators).</p>
<p>I admit I’m a big fan of data, as a Project Manager i know it’s very hard to control, review or improve things that cannot be measured…I am a data junkie and my work at <strong><a href="http://www.42soluciones.com">42 Soluciones</a></strong> reflects that.<span id="more-113"></span></p>
<p>But it’s important to recognize the difference between valuable data and actually trying to measure success; Trying to define life in that way leads to ignoring key factors like the smile of a loved one, the joy of being with friends, and the amazing value of failure.</p>
<p>In <em>Agile Software Development</em>, the experts say: “Fail fast, fail often, and learn quickly”.</p>
<p>I love the agile approach to development, and consider that the same principles can be applied to anything; implementing “Agile Living” is fun and gives you a lot of breathing room: Treat everything as if it were simple, and see failure as a chance to learn.</p>
<p>But, sometimes things go wrong.</p>
<p>There will be days when the chaos is so large that even thinking of organization makes you laugh.</p>
<p>When this happens, the solution is simple: Don’t worry about your system. Sometimes you simply have to adopt the necessary flexibility to get to the end of the day, keep calm and remember that your notebooks and lists will be there tomorrow morning when the storm passes.</p>
<p>There is one thing you should do though: Get at least 2 minutes (even if you need to lock yourself in the bathroom), to take a breather and consider if any of your previous commitments are completely vital today; if so, set up and alarm in your cell phone… do not trust your memory in any way! Days like these are full of children forgotten at school, credit card payments overdue and anniversary gifts waiting in the stores.</p>
<p>There will also be days when you find out your plan had a fundamental flaw and that you have been working in the wrong direction for an important amount of time, the sense of failure will lead you to not wanting to do anything anymore.</p>
<p>These days it’s important to understand the cyclical nature of life, for every “good” moment you will live a “bad” one, by learning that only you define those terms, the good can be found in every bad and the joy in every sorrow. It’s much more than simple optimism; it’s the comprehension that every instant we are surrounded by blessings and messages that can only be seen by keeping calm during the storm.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.irresponsibles-anonymous.com/letting-go-of-the-wheel-learning-to-weather-a-storm-113.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

