<br />
<b>Warning</b>:  array_merge(): Argument #1 is not an array in <b>/data/nginx-html/successkata.com/wp-includes/cron.php</b> on line <b>835</b><br />
<br />
<b>Warning</b>:  array_merge(): Argument #1 is not an array in <b>/data/nginx-html/successkata.com/wp-includes/cron.php</b> on line <b>835</b><br />
<br />
<b>Warning</b>:  array_merge(): Argument #1 is not an array in <b>/data/nginx-html/successkata.com/wp-includes/cron.php</b> on line <b>835</b><br />
<br />
<b>Warning</b>:  array_merge(): Argument #1 is not an array in <b>/data/nginx-html/successkata.com/wp-includes/cron.php</b> on line <b>835</b><br />
<br />
<b>Warning</b>:  array_merge(): Argument #1 is not an array in <b>/data/nginx-html/successkata.com/wp-includes/cron.php</b> on line <b>835</b><br />
<?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>Success Kata</title>
	<atom:link href="http://successkata.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://successkata.com</link>
	<description>Success Kata</description>
	<lastBuildDate>Mon, 23 Sep 2019 16:59:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.2.11</generator>
	<item>
		<title>For the Win</title>
		<link>http://successkata.com/2019/for-the-win/</link>
				<comments>http://successkata.com/2019/for-the-win/#respond</comments>
				<pubDate>Mon, 23 Sep 2019 16:59:21 +0000</pubDate>
		<dc:creator><![CDATA[jen]]></dc:creator>
				<category><![CDATA[Keys to かた (Practice)]]></category>

		<guid isPermaLink="false">http://successkata.com/?p=1438</guid>
				<description><![CDATA[Today&#8217;s kata was in python. The question was a classic computer science ask.  Identify an anagram.  As a reminder an anagram is simply rearranging the letters to form a new word.  The only rule, you can&#8217;t add or subtract a charcter. My solution beat out 99.3% of the previous solutions in execution time.  The bell [&#8230;]]]></description>
								<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://successkata.com/wp-content/uploads/anagram.jpeg" width="240" />
		</p>
<p>Today&#8217;s kata was in python.</p>
<p>The question was a classic computer science ask.  Identify an anagram.  As a reminder an anagram is simply rearranging the letters to form a new word.  The only rule, you can&#8217;t add or subtract a charcter.</p>
<p>My solution beat out 99.3% of the previous solutions in execution time.  The bell curve had a mean of 68 ms and my solution ran in 36 ms on aveage through the 34 tests.</p>
<p><div class="woo-sc-box info  rounded">import collections</p>
<div>
<div>s = &#8220;anagram&#8221;</div>
<div>t = &#8220;nagaram&#8221;</div>
<br />
<div>dict1 = collections.Counter(s)</div>
<div>dict2 = collections.Counter(t)</div>
<br />
<div>if dict1 == dict2:</div>
<div>    print(&#8220;We have an anagram.&#8221;)</div>
<div></div></div>
</div>
<div> </div>
<div>Sometimes the simple solution is the best solution.  In this case I could have had nested loops to walk through each string and verify that it was indeed an anagram.  Not only does the solution work, it is elegant, and I like it!</div>
]]></content:encoded>
							<wfw:commentRss>http://successkata.com/2019/for-the-win/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Not a Typed Language</title>
		<link>http://successkata.com/2019/not-a-typed-language/</link>
				<comments>http://successkata.com/2019/not-a-typed-language/#respond</comments>
				<pubDate>Wed, 18 Sep 2019 19:16:27 +0000</pubDate>
		<dc:creator><![CDATA[jen]]></dc:creator>
				<category><![CDATA[Keys to Success]]></category>

		<guid isPermaLink="false">http://successkata.com/?p=1431</guid>
				<description><![CDATA[Recently I have gone down the rabbit hole into the land of Python.  While I am dizzy with all the pythonic wiz bangs flying by I am left with a puzzle.  As I studied the language, it was made abundantly clear that Python is a strong, dynamically typed language.  In other words, Python will determine [&#8230;]]]></description>
								<content:encoded><![CDATA[
<p>Recently I have gone down the rabbit hole into the land of Python.  While I am dizzy with all the pythonic wiz bangs flying by I am left with a puzzle. </p>
<p>As I studied the language, it was made abundantly clear that Python is a strong, dynamically typed language.  In other words, Python will determine the type based on the variable value that it is passed at the time of execution and it will not arbitrarily change, which can happen in Pearl.</p>
<p>In practice, this is pretty easy to see.  For example, when you have a number and string, the difference is obvious.</p>
<div class="woo-sc-box info  rounded">a = 5 // integer<br />a = &#8216;Hi there!&#8217; // string<br /></div>
<p>My roots are in C and C++, which translates to knowing what you want and being very clear from the instantiation.  Do I want an integer, float, or double?  Python takes that complicated decision away from and puts a number into the best &#8220;parking space&#8221; based on the value.  </p>
<p>This seems like a sound plan, who wants to park a mini cooper in a space designed for a semi tractor-trailer.  What a waste of space!  Same applies for variables.</p>
<p>Where I protest is telling me it is a dynamically typed language, but then turn around and pull this out of the hat. </p>
<div class="woo-sc-box info  rounded">my_list = [&#8220;true&#8221;,1,&#8221;banana&#8221;,3.0]</p>
<p>my_tuple = (1, &#8216;apple&#8217; , 2, &#8216;banana&#8217;)</p>
<p>my_tuple2 = 1, &#8216;apple&#8217;, 2, &#8216;banana&#8217;</p>
<p>my_dictionary = {&#8216;apple&#8217;: 10, &#8216;orange&#8217;: 6, &#8216;banana&#8217;: 9}</p>
</div>
<p>In Python, it is not necessary to preclude the variable name with the type; however, you must remember if you instantiate with a square bracket, parenthesis, or a curly brace.  In the rare instance you just give up and list a bunch of items, that&#8217;s ok, it will be born as a tuple. </p>
<p>Is this not typing the data structure and taking the power of the dynamic typing away?</p>
<p>I digress, as languages are always full of quirks and inconsistancies.  It s easy to see how dynamic typing is easy with a simplistic variable and where it becomes impossible with a more complex data structure. </p>
<p>However; I still contend that remembering to put a keyword defining what I want before the variable name is easier than trying to remember which esoteric bracting system I need to use. </p>
<p>Today&#8217;s challenges are only tomorrows masteries. </p>
<p>Onward and upwards I go.      </p>
<p> </p>
<p> </p>
<p> </p>
]]></content:encoded>
							<wfw:commentRss>http://successkata.com/2019/not-a-typed-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>The Imposter in All of Us</title>
		<link>http://successkata.com/2019/the-imposter-in-all-of-us/</link>
				<comments>http://successkata.com/2019/the-imposter-in-all-of-us/#respond</comments>
				<pubDate>Sat, 07 Sep 2019 17:21:18 +0000</pubDate>
		<dc:creator><![CDATA[jen]]></dc:creator>
				<category><![CDATA[Keys to かた (Practice)]]></category>

		<guid isPermaLink="false">http://successkata.com/?p=1418</guid>
				<description><![CDATA[What I focus on gets 100% of my attention and care.  That seems to be such a wonderful quality, until I try to add all the pieces together.  While there are many pages in my book, they are all of different stories, different interests, so diverse that you would think my book was of many [&#8230;]]]></description>
								<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://successkata.com/wp-content/uploads/Woman-Face-in-Colours-1024x1024.jpg" width="240" />
		</p>
<p>What I focus on gets 100% of my attention and care.  That seems to be such a wonderful quality, until I try to add all the pieces together.  While there are many pages in my book, they are all of different stories, different interests, so diverse that you would think my book was of many people. </p>
<h4>Why is this relevent now?</h4>
<p>Recently, I decided that I was ready to re-start my career in technology.  Like most things that I do, focusing on ONE thing that I want to be good at and continue as a career has proved challenging.  </p>
<p>It all started when I began to compare my efforts with others.  Oh, don&#8217;t get me started, I know that is something one should never do, but alas there I was staring at all the GitHub accounts and blogs that were filled with a single focus.  These people are masters at this, how do I replicate this in the next 48 hours?  No, really, I did seriously consider that as a viable option.</p>
<p>While a resume is a very outdated way of presenting who we are as a person and a professional, it is still held in high regard.  Yep, dating myself here, but I was part of the generation that went to the copy store and found the most expensive paper I could afford to print my resume on.  Now, that same resume is held online for all to see and there is no need to impress with the weight of the paper and font selection. </p>
<h4>Diversity in Thought and Action </h4>
<p>Let&#8217;s just look at the last 12 months.  These are the things that don&#8217;t end up on a resume, but they are the actions I took which led me to where I am today.</p>
<p>Last year at this same time I was attending clases once a week, with field trips on Saturdays, to become a Texas Master Naturalist.  It was such an in-depth four months taught by amazing PhD&#8217;s in their given field of study.  We dug fossils up one week and handeled preserved fish the next.  </p>
<p>This has nothing to do with my interests in technolgy and it did not add to my GitHub account, but it was a very worthwhile experience.</p>
<p><img class="size-medium wp-image-1421 alignright" src="http://successkata.com/wp-content/uploads/f-bomb-e1567873786457-209x300.jpg" alt="" width="209" height="300" />Now, we are right up to the Christmas season and I spent a few weeks crocheting F-Bombs for my spouses entire team, along with homemade hand scrub for their spouses, and a cute mason jar with a mixed drink.  Oh, and lest I forget a personally curated present for each of their children. Very Pinterest worthy in the end.  Yep, still not GitHub worthy.</p>
<p>Next, came the season of building.  My adult son had returned home and so we needed to build out a room for him.  Over the next few months I learned many new skills: framing, drywalling, wiring, insulating, outside sheeting.  There was a lot of hard labor that happened in this short time.  Again, still not GitHub worthy. </p>
<p>Now, we have the season of learning.  This started in February of this year.  I attended DSS, a data science conference, with my spouse.  This kicked off the 30 days of free access to DataCamp that culminated in a paid subscribtion.  Boy did I fight hard, in some circles this might have been referred to as raging against the machine.  I could not wrap my head around Python being a good choice as a development tool.  So, I plodded my way through the exercises, sending my spouse snippets of code demonstrating my underlying point that Python should never have seen the light of day, let alone be used to solve the world&#8217;s problems, but I digress, the end result is that we are still empty on the GitHub worthy content.</p>
<p>Then along came an opportunity.  It started as a joke, and quickly changed into something of substance.  My spouse made the offhanded comment that I should work with him.  I picked up a book and started down the path of learning all there is to know about Linux System Engineering.  In the end I consumed three full texts with an average page count of 700+ pages.  I worked exercises, and applied my new found knowledge to some home machines.  No one, and I repeat, no one, can mess up a Linux box better than a child.  </p>
<p>It was during this time frame that the family experienced two devestating storms.  One that ripped the gooseneck off our house and tore down our power line.  This led to us taking down several trees and tons of cleanup, things like fishing the basketball hoop out of the pool.  The second was a lightening strike so close to the house that it went up the ground, frying oh so many electronics.  The graveyard of appliances, computers, switches, routers, and all things with cords would make any one cringe.  </p>
<h4>On the other side&#8230;</h4>
<p>So, here I am, on the other side of that year.  Picking up Python with a new understanding, it is just different, and it really does have value, back at with DataCamp, and with the inkling to start applying for jobs. </p>
<p>Yet, here I stand feeling like the imposter before I even begin.  What do I have to show for all the studying and work I have put in?  Where is my blog full of my lessons and awesome tidbits to share with others that may be sharing the journey of learning data science? Where is my GitHub account that is brimming with juicy exercises?</p>
<p>Well, a funny thing happened between my intentions of last year and where I stand now.</p>
<p>Life. </p>
<p>In the end, I am faced with the fact that part of what I would bring to any potential employer is diversity of experience. </p>
<ol>
<li>I was not afraid to pick up dead fish, wade through streams, or sit on the side of the road and dig up fossils.  It brought me great appreciations for the ecology of where I now call home. </li>
<li>My f-bombs are still talked about today.  As a matter of fact, two new people have started and I have but only a few days to make sure they have f-bombs.  </li>
<li>I picked up the hammer and skills to build, even though I never had in the past.  Under the tutalage and guidence of my spouse, I learned several new skills. </li>
<li>I was never afraid to open a terminal window and navigate a Linux system, now I am not afraid to diagnose a boot issue, network connectivity, performance, or a myriad of things that I just let my spouse handle in the past.</li>
<li>I have come to terms with Python and I am learning how to adapt my C++ knowledge to utilize Python for data science. </li>
</ol>
<p>While my GitHub account may not be brimming with hundereds of snippets of code, and my blog is filled with anyting from recipes to how to lead a team to success&#8230;I am, in the end a very well rounded person. </p>
<h4>Three Epiphanies </h4>
<p>I woke up this morning and decided that I was silly to compare myself.  Yeah, I know, that was a pretty obvious one that I should have already concluded, but alas, I am still human.</p>
<p>In short, I can end with this.</p>
<ol>
<li>I do not look like an average candidate and I never will.  Guess what?  I also decided that is a GOOD thing!</li>
<li>My experiences, no matter if it is learning to wire a plug or recover the /boot directory of a Centos box, they all matter. </li>
<li>While job hunting can be a very de-humanizing event, the results do not define me.</li>
</ol>
<p>Alas, it was a long journey to get here, but one that needed to be taken. When the right company is willing to take a chance on me, they will not be disappointed.  I can help remodel the building, do a little system adminstration work on the side, and still program up a pretty killer application. <img src="https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
]]></content:encoded>
							<wfw:commentRss>http://successkata.com/2019/the-imposter-in-all-of-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>5 Ways to Grab Joy Today</title>
		<link>http://successkata.com/2017/5-ways-to-grab-joy-today/</link>
				<comments>http://successkata.com/2017/5-ways-to-grab-joy-today/#respond</comments>
				<pubDate>Thu, 23 Feb 2017 19:48:02 +0000</pubDate>
		<dc:creator><![CDATA[jen]]></dc:creator>
				<category><![CDATA[Keys to Happiness]]></category>
		<category><![CDATA[Keys to Success]]></category>

		<guid isPermaLink="false">http://successkata.com/?p=1400</guid>
				<description><![CDATA[&#160; Daily Kata What do you choose to practice everyday? Success is created one small practice at time. I find to engage my joy fully I need to be showing up in a daily way. I thought I would take a moment to write about the five things I do every day to consciously orchestrate [&#8230;]]]></description>
								<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://successkata.com/wp-content/uploads/pregnantwarrior_bonbon.jpg" width="240" />
		</p>
<p><img class="aligncenter size-medium wp-image-1402" src="http://successkata.com/wp-content/uploads/pregnantwarrior_bonbon-300x225.jpg" alt="pregnantwarrior_bonbon" width="300" height="225" srcset="http://successkata.com/wp-content/uploads/pregnantwarrior_bonbon-300x225.jpg 300w, http://successkata.com/wp-content/uploads/pregnantwarrior_bonbon-150x113.jpg 150w, http://successkata.com/wp-content/uploads/pregnantwarrior_bonbon.jpg 500w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>&nbsp;</p>
<h1>Daily Kata</h1>
<p>What do you choose to practice everyday? Success is created one small practice at time. I find to engage my joy fully I need to be showing up in a daily way. I thought I would take a moment to write about the five things I do every day to consciously orchestrate joy.</p>
<ol>
<li><strong>Get up and move &#8212; </strong>Sometimes a walk, sometimes more, but the body was made to move. There is so much science out there about oxygenating your brain or burning off last night&#8217;s pizza. In the end, it comes down to finding happiness in however your body articulates. I know for me there are days when the only movement I get for hours is adjusting my chair, but those are not the good days.  I find that when I am stuck on a solution, or just a bit sleepy after lunch, the best remedy is to get up, even if that means to the whiteboard for a furious brainstorming session.  I recently came across a pattern of movement that is so beneficial.  Their mantra is &#8220;Start where you are, use what you have, do what you can.&#8221;  It is called <a href="http://www.originalstrength.com/">Original Strength</a>, check them out, take ten minutes out of every day and regain the strength you were born with.</li>
<li><strong>Learn Something New &#8212; </strong>Just like our bodies were made to move, our brains were made to think.  Learning is such a fundamental part of being human.  Maybe you will find a new hobby!  This could be as easy as learning a new word, in your own language or bonus points for one that is not your native language.  Knowledge is never wasted, it never expires, and it makes sure you can always kick ass in trivia challenges.</li>
<li><strong>Help Someone to Laugh &#8212;</strong> A good belly laugh does everyone good.  To find a true expression of joy, find something that not only makes you laugh, but also the person you are with.  Do something silly that will imbue joy into the day.  There is always room for a good giggle and sometimes being the reason someone giggles brings just a wee bit of extra joy your way.</li>
<li><strong>Try It &#8212;</strong> I don&#8217;t presume to know what IT is for you, but try IT!!  There is something you have been thinking about, something that you are unsure about, something that you want to do, but you&#8217;re not too sure about&#8230;NOW&#8230;DO IT NOW!!  Time is something that moves whether you are paying attention or not, there is no time like the now.  Get out there and do the things that you want to do, try the new foods, explore your neighborhood.  Doing is definitely a way to find joy.  Only through exploration can we unlock the hidden gems that are waiting for us.  This journey only happens once, so make it a good trip!</li>
<li><strong>Meditate &#8212; </strong>You don&#8217;t have to go all woo-woo, but seriously taking some time out of your day to close your eyes, breath deep into your gut, and let your mind go wild is all it takes to get a little euphoria.  Getting a little extra oxygen certainly plays a major part in helping your brain move about freely!!  Who said meditation has to be about a quite brain!  Maybe for you meditation is about expressing what you are normally shoving to the back of your thoughts.  Letting those thoughts dance and play is definitely a way to find joy.</li>
</ol>
<p>Bonus&#8230;life is too short for cheap yarn.</p>
<p>This amazing picture was taken by Bonbon on Flickr, to see more of his amazing work <a href="https://www.flickr.com/photos/justbecause/" target="_blank">click here</a>.</p>
]]></content:encoded>
							<wfw:commentRss>http://successkata.com/2017/5-ways-to-grab-joy-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>45 Seconds of Zen</title>
		<link>http://successkata.com/2016/45-seconds-of-zen/</link>
				<comments>http://successkata.com/2016/45-seconds-of-zen/#respond</comments>
				<pubDate>Tue, 02 Feb 2016 20:04:36 +0000</pubDate>
		<dc:creator><![CDATA[jen]]></dc:creator>
				<category><![CDATA[Keys to Happiness]]></category>

		<guid isPermaLink="false">http://successkata.com/?p=1381</guid>
				<description><![CDATA[When you have only 45 seconds to get your Zen on, can you do it? Today, I was trying in vain to go through a guided meditation.  It started out so innocently as just wanting a few moments to re-center and focus.  The babbling brook fountain was actively creating the right environment, so I surveyed [&#8230;]]]></description>
								<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://successkata.com/wp-content/uploads/meditate.jpg" width="240" />
		</p>
<p>When you have only 45 seconds to get your Zen on, can you do it?</p>
<p>Today, I was trying in vain to go through a guided meditation.  It started out so innocently as just wanting a few moments to re-center and focus.  The babbling brook fountain was actively creating the right environment, so I surveyed the situation. <img class="alignright wp-image-1383 size-medium" src="http://successkata.com/wp-content/uploads/the-noise-300x200.jpg" alt="the-noise" width="300" height="200" srcset="http://successkata.com/wp-content/uploads/the-noise-300x200.jpg 300w, http://successkata.com/wp-content/uploads/the-noise-768x512.jpg 768w, http://successkata.com/wp-content/uploads/the-noise-1024x683.jpg 1024w, http://successkata.com/wp-content/uploads/the-noise-150x100.jpg 150w, http://successkata.com/wp-content/uploads/the-noise-600x400.jpg 600w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p><div class="shortcode-unorderedlist tick"></p>
<ul>
<li>It has been quiet for the last hour.</li>
<li>The sun is shining.</li>
<li>I found just the right guided meditation.</li>
</ul>
<p></div>
</p>
<p>Check, check, check, all is right in the world!</p>
<p>Mind you the guided meditation I found was for TEN WHOLE MINUTES!</p>
<p>I put on my headphones, and prepared myself for the peace that was to come.  Listening to that wonderful waterfall and golden silence (being a parent has taught me that silence is sometimes more valuable than gold, but platinum silence is just not a thing yet&#8230;I&#8217;m working on it.)</p>
<p>OK.  I got this!</p>
<p>Ready, set, pushing the play button now!</p>
<p>After the first interruption I was good.  Got right back to it.  Then there was the sounds of singing.  Singing?  These kiddos are in the middle of taking a test online&#8230;there is not supposed to be singing!!</p>
<p>Singing managed.</p>
<p>Eyes closed, recording playing, one breath in, and there were eyes staring at me.  I felt them boring a hole into my back.  I tried to ignore them.  I tried to say it was my mind playing tricks on me as I was trying to meditate, but alas I gave in.  Sure enough not two steps behind me was a little that needed something.</p>
<p>I was 45 seconds into my bliss when I realized that for now it was going to have to last, for now.</p>
<p>Today will be the start of my scientific adventure into finding the vibe that moms give off when they are trying to be alone.  You know the one, it is the same one that children mistake as a call to action.  The most common occurrence happens when a well meaning mom thinks that her time in the restroom should be alone time and the littles in her life suddenly have so many questions.</p>
<p>I&#8217;m quite positive that if I can counteract that &#8220;alone&#8221; vibe I will no longer need to worry about seeing the water bill the month after the kids decide that a homemade swimming hole is just what the back yard needed while mommy was meditating.  But I digress, it is not all about the money, it is about finding ten minutes of bliss when needed.</p>
<p>All kidding aside, it is not unusual that mom&#8217;s struggle to find time to do some of our most mundane, every day tasks, like showering, without a knock on the door with a perceived emergency.</p>
<p>Some moms have found that they can snare a little time in the morning.  I am NOT a morning person.  Not to mention, two of my littles often compete to see what it is like to be up before the sun&#8230;that is an unfortunate truth in my house.  Yet, trying to zen at 10pm just doesn&#8217;t seem right either.</p>
<p><img class="aligncenter wp-image-1382 size-medium" src="http://successkata.com/wp-content/uploads/meditate-300x203.jpg" alt="" width="300" height="203" srcset="http://successkata.com/wp-content/uploads/meditate-300x203.jpg 300w, http://successkata.com/wp-content/uploads/meditate-768x521.jpg 768w, http://successkata.com/wp-content/uploads/meditate-150x102.jpg 150w, http://successkata.com/wp-content/uploads/meditate-600x407.jpg 600w, http://successkata.com/wp-content/uploads/meditate.jpg 798w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>The truth&#8230;My health, my sanity, and my focus depend on meditation!!</p>
<p>So, until I can find the magic &#8220;I need attention now&#8221; vibe shut off button, it is up to me to find the time.  In the meantime, here are a few solid pieces of advice for getting your Zen in places you might not have thought about.</p>
<p><div class="shortcode-unorderedlist arrow"></p>
<ul>
<li><strong>Waiting for kids</strong> in the car, use something like Buddhify (http://buddhify.com/).  No, I don&#8217;t work there and I don&#8217;t get a kickback, they just have a rock solid mobile way to find your Zen even if you only have a minute or two.</li>
<li><strong>Before you leave your room</strong>.  Realize that the war zone is outside that door.  That struggle between your time and their needs only happens once you open the door.  So take a few moments to yourself and mediate on your intentions for the day.</li>
<li><strong>Set your intentions and just do it.</strong>  If your kids are old enough, it is perfectly OK to let them know you would like 20 minutes of undisturbed time and only SERIOUS emergencies should cause an interruption from them.  No, your kiddos do not understand closed eyes and lack of movement as a a queue to leave you alone, to them it is rather alarming and requires poking to ensure you are still operational and planning on making dinner.  BE CLEAR WHAT YOU NEED, and most importantly TAKE IT.</li>
<li>If you are blessed enough to have another person in your life that shares the journey of parenthood, capitalize on it.  Grocery shopping time does not classify as alone time!  <strong>Enlist your partner</strong> in your journey.  Impress upon them the importance of meditation in your life so they can help make it happen.</li>
</ul>
<p></div>
</p>
<p>Remember, you are not alone in your journey and sometimes solving the problem requires enlisting those very vessels of unintentional interruptions.  Better yet,<strong> teach them the benefits of meditation</strong> and make it something you incorporate into your daily routine.</p>
<p><div class="woo-sc-quote"><p>In the end, be at peace with the imperfection and deep dive into the blissful times that you are afforded, especially that platinum silence of uninterrupted time. </p></div></p>
<p>&nbsp;</p>
]]></content:encoded>
							<wfw:commentRss>http://successkata.com/2016/45-seconds-of-zen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Time &#8211; The One Thing You Can Not Get More Of</title>
		<link>http://successkata.com/2016/time-the-one-thing-you-can-not-get-more-of/</link>
				<comments>http://successkata.com/2016/time-the-one-thing-you-can-not-get-more-of/#respond</comments>
				<pubDate>Wed, 27 Jan 2016 15:17:22 +0000</pubDate>
		<dc:creator><![CDATA[jen]]></dc:creator>
				<category><![CDATA[Keys to Meme About]]></category>

		<guid isPermaLink="false">http://successkata.com/?p=1378</guid>
				<description><![CDATA[]]></description>
								<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://successkata.com/wp-content/uploads/go-do-it.jpg" width="240" />
		</p>
<p><img class="aligncenter wp-image-1379 size-full" src="http://successkata.com/wp-content/uploads/go-do-it.jpg" alt="go-do-it" width="640" height="450" srcset="http://successkata.com/wp-content/uploads/go-do-it.jpg 640w, http://successkata.com/wp-content/uploads/go-do-it-300x211.jpg 300w, http://successkata.com/wp-content/uploads/go-do-it-150x105.jpg 150w, http://successkata.com/wp-content/uploads/go-do-it-600x422.jpg 600w" sizes="(max-width: 640px) 100vw, 640px" /></p>
]]></content:encoded>
							<wfw:commentRss>http://successkata.com/2016/time-the-one-thing-you-can-not-get-more-of/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Squirrel Zen</title>
		<link>http://successkata.com/2016/squirrel-zen-influencer/</link>
				<comments>http://successkata.com/2016/squirrel-zen-influencer/#respond</comments>
				<pubDate>Tue, 26 Jan 2016 22:17:27 +0000</pubDate>
		<dc:creator><![CDATA[jen]]></dc:creator>
				<category><![CDATA[Keys to Behavior Styles]]></category>

		<guid isPermaLink="false">http://successkata.com/?p=1287</guid>
				<description><![CDATA[So my teenage son just asked what I was doing, and without thinking I told him I was writing an article about Squirrel Zen. I wish I had a camera to capture the look that darted across his face. On to the story&#8230; I was watching a young squirrel play in the background and I [&#8230;]]]></description>
								<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://successkata.com/wp-content/uploads/squirrel_zen.jpg" width="240" />
		</p>
<p>So my teenage son just asked what I was doing, and without thinking I told him I was writing an article about Squirrel Zen. I wish I had a camera to capture the look that darted across his face.<br />
<img class="alignright size-full wp-image-1290" src="http://successkata.com/wp-content/uploads/squirrel-shirt.jpeg" alt="squirrel-shirt" width="212" height="237" /><br />
On to the story&#8230; I was watching a young squirrel play in the background and I started thinking about attention span.  Of course that leap didn&#8217;t happen in a vacuum, I was also looking online for the perfect Father&#8217;s Day gift and came across a squirrel disguise right at that very moment.</p>
<p>Look a squirrel! &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&gt;</p>
<h3>Treasure Your Squirrel-A-Holic</h3>
<p>Think of the most optimistic person you know and you are probably thinking of an influencer.  This person fears above all else social rejection, but loves to be the life of the party.</p>
<p>I wanted to take a moment to talk about the influencer as they are most often mistaken for someone with a short attention span.</p>
<p>Here are 5 things that you need to know about the influencers in your life.</p>
<ol>
<li><strong>Fast Paced!  </strong>They like things to change up a lot in the day.  Their attention will drift in really long meetings unless there are lot of topics and exciting exchanges of ideas.  <strong>What this means for your team&#8230;</strong> They will also bring the change in the meetings, interjecting creative solutions.</li>
<li><strong>Non-Linear! </strong>While they are thinking about the end and the few parts in the middle that will get them to the goal, the person trying to nail down step one with the influencer might as well try to nail Jell-o to the wall!  <strong>What this means for your team&#8230; </strong>These are the dreamers.  They see the big picture and since they typically communicate very well they will be able to spin that vision to others.</li>
<li><strong>Optimistic!  </strong>The influencer will wait to the bitter end to throw in the towel and even then someone else will have to throw it in for them.  <strong>What this means for your team&#8230;  </strong>If you have ever read the story &#8220;Three Feet From Gold&#8221; then you will know that in the end the optimist will make that three extra feet to the finale!</li>
<li><strong>Persuasive!  </strong>The influencer is very powerful with their words and presence, they will negotiate, cajole, and energize those around them.  <strong>What this means for your team&#8230;</strong>  The influencer is your sales person, they will take an idea, make it theirs, and get others to follow along.</li>
<li><strong>Flattery!  </strong>With an influencer the old adage, &#8220;Flattery will get you every thing.&#8221; is indeed held true.  <strong>What this means for your team&#8230;</strong>  Giving the influencer the proper public acknowledgment will mean that they will continue to be focused on the success of the team.</li>
</ol>
<p>Now the truth has to be told.  I have a <strong>*tad*</strong> bit of influencer in my character.  I began this post over two years ago.  At that time, the teenager mentioned still lived here.  Probably the biggest lesson of this entire article and the bonus:</p>
<p><strong>Freezes!  </strong>The influencer will freeze, forget, and move on when there is something that they cannot figure out.  In this case the article was originally calling out <strong>ten things you need to know&#8230; </strong>When I reached four, my fingers stopped typing and I didn&#8217;t look back (that is until now).  <strong>What that means for your team&#8230; </strong>When you see that an influencer is stuck in a loop and not achieving the results that are needed, typically it is an infusion of creativity that will get them moving and shaking again.  Don&#8217;t give up on such a valuable asset just because they get stuck in the muck!</p>
<p>May you find that all the <b>Zen </b>you need in a world where we have <strong>Squirrel-a-Holics </strong>(or more lovingly referred to as the influencers in your world).</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
							<wfw:commentRss>http://successkata.com/2016/squirrel-zen-influencer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Own Your Journey</title>
		<link>http://successkata.com/2016/own-your-journey/</link>
				<comments>http://successkata.com/2016/own-your-journey/#respond</comments>
				<pubDate>Tue, 26 Jan 2016 18:20:51 +0000</pubDate>
		<dc:creator><![CDATA[jen]]></dc:creator>
				<category><![CDATA[Keys to Success]]></category>

		<guid isPermaLink="false">http://successkata.com/?p=1370</guid>
				<description><![CDATA[]]></description>
								<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://successkata.com/wp-content/uploads/own-your-journey-300x225.jpg" width="240" />
		</p>
<p><a href="http://successkata.com/wp-content/uploads/own-your-journey.jpg" rel="lightbox[1370]" title="own-your-journey"><img class="aligncenter wp-image-1369 size-medium" src="http://successkata.com/wp-content/uploads/own-your-journey-300x225.jpg" alt="own-your-journey" width="300" height="225" srcset="http://successkata.com/wp-content/uploads/own-your-journey-300x225.jpg 300w, http://successkata.com/wp-content/uploads/own-your-journey-768x576.jpg 768w, http://successkata.com/wp-content/uploads/own-your-journey-1024x767.jpg 1024w, http://successkata.com/wp-content/uploads/own-your-journey-150x112.jpg 150w, http://successkata.com/wp-content/uploads/own-your-journey-600x450.jpg 600w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
]]></content:encoded>
							<wfw:commentRss>http://successkata.com/2016/own-your-journey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
	</channel>
</rss>
