<?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>Heftel Family</title>
	<atom:link href="http://heftelfamily.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://heftelfamily.com</link>
	<description>Ramblings about technology, music, family, and life</description>
	<lastBuildDate>Tue, 20 Dec 2011 18:40:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>AS3 ApplicationDomain misbehaves in subloaded SWF</title>
		<link>http://heftelfamily.com/903-as3-applicationdomain-misbehaves-in-subloaded-swf/</link>
		<comments>http://heftelfamily.com/903-as3-applicationdomain-misbehaves-in-subloaded-swf/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 18:40:54 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[applicationdomain]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[error 1065]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[referenceerror]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=903</guid>
		<description><![CDATA[This post is not meant to be a comprehensive tutorial on Flash&#8217;s ApplicationDomain class and how it is used, for that I recommend Senocular&#8217;s excellent guide on the subject.  Rather, I just wanted to make a quick note of what I have observed when using ApplicationDomain.currentDomain in a subloaded SWF &#8211; that it doesn&#8217;t seem to [...]]]></description>
			<content:encoded><![CDATA[<p>This post is not meant to be a comprehensive tutorial on Flash&#8217;s ApplicationDomain class and how it is used, for that I recommend Senocular&#8217;s <a href="http://www.senocular.com/flash/tutorials/contentdomains/?page=2" target="_blank">excellent guide on the subject</a>.  Rather, I just wanted to make a quick note of what I have observed when using ApplicationDomain.currentDomain in a subloaded SWF &#8211; <em>that it doesn&#8217;t seem to work properly.</em></p>
<p><em></em>When I have a SWF that is loaded into another SWF, and it uses ApplicationDomain.currentDomain.getDefinition to grab a class from <em>its own library, </em> it fails with the following error: ReferenceError: Error #1065: Variable [VARIABLE_NAME] is not defined.  I assume that ApplicationDomain.currentDomain is mistakenly returning the parent SWF&#8217;s ApplicationDomain, instead of the child SWF, though I don&#8217;t really know why.</p>
<p>So here&#8217;s the quick fix, for those of you looking to cut to the chase: instead of using ApplicationDomain.currentDomain in your child SWF, use loaderInfo.applicationDomain instead.  This will explicitly grab the child SWF&#8217;s ApplicationDomain, not the parent&#8217;s, and your code will work as expected.  <strong>Note:</strong> I have not tested whether loaderInfo works as expected if your SWF is not subloaded, i.e. if it is the root SWF on the stage.</p>
<p>So to recap &#8211; when instantiating dynamic classes in a subloaded SWF, don&#8217;t use this:</p>
<pre class="brush: plain; title: ;">ApplicationDomain.currentDomain.getDefinition</pre>
<p>Rather, use this:</p>
<pre class="brush: plain; title: ;">loaderInfo.applicationDomain.getDefinition</pre>
<p>And save yourself the hassle I went through the last day or two!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/903-as3-applicationdomain-misbehaves-in-subloaded-swf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS3 for each &#8230; in vs for &#8230; in</title>
		<link>http://heftelfamily.com/896-as3-for-each-in-vs-for-in/</link>
		<comments>http://heftelfamily.com/896-as3-for-each-in-vs-for-in/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 03:25:58 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=896</guid>
		<description><![CDATA[If you&#8217;re like me, remembering which version of the AS3 for &#8230; in loop does what is practically impossible.
So here is a reminder:
for each &#8230; in
Very simply, the for each &#8230; in loop iterates through the values of all properties associated with an object.
Example:
var obj:Object = {
  name:&#34;Will Smith&#34;
  occupation:&#34;Actor&#34;
};

for each (var prop [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me, remembering which version of the AS3 for &#8230; in loop does what is practically impossible.</p>
<p>So here is a reminder:</p>
<h3>for each &#8230; in</h3>
<p>Very simply, the for each &#8230; in loop iterates through the <strong>values</strong> of all properties associated with an object.</p>
<p>Example:</p>
<pre class="brush: plain; title: ;">var obj:Object = {
  name:&quot;Will Smith&quot;
  occupation:&quot;Actor&quot;
};

for each (var prop in myObject){
trace(prop);
}</pre>
<p>The above snippet will print the following:</p>
<pre class="brush: plain; title: ;">Will Smith
Actor
</pre>
<h3>for &#8230; in</h3>
<p>Conversely, the for &#8230; in loop iterates through the <strong>name of each property</strong> associated with an object.</p>
<p>Example:</p>
<pre class="brush: plain; title: ;">var obj:Object = {
  name:&quot;Will Smith&quot;
  occupation:&quot;Actor&quot;
};

for (var prop in myObject){
trace(prop);
}</pre>
<p>The above snippet will print the following:</p>
<pre class="brush: plain; title: ;">name
occupation
</pre>
<p>Hope this helps clear up some confusion!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/896-as3-for-each-in-vs-for-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Kings that Died&#8221; by Brannon Heftel</title>
		<link>http://heftelfamily.com/892-kings-that-died-by-brannon-heftel/</link>
		<comments>http://heftelfamily.com/892-kings-that-died-by-brannon-heftel/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 08:13:37 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[acoustic folk]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[brannon heftel]]></category>
		<category><![CDATA[music tracks]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=892</guid>
		<description><![CDATA[We recently recorded this awesome, original song by Brannon Heftel at the studio!  Check it out:
]]></description>
			<content:encoded><![CDATA[<p>We recently recorded this awesome, original song by Brannon Heftel at the studio!  Check it out:</p>
<object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fheftelstudios%2Fkings-that-died&amp;g=1&amp;auto_play=false&amp;show_comments=true"></param><param name="allowscriptaccess"
value="always"></param><embed allowscriptaccess="always"
height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fheftelstudios%2Fkings-that-died&amp;g=1&amp;auto_play=false&amp;show_comments=true"
type="application/x-shockwave-flash" width="100%"> </embed> </object>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/892-kings-that-died-by-brannon-heftel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ira Glass on Creativity</title>
		<link>http://heftelfamily.com/885-ira-glass-on-creativity/</link>
		<comments>http://heftelfamily.com/885-ira-glass-on-creativity/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 20:22:35 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[ira glass]]></category>
		<category><![CDATA[quotes]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=885</guid>
		<description><![CDATA[Best quote on creativity I have heard in awhile, possibly ever.

]]></description>
			<content:encoded><![CDATA[<p>Best quote on creativity I have heard in awhile, possibly ever.</p>
<p><object width="400" height="225"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=24715531&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=24715531&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/885-ira-glass-on-creativity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash AS3 Component CellRenderer Styles</title>
		<link>http://heftelfamily.com/880-flash-as3-component-cellrenderer-styles/</link>
		<comments>http://heftelfamily.com/880-flash-as3-component-cellrenderer-styles/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 17:47:12 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[combobox]]></category>
		<category><![CDATA[components]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[skinning]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=880</guid>
		<description><![CDATA[Adobe&#8217;s documentation for their components sucks.  I spent hours the other day figuring out how to style the cells in a ComboBox.  I figured I&#8217;d post the solution I found here, to save myself and others future grief.

To style the ComboBox itself, you can set &#8220;styles&#8221; by using the setStyle function, and this [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe&#8217;s documentation for their components sucks.  I spent hours the other day figuring out how to style the cells in a ComboBox.  I figured I&#8217;d post the solution I found here, to save myself and others future grief.<br />
<span id="more-880"></span><br />
To style the ComboBox itself, you can set &#8220;styles&#8221; by using the setStyle function, and this is documented on the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/controls/ComboBox.html">ComboBox page</a>.  It allows you to pass in a class to be used as the skin for various parts of the component in various states, or in some cases a TextFormat object to be used to style text.</p>
<p>But what if you want to ALSO style the cells in the dropdown portion of the ComboBox?  Well, then you need to use the setRendererStyle function, whose documentation very hard to find.  And it&#8217;s the List object that is responsible for styling the cells, not the ComboBox itself.  So assuming your combobox is named cb, you&#8217;d call cb.dropdown.setRendererStyle.  Here is a list of the possible styles that can be set using the setRendererStyle function.  This essential information is nowhere on the ComboBox documentation page.  Rather, it comes from <a href="http://help.adobe.com/en_US/as3/components/WS5b3ccc516d4fbf351e63e3d118a9c65b32-7fd4.html">this esoteric tech article</a>, which took me forever to find.</p>
<p>Anyway, here&#8217;s the list of cell styles that can be set.  You pass in the class to be used as the skin, i.e. create a symbol in the FLA library, export for ActionScript, and assign it a Class name.<br />
    disabledSkin and selectedDisabledSkin<br />
    downSkin and selectedDownSkin<br />
    overSkin and selectedOverSkin<br />
    upSkin and selectedUpSkin</p>
<p>The following styles apply to the text in the cell:<br />
    disabledTextFormat<br />
    textFormat<br />
    textPadding</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/880-flash-as3-component-cellrenderer-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad lockdown</title>
		<link>http://heftelfamily.com/875-ipad-lockdown/</link>
		<comments>http://heftelfamily.com/875-ipad-lockdown/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 14:51:34 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[lockdown]]></category>
		<category><![CDATA[tinkering]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=875</guid>
		<description><![CDATA[This is my first post from an iPad. No, not mine, but my uncle&#8217;s. I&#8217;m visiting family in Texas and my grandparents and several aunts and uncles and cousins flew up from Hawaii so it&#8217;s kind of a bit of a family reunion. I am actually faster on my iPhone&#8217;s smaller touch keyboard. Typing with [...]]]></description>
			<content:encoded><![CDATA[<p>This is my first post from an iPad. No, not mine, but my uncle&#8217;s. I&#8217;m visiting family in Texas and my grandparents and several aunts and uncles and cousins flew up from Hawaii so it&#8217;s kind of a bit of a family reunion. I am actually faster on my iPhone&#8217;s smaller touch keyboard. Typing with multiple fingers on a keyboard with no tactile response will take some getting used to. </p>
<p>What a crazy world we live in, always-connected and always-on. I have been going through internet withdrawal this week cuz my mom doesn&#8217;t have a home internet connection. I&#8217;m writing this post from a mobile touchscreen computer, on a mobile wifi hotspot, from the car, while en route to the beach.</p>
<p>And yet some things about this device are so locked down it feels like a step backward. The iPad doesn&#8217;t have a file system I can use, doesn&#8217;t let me upload or download files, and I can&#8217;t save pictures to it to upload unless I connect it to a different computer. As a result, I can&#8217;t add any pictures to this post. I&#8217;m connected, but still feeling the withdrawal.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/875-ipad-lockdown/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nelson Mandela is a stud</title>
		<link>http://heftelfamily.com/871-nelson-mandela-is-a-stud/</link>
		<comments>http://heftelfamily.com/871-nelson-mandela-is-a-stud/#comments</comments>
		<pubDate>Tue, 24 May 2011 16:27:53 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[quotes]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=871</guid>
		<description><![CDATA[Our deepest fear is not that we are inadequate. Our deepest fear is that we are powerful beyond measure. It is our light, not our darkness that most frightens us. We ask ourselves, Who am I to be brilliant, gorgeous, talented, fabulous? Actually, who are you not to be? You are a child of God. [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Our deepest fear is not that we are inadequate. Our deepest fear is that we are powerful beyond measure. It is our light, not our darkness that most frightens us. We ask ourselves, Who am I to be brilliant, gorgeous, talented, fabulous? Actually, who are you not to be? You are a child of God. Your playing small does not serve the world. There is nothing enlightened about shrinking so that other people won&#8217;t feel insecure around you. We are all meant to shine, as children do. We were born to make manifest the glory of God that is within us. It&#8217;s not just in some of us; it&#8217;s in everyone. And as we let our own light shine, we unconsciously give other people permission to do the same. As we are liberated from our own fear, our presence automatically liberates others.</p></blockquote>
<p>-Nelson Mandela</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/871-nelson-mandela-is-a-stud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On change</title>
		<link>http://heftelfamily.com/870-on-change/</link>
		<comments>http://heftelfamily.com/870-on-change/#comments</comments>
		<pubDate>Sat, 21 May 2011 17:49:15 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[be yourself]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[introspection]]></category>
		<category><![CDATA[single life]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/870-on-change/</guid>
		<description><![CDATA[They say &#8220;nothing in life is more constant than change.&#8221; Life is basically one long string of adjusting to changes that happen, through our own choices or through others&#8217;. In the last almost-a-year, there have been a ton of changes in my life. I have basically re-built my life from the ground up, after the [...]]]></description>
			<content:encoded><![CDATA[<p>They say &#8220;nothing in life is more constant than change.&#8221; Life is basically one long string of adjusting to changes that happen, through our own choices or through others&#8217;. In the last almost-a-year, there have been a ton of changes in my life. I have basically re-built my life from the ground up, after the nuclear bomb of divorce shattered it. All my old patterns and habits disappeared in the aftermath, and I was left a shell of my former self. I found myself actively clearing away the rubble of lost inside jokes, habits that were never me, traits that I&#8217;d picked up to keep the peace. I found myself asking the question, over and over, &#8220;but who the hell AM I?&#8221;</p>
<p>I&#8217;m still working on that question, but I feel I have come a long way in ten or eleven months. I still have a long way to go, but I feel in some measure like I&#8217;m healing, and somewhat adjusting to my new life. All the old has been stripped away, and some of it has been replaced by new. Some of it is still in-progress. There is one difference &#8211; I live for ME now. One thing I never quite got down while married was how to live for another without losing yourself. How to live for the new team you&#8217;ve created. I think it&#8217;s because I never knew myself to begin with. This made me impossible to live with, because I tended to chameleonize to match my surroundings. I still have a ways to go, but I know now somewhat who I am, and I am done apologizing for it. I need to find someone who will accept me the way I am, a music and computer geek, because nothing&#8217;s gonna change that. And trying to be someone you&#8217;re not never brings peace. As Shakespeare said, &#8220;to thine own self be true.&#8221;</p>
<p>I&#8217;m not saying I  don&#8217;t need to try and improve myself &#8211; on the contrary, I am just as focused on self-improvement as I was when I was perfectionistic and saw everything in black and white. The difference now is that I accept where I am, no matter how low that might be, and I work from there. You have to start from where you are. Shaming yourself won&#8217;t change anything; it will just keep you stuck where you don&#8217;t want to be.</p>
<p>I&#8217;m done apologizing for who I am. I am done hiding under a bushel, so to speak, in hopes that I will fit in with the crowd, in hopes of looking &#8220;normal&#8221;. Normal is overrated! Being myself is much more fun.</p>
<p>It&#8217;s not like there aren&#8217;t still tough moments in my life. One change I have not quite gotten used to yet is waking up alone, post-divorce. Once you&#8217;ve experienced waking up next to your best friend, not having to say goodnight, and knowing that person will always be there in your life, it&#8217;s surprisingly hard to go back. It has been almost a year since my marriage ended, and I still don&#8217;t enjoy waking up most mornings. Looking around and realizing &#8220;oh yeah. This is my life now.&#8221;</p>
<p>But there are still plenty of good things in my life. They&#8217;re just, well, different things now. I&#8217;m trying to enjoy the chapter of my life I&#8217;m in, rather than wishing for something that&#8217;s not there. Yeah, sometimes I wish I had those years back that we &#8220;wasted&#8221; on marital incompatibilities and fights, but if I hadn&#8217;t gone through that pain I wouldn&#8217;t be where I am today.</p>
<p>I like my life, ultimately. I like myself. I&#8217;m trying new and different things, expanding my horizons, making friends and trying to make a difference in the world, in their lives. A positive difference. I am loving learning how to use power tools, working on studio improvements, networking in the music industry, learning how to take care of myself and my surroundings, becoming my own best friend, learning to be self-reliant, learning to make better choices. Learning to surround myself with positive, uplifting people. Learning from both the similarities and differences between me and my friends, learning what I agree and disagree with. Making fun, uplifting games for kids. Getting paid to do what I love. Figuring out, finally, that I am addicted to music and don&#8217;t ever want to recover. Working on my keyboarding and vocal skills. Working on my business skills. Working on being the best me I can be, instead of worrying about being alone.</p>
<p>Ultimately, I am trying to live the Gospel of Jesus Christ. The theory has always been there, as long as I can remember, but now I&#8217;m putting it into practice.</p>
<p>It&#8217;ll be exciting what the future brings.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/870-on-change/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>On the importance of physical exertion</title>
		<link>http://heftelfamily.com/869-on-the-importance-of-physical-exertion/</link>
		<comments>http://heftelfamily.com/869-on-the-importance-of-physical-exertion/#comments</comments>
		<pubDate>Wed, 18 May 2011 02:21:56 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Exercise]]></category>
		<category><![CDATA[physical labor]]></category>
		<category><![CDATA[remodeling]]></category>
		<category><![CDATA[studio]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/869-on-the-importance-of-physical-exertion/</guid>
		<description><![CDATA[I have a sedentary job. TWO sedentary jobs, actually &#8211; I am either sitting on my butt writing computer code, or sitting on my butt recording and mixing audio. When I go home, I play video games or surf the Internet. I&#8217;m always staring at a screen of some kind.
I&#8217;ve gained a bit of weight [...]]]></description>
			<content:encoded><![CDATA[<p>I have a sedentary job. TWO sedentary jobs, actually &#8211; I am either sitting on my butt writing computer code, or sitting on my butt recording and mixing audio. When I go home, I play video games or surf the Internet. I&#8217;m always staring at a screen of some kind.</p>
<p>I&#8217;ve gained a bit of weight as a result, since my metabolism is not as young as it used to be. Lately I&#8217;ve been trying to be more active &#8211; working with my hands is never something I&#8217;ve felt any good at, seeing as my family growing up was decidedly white-collar. Fix something? I&#8217;m the LAST guy you should call, or so I thought.</p>
<p>All of this has led to a somewhat startling realization &#8211; any day where I get to use power tools is a good day.</p>
<p>Lately I&#8217;ve been doing a bunch of remodeling at my recording studio, and it has been SO empowering to do as much of the work myself as possible. I now own a drill, a level, a few saws, and I make as much use of them as possible.</p>
<p>It&#8217;s SUCH a good feeling to look at something physical &#8211; a new wall, some shelves, a paint job, or whatever &#8211; and say &#8220;I did that!&#8221; It takes away from my frustration, my depression, my cabin fever &#8211; and it gives me vigor, energy, self-esteem, and life!</p>
<p>And that is never a bad thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/869-on-the-importance-of-physical-exertion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Audiophiles</title>
		<link>http://heftelfamily.com/788-audiophiles/</link>
		<comments>http://heftelfamily.com/788-audiophiles/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 22:28:44 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=788</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://xkcd.com/841/"><img class="alignnone xkcd" title="Audiophiles" src="http://imgs.xkcd.com/comics/audiophiles.png" alt="Audiophiles" width="592" height="228" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/788-audiophiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>April Fools Fun</title>
		<link>http://heftelfamily.com/850-april-fools-fun/</link>
		<comments>http://heftelfamily.com/850-april-fools-fun/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 07:09:34 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[april fools]]></category>
		<category><![CDATA[kernel panic]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[prank]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=850</guid>
		<description><![CDATA[Well, I had some fun this April Fool&#8217;s.  I pulled off a successful prank for the first time in I-don&#8217;t-know-how-long, and possibly forever.  I&#8217;ve never been much good at pranks, as I have troubles being convincing, and troubles not giving it away.
Not this time (he he he).
I found a really awesome screensaver that mimics an [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2011/04/IMG_0267.jpg" rel="shadowbox[sbpost-850];player=img;"><img class="alignleft size-medium wp-image-851" title="Kernel Panic Screensaver" src="http://heftelfamily.com/wp-content/uploads/2011/04/IMG_0267-300x225.jpg" alt="" width="300" height="225" /></a>Well, I had some fun this April Fool&#8217;s.  I pulled off a successful prank for the first time in I-don&#8217;t-know-how-long, and possibly forever.  I&#8217;ve never been much good at pranks, as I have troubles being convincing, and troubles not giving it away.</p>
<p>Not this time (he he he).<span id="more-850"></span></p>
<p>I found a really awesome screensaver that mimics an OSX Kernel Panic.  For those of you who don&#8217;t know what this is, a Kernel Panic is the Mac equivalent of a Windows Blue Screen of Death.  This is where the computer crashes completely and needs to be manually powered off and rebooted.</p>
<p>Yeah.  So I installed it on the recording computer at the studio, late on the night of March 31st.  And waited for the fun to begin.</p>
<p>We had a recording session the next morning with a band.  Jessica was running it.</p>
<p>She rebooted the computer once and almost did a second time before she figured out what was going on <img src='http://heftelfamily.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>It was pretty classic.  I must say, I felt quite proud of myself.  My only regret was not being there to see her reaction.</p>
<p>If you&#8217;re interested downloading the screensaver, it can be found <a title="Kernel Panic Screensaver" href="http://doomlaser.com/kernel-panic-screensaver/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/850-april-fools-fun/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Permission to sleep</title>
		<link>http://heftelfamily.com/841-permission-to-sleep/</link>
		<comments>http://heftelfamily.com/841-permission-to-sleep/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 07:47:06 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[manic]]></category>
		<category><![CDATA[relaxation]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[Sleep]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/841-permission-to-sleep/</guid>
		<description><![CDATA[Ok, this is weird &#8211; two blog posts in two days. I promise you won&#8217;t hear from me so much in the future  .
The title of this post comes from a thought I had, lying here in bed. I&#8217;ve always been a night owl, always periodically found myself awake far too late, when all [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, this is weird &#8211; two blog posts in two days. I promise you won&#8217;t hear from me so much in the future <img src='http://heftelfamily.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>The title of this post comes from a thought I had, lying here in bed. I&#8217;ve always been a night owl, always periodically found myself awake far too late, when all the sensible people are asleep. Part of me likes this time when there isn&#8217;t anyone to distract me. Part of me thinks it&#8217;s awfully lonely. But here&#8217;s my point &#8211; I need to learn to give myself permission to sleep. After a long day&#8217;s work, my brain is tired, but still literally buzzing with activity. The frenzy of mental exertion that is my workday, working as a flash programmer, doesn&#8217;t easily stop just because I turn off the computer and get in bed. Instead, I often find myself unable to sleep as my mind relentlessly turns. Sometimes, I must admit, I&#8217;m reluctant to listen to my body and come down off the mental high once the end of the day hits. My body is complaining, begging me to sleep, while my mind chants &#8220;more, more, more!&#8221; The older I get, the less benefit I get from burning the candle at both ends. In other words, this is not a sustainable behavior. And since I am busier than ever, I need to get my sleeping habits in order so I can keep a schedule, and maintain an adult work week.</p>
<p><span id="more-841"></span></p>
<p>So here I go: I give myself permission to fall asleep. The craze of the day is gone, the letdown is okay, learn to coexist with your body instead of fighting against it and you&#8217;ll both be much happier.</p>
<p>It is okay to sleep.</p>
<p>It is necessary. You are not superman. You are, however, a diligent worker, and slow and steady wins the race, not manic bouts of insane productivity. I&#8217;ve always been good under pressure, a good pinch hitter. But can I consistently deliver, and stick to a maintainable schedule?</p>
<p>That, my friends, is the question. Welcome to adulthood.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/841-permission-to-sleep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Milestone: snowboarding</title>
		<link>http://heftelfamily.com/839-milestone-snowboarding/</link>
		<comments>http://heftelfamily.com/839-milestone-snowboarding/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 07:37:03 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[Snowboarding]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/839-milestone-snowboarding/</guid>
		<description><![CDATA[I went snowboarding on Saturday, for the first time in probably three years. It took a lot of initiative and determination to set the goal, and then follow through and not let setbacks get in the way. It took planning, sticking to my guns, and dealing with rescheduling. I had many other things that competed [...]]]></description>
			<content:encoded><![CDATA[<p>I went snowboarding on Saturday, for the first time in probably three years. It took a lot of initiative and determination to set the goal, and then follow through and not let setbacks get in the way. It took planning, sticking to my guns, and dealing with rescheduling. I had many other things that competed for my time that day and in the days leading up to it.<br />

<a href='http://heftelfamily.com/wp-content/uploads/2011/03/landscape-1.jpg' rel='shadowbox[sbalbum-839];player=img;' title='landscape 1'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2011/03/landscape-1-150x150.jpg" class="attachment-thumbnail" alt="landscape 1" title="landscape 1" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2011/03/me-on-lift.jpg' rel='shadowbox[sbalbum-839];player=img;' title='me on lift'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2011/03/me-on-lift-150x150.jpg" class="attachment-thumbnail" alt="me on lift" title="me on lift" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2011/03/ski-lift.jpg' rel='shadowbox[sbalbum-839];player=img;' title='ski lift'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2011/03/ski-lift-150x150.jpg" class="attachment-thumbnail" alt="ski lift" title="ski lift" /></a>
</p>
<p><span id="more-839"></span></p>
<p>When I went, I found that I am not as young as I used to be and my muscles complained that I have spent the last three years sitting at a desk job instead of using them. I remembered how to carve, how to maneuver, but my aerobic stamina was sadly lacking. My legs complained and felt like they were on fire.</p>
<p>But I did it. I stayed true to myself and did something that I truly felt I needed. I did something for me. Something I enjoy. I didn&#8217;t go with anyone, it was just me, the mountain, and all the other people out enjoying nature.</p>
<p>I took some good pictures but am having difficulty uploading them at the moment. Those will come later.</p>
<p>I feel good in my accomplishment. Boy am I sore afterwards. But there is also a smile on my face that outweighs the muscle aches. And even as I complain about the aches and pains, I feel good because I did something. I got out and used my muscles. I accomplished something.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/839-milestone-snowboarding/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What do people live for?</title>
		<link>http://heftelfamily.com/822-what-do-people-live-for/</link>
		<comments>http://heftelfamily.com/822-what-do-people-live-for/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 01:47:04 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[inspirational]]></category>
		<category><![CDATA[motorcycles]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=822</guid>
		<description><![CDATA[Watch this video, and then answer the question in the comments: what do you live for?  Yes, it&#8217;s a commercial, but it&#8217;s a darn good one.

]]></description>
			<content:encoded><![CDATA[<p>Watch this video, and then answer the question in the comments: what do you live for?  Yes, it&#8217;s a commercial, but it&#8217;s a darn good one.</p>
<p><object width="480" height="390"><param name="movie" value="http://www.youtube.com/v/vksdBSVAM6g?fs=1&amp;hl=en_US&amp;rel=0" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="480" height="390" src="http://www.youtube.com/v/vksdBSVAM6g?fs=1&amp;hl=en_US&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/822-what-do-people-live-for/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Danny Boy</title>
		<link>http://heftelfamily.com/815-danny-boy/</link>
		<comments>http://heftelfamily.com/815-danny-boy/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 07:08:47 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[danny boy]]></category>
		<category><![CDATA[muppets]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=815</guid>
		<description><![CDATA[This is the best rendition of &#8220;Danny Boy&#8221; that I have seen in a long, long while.  Enjoy!

]]></description>
			<content:encoded><![CDATA[<p>This is the best rendition of &#8220;Danny Boy&#8221; that I have seen in a long, long while.  Enjoy!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="390" 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/OCbuRA_D3KU?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="390" src="http://www.youtube.com/v/OCbuRA_D3KU?fs=1&amp;hl=en_US" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/815-danny-boy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How would you like your graphic design?</title>
		<link>http://heftelfamily.com/805-how-would-you-like-your-graphic-design/</link>
		<comments>http://heftelfamily.com/805-how-would-you-like-your-graphic-design/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 21:54:55 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[production]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=805</guid>
		<description><![CDATA[
Found this amazingly funny, but all-too-true graphic on my buddy Tracey Lee&#8217;s Facebook profile.  It applies to pretty much any creative industry.
Click for an enlarged graphic.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2011/02/design_venn_diagram.jpg" rel="shadowbox[sbpost-805];player=img;"><img class="alignnone size-medium wp-image-806" title="design_venn_diagram" src="http://heftelfamily.com/wp-content/uploads/2011/02/design_venn_diagram-224x300.jpg" alt="" width="224" height="300" /></a></p>
<p>Found this amazingly funny, but all-too-true graphic on my buddy Tracey Lee&#8217;s Facebook profile.  It applies to pretty much any creative industry.</p>
<p>Click for an enlarged graphic.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/805-how-would-you-like-your-graphic-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Snapshot of my best self</title>
		<link>http://heftelfamily.com/801-snapshot-of-my-best-self/</link>
		<comments>http://heftelfamily.com/801-snapshot-of-my-best-self/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 18:35:38 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[introspection]]></category>
		<category><![CDATA[psychology]]></category>
		<category><![CDATA[snapshot]]></category>
		<category><![CDATA[thought exercise]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/801-snapshot-of-my-best-self/</guid>
		<description><![CDATA[On this fine day, I find myself rather introspective. I thought I would do an exercise in thought. What follows is a snapshot of my best self, the person I am in embryo but hope to become full-time. The rules are that you must start each statement with &#8220;I am&#8221; or something equivalent, and the [...]]]></description>
			<content:encoded><![CDATA[<p>On this fine day, I find myself rather introspective. I thought I would do an exercise in thought. What follows is a snapshot of my best self, the person I am in embryo but hope to become full-time. The rules are that you must start each statement with &#8220;I am&#8221; or something equivalent, and the statements must be positive &#8211; they are goals, after all. It can be an evolving snapshot &#8211; you can come back and change it later, adding, modifying or subtracting as your life needs and goals change.</p>
<p>I encourage you to try it out yourself, and link to your own snapshot in the comments &#8211; I&#8217;d love to hear what you come up with.  Ok, without further ado, here it is:</p>
<p>I am&#8230;&#8230;.<span id="more-801"></span><br />
A good person with faults.<br />
An independent adult. I can take care of my own physical and emotional needs whether by myself or by reaching out to trusted friends and advisors.<br />
A good boss to my subcontractors.<br />
A spiritually tuned person &#8211; in touch with deity and dedicated to following, nurturing and acting on my faith.<br />
A caring leader. People can rely on me to be trustworthy.<br />
A good friend. Others can rely on me to listen without unwanted judgment or advice.<br />
A hard worker. I plan well, budget my time well and work well with others. I&#8217;m good at what I do and I go the extra mile to assure the client is pleased with my work.<br />
A musician. I draw strength and rejuvenation through my music and the music of others. I build and maintain my musical skills regularly. I share my music with others in hopes that they too will find something of value in it.<br />
A student of life &#8211; constantly nurturing body, mind and spirit, learning new things about life and the world around me.<br />
A balanced human being. I know when to work and when to play, and I accept both in their season. I get sufficient exercise and rest for my body and mind to operate at peak capacity.</p>
<p>There you go. I hope my sharing benefits you in some way. And again, I encourage you to try the exercise yourself. I would love to hear how it works out for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/801-snapshot-of-my-best-self/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011</title>
		<link>http://heftelfamily.com/798-2011/</link>
		<comments>http://heftelfamily.com/798-2011/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 09:03:30 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[growing]]></category>
		<category><![CDATA[growth]]></category>
		<category><![CDATA[new beginnings]]></category>
		<category><![CDATA[pain]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/798-2011/</guid>
		<description><![CDATA[Am I being the best I can be? Am I growing like I want to or need to? These are a couple of the questions on my mind tonight. I want to be the best person I can be, really work on growing, and this year is the perfect time to do it. I am [...]]]></description>
			<content:encoded><![CDATA[<p>Am I being the best I can be? Am I growing like I want to or need to? These are a couple of the questions on my mind tonight. I want to be the best person I can be, really work on growing, and this year is the perfect time to do it. I am excited for the new possibilities in my life, for the opportunity for real, if painful, growth. I want to live up to my true potential, as a son of God, as a flawed but trying human being.</p>
<p>I want this to be the year I dig into the thoughts and patterns that hold me back, and change things that may be dysfunctional in my life. I want to grow musically, spiritually, mentally, physically. I want to grow my business and see it succeed, and learn what I need to to run it. I want to overcome bad habits, unhealthy or dysfunctional thought patterns, and learn to overcome toxic shame and guilt. I want to be a good friend, a strength in other people&#8217;s lives. A good listener. &#8220;To have a friend, be one,&#8221; as the ceramic plaque that hung on my mom&#8217;s wall said. I want to be someone that others can turn to because I don&#8217;t give them unwanted advice. Because I give them strength. I want to be someone people can count on.</p>
<p>You only get one life. You might as well live it to the fullest. A great quote I saw today said that life is not only to be endured, but enjoyed. Too often we (read: I) forget that. Too often I get caught up in the problems and challenges of life, losing sight of the big picture in the process. Not being able to see the forest for the trees. As nickelback so eloquently said, &#8220;This is your life. Are you who you wanna be?&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/798-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What we&#8217;ve learned in 2064 years</title>
		<link>http://heftelfamily.com/792-what-weve-learned-in-2064-years/</link>
		<comments>http://heftelfamily.com/792-what-weve-learned-in-2064-years/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 18:06:47 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[budget]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=792</guid>
		<description><![CDATA[An interesting quote&#8230;&#8230;.
&#8220;The budget should be balanced, the Treasury should be refilled,public debt should be reduced, the arrogance of officialdom should betempered and controlled, and the assistance to foreign lands shouldbe curtailed lest Rome become bankrupt. People must again learn towork,  instead of living on public assistance.&#8221;
-Cicero, 55 B.C.
What have we really learned in the [...]]]></description>
			<content:encoded><![CDATA[<p>An interesting quote&#8230;&#8230;.</p>
<blockquote><p>&#8220;The budget should be balanced, the Treasury should be refilled,public debt should be reduced, the arrogance of officialdom should betempered and controlled, and the assistance to foreign lands shouldbe curtailed lest Rome become bankrupt. People must again learn towork,  instead of living on public assistance.&#8221;</p></blockquote>
<p>-Cicero, 55 B.C.</p>
<p>What have we really learned in the last 2064 years?</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/792-what-weve-learned-in-2064-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The descent of the RIAA into madness</title>
		<link>http://heftelfamily.com/775-the-descent-of-the-riaa-into-madness/</link>
		<comments>http://heftelfamily.com/775-the-descent-of-the-riaa-into-madness/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 07:52:34 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[madness]]></category>
		<category><![CDATA[RIAA]]></category>
		<category><![CDATA[TuneCore]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=775</guid>
		<description><![CDATA[Oh man.  The Tunecore blog just posted an article that blew my socks off.  I&#8217;ve had distrust of the RIAA growing in my heart for the last few years now, as I&#8217;ve watched them do the unthinkable, like spend $64 million suing their own customers.  This article so eloquently described how the RIAA has sunk [...]]]></description>
			<content:encoded><![CDATA[<p>Oh man.  The Tunecore blog just <a href="http://bit.ly/dWwhun">posted an article that blew my socks off</a>.  I&#8217;ve had distrust of the RIAA growing in my heart for the last few years now, as I&#8217;ve watched them do the unthinkable, like <a href="http://www.techeye.net/internet/riaa-spent-64-million-over-three-years-on-legal-fees">spend $64 million suing their own customers</a>.  This article so eloquently described how the RIAA has sunk from an agency that started off protecting and promoting artists to one who now blames  them for the demise of the traditional music industry.  If you have anything to do with the music industry, you have <em>got</em> to read it.</p>
<p><span id="more-775"></span>According to the article, the RIAA started off decently well, recognizing that the <em>artist</em> and the <em>music</em> were the lifeblood of the <em>music business</em>:</p>
<blockquote><p>The more obscure, self-released or “indie” the artist or label the better.  And the RIAA agreed.  Music was special and the artists that created it were valued. Thou shalt covet the musician and fan.</p></blockquote>
<p>Unfortunately, as time and technology progressed, the RIAA lost that vision.  Rather than adapting to changing market forces, like we all have to do, they remain stubbornly entrenched in a business model that is increasingly unmaintainable.  They sue their own customers, spending unimaginable sums of money driving consumers away, instead of investing in market research, and figuring out how to connect with consumers in the new digital era.</p>
<p>And so, the unthinkable happened:</p>
<blockquote><p>They searched for new people or companies to attack, but they had already blamed them all.  With no targets left, in a last moment of desperation, these few weary disillusioned out-of-touch with reality souls attacked the only thing that was left, the artist.  The very creators of the music, who were needed to fuel the machine they built, became the problem.</p>
<p>The artist was now the enemy.</p>
<p>In their minds, it was these other artists’ fault that the music they wanted to sell was not selling. These other artists just made too much music, and all this music confuses people, makes music fans not like music, makes them throw their hands up in the air and say, “There is just too much choice, I need someone else to tell me what I like. I can’t deal with other people suggesting bands and songs to me that are not working for record labels or radio stations.”</p>
<p>Instead of embracing this new world – a world where more music is being created, distributed, bought, sold, shared and listened to by more people and more musicians than at any point in history &#8211; the RIAA, A2IM, SoundExchange complacently sit silent as their board members, and in one last desperate attempt, attack the creators of music.</p>
<p>But it did not work.  2010 was the year of the artist with more artists selling more music now than at any point in history. And now as these few old school guard sit and ramble insanely about how music is killing music, after they have attacked and blamed everything and everyone for the shift in power and loss of control, there is only one more thing left for them to blame…themselves.</p></blockquote>
<p>As an artist and a musician, I am extremelygrateful for all the new outlets available for creating and promoting music.</p>
<p>Change happens to all of us &#8211; including the RIAA.  Seems everyone recognizes it but them.</p>
<p>Again &#8211; link to the full article <a href="http://bit.ly/dWwhun">here</a>.  I&#8217;d love to hear your thoughts in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/775-the-descent-of-the-riaa-into-madness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Patterns</title>
		<link>http://heftelfamily.com/774-patterns/</link>
		<comments>http://heftelfamily.com/774-patterns/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 19:47:16 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[new year]]></category>
		<category><![CDATA[patterns]]></category>
		<category><![CDATA[resolutions]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/774-patterns/</guid>
		<description><![CDATA[It is a new year. The time when people set resolutions for what they will accomplish or change in their lives. For me, it is a strange time. Lots of changes and transitions in my life. Lots of old things, old patterns that have gone away, replaced with new ones that I&#8217;m not so sure [...]]]></description>
			<content:encoded><![CDATA[<p>It is a new year. The time when people set resolutions for what they will accomplish or change in their lives. For me, it is a strange time. Lots of changes and transitions in my life. Lots of old things, old patterns that have gone away, replaced with new ones that I&#8217;m not so sure that I like. Life, as always, is bittersweet, filled with both happiness and tears. I suppose that is the way it&#8217;s supposed to be.</p>
<p>Sometimes I fear that the new patterns are too much, that I cant survive without the old ones, that I can&#8217;t fill the void that their destruction has left behind.</p>
<p><span id="more-774"></span>But I can adapt. I can change. I believe things happen for a reason and we can use the hard times in our life to our advantage. As always, I have my faith. I have friends and family that support and love me. I can approach the hard times in life in a way that in the end can strengthen, not destroy me. I can create new patterns that will replace and hopefully improve upon the old ones. And I have my faith. Of all the things in my life, I am most grateful for that, perhaps second only to the ability to choose.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/774-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inspirational Quotes for the new year</title>
		<link>http://heftelfamily.com/770-inspirational-quotes-for-the-new-year/</link>
		<comments>http://heftelfamily.com/770-inspirational-quotes-for-the-new-year/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 00:52:44 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[LDS]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/770-inspirational-quotes-for-the-new-year/</guid>
		<description><![CDATA[Here are some of my favorite quotes from the latest LDS general conference:
The world pursues enlightened self-interest. Yet the power is not in us to save ourselves. But it is in Him. Infinite and eternal, only our Savior’s Atonement transcends time and space to swallow up death, anger, bitterness, unfairness, loneliness, and heartbreak.
-Elder Gong

When the [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some of my favorite quotes from the latest LDS general conference:</p>
<blockquote><p>The world pursues enlightened self-interest. Yet the power is not in us to save ourselves. But it is in Him. Infinite and eternal, only our Savior’s Atonement transcends time and space to swallow up death, anger, bitterness, unfairness, loneliness, and heartbreak.<br />
-Elder Gong</p></blockquote>
<p><span id="more-770"></span></p>
<blockquote><p>When the disciples asked Jesus why they could not cast a devil out as they had just witnessed the Savior do, Jesus answered, “If ye have faith as a grain of mustard seed, ye shall say unto this mountain, Remove hence to yonder place; and it shall remove” (Matthew 17:20). I have never witnessed the removal of an actual mountain. But because of faith I have seen a mountain of doubt and despair removed and replaced with hope and optimism. Because of faith I have personally witnessed a mountain of sin replaced with repentance and forgiveness. And because of faith I have personally witnessed a mountain of pain replaced with peace, hope, and gratitude. Yes, I have seen mountains removed.<br />
-Bishop Edgley</p></blockquote>
<blockquote><p>I have struggled to find an adequate way to tell you how loved of God you are and how grateful we on this stand are for you. I am trying to be voice for the very angels of heaven in thanking you for every good thing you have ever done, for every kind word you have ever said, for every sacrifice you have ever made in extending to someone—to anyone—the beauty and blessings of the gospel of Jesus Christ.</p>
<p>-Elder Holland</p></blockquote>
<blockquote><p>The world will teach our children if we do not, and children are capable of learning all the world will teach them at a very young age. What we want them to know five years from now needs to be part of our conversation with them today. Teach them in every circumstance; let every dilemma, every consequence, every trial that they may face provide an opportunity to teach them how to hold on to gospel truths.</p>
<p>-Sister Rosemary Wixom</p></blockquote>
<blockquote><p>The two groups who have the greatest difficulty in following the prophet are the proud who are learned and the proud who are rich.</p>
<p>-Elder Claudio Costa</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/770-inspirational-quotes-for-the-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thoughts on &#8220;The Secret&#8221;</title>
		<link>http://heftelfamily.com/760-thoughts-on-the-secret/</link>
		<comments>http://heftelfamily.com/760-thoughts-on-the-secret/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 23:41:43 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[idealogical club]]></category>
		<category><![CDATA[positive thinking]]></category>
		<category><![CDATA[the secret]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=760</guid>
		<description><![CDATA[
It&#8217;s been awhile since I&#8217;ve posted anything from XKCD here, that amazing geeky web-comic that I love so much.  This strip talks about the power of positive thinking and how some people take it to an extreme.  I am all for positive thinking, and for taking responsibility for our choices, attitudes, and feelings, but some [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://xkcd.com/828/" target="_blank"><img class="xkcd alignnone size-full wp-image-762" title="XKCD Positive Attitude" src="http://heftelfamily.com/wp-content/uploads/2010/12/positive_attitude.png" alt="XKCD Positive Attitude" width="551" height="506" /></a></p>
<p>It&#8217;s been awhile since I&#8217;ve posted anything from XKCD here, that amazing geeky web-comic that I love so much.  This strip talks about the power of positive thinking and how some people take it to an extreme.  I am all for positive thinking, and for taking responsibility for our choices, attitudes, and feelings, but some people take it to such an extreme that they use it as a club to beat others over the head with.  <span id="more-760"></span>To me, that kind of defeats the point of &#8220;positive thinking.&#8221;  I like to believe that I, like the stick figure in the comic, also suck at being pessimistic.  There is all kinds of good in life.  I like to look for the positive, sure.</p>
<p>But I can&#8217;t pretend that life is happy 100% of the time, and I have an emotional need to acknowledge the things that make life bitter-sweet, rather than constantly framing them in positive-spun euphemisms.  As &#8220;The Princess Bride&#8221; so eloquently put it &#8211; &#8220;Life IS pain, highness.  Anyone who says otherwise is selling something.&#8221;</p>
<p>I also like to think that I&#8217;m getting better at not beating people over the head with idealogical clubs.  But I&#8217;ll leave that up to you to judge.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/760-thoughts-on-the-secret/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Thoughts on being human</title>
		<link>http://heftelfamily.com/756-thoughts-on-being-human/</link>
		<comments>http://heftelfamily.com/756-thoughts-on-being-human/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 07:21:13 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[balance]]></category>
		<category><![CDATA[fatigue]]></category>
		<category><![CDATA[human]]></category>
		<category><![CDATA[mortality]]></category>
		<category><![CDATA[run]]></category>
		<category><![CDATA[strength]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=756</guid>
		<description><![CDATA[Sometimes, we come face-to-face with our own mortality.  We think we can do anything, we reach for the sky, we aim for the stars, only to be reminded that when it all comes down to it, we&#8217;re still human.  Mortal.  Fallible.

I have a lot of patience with a lot of things.  [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes, we come face-to-face with our own mortality.  We think we can do anything, we reach for the sky, we aim for the stars, only to be reminded that when it all comes down to it, we&#8217;re still human.  Mortal.  Fallible.<br />
<span id="more-756"></span><br />
I have a lot of patience with a lot of things.  I am often patient with my computer, and I usually have a fair bit of patience for my fellowman.  Where I really struggle is having patience with myself.  With my own weakness.  My own faults.  My own&#8230;.. mortality.  There are so many good things I want to do, and in my mind&#8217;s eye I am like the mechanized human from the DROID commercials &#8211; efficient, productive, tireless.  But when it comes down to it, my body can only be pushed so far before it tires, before it weakens.  Why is this so hard for me to accept?  Why do I want to be a machine, and be efficient and productive all the time?  Why do I resent having to pull out of &#8220;the zone&#8221; for mundane things like food or sleep?</p>
<p>I think it&#8217;s because my mind likes soaring.  Feed my mind the proper stimulus, and it will get excited and soar in the clouds for hours on end, marveling at limitless possibilities.  Get me excited about a project, and I will work 12 hours without a break, because I believe in it, because I find it interesting, because it stimulates me.  I like to soar with my mind, up to the clouds and beyond, basking in the limitless possibilities that life provides.  I hate having to come down and take care of the physical needs of my body, because I feel it holds me back.</p>
<p>But part of being human is embracing our weaknesses.  Embracing who we are &#8211; the whole person, good and bad, strong and weak.  Part of being human is accepting our limitations, understanding that we are not able to run faster than we have strength.  I pushed too hard last week and my body rebelled.  I&#8217;ve been recovering from a cold this week, and sleeping, sleeping, sleeping.  I&#8217;m tired of sleeping!!  I want to be productive!  I have deadlines, clients, projects, and exciting tasks to perform, intriguing problems to solve!  No more of this taking-vitamins-and-crashing-out-on-nyquil crap!!</p>
<p>Ah, but it is not to be.  As much as I may desire to be something more, I am a man, and I ought to be content with the strength allotted me.  I ought to be content with the strength that I do have, instead of lusting after the strength that is unavailable to me.  &#8220;Patience, grasshopper&#8221;, I can almost hear the Lord saying.  &#8220;There is a time and a season for all things under heaven.&#8221;</p>
<p>But I don&#8217;t want to be patient!  I want to be a better person, right now!  I don&#8217;t want to sleep, I want to keep working and finish what I was doing instead of picking it up in the morning!</p>
<p>It&#8217;s these kinds of thoughts that lead to me getting sick.  It&#8217;s these kinds of thoughts that lead me to overwork and exhaust myself.  It&#8217;s these kinds of thoughts that I need to learn to control, to become a more well-balanced, happy person.  For if I don&#8217;t preserve my health, I won&#8217;t be able to do anything &#8211; and that is never fun.  Better to have some productivity than none at all.  Better something than nothing.</p>
<p>That&#8217;s all for today.  Hope you enjoyed reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/756-thoughts-on-being-human/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>apple, eat your heart out</title>
		<link>http://heftelfamily.com/737-apple-eat-your-heart-out/</link>
		<comments>http://heftelfamily.com/737-apple-eat-your-heart-out/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 22:46:05 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[atomic tom]]></category>
		<category><![CDATA[freaking sweet]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[train]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=737</guid>
		<description><![CDATA[Ok, this is freaking amazing.  In the video below, the band Atomic tom is playing one of their hit songs&#8230;. on the train&#8230; with nothing but 4 iPhones!  And it sounds seriously aMAZing!  You gotta check it out!  I love it when musicians get creative &#8211; I want to buy their album based on [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, this is freaking amazing.  In the video below, the band Atomic tom is playing one of their hit songs&#8230;. on the train&#8230; with nothing but 4 iPhones!  And it sounds seriously aMAZing!  You gotta check it out!  I love it when musicians get creative &#8211; I want to buy their album based on this video alone!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="300" 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/NAllFWSl998&amp;hl=en_US&amp;feature=player_embedded&amp;version=3" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="300" src="http://www.youtube.com/v/NAllFWSl998&amp;hl=en_US&amp;feature=player_embedded&amp;version=3" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>If you want to see the original live recording of the song, you can see it <a href="http://www.youtube.com/user/weareatomictom#p/u/1/KbpDUwfa3u8">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/737-apple-eat-your-heart-out/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flash Player 10 maximum bitmap size</title>
		<link>http://heftelfamily.com/727-flash-player-10-maximum-bitmap-size/</link>
		<comments>http://heftelfamily.com/727-flash-player-10-maximum-bitmap-size/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 19:48:53 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Flash Player 10]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[maximum bitmap size]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=727</guid>
		<description><![CDATA[Did you know that Flash Player 10 cannot handle bitmaps larger than roughly 8,000 pixels on a side?
Technically, the hard limit is 16,777,215 total image pixels, with a limit on each dimension of 8,192 pixels.  This information I obtained only after much Googling and is only available in an obscure Adobe tech note.
I ran into [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2010/09/actionscripticon_300x300.png" rel="shadowbox[sbpost-727];player=img;"><img class="alignleft size-thumbnail wp-image-678" title="ActionScript 3" src="http://heftelfamily.com/wp-content/uploads/2010/09/actionscripticon_300x300-150x150.png" alt="ActionScript 3" width="150" height="150" /></a>Did you know that Flash Player 10 cannot handle bitmaps larger than roughly 8,000 pixels on a side?</p>
<p>Technically, the hard limit is 16,777,215 <em>total image pixels</em>, with a limit on each dimension of 8,192 pixels.  This information I obtained only after much Googling and is only available in an <a href="http://kb2.adobe.com/cps/496/cpsid_49662.html">obscure Adobe tech note</a>.<span id="more-727"></span></p>
<p>I ran into this limit today while creating levels for a Flex platform game.  I had a level that was represented by a bitmap that was almost 13,000 pixels wide.  Since it was only 569 pixels tall it was less than 8,000,000 total pixels, well under the Flash Player limit, but because the width was so large Flash Player still choked on it.</p>
<p>The solution?  I broke the giant bitmap into pieces that were smaller than the limit and combined them in code.</p>
<p>Here is one case where code-based paradigm beats out a design-based paradigm &#8211; the Flash IDE wouldn&#8217;t let me create a MovieClip of that size (12,900 pixels), but AS3 would.</p>
<p>Ah, Flash.  You have so many amazing features and abilities that I love you for.  And so many quirks that I hate you for.</p>
<p>I hope that this helps someone out there!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/727-flash-player-10-maximum-bitmap-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>grannies with attitude</title>
		<link>http://heftelfamily.com/712-grannies-with-attitude/</link>
		<comments>http://heftelfamily.com/712-grannies-with-attitude/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 17:25:54 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[fresh]]></category>
		<category><![CDATA[grannies]]></category>
		<category><![CDATA[natures fresh]]></category>
		<category><![CDATA[rap]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=712</guid>
		<description><![CDATA[The ladies in this video have some serious attitude.  Check it out:

On a side note, I recorded, mixed and mastered the soundtrack.  Let me know in the comments what you think!
]]></description>
			<content:encoded><![CDATA[<p>The ladies in this video have some serious attitude.  Check it out:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="306" 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/AwZZDsRlECw?fs=1&amp;hl=en_US&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="306" src="http://www.youtube.com/v/AwZZDsRlECw?fs=1&amp;hl=en_US&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>On a side note, I recorded, mixed and mastered the soundtrack.  Let me know in the comments what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/712-grannies-with-attitude/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>I&#8217;m in trouble&#8230;.</title>
		<link>http://heftelfamily.com/703-im-in-trouble/</link>
		<comments>http://heftelfamily.com/703-im-in-trouble/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 22:52:09 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[lightning]]></category>
		<category><![CDATA[probability]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=703</guid>
		<description><![CDATA[This is so like me&#8230;.

]]></description>
			<content:encoded><![CDATA[<p>This is so like me&#8230;.</p>
<p><a href="http://xkcd.com/795/"><img class="alignnone xkcd" title="Conditional risk from XKCD" src="http://imgs.xkcd.com/comics/conditional_risk.png" alt="Conditional risk from XKCD" width="543" height="460" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/703-im-in-trouble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>does this happen to you too?</title>
		<link>http://heftelfamily.com/692-does-this-happen-to-you-too/</link>
		<comments>http://heftelfamily.com/692-does-this-happen-to-you-too/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 19:19:25 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=692</guid>
		<description><![CDATA[Today&#8217;s XKCD strip struck a little too close to home for me.  Is anyone else out there like me in this?  And what does it say about me?

]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s XKCD strip struck a little too close to home for me.  Is anyone else out there like me in this?  And what does it say about me?<span id="more-692"></span></p>
<p style="text-align: center;"><a href="http://xkcd.com/791/" target="_blank"><img class="aligncenter xkcd" title="XKCD &quot;Leaving&quot;" src="http://imgs.xkcd.com/comics/leaving.png" alt="XKCD &quot;Leaving&quot;" width="291" height="490" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/692-does-this-happen-to-you-too/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>30 grownup truths (humorous)</title>
		<link>http://heftelfamily.com/683-30-grownup-truths-humorous/</link>
		<comments>http://heftelfamily.com/683-30-grownup-truths-humorous/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 02:11:32 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[grownup]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[lists]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=683</guid>
		<description><![CDATA[So I just turned 28 years old, and I&#8217;ve now been around the block a few times.  I&#8217;ve learned the world is quite a different place than I thought it was when I was a kid.  I thought I&#8217;d share some of the &#8220;grownup truths&#8221; I&#8217;ve come across (note: for entertainment purposes only):


I think part [...]]]></description>
			<content:encoded><![CDATA[<p>So I just turned 28 years old, and I&#8217;ve now been around the block a few times.  I&#8217;ve learned the world is quite a different place than I thought it was when I was a kid.  I thought I&#8217;d share some of the &#8220;grownup truths&#8221; I&#8217;ve come across (<strong>note:</strong> for entertainment purposes only):</p>
<p><span id="more-683"></span></p>
<ol>
<li>I think part of a best friend&#8217;s job should be to immediately clear your computer history if you die.</li>
<li>Nothing sucks more than that moment during an argument when you realize you&#8217;re wrong.</li>
<li>I totally take back all those times I didn&#8217;t want to nap when I was younger.</li>
<li>There is great need for a sarcasm font.</li>
<li>How are you supposed to fold a fitted sheet?</li>
<li>Was learning cursive really necessary?</li>
<li>Google Maps really needs to start their directions on # 5. I&#8217;m pretty sure I know how to get out of my neighborhood.</li>
<li>Obituaries would be a lot more interesting if they told you how the person died.</li>
<li>I can&#8217;t remember the last time I wasn&#8217;t at least kind of tired.</li>
<li>Bad decisions make good stories.</li>
<li>You never know when it will strike, but there comes a moment at work when you know that you just aren&#8217;t going to do anything productive for the rest of the day.</li>
<li>Can we all just agree to ignore whatever comes after BluRay? I don&#8217;t want to have to restart my collection&#8230;again.</li>
<li>I&#8217;m always slightly terrified when I exit out of Word and it asks me if I want to save any changes to my ten-page technical report that I swear I did not make any changes to.</li>
<li>&#8220;Do not machine wash or tumble dry&#8221; means I will never wash this &#8211; ever.</li>
<li>I hate when I just miss a call by the last ring (Hello? Hello? Dang it!), but when I immediately call back, it rings nine times and goes to voice mail. What did you do after I didn&#8217;t answer? Drop the phone and run away?</li>
<li>I hate leaving my house confident and looking good and then not seeing anyone of importance the entire day. What a waste.</li>
<li>I keep some people&#8217;s phone numbers in my phone just so I know not to answer when they call.</li>
<li>I think the freezer deserves a light as well.</li>
<li>I disagree with Kay Jewelers. I would bet on any given Friday or Saturday night more kisses begin with Miller Lite than Kay.</li>
<li>Sometimes, I&#8217;ll watch a movie that I watched when I was younger and suddenly realize I had no idea what the heck was going on when I first saw it.</li>
<li>I would rather try to carry 10 over-loaded plastic bags in each hand than take 2 trips to bring my groceries in.</li>
<li>The only time I look forward to a red light is when I&#8217;m trying to finish a text.</li>
<li>I have a hard time deciphering the fine line between boredom and hunger.</li>
<li>How many times is it appropriate to say &#8220;What?&#8221; before you just nod and smile because you still didn&#8217;t hear or understand a word they said?</li>
<li>Shirts get dirty. Underwear gets dirty. Pants? Pants never get dirty, and you can wear them forever.</li>
<li>Is it just me or do high school kids get dumber &amp; dumber every year?</li>
<li>There&#8217;s no worse feeling than that millisecond you&#8217;re sure you are going to die after leaning your chair back a little too far.</li>
<li>driver I hate pedestrians, and as a pedestrian I hate drivers, but no matter what the mode of transportation, I always hate bicyclists.</li>
<li>Someimes I&#8217;ll look down at my watch 3 consecutive times and still not know what time it is.</li>
<li>Even under ideal conditions people have trouble locating their car keys in a pocket, finding their cell phone, and Pinning the Tail on the Donkey &#8211; but I&#8217;d bet money everyone can find and push the snooze button from 3 feet away, in about 1.7 seconds, eyes closed, first time, every time !</li>
</ol>
<p><strong>Note: </strong>these are for entertainment purposes only, and I mean offense to no one by them.  Just wanted to make ya smile. <img src='http://heftelfamily.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<ol></ol>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/683-30-grownup-truths-humorous/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>3D MovieClips with Flex and ActionScript 3</title>
		<link>http://heftelfamily.com/666-3d-movieclips-with-flex-and-actionscript-3/</link>
		<comments>http://heftelfamily.com/666-3d-movieclips-with-flex-and-actionscript-3/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 10:24:19 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[3d graphics]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[movieclips]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=666</guid>
		<description><![CDATA[For whatever reason, tonight my brain will not shut up, even after hours of watching Hulu.  So it&#8217;s time to share some of what I learned today.  Attention, non-geeks &#8211; this will be quite a technology-heavy post.  But there will be pretty pictures.
Flash has had the ability to do 3D for quite some time now, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2010/09/actionscripticon_300x300.png" rel="shadowbox[sbpost-666];player=img;"><img class="alignleft size-thumbnail wp-image-678" title="ActionScript 3" src="http://heftelfamily.com/wp-content/uploads/2010/09/actionscripticon_300x300-150x150.png" alt="ActionScript 3" width="150" height="150" /></a>For whatever reason, tonight my brain will not shut up, even after hours of watching Hulu.  So it&#8217;s time to share some of what I learned today.  Attention, non-geeks &#8211; this will be quite a technology-heavy post.  But there will be pretty pictures.</p>
<p>Flash has had the ability to do 3D for quite some time now, natively, without using any of the fancy libraries out there like <a href="http://www.papervision3d.org/" target="_blank">PaperVision3D</a>.  All you have to do is set the <strong>z</strong> property on a MovieClip.  Seriously, that&#8217;s all it takes.  And you know how you can rotate a MovieClip by setting the <strong>rotation</strong> parameter?  Now there are <strong>rotationX</strong>, <strong>rotationY</strong>, and <strong>rotationZ</strong> parameters.  Changing any of these through code will result in the MovieClip being displayed in three dimensions.  Groovy!<span id="more-666"></span></p>
<p>Here is a small example.  There are two ellipses that move back and forth in the Z axis.  They also rotate in three dimensions, one around the X axis and one around the Y axis.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="450" height="250" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="/static/flash/3d/3dellipses.swf" /><embed type="application/x-shockwave-flash" width="450" height="250" src="/static/flash/3d/3dellipses.swf"></embed></object></p>
<p>Click <a href="http://heftelfamily.com/static/flash/3d/3dellipses.fla" target="_blank">here </a>to download the source FLA for this demo.  It is a Flash CS5 file, so you must have Flash CS5 to open it.</p>
<p>Here is the source code, in case you don&#8217;t have Flash CS5.  All you need to do is add two MovieClips to the stage, one called ellipse1 and the other called ellipse2.</p>
<pre class="brush: as3; title: ;">const BACK:int = 1000;
const FRONT:int = -100;

function frameHandler(e:Event):void
{
	var mc:MovieClip = e.currentTarget as MovieClip;
	if(mc.z &amp;gt; BACK)
    {
        mc.z = BACK;
        mc.dir = -1;
    }
    else if (mc.z &amp;lt; FRONT)
    {
        mc.z = FRONT;
        mc.dir = 1;
    }
    mc.z += mc.dir * mc.moveSpeed;
	mc.rotationX += mc.rotXSpeed;
	mc.rotationY += mc.rotYSpeed;
}

ellipse1.shapeIndex = 0;
ellipse1.dir = 1;
ellipse1.rotXSpeed = 3;
ellipse1.rotYSpeed = 0;
ellipse1.moveSpeed = 10;
ellipse2.shapeIndex = 1;
ellipse2.dir = 1;
ellipse2.rotXSpeed = 0;
ellipse2.rotYSpeed = -5;
ellipse2.moveSpeed = 15;
ellipse1.addEventListener(Event.ENTER_FRAME, frameHandler);
ellipse2.addEventListener(Event.ENTER_FRAME, frameHandler);</pre>
<p>More to come in the future!  3D Flash is an exciting world to explore!</p>
<p><strong>EDIT: </strong>I realize the title of this blog post is slightly misleading.  I mentioned Flex, and the Flex part doesn&#8217;t come until the next post.  My apologies.  This example of 3D in ActionScript 3 is entirely Flash-based.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/666-3d-movieclips-with-flex-and-actionscript-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>don&#8217;t be a camel</title>
		<link>http://heftelfamily.com/658-dont-be-a-camel/</link>
		<comments>http://heftelfamily.com/658-dont-be-a-camel/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 22:07:28 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[attitude]]></category>
		<category><![CDATA[camel]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[dr. paul]]></category>
		<category><![CDATA[fear]]></category>
		<category><![CDATA[stubbornness]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=658</guid>
		<description><![CDATA[I was just on Dr. Paul&#8217;s M-Power blog, and came across the following interesting thought (original post here).  It struck me so much I wanted to discuss it here.
Apparently camels have attitudes.  They grumble and complain no matter what  command you give them.  Dr. Paul saw a &#8220;wrangler&#8221; (I guess that&#8217;s what a camel trainer [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ningnomads.blogspot.com/2009/05/ning-nomad-camel-is-very-stubborn.html"><img class="alignleft size-thumbnail wp-image-660" title="Stubborn Camel" src="http://heftelfamily.com/wp-content/uploads/2010/09/stubborn_camel1-150x150.jpg" alt="Stubborn Camel" width="150" height="150" /></a>I was just on Dr. Paul&#8217;s <a href="http://drpaulsmpower.wordpress.com">M-Power blog</a>, and came across the following interesting thought (original post <a href="http://drpaulsmpower.wordpress.com/2010/09/02/camels-and-change">here</a>).  It struck me so much I wanted to discuss it here.</p>
<p>Apparently camels have attitudes.  They grumble and complain no matter what  command you give them.  Dr. Paul saw a &#8220;wrangler&#8221; (I guess that&#8217;s what a camel trainer is called) trying to deal with a camel, and said:<span id="more-658"></span></p>
<blockquote><p>[The wrangler] would command them to kneel so the rider could mount up – and the camel would grumble and complain.  He then commanded them to stand, and again grumbling and complaining.  Basically anything that represented a change brought on the attitude.  How are you handling the changes in your life?  Remember, better is always different.  Look at the changes in your life as amazing opportunities to experience something better, rather than just grumbling and complaining about having to move.</p></blockquote>
<p>&#8220;Better is always different&#8221;.  That&#8217;s my thought for the day.  When looking at change in your life, don&#8217;t throw the baby out with the bathwater and reject change just because it&#8217;s different &#8211; evaluate it objectively, and if it&#8217;s better, go for it!</p>
<p>As with everything I post here, easier said than done, and the hardest part for me is applying these things in my life.  Have you had experiences with the &#8220;camel principle&#8221; in your life, either for good (change was threatening but you embraced it), or ill (maybe you missed out on an opportunity because you were afraid of the change it would involve)?  I know I have.  Feel free to share in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/658-dont-be-a-camel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>when GTA meets literature</title>
		<link>http://heftelfamily.com/643-when-gta-meets-literature/</link>
		<comments>http://heftelfamily.com/643-when-gta-meets-literature/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 21:43:18 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[emily dickinson]]></category>
		<category><![CDATA[grand theft auto]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=643</guid>
		<description><![CDATA[For your daily laugh, I present the following from XKCD:

]]></description>
			<content:encoded><![CDATA[<p>For your daily laugh, I present the following from <a href="http://www.xkcd.com" target="_blank">XKCD</a>:</p>
<p><a title="The Carriage on XKCD" href="http://xkcd.com/788/" target="_blank"><img class="alignnone xkcd" title="The Carriage" src="http://imgs.xkcd.com/comics/the_carriage.png" alt="The Carriage on XKCD" width="740" height="210" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/643-when-gta-meets-literature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>inception&#8217;s plot, illustrated</title>
		<link>http://heftelfamily.com/630-inceptions-plot-illustrated/</link>
		<comments>http://heftelfamily.com/630-inceptions-plot-illustrated/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 07:16:09 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[inception]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[plot]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=630</guid>
		<description><![CDATA[Over on fastcodesign, I found an amazing infographic by Rick Slusher that succeeds in visually explaining the incredibly-intricate plot of this summer&#8217;s blockbuster hit, &#8220;Inception&#8221;.  Warning &#8211; spoilers ahead!  Below is a small version of the graphic.  Click it to see the full-resolution version.  The full-res version is quite big, drag to scroll around it or [...]]]></description>
			<content:encoded><![CDATA[<p>Over on <a href="http://www.fastcodesign.com/1662130/infographic-of-the-day-inception-contest-winner" target="_blank">fastcodesign</a>, I found an amazing infographic by Rick Slusher that succeeds in visually explaining the incredibly-intricate plot of this summer&#8217;s blockbuster hit, &#8220;Inception&#8221;.  Warning &#8211; spoilers ahead!  Below is a small version of the graphic.  Click it to see the full-resolution version.  The full-res version is quite big, drag to scroll around it or right click to download it.<span id="more-630"></span></p>
<p><a href="http://heftelfamily.com/static/images/InceptionArch_Slusher_Full.jpg" rel="shadowbox[sbpost-630];player=img;"><img class="alignnone size-full wp-image-631" title="Inception infographic by Slusher" src="http://heftelfamily.com/wp-content/uploads/2010/08/InceptionArch_Slusher.jpg" alt="Inception infographic by Slusher" width="100%" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/630-inceptions-plot-illustrated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>your song played on the space shuttle</title>
		<link>http://heftelfamily.com/615-your-song-played-on-the-space-shuttle/</link>
		<comments>http://heftelfamily.com/615-your-song-played-on-the-space-shuttle/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 20:07:52 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[NASA]]></category>
		<category><![CDATA[songwriting]]></category>
		<category><![CDATA[spaceshuttle]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=615</guid>
		<description><![CDATA[Hey all you musicians out there!  If you have a space-themed song, or want to write one, NASA wants you to submit it to be played on the last two space shuttle missions as the crew&#8217;s wake-up music!
Go here to submit your song: https://songcontest.nasa.gov
You have til January 2011.
You can also vote on other songs to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2010/08/nasa.jpg" rel="shadowbox[sbpost-615];player=img;"><img class="alignleft size-thumbnail wp-image-618" title="NASA wants your songs!" src="http://heftelfamily.com/wp-content/uploads/2010/08/nasa-e1282421191632-150x147.jpg" alt="NASA wants your songs!" width="150" height="147" /></a>Hey all you musicians out there!  If you have a space-themed song, or want to write one, NASA wants you to submit it to be played on the last two space shuttle missions as the crew&#8217;s wake-up music!</p>
<p>Go here to submit your song: <a href="https://songcontest.nasa.gov/" target="_blank">https://songcontest.nasa.gov</a></p>
<p>You have til January 2011.<span id="more-615"></span></p>
<p>You can also vote on other songs to be played.</p>
<p>Here is the official notice, from the email that NASA sent me this morning:</p>
<blockquote><p>If you like music, the space program and are a little nostalgic, NASA has the perfect opportunity for you. For the first time, the public can help choose songs to wake up the astronauts during the last two scheduled space shuttle missions.</p>
<p>Traditionally, the songs played to wake up the astronauts are selected by friends and family of the crews. For the last two scheduled missions, NASA is inviting the public to visit the &#8221; Wakeup Song Contest&#8221;  website to select songs from a list of the top 40 previous wakeup calls or to submit original tunes for consideration.</p>
<p>Original songs must have a space theme and be submitted to NASA by 4 p.m. CST on Jan. 10, 2011. The songs will be reviewed by agency officials and the top finalists put to a public vote. The top two songs will be used to wake space shuttle Endeavour&#8217;s STS-134 crew. Endeavour&#8217;s mission is the last scheduled space shuttle flight. It is targeted to launch on Feb. 26, 2011.</p></blockquote>
<p>Good luck, songwriters!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/615-your-song-played-on-the-space-shuttle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the new, awesome van</title>
		<link>http://heftelfamily.com/603-the-new-awesome-van/</link>
		<comments>http://heftelfamily.com/603-the-new-awesome-van/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 11:50:05 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[new car]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[the van]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=603</guid>
		<description><![CDATA[A picture&#8217;s worth a thousand words, right?  Check it out:
This lovely behemoth is my new ride!  It&#8217;s got a half-ton truck engine in it and when you put the pedal to the metal, the old girl&#8217;s got guts!  She&#8217;s got plenty of cargo space as well, you can fit a 12-foot roll of carpet inside! [...]]]></description>
			<content:encoded><![CDATA[<p>A picture&#8217;s worth a thousand words, right?  Check it out:</p>

<a href='http://heftelfamily.com/wp-content/uploads/2010/08/P1000063.jpg' rel='shadowbox[sbalbum-603];player=img;' title='The Van, Side View'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/08/P1000063-150x150.jpg" class="attachment-thumbnail" alt="The Van, Side View" title="The Van, Side View" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/08/P1000064.jpg' rel='shadowbox[sbalbum-603];player=img;' title='The Van, Rear View'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/08/P1000064-150x150.jpg" class="attachment-thumbnail" alt="The Van, Rear View" title="The Van, Rear View" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/08/P1000065.jpg' rel='shadowbox[sbalbum-603];player=img;' title='The Van, Side View'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/08/P1000065-150x150.jpg" class="attachment-thumbnail" alt="The Van, Side View" title="The Van, Side View" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/08/P1000066.jpg' rel='shadowbox[sbalbum-603];player=img;' title='The Van, Front View'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/08/P1000066-150x150.jpg" class="attachment-thumbnail" alt="The Van, Front View" title="The Van, Front View" /></a>

<p>This lovely behemoth is my new ride!  It&#8217;s got a half-ton truck engine in it and when you put the pedal to the metal, the old girl&#8217;s got guts!  She&#8217;s got plenty of cargo space as well, you can fit a 12-foot roll of carpet inside!  I&#8217;m enjoying learning how to drive such a big vehicle, and the feeling of power it gives me to hear her low rumble.<span id="more-603"></span></p>
<p>I could use some help, though.  I am trying to figure out what to do with it, decoration-wise.  I got it for a good price from a company going out of business, and as you can see, it still carries the branding of the now-defunct company.  I want to redecorate it.  The branding is not paint, but an incredibly intricate (and expensive) wrap job.  Underneath she&#8217;s a pristine, off-white creamish color (assuming the paint job&#8217;s still good).  So, use the comments to weigh in &#8211; what should I do to redecorate it?  Give it a hippie paint job?  Rewrap it?  Repaint it?  The sky&#8217;s the limit (well, and my very modest budget)!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/603-the-new-awesome-van/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>how to get GPS directions via text message</title>
		<link>http://heftelfamily.com/570-how-to-get-gps-directions-via-text-message/</link>
		<comments>http://heftelfamily.com/570-how-to-get-gps-directions-via-text-message/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 05:39:24 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[cell phones]]></category>
		<category><![CDATA[directions]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[SMS]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=570</guid>
		<description><![CDATA[Here is the coolest tech thing I&#8217;ve learned recently: you don&#8217;t need a GPS unit, an iPhone, or even data plan on your cell phone to get GPS directions without a computer!  Google has an amazing text-message interface that can return everything from web results to business phone numbers to directions to your phone [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2010/08/Picture-4.png" rel="shadowbox[sbpost-570];player=img;"><img class="size-thumbnail wp-image-597 alignleft" title="Google maps" src="http://heftelfamily.com/wp-content/uploads/2010/08/Picture-4-150x150.png" alt="Google maps" width="150" height="150" /></a>Here is the coolest tech thing I&#8217;ve learned recently: you don&#8217;t need a GPS unit, an iPhone, or even data plan on your cell phone to get GPS directions without a computer!  Google has an amazing text-message interface that can return everything from web results to business phone numbers to directions to your phone via SMS.</p>
<p>Here is what you do:<span id="more-570"></span></p>
<p>1. Send a text message to the number GOOGL (46645).</p>
<p>2. Format the text message like this: &#8220;directions from address1 to address2&#8243; (don&#8217;t put the quotes), replacing address1 and address2 with the real addresses.  You don&#8217;t have to put in a complete address for either field.  For example. I often use my hometown as the source address if I&#8217;m going to be using the interstate because I know how to get to the freeway.  For example, if you wanted to get from Provo to historic Temple Square in Salt Lake City, you could send the following text message to 46645:</p>
<p>&#8220;directions from provo ut to 50 west south temple salt lake city ut&#8221; (no quotes).</p>
<p>And voila! Google will send driving directions to your cellphone withOUT you having to own a fancy smartphone or GPS device.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/570-how-to-get-gps-directions-via-text-message/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>thoughts on multitasking and relaxation</title>
		<link>http://heftelfamily.com/581-thoughts-on-multitasking-and-relaxation/</link>
		<comments>http://heftelfamily.com/581-thoughts-on-multitasking-and-relaxation/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 08:39:00 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[efficiency]]></category>
		<category><![CDATA[multitasking]]></category>
		<category><![CDATA[relaxation]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=581</guid>
		<description><![CDATA[I am a chronic multitasker.  I am always doing it, no matter where I am.  I can&#8217;t resist opening the laptop while watching TV, or checking my email constantly throughout the day, or putting someone on speakerphone to check the text that just came in.  Sometimes I&#8217;m on the phone, texting and chatting online all [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2010/08/SuperStock_1538R-7024.jpg" rel="shadowbox[sbpost-581];player=img;"><img class="alignleft size-medium wp-image-584" title="multitasking" src="http://heftelfamily.com/wp-content/uploads/2010/08/SuperStock_1538R-7024-300x235.jpg" alt="multitasking" width="300" height="235" /></a>I am a chronic multitasker.  I am always doing it, no matter where I am.  I can&#8217;t resist opening the laptop while watching TV, or checking my email constantly throughout the day, or putting someone on speakerphone to check the text that just came in.  Sometimes I&#8217;m on the phone, texting and chatting online all at the same time.  I am a multitasking addict.<span id="more-581"></span></p>
<p>Speaking of which, I just returned to add more to this post from checking up on some massive file-copying I&#8217;m doing, commenting on friends&#8217; blogs, and other such things.  Haha.</p>
<p>What I&#8217;m trying to say, in my A.D.D. way, is this &#8211; many times in our modern-day lives, multitasking is required.  We can&#8217;t really get away from it completely as we juggle multiple demands on our time.  But sometimes, it was imperative that we DON&#8217;T multitask.  A friend pointed out to me that I&#8217;ve been burning out &#8211; I&#8217;ve been spinning my wheels trying to get so many things done at once, I&#8217;d totally forgotten what it means to stop and enjoy a meal, or watch a show without trying to do work at the same time.  I stopped and realized that even if I HAD spare time, I wouldn&#8217;t know what to DO with it.  I had no idea what I do for fun, anymore, because I never take time anymore to HAVE fun.  Or recuperate.  Or whatever you want to call it.  Good thing I have friends &#8211; sometimes it takes an outside perspective to point out what you can&#8217;t see because you&#8217;re too close to the situation.</p>
<p>So, today I did something about it.  I notified clients and friends that I&#8217;d be unavailable, I turned off my phone, and I took some time for myself.  It was aMAZing!  I actually felt rejuvenated, instead of feeling like I was trudging through life with metal boots on.</p>
<p>I tried it again tonite.  I was teaching myself some new programming skills while watching Hulu tonight, and eventually, I became too worn-out again to focus properly.  So I stopped multitasking, used the &#8220;Full Screen&#8221; button on the video player and vegged out to the last couple episodes of the show I was watching &#8211; and I felt better again.  And hence comes the moral of the story, which is probably painfully obvious to everyone but yours truly:</p>
<p>If you&#8217;re going to get any benefit out of relaxing, you have to STOP MULTITASKING.  Do ONE thing, one RELAXING thing, at a time.  Then feel free to jump back into our crazy, modern world.  But watch out for too much multitasking, or you might lose out on a million-dollar opportunity, as <a href="http://www.buzzaboutcomputers.com/multitasking-hazards/news/" target="_blank">this guy</a> did.</p>
<p>EDIT: Also check out <a href="http://www.alexmandossian.com/2009/04/28/why-multi-tasking-destroys-entrepreneurship/" target="_blank">this article on multitasking</a> and its adverse affects on efficiency.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/581-thoughts-on-multitasking-and-relaxation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>why does OSX Finder Copy suck?</title>
		<link>http://heftelfamily.com/575-why-does-osx-finder-copy-suck/</link>
		<comments>http://heftelfamily.com/575-why-does-osx-finder-copy-suck/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 01:27:08 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Finder]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[rants]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=575</guid>
		<description><![CDATA[Okay, this post is a total rant.  I am fed up and frustrated trying to back up data on my PowerMac G5.  The fundamental question has been raised in the post&#8217;s title, namely:
Why does the copy functionality of the Finder suck so badly?!?!
I find that instead of letting the Finder do its job, and flawlessly [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, this post is a total rant.  I am f<a href="http://cporsdesigns.deviantart.com/art/Sad-Finder-Dock-Icon-155555919" target="_blank"><img class="size-thumbnail wp-image-576 alignleft" title="Sad Finder" src="http://heftelfamily.com/wp-content/uploads/2010/08/Sad_Finder_Dock_Icon_by_CporsDesigns-150x150.png" alt="" width="150" height="150" /></a>ed up and frustrated trying to back up data on my PowerMac G5.  The fundamental question has been raised in the post&#8217;s title, namely:</p>
<p>Why does the copy functionality of the Finder suck so badly?!?!<span id="more-575"></span></p>
<p>I find that instead of letting the Finder do its job, and flawlessly copy gigabytes of data to my brand-spanking-new, gigantic 2TB backup hard drive, I have to sit and babysit progress-bars, coaxing the Finder into copying ALL my data (and not flaking out on one particular file).  And when it chokes, saying &#8220;file such-and-such cannot be read or written&#8221;, invariably, when I go in and find the file manually, and drag that ONE offending file to the proper place on the external hard drive, it works!  Other times, Finder doesn&#8217;t error out, but rather the progress bar stops in its tracks, and spins uselessly until I &#8220;Force Quit&#8221; finder (or in some cases, hard-reboot my machine).</p>
<p>Granted, I am still on Mac OSX 10.4.11, and I have heard that in Snow Leopard (10.6) they have a new, revamped Finder that supposedly is much better at copying files.  But still &#8211; copying files reliably is a basic operating system function!  Shouldn&#8217;t Apple have gotten it right much SOONER than version 10.6 of their operating system?  Shouldn&#8217;t this have been a higher priority than glitzy UI polish?</p>
<p>Ok, rant over.  Resume your regularly-scheduled programming.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/575-why-does-osx-finder-copy-suck/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>new studio pictures</title>
		<link>http://heftelfamily.com/499-new-studio-pictures/</link>
		<comments>http://heftelfamily.com/499-new-studio-pictures/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 02:25:21 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[recording studio]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=499</guid>
		<description><![CDATA[Attention, world!  Heftel Studios has moved to a new location, and it&#8217;s looking FABulous!!  Here are some great photos of the new location, which is in Provo right by Deseret Industries (more info available at http://www.heftelstudios.com).  If you&#8217;re in the area, call 801-417-0514 to come check it out!
]]></description>
			<content:encoded><![CDATA[<p>Attention, world!  Heftel Studios has moved to a new location, and it&#8217;s looking FABulous!!  Here are some great photos of the new location, which is in Provo right by Deseret Industries (more info available at <a href="http://www.heftelstudios.com">http://www.heftelstudios.com</a>).  If you&#8217;re in the area, call 801-417-0514 to come check it out!</p>

<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1033.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Studio A Tracking Room'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1033-150x150.jpg" class="attachment-thumbnail" alt="Studio A Tracking Room" title="Studio A Tracking Room" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1064.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Control room/Lounge area'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1064-150x150.jpg" class="attachment-thumbnail" alt="Control room/Lounge area" title="Control room/Lounge area" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1063.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Control room/Lounge area'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1063-150x150.jpg" class="attachment-thumbnail" alt="Control room/Lounge area" title="Control room/Lounge area" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1052.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Mic, pop filter and headphones'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1052-150x150.jpg" class="attachment-thumbnail" alt="Mic, pop filter and headphones" title="Mic, pop filter and headphones" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1069.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Control room/Lounge area'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1069-150x150.jpg" class="attachment-thumbnail" alt="Control room/Lounge area" title="Control room/Lounge area" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1050.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Studio Microphone Detail'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1050-150x150.jpg" class="attachment-thumbnail" alt="Studio Microphone Detail" title="Studio Microphone Detail" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1043.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Piano keys closeup'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1043-150x150.jpg" class="attachment-thumbnail" alt="Piano keys closeup" title="Piano keys closeup" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_0825.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Studio B Control Room'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_0825-150x150.jpg" class="attachment-thumbnail" alt="Studio B Control Room" title="Studio B Control Room" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1042.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Piano keys closeup'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1042-150x150.jpg" class="attachment-thumbnail" alt="Piano keys closeup" title="Piano keys closeup" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1034.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Kawai baby grand piano'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1034-150x150.jpg" class="attachment-thumbnail" alt="Kawai baby grand piano" title="Kawai baby grand piano" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1018.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Interior of Vocal Booth'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_1018-150x150.jpg" class="attachment-thumbnail" alt="Interior of Vocal Booth" title="Interior of Vocal Booth" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_0999.jpg' rel='shadowbox[sbalbum-499];player=img;' title='The Vocal Booth'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_0999-150x150.jpg" class="attachment-thumbnail" alt="The Vocal Booth" title="The Vocal Booth" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_0992.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Control Room Window'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_0992-150x150.jpg" class="attachment-thumbnail" alt="Control Room Window" title="Control Room Window" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_0983.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Studio A Control Room'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_0983-150x150.jpg" class="attachment-thumbnail" alt="Studio A Control Room" title="Studio A Control Room" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/IMG_0958.jpg' rel='shadowbox[sbalbum-499];player=img;' title='Lounge Area'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/IMG_0958-150x150.jpg" class="attachment-thumbnail" alt="Lounge Area" title="Lounge Area" /></a>

]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/499-new-studio-pictures/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>worthwhile advice</title>
		<link>http://heftelfamily.com/495-worthwhile-advice/</link>
		<comments>http://heftelfamily.com/495-worthwhile-advice/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 06:20:45 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[balance]]></category>
		<category><![CDATA[blessings]]></category>
		<category><![CDATA[God]]></category>
		<category><![CDATA[gratitude]]></category>
		<category><![CDATA[kindness]]></category>
		<category><![CDATA[musings]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=495</guid>
		<description><![CDATA[The thoughts in this post were adapted from a wonderful conversation with a good friend, and seem to be universally applicable.  Thus, they shall be immortalized here.  Also, if I write these ideas down here I can come back here if I forget them.
Three things that will lead to empowerment in your life:

Stop asking WHY. [...]]]></description>
			<content:encoded><![CDATA[<p>The thoughts in this post were adapted from a wonderful conversation with a good friend, and seem to be universally applicable.  Thus, they shall be immortalized here.  Also, if I write these ideas down here I can come back here if I forget them.</p>
<p>Three things that will lead to empowerment in your life:</p>
<ol>
<li>Stop asking WHY.  Instead, change it to WHAT NOW.  Instead of unanswerable questions that pound your brain you have hope, and at least some inkling of what to do to improve your situation.</li>
<li>Don&#8217;t expect anything from yourself.  Just ACCEPT and EMBRACE yourself for who you are.  You don&#8217;t need to become a Superman to be lovable, and besides, you will be capable of accomplishing so much more if you love yourself UNCONDITIONALLY first.</li>
<li>Don&#8217;t you EVER put yourself down!  You live with yourself 24/7.  You wouldn&#8217;t want to live with an enemy, would you?  It&#8217;s okay to make mistakes and course-corrections.  You are a child of God, and thus have limitless potential.</li>
</ol>
<p>To combat sadness, do the following:</p>
<p>Count your many blessings!!  But you must abide by the following rules:</p>
<ol>
<li>You must start with &#8220;I have been blessed with &#8230;&#8221;</li>
<li>You must not use any negative phrases.</li>
</ol>
<p>If you follow the rules, you get a sense that a.) you really have a lot going for you, and b.) it comes from a higher source than yourself &#8211; make sure to give credit where credit&#8217;s due!  This brings your life into balance, stops you from getting a big head and brings things into perspective.  Nothing fosters love for Deity by seeing first-hand and noticing the things that God has given you, no strings attached, &#8220;just because.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/495-worthwhile-advice/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>spring recital pictures</title>
		<link>http://heftelfamily.com/489-spring-recital-pictures/</link>
		<comments>http://heftelfamily.com/489-spring-recital-pictures/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 07:16:03 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[recital]]></category>
		<category><![CDATA[voice]]></category>
		<category><![CDATA[voice lessons]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=489</guid>
		<description><![CDATA[I was in a recital with my illustrious voice teacher, Anjanette Mickelsen!  Here are some pictures from that momentous occasion.  P.S. Anjie is an AWEsome voice teacher &#8211; if you are in the Salt Lake or Provo area and thinking about improving your voice, I HIGHLY recommend her.  Her website is http://www.afmvocalstudio.com.
Thanks for looking!
]]></description>
			<content:encoded><![CDATA[<p>I was in a recital with my illustrious voice teacher, Anjanette Mickelsen!  Here are some pictures from that momentous occasion.  P.S. Anjie is an AWEsome voice teacher &#8211; if you are in the Salt Lake or Provo area and thinking about improving your voice, I HIGHLY recommend her.  Her website is <a href="http://www.afmvocalstudio.com">http://www.afmvocalstudio.com</a>.</p>
<p>Thanks for looking!</p>

<a href='http://heftelfamily.com/wp-content/uploads/2010/07/RHD_5338.jpg' rel='shadowbox[sbalbum-489];player=img;' title='RHD_5338'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/RHD_5338-150x150.jpg" class="attachment-thumbnail" alt="RHD_5338" title="RHD_5338" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/RHD_5337.jpg' rel='shadowbox[sbalbum-489];player=img;' title='RHD_5337'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/RHD_5337-150x150.jpg" class="attachment-thumbnail" alt="RHD_5337" title="RHD_5337" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2010/07/RHD_5258.jpg' rel='shadowbox[sbalbum-489];player=img;' title='RHD_5258'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2010/07/RHD_5258-150x150.jpg" class="attachment-thumbnail" alt="RHD_5258" title="RHD_5258" /></a>

]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/489-spring-recital-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lessons learned from divorce</title>
		<link>http://heftelfamily.com/472-lessons-learned-from-divorce/</link>
		<comments>http://heftelfamily.com/472-lessons-learned-from-divorce/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 07:22:01 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[divorce]]></category>
		<category><![CDATA[lessons]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=472</guid>
		<description><![CDATA[EDIT: I&#8217;ve read over this post since writing it and changed some things to be more fair to Shanae.  It was pretty one-sided before and I&#8217;ve tried to make it more fair.
There is only one person who is responsible for your happiness.  It is not God, it is not your parents, it is not your [...]]]></description>
			<content:encoded><![CDATA[<p><strong>EDIT: </strong>I&#8217;ve read over this post since writing it and changed some things to be more fair to Shanae.  It was pretty one-sided before and I&#8217;ve tried to make it more fair.</p>
<p><a href="http://www.flickr.com/photos/carbonnyc/132922595/"><img class="alignleft size-thumbnail wp-image-474" title="Broken Heart" src="http://heftelfamily.com/wp-content/uploads/2010/07/132922595_f860a8aa20-150x150.jpg" alt="Broken Heart" width="150" height="150" /></a>There is only one person who is responsible for your happiness.  It is not God, it is not your parents, it is not your friends, it is not your significant other &#8211; it is you.  I am a firm believer that others can help, and that good friends are vital to our well-being as we go through life, but ultimately, when it comes down to brass tacks, every single one of us are responsible for our own actions and our own happiness.<span id="more-472"></span></p>
<p>The application of this knowledge does not come easy for me.  I often look to other sources for my happiness in life.  I look to entertainment &#8211; movies, books, television and video games.  I look to work &#8211; professional projects that take much skill, time, and exertion to complete.  I look to people &#8211; parents, friends, relatives, spouse.  But ultimately no one and no thing can make me happy.  I must choose that for myself.  At the end of the day, every day, I find myself alone with my thoughts and feelings.  If I do not like myself, that alone time is feared and dreaded.  On the other hand, if I do like myself, then that time becomes a set of happy bookends around my day.  I look forward to being alone with myself.</p>
<p>Before my divorce, I often relied on my wife to make me happy.  I did this far too often, pretty much constantly.  I defaulted to her on the smallest and dumbest of decisions.  In doing so, I was not a man, and I often hurt her as she waited around for me to become a man.  If a person is not looking after his/her own happiness, then nothing anyone else can do will be enough.  There will always be a lack, an insatiable hunger, because the person is not self-sufficient, and does not have enough warmth inside to sustain himself.  On the contrary, if a person knows deep down inside that he is responsible for his own actions and his own happiness, then anything else that comes into his life is a blessing and serves to enrich a life that is already pretty damn good, a life that already has meaning on its own, even in the absence of care or love from others.  In that case, there is enough and to spare.</p>
<p>Each person in this life must learn to be his/her own best friend.  No matter where you go, you will always have to live with yourself.  Or to put it another way, you always GET to live with yourself.  I do not know <em>exactly </em>why my dear wife decided to end our marriage after three and half years, but I have a good idea.  I know I did a lot of dumb things that hurt her immensely.  I wish so many times that I could turn back the clock, take back things I said or did.  The last thing I would want from anyone reading this post is to have any negative feelings for her.  I sometimes find myself asking the rhetorical question &#8220;WHY?&#8221;.  Well, I know why.  My actions did a lot to drive her off.  I often find myself regretting mistakes I&#8217;ve made and thinking about what I could&#8217;ve done to keep my marriage alive.  I made some really stupid decisions during our time together, and my mistakes have ultimately cost me my marriage.  My biggest regret in life is the dissolution of my marriage, my part in that, and the pain and suffering that she is still recovering from.  But, unfortunately, these thoughts lead nowhere, it&#8217;s too little too late, and she&#8217;s already gone.  Nothing I can do at this point can win her back.</p>
<p>I have slowly learned through introspection and conversation with trusted friends that I have been punishing myself, blaming myself, shaming myself for letting her go.  And there is my opportunity for peace.  I did not leave; I let her go.  I did not give up on our marriage &#8211; rather, I was ready to fight to the death for it.  I will go to my grave with the sure and comforting knowledge that I did the absolute best that I could in my marriage, that I gave it my all &#8211; time, talents, financial resources, even my whole soul and all I possessed &#8211; to make my marriage work.  Sometimes, because of my weaknesses and flaws, my &#8220;best&#8221; was far less than it should have been.  I look back and my puny efforts seem pitiful.  But I can still say I held back nothing.  Now, she didn&#8217;t hold back anything either.  She gave her all and more for the marriage, and fought like a lion for it.  She tried harder to make it work than most others would have.  In the end, I let her go because I loved her enough to let her go.  I let her go so she could be happy.  I have been laboring under the assumption that because I did that, I am somehow a bad person.  I have been beating myself up for not stopping her, when she made it clear she could no longer be happy living under my roof and being my wife.  But in doing so I have made a serious error in judgment.</p>
<p><a href="http://s280.photobucket.com/albums/kk188/Lucynka55/?action=view&amp;current=Ways_to_Heal_A_Broken_Heart_by_flav.jpg&amp;newest=1"></a>God is the judge of every soul.  We are commanded to not make final judgments about anyone, in scriptures laced with words such as &#8220;Judge not, that ye be not judged (<a href="http://scriptures.lds.org/en/3_ne/14/1" target="_blank">3 Ne 14:1</a>).&#8221;  In assuming that I was a bad person for allowing a failing marriage to finally end, I was usurping God&#8217;s authority to judge, and condemning myself.  All of a sudden I had the feeling, &#8220;what if I am being harder on myself than God is?&#8221;  This question changed my whole outlook.  I started praying fervently.  I poured out my whole soul to God.  And, I learned today that God does not condemn me for the fact that my marriage ended.  In fact, He has an enormous amount of love for me, as He does for every one of His children.  And then I had the thought &#8211; &#8220;if He does not condemn me, then why the hell should I condemn me?&#8221;  In that moment, I decided to stop beating myself up.  This will be hard, because I am used to being hard on myself and not used to loving myself unconditionally.  It is much easier for me to love others unconditionally than to love myself.  But I will try.  Because I must try.  I will be alone with my thoughts every morning and night for the rest of my life, as I have been every morning and night for the past 27 years.  It&#8217;s about time that I start enjoying my own company!</p>
<p><a href="http://s280.photobucket.com/albums/kk188/Lucynka55/?action=view&amp;current=Ways_to_Heal_A_Broken_Heart_by_flav.jpg&amp;newest=1"><img class="alignleft" title="Ways_to_Heal_A_Broken_Heart_by_flav" src="http://heftelfamily.com/wp-content/uploads/2010/07/Ways_to_Heal_A_Broken_Heart_by_flav-150x150.jpg" alt="" width="150" height="150" /></a>All of the foregoing does not mean I am not sad about my marriage ending.  I feel an immense amount of sorrow over the loss of a person so precious in my life that I promised before God&#8217;s holy altar to cherish her for eternity.  I feel extremely sad that our forever died before four years ran their course.  I have had at least as much to do with our marriage dissolving as she did, and probably more.  But I learned today that there is a big difference between sorrow and shame.  Sorrow expresses loss and is a natural part of the grieving process.  It eventually gives way to comfort, wisdom, and joy.  On the other hand, shame does not heal.  It labels the person as bad and ultimately creates a vicious cycle by making you believe that you can never do any better than what you just went through.  And so right here, right now, I commit to stop shaming myself.  Because I don&#8217;t deserve it.  Because I am a good person who makes mistakes.  Because I deserve to find happiness again.  Because I do not wish to be forever stuck in old, incorrect patterns.</p>
<p><a href="http://heftelfamily.com/wp-content/uploads/2010/07/sunrise.jpg" rel="shadowbox[sbpost-472];player=img;"><img class="alignleft size-thumbnail wp-image-486" title="sunrise" src="http://heftelfamily.com/wp-content/uploads/2010/07/sunrise-150x150.jpg" alt="sunrise" width="150" height="150" /></a></p>
<p>Shanae, I truly wish you the best.  You will be missed immensely.  I do not condemn you for what you did.  I know that you had your reasons, and I am trying to accept the fact that you are really gone.  I sincerely hope that no one reading this blog post will condemn you either.  One day this mess will heal for both of us and we will be able to be happy again.  I am sorry for the way things turned out between us, and I would still like to be your friend.  I am sorry for the things I did that hurt you and contributed to the end of our marriage, but I no longer blame myself for everything that happened.  I am off on a journey &#8211; a journey to get to know myself and become my own best friend.  A journey to learn to love the person that I will spend the rest of my life with &#8211; myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/472-lessons-learned-from-divorce/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>antigravity</title>
		<link>http://heftelfamily.com/458-antigravity/</link>
		<comments>http://heftelfamily.com/458-antigravity/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 22:48:11 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[anti-gravity]]></category>
		<category><![CDATA[butter]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[toast]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=458</guid>
		<description><![CDATA[Did you know that is possible to achieve anti-gravity with just some common household objects?

]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">Did you know that is possible to achieve anti-gravity with just some common household objects?</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-459" title="Antigravity!" src="http://heftelfamily.com/wp-content/uploads/2010/07/antigravity_2Dcat.gif" alt="Cat-based antigravity" width="269" height="466" /></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/458-antigravity/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>The Evolution of PC Audio</title>
		<link>http://heftelfamily.com/448-the-evolution-of-pc-audio/</link>
		<comments>http://heftelfamily.com/448-the-evolution-of-pc-audio/#comments</comments>
		<pubDate>Thu, 20 May 2010 19:13:01 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[game audio]]></category>
		<category><![CDATA[PC audio]]></category>
		<category><![CDATA[secret of monkey island]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=448</guid>
		<description><![CDATA[Check out the following video for a tour through the history of game audio on the PC.  Music courtesy of &#8220;Secret of Monkey Island.&#8221;

]]></description>
			<content:encoded><![CDATA[<p>Check out the following video for a tour through the history of game audio on the PC.  Music courtesy of &#8220;Secret of Monkey Island.&#8221;</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/a324ykKV-7Y&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/a324ykKV-7Y&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/448-the-evolution-of-pc-audio/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>why i&#8217;m different</title>
		<link>http://heftelfamily.com/438-why-im-different/</link>
		<comments>http://heftelfamily.com/438-why-im-different/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 21:10:12 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[scientist]]></category>
		<category><![CDATA[the difference]]></category>
		<category><![CDATA[why i am the way i am]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=438</guid>
		<description><![CDATA[I always knew I was different than other people somehow&#8230;  This XKCD comic finally explains it!

]]></description>
			<content:encoded><![CDATA[<p>I always knew I was different than other people somehow&#8230;  This <a href="http://xkcd.com">XKCD</a> comic finally explains it!</p>
<p><a href="http://xkcd.com/242/"><img class="alignnone" title="The Difference" src="http://imgs.xkcd.com/comics/the_difference.png" alt="The Difference" width="393" height="740" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/438-why-im-different/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>cheap gps</title>
		<link>http://heftelfamily.com/427-cheap-gps/</link>
		<comments>http://heftelfamily.com/427-cheap-gps/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 21:07:18 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[cheap gps]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=427</guid>
		<description><![CDATA[Today&#8217;s blog post brought to you by XKCD, the hilarious webcomic:

]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s blog post brought to you by <a href="http://xkcd.com">XKCD</a>, the hilarious webcomic:</p>
<p><a href="http://xkcd.com/407/" target="_blank"><img alt="Cheap GPS" src="http://imgs.xkcd.com/comics/cheap_gps.png" title="Cheap GPS" class="alignnone xkcd" width="403" height="247" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/427-cheap-gps/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>sunday thoughts</title>
		<link>http://heftelfamily.com/421-sunday-thought/</link>
		<comments>http://heftelfamily.com/421-sunday-thought/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 03:25:45 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[not mother teresa]]></category>
		<category><![CDATA[quote]]></category>
		<category><![CDATA[sunday thoughts]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=421</guid>
		<description><![CDATA[For your Sunday edification, I wanted to post a quote that is often mis-attributed to Mother Teresa.  This was mentioned in our church meetings last Sunday and it really struck a chord with me:

People are often unreasonable, illogical, and self-centered;
Forgive them anyway.
If you are kind, people may accuse you of selfish, ulterior motives;
Be kind [...]]]></description>
			<content:encoded><![CDATA[<p>For your Sunday edification, I wanted to post a quote that is often mis-attributed to Mother Teresa.  This was mentioned in our church meetings last Sunday and it really struck a chord with me:</p>
<p><span id="more-421"></span></p>
<p>People are often unreasonable, illogical, and self-centered;</p>
<p>Forgive them anyway.</p>
<p>If you are kind, people may accuse you of selfish, ulterior motives;</p>
<p>Be kind anyway.</p>
<p>If you are successful, you will win some false friends and some true enemies;</p>
<p>Succeed anyway.</p>
<p>If you are honest and frank, people may cheat you;</p>
<p>Be honest and frank anyway.</p>
<p>What you spend years building, someone could destroy overnight;</p>
<p>Build anyway.</p>
<p>If you find serenity and happiness, they may be jealous;</p>
<p>Be happy anyway.</p>
<p>The good you do today, people will often forget tomorrow;</p>
<p>Do good anyway.</p>
<p>Give the world the best you have,</p>
<p>and it may never be enough;</p>
<p>Give the world the best you&#8217;ve got anyway.</p>
<p>You see, in the final analysis,</p>
<p>it is between you and God;</p>
<p>It was never between you and them anyway.</p>
<p>Thoughts?</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/421-sunday-thought/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>weak password woes</title>
		<link>http://heftelfamily.com/415-weak-password-woes/</link>
		<comments>http://heftelfamily.com/415-weak-password-woes/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 01:30:27 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[strong password]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[weak password]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=415</guid>
		<description><![CDATA[Well, here we are in the 21st century &#8211; the second decade of the 21st century, even, and Internet security, specifically the problem of weak passwords, still plagues our society.  A new study, based on analysis of 32 million passwords, shows that the most popular password is &#8211; can you guess? &#8211; &#8220;123456&#8243;.  One in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2010/01/password_star.jpg" rel="shadowbox[sbpost-415];player=img;"><img class="alignleft size-medium wp-image-416" title="Passwords are still too weak for the most part." src="http://heftelfamily.com/wp-content/uploads/2010/01/password_star-300x214.jpg" alt="Passwords are still too weak for the most part." width="300" height="214" /></a>Well, here we are in the 21st century &#8211; the second decade of the 21st century, even, and Internet security, specifically the problem of weak passwords, still plagues our society.  A new study, based on analysis of 32 million passwords, shows that the most popular password is &#8211; can you guess? &#8211; &#8220;123456&#8243;.  One in five users leaves a key under the virtual doormat with obvious passwords like &#8220;qwerty&#8221;, &#8220;password&#8221;, &#8220;iloveyou&#8221;, or &#8220;princess&#8221;!  (original story <a href="http://www.nytimes.com/2010/01/21/technology/21password.html" target="_blank">here</a>).</p>
<p>Why is it that we can&#8217;t pick secure passwords?  It seems it&#8217;s just human nature.  A password that is secure is, by definition, hard to remember for a human.  Here are five tips that will help your passwords remain secure.<span id="more-415"></span></p>
<ol>
<li>Here&#8217;s a simple hint &#8211; if your password can be found in the dictionary (any language!), it&#8217;s not secure enough!  It&#8217;s easy to crack a password that&#8217;s listed in the dictionary &#8211; it&#8217;s routinely done in college computer science classes.</li>
<li>Put letters <em>and</em> numbers in your password.  Try replacing some letters with numbers (i.e. 3 for &#8220;e&#8221;, 1 for &#8220;L&#8221;, etc) or symbols (@ for &#8220;a&#8221;).</li>
<li>Mix up uppercase and lowercase letters in your password.</li>
<li>Use more than one word in your password.  You could use a whole phrase, for example, or make it an acronym by using the first letter of each word in a phrase.</li>
<li>Use symbols such as punctuation in your password.  <strong>Note:</strong> some websites won&#8217;t allow you to use anything but letters and numbers.  It&#8217;s dumb, but they do it.</li>
</ol>
<p>Hopefully these tips will help you keep your password secure!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/415-weak-password-woes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>movie science</title>
		<link>http://heftelfamily.com/406-movie-science/</link>
		<comments>http://heftelfamily.com/406-movie-science/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 16:56:37 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[movie science]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=406</guid>
		<description><![CDATA[Oh, man, I laughed when I saw this:

How true that is!
]]></description>
			<content:encoded><![CDATA[<p>Oh, man, I laughed when I saw this:</p>
<p><a href="http://xkcd.com/683/"><img class="xkcd" src="http://imgs.xkcd.com/comics/science_montage.png"></a></p>
<p>How true that is!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/406-movie-science/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>endoora artist opportunity</title>
		<link>http://heftelfamily.com/401-endoora-artist-opportunity/</link>
		<comments>http://heftelfamily.com/401-endoora-artist-opportunity/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 04:17:48 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[endoora]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[reality show]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=401</guid>
		<description><![CDATA[Just got this in my email the other day:
CASTING &#8211; MUSICIANS
Casting for a reality docu-series for the formation and journey of an international teen band.  Record deal with major label already secured. Looking for 5 band members ages 18-22 (18 &#8211; 22 that can play younger). Must be extremely camera friendly, an idol in [...]]]></description>
			<content:encoded><![CDATA[<p>Just got this in my email the other day:</p>
<p><em>CASTING &#8211; MUSICIANS</p>
<p>Casting for a reality docu-series for the formation and journey of an international teen band.  Record deal with major label already secured. Looking for 5 band members ages 18-22 (18 &#8211; 22 that can play younger). Must be extremely camera friendly, an idol in the making. Must be very comfortable in front of the camera and have real ability to play instruments and/ or sing.  We&#8217;re looking for musicians with their own unique style and sound who absolutely live for music. International travel required.  This is a rare and very special opportunity to turn your dreams into legitimate international stardom. </p>
<p>Singer: 18-22 male.</p>
<p>Bassist: 18-22 male or female.</p>
<p>Guitarist: 18-22 male or female</p>
<p>Keyboardist: 18-22 male or female</p>
<p>Drummer: 18-22 male or female</p>
<p>Please contact Matt or Dana at 323.460.5658 or via email:</p>
<p>matt@liquid-theory.com or dana@liquid-theory.com to schedule an audition time (Los Angeles)</p>
<p>Auditions are being held from 1.20.10 – 2.5.10<br />
</em><br />
It&#8217;s a great opportunity for musicians, share it with your friends!  You have to have an Endoora account to apply.  If you don&#8217;t know what Endoora is, click <a href="http://endoora.com">here</a> to find out!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/401-endoora-artist-opportunity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cool mermaid makeup</title>
		<link>http://heftelfamily.com/379-cool-mermaid-makeup/</link>
		<comments>http://heftelfamily.com/379-cool-mermaid-makeup/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 12:07:59 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[makeup]]></category>
		<category><![CDATA[mermaid]]></category>
		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=379</guid>
		<description><![CDATA[
My wife is so creative!  She made her sister into a mermaid for a school activity using just makeup.  She created the pattern on the face by using a mesh bag that originally held mandarin oranges to create the pattern as she applied makeup to her sister&#8217;s face through it.

Yup, she&#8217;s pretty cool!

]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a style="text-decoration: none;" href="http://heftelfamily.com/wp-content/uploads/2010/01/IMGP5603.jpg" rel="shadowbox[sbpost-379];player=img;"><img class="size-medium wp-image-380 aligncenter" title="Mermaid Makeup" src="http://heftelfamily.com/wp-content/uploads/2010/01/IMGP5603-225x300.jpg" alt="Mermaid Makeup" width="225" height="300" /></a></p>
<p>My wife is so creative!  She made her sister into a mermaid for a school activity using just makeup.  She created the pattern on the face by using a mesh bag that originally held mandarin oranges to create the pattern as she applied makeup to her sister&#8217;s face through it.</p>
<p style="text-align: center;"><a href="http://heftelfamily.com/wp-content/uploads/2010/01/IMGP5614.jpg" rel="shadowbox[sbpost-379];player=img;"><img class="size-medium wp-image-382 aligncenter" title="Mermaid Makeup" src="http://heftelfamily.com/wp-content/uploads/2010/01/IMGP5614-225x300.jpg" alt="Mermaid Makeup" width="225" height="300" /></a></p>
<p>Yup, she&#8217;s pretty cool!</p>
<p><a style="text-decoration: none;" href="http://heftelfamily.com/wp-content/uploads/2010/01/IMGP5610.jpg" rel="shadowbox[sbpost-379];player=img;"><img class="aligncenter size-medium wp-image-381" title="Mermaid Makeup" src="http://heftelfamily.com/wp-content/uploads/2010/01/IMGP5610-300x225.jpg" alt="Mermaid Makeup" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/379-cool-mermaid-makeup/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>that’s my dog</title>
		<link>http://heftelfamily.com/374-thats-my-dog/</link>
		<comments>http://heftelfamily.com/374-thats-my-dog/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 06:44:04 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[chair]]></category>
		<category><![CDATA[dogs]]></category>
		<category><![CDATA[miko]]></category>
		<category><![CDATA[pets]]></category>
		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=374</guid>
		<description><![CDATA[So the other day I was shocked to find my normally-well-behaved dog Miko up on a chair in the living room&#8230;

Silly dog!  She had just been groomed and when she saw the clippers coming out again, she panicked!
]]></description>
			<content:encoded><![CDATA[<p>So the other day I was shocked to find my normally-well-behaved dog Miko up on a chair in the living room&#8230;</p>
<p><a style="text-decoration: none;" href="http://heftelfamily.com/wp-content/uploads/2010/01/IMGP5616.jpg" rel="shadowbox[sbpost-374];player=img;"><br style="text-decoration: underline;" /><img class="aligncenter size-medium wp-image-375" title="Miko on our Chair" src="http://heftelfamily.com/wp-content/uploads/2010/01/IMGP5616-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://heftelfamily.com/wp-content/uploads/2010/01/IMGP5617.jpg" rel="shadowbox[sbpost-374];player=img;"><img class="aligncenter size-medium wp-image-376" title="Miko on our Chair" src="http://heftelfamily.com/wp-content/uploads/2010/01/IMGP5617-225x300.jpg" alt="" width="225" height="300" /></a>Silly dog!  She had just been groomed and when she saw the clippers coming out again, she panicked!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/374-thats-my-dog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>what does bing stand for?</title>
		<link>http://heftelfamily.com/365-what-does-bing-stand-for/</link>
		<comments>http://heftelfamily.com/365-what-does-bing-stand-for/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 20:48:52 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=365</guid>
		<description><![CDATA[
&#8216;Nuff said. (link to original image)
]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2010/01/what_does_bing_stand_for.jpg" rel="shadowbox[sbpost-365];player=img;"><img class="size-full wp-image-366 alignnone" title="Microsoft's desperate attempt to take over web search" src="http://heftelfamily.com/wp-content/uploads/2010/01/what_does_bing_stand_for.jpg" alt="what_does_bing_stand_for" width="604" height="453" /></a></p>
<p>&#8216;Nuff said. (<a href="http://www.facebook.com/photo.php?pid=3018942&amp;id=193414058343" target="_blank">link to original image</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/365-what-does-bing-stand-for/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>why chrome is my new favorite browser</title>
		<link>http://heftelfamily.com/348-why-chrome-is-my-new-favorite-browser/</link>
		<comments>http://heftelfamily.com/348-why-chrome-is-my-new-favorite-browser/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 17:14:04 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web dev]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=348</guid>
		<description><![CDATA[Recently I started using Google Chrome.  I downloaded it, tested a few things, and before you know it I was using it every time I wanted to go online, leaving my old standby FireFox unused and un-clicked.  I will attempt to organize the reasons for my switch into a bulleted list below:

It&#8217;s fast. You [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I started using Google Chrome.  I downloaded it, tested a few things, and before you know it I was using it <em>every</em> time I wanted to go online, leaving my old standby FireFox unused and un-clicked.  I will attempt to organize the reasons for my switch into a bulleted list below:</p>
<ul>
<li>It&#8217;s <em>fast. </em>You open the program, it displays.  The quicker I can get to my webpages, the quicker I can get to work.</li>
<li>It maximizes screen real estate.  I hate having my usable browser area cluttered by a bunch of toolbars I don&#8217;t want that came bundled with other stuff I <em>did </em>want. (Internet Explorer, I&#8217;m talking to <em>you</em>).  Chrome even goes so far as to use the top window bar (which is normally not used for anything except the program&#8217;s name and window controls) to put my tabs in when maximized.  I love that!  Every little bit of usable screen real estate helps when developing websites on my small laptop screen and I appreciate having those 20 or so vertical pixels back.</li>
<li>It <em>comes with </em>great developer tools.  FireFox has an add-on called Web Developer that I truly love for debugging websites, especially CSS.  But the built-in developer tools that come with Chrome blow it out of the water!  You can change CSS properties on <em>any</em> element and watch how the rendering changes, without re-uploading the CSS file.  <em>And </em>you don&#8217;t have to download an add-on to do it.  While I was writing this post, I used the real-time CSS modification abilities of Chrome&#8217;s developer tools to fix a problem with my WordPress theme that was chopping off the title of my posts if they got too long.</li>
<li>Did I mention it&#8217;s <em>fast?</em></li>
<li>It&#8217;s simple.  It shows me what I need, and hides what I don&#8217;t.  It doesn&#8217;t bury clearing the cache in some tab in some dialog box, under the heading <em>Temporary Internet Files </em>(again, IE, I&#8217;m talking to <em>you</em>).</li>
<li>It has all the keyboard shortcuts I loved in FireFox and had gotten used to as a Web Developer.  Things like CTRL+SHIFT+DELETE to clear cache and cookies (essential for web development), CTRL+T for a new tab, CTRL+SHIFT+T to re-open the most recently closed tab (handy when you just closed something and realized you weren&#8217;t done with it yet).</li>
<li>Did I mention it&#8217;s <em>fast?</em></li>
</ul>
<p>Anyway, that&#8217;s all I can think of for now.  The list is in no particular order, and is not terribly thorough, but there you have it &#8211; my unofficial list of why Google Chrome beats the pants off of any other browser out there.  I still keep the other browsers installed on my machine to make sure the CSS I&#8217;m crafting works across browsers and doesn&#8217;t break my nice site layouts, but as far as day-to-day heavy lifting goes, Chrome is my new best friend.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/348-why-chrome-is-my-new-favorite-browser/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>kodak easy share nightmare</title>
		<link>http://heftelfamily.com/343-kodak-easy-share-nightmare/</link>
		<comments>http://heftelfamily.com/343-kodak-easy-share-nightmare/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 23:47:21 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[easyshare]]></category>
		<category><![CDATA[kodak]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=343</guid>
		<description><![CDATA[Attention, Kodak EasyShare Wireless Digital Picture Frame users!  Kodak has made it extremely easy to share what&#8217;s on your picture frame with everyone on the internet!  Each picture frame has a unique RSS feed that includes its MAC address, and the frames have wi-fi capability built-in, so anyone on the Internet that has [...]]]></description>
			<content:encoded><![CDATA[<p>Attention, Kodak EasyShare Wireless Digital Picture Frame users!  Kodak has made it extremely easy to share what&#8217;s on your picture frame with everyone on the internet!  Each picture frame has a unique RSS feed that includes its MAC address, and the frames have wi-fi capability built-in, so anyone on the Internet that has your feed URL can see ALL the pictures on your picture frame.  There is even a chance that someone could modify the RSS URL of your picture frame and load pictures of their choosing on it &#8211; even before it gets out of the box.  Read the original post <a href="http://seattlewireless.net/~casey/?p=13" target="_blank">here</a>.  Kodak, you need to think the security implications of a wifi-enabled digital picture frame before releasing it to the public!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/343-kodak-easy-share-nightmare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>spell with flickr</title>
		<link>http://heftelfamily.com/319-spell-with-flickr/</link>
		<comments>http://heftelfamily.com/319-spell-with-flickr/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 05:48:27 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[collage]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=319</guid>
		<description><![CDATA[

















Cool, huh?  Click on this link to spell your message with random pictures from flickr!
]]></description>
			<content:encoded><![CDATA[<table cellpadding="0" cellspacing="0">
<tr>
<td><a href="http://www.flickr.com/photos/49968232@N00/3930427891" id="fs_1" title="chocolate letter H"><img alt="chocolate letter H" border="0" src="http://static.flickr.com/3435/3930427891_c8b9dab738_s.jpg"></a></td>
<td><a href="http://www.flickr.com/photos/49968232@N00/3703855698" id="fs_2" title="letter E"><img alt="letter E" border="0" src="http://static.flickr.com/3490/3703855698_664881b32a_s.jpg"></a></td>
<td><a href="http://www.flickr.com/photos/49968232@N00/3703042805" id="fs_3" title="&quot;letter F&quot;"><img border="0" alt="letter F" title="letter F" src="http://static.flickr.com/2512/3703042805_1c5f142843_s.jpg"></a></td>
<td><a href="http://www.flickr.com/photos/49968232@N00/3825632753" id="fs_4" title="letter T"><img alt="letter T" border="0" src="http://static.flickr.com/3436/3825632753_cb8e164ccf_s.jpg"></a></td>
<td><a href="http://www.flickr.com/photos/60139144@N00/3732519931" id="fs_5" title="E white paint on blue with rust coming through"><img alt="E white paint on blue with rust coming through" border="0" src="http://static.flickr.com/3450/3732519931_3f327e48e3_s.jpg"></a></td>
<td><a href="http://www.flickr.com/photos/92745470@N00/3774882598" id="fs_6" title="L"><img alt="L" border="0" src="http://static.flickr.com/3543/3774882598_9fc7b276eb_s.jpg"></a></td>
</tr>
<tr>
<td><a href="http://www.flickr.com/photos/92745470@N00/3559740336" id="fs_7" title="F"><img alt="F" border="0" src="http://static.flickr.com/3596/3559740336_fc12a9bbe9_s.jpg"></a></td>
<td><a href="http://www.flickr.com/photos/49968232@N00/3971078915" id="fs_8" title="letter A"><img alt="letter A" border="0" src="http://static.flickr.com/2577/3971078915_ef5eae8fe4_s.jpg"></a></td>
<td><a href="http://www.flickr.com/photos/9208343@N04/3659817870" id="fs_9" title="M."><img alt="M." border="0" src="http://static.flickr.com/3379/3659817870_2f52da0c76_s.jpg"></a></td>
<td><a href='http://www.flickr.com/photos/92745470@N00/3761887554' id='fs_10' title='i'><img alt='i' border='0' src='http://static.flickr.com/2637/3761887554_b4f9447378_s.jpg' /></a></td>
<td><a href="http://www.flickr.com/photos/49968232@N00/3501107686" id="fs_11" title="letter L"><img alt="letter L" border="0" src="http://static.flickr.com/3635/3501107686_ac1040e2f0_s.jpg"></a></td>
<td><a href="http://www.flickr.com/photos/92745470@N00/3507109929" id="fs_12" title="Y"><img alt="Y" border="0" src="http://static.flickr.com/3639/3507109929_f6de409925_s.jpg"></a></td>
</tr>
</table>
<p>Cool, huh?  Click on <a href="http://metaatem.net/words/">this link</a> to spell your message with random pictures from <a href="http://flickr.com">flickr!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/319-spell-with-flickr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ransom note generator</title>
		<link>http://heftelfamily.com/312-ransom-note-generator/</link>
		<comments>http://heftelfamily.com/312-ransom-note-generator/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 02:16:59 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[ransom note]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=312</guid>
		<description><![CDATA[I was noodling around on the &#8216;Net and found a ransom note generator.  Enter your text, and it creates a ransom note!  How cool!  You can go to the link to the original site, or enter the text to create a ransom note from here:
enter ransom note text here
on yellow paper?  [...]]]></description>
			<content:encoded><![CDATA[<p>I was noodling around on the &#8216;Net and found a <a href="http://www.joshuarey.com/index.pl?Action=ShowArticle&#038;ID=134">ransom note generator</a>.  Enter your text, and it creates a ransom note!  How cool!  You can go to the link to the original site, or enter the text to create a ransom note from here:</p>
<p><FORM ACTION="http://www.joshuarey.com/ransom.pl" METHOD="POST" TARGET="random"><TEXTAREA NAME="Text" CLASS="textarea" STYLE="width:500px;height:250px;overflow:visible">enter ransom note text here</TEXTAREA></p>
<p>on yellow paper? <INPUT TYPE="RADIO" NAME="Background" VALUE="yellowpaper.gif"> &nbsp; on plain paper? <INPUT TYPE="RADIO" NAME="Background" VALUE="" CHECKED></p>
<p><INPUT TYPE="submit" NAME="Enter" VALUE="Enter" CLASS="button" STYLE="width:85px"></FORM></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/312-ransom-note-generator/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>halloween 2009</title>
		<link>http://heftelfamily.com/306-halloween-2009/</link>
		<comments>http://heftelfamily.com/306-halloween-2009/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 07:05:41 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[hair]]></category>
		<category><![CDATA[Halloween]]></category>
		<category><![CDATA[makeup]]></category>
		<category><![CDATA[mohawk]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[punk]]></category>
		<category><![CDATA[shanae is amazing]]></category>
		<category><![CDATA[swine flu]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=306</guid>
		<description><![CDATA[Hey, we&#8217;ve been pretty sick around here (Shanae has the swine flu, more about that later), but we managed to get in a little bit of Halloween celebration.  Here are a few pictures.  The first two are Shanae&#8217;s sister Shayla, dressed up as a tiger.  Shanae did all the makeup and hair and did an [...]]]></description>
			<content:encoded><![CDATA[<p>Hey, we&#8217;ve been pretty sick around here (Shanae has the swine flu, more about that later), but we managed to get in a little bit of Halloween celebration.  Here are a few pictures.  The first two are Shanae&#8217;s sister Shayla, dressed up as a tiger.  Shanae did all the makeup and hair and did an absolutely wonderful job.  The last one is me, Kawika, as a punk-rocker with a mohawk!  It was really fun.  Shayla got to go trick-or-treating and had a blast!  She went through a haunted house, and even found two houses that gave out giant candy bars!  I always tried to find the house that gave out the king-size candy bars when I was little, but never was able to do it.  Shayla has now fulfilled my childhood dream.  Here are the pictures:</p>
<p><a href="http://heftelfamily.com/wp-content/uploads/2009/11/DSCN2226.JPG" rel="shadowbox[sbpost-306];player=img;"><img class="aligncenter size-medium wp-image-305" title="Shayla with pumpkins" src="http://heftelfamily.com/wp-content/uploads/2009/11/DSCN2226-300x225.jpg" alt="Shayla with pumpkins" width="300" height="225" /></a></p>
<p><a href="http://heftelfamily.com/wp-content/uploads/2009/11/DSCN2219.JPG" rel="shadowbox[sbpost-306];player=img;"><img class="aligncenter size-medium wp-image-304" title="Shayla as a fierce tiger" src="http://heftelfamily.com/wp-content/uploads/2009/11/DSCN2219-300x225.jpg" alt="Shayla as a fierce tiger" width="300" height="225" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/11/DSCN2252.JPG" rel="shadowbox[sbpost-306];player=img;"><img class="aligncenter size-medium wp-image-303" title="Kawika as a punk" src="http://heftelfamily.com/wp-content/uploads/2009/11/DSCN2252-225x300.jpg" alt="Kawika as a punk" width="225" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/306-halloween-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sometimes you just have to…</title>
		<link>http://heftelfamily.com/301-sometimes-you-just-have-to/</link>
		<comments>http://heftelfamily.com/301-sometimes-you-just-have-to/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 04:46:30 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[trials]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=301</guid>
		<description><![CDATA[Sometimes you just have to laugh.
Like when you&#8217;ve been in an 18-foot trailer with four people and three dogs for three days, and you find out that it will take a week longer for your hardwood floor in your house to be usable.
Sometimes you just have to laugh.
Like when you come home to said trailer [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you just have to laugh.</p>
<p>Like when you&#8217;ve been in an 18-foot trailer with four people and three dogs for three days, and you find out that it will take a week longer for your hardwood floor in your house to be usable.</p>
<p>Sometimes you just have to laugh.</p>
<p>Like when you come home to said trailer to find an entire bottle of Ibuprofen broken into, chewed up, and scattered all across the bed by said three dogs.</p>
<p>Sometimes you just have to laugh.</p>
<p>Like when you get stung by a bee at Wendy&#8217;s and three days later the swelling has not gone down, but rather is spreading over your elbow and down your arm.</p>
<p>Sometimes you just have to laugh.</p>
<p>Like when you&#8217;re afraid that the three dogs will die from an Ibuprofen overdose cause you don&#8217;t have money to take them to the vet, and you&#8217;re relieved that by the end of the day, none of them has died, but then when you go to bed, you find out that the dogs have thrown up all over all the clean blankets on your bed.</p>
<p>Sometimes you just have to laugh.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/301-sometimes-you-just-have-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>we are insane</title>
		<link>http://heftelfamily.com/255-we-are-insane/</link>
		<comments>http://heftelfamily.com/255-we-are-insane/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 21:15:05 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[dogs]]></category>
		<category><![CDATA[insane]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[puppies]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=255</guid>
		<description><![CDATA[So, we are officially insane.  We just added three dogs to our tiny little house!  They are all black, female, standard poodles, and they are a-DOR-able!!!  It really makes Shanae happy to have a dog again &#8211; a big dog &#8211; she was missing her dog back home.  The one with a cast, Cosmo,  broke [...]]]></description>
			<content:encoded><![CDATA[<p>So, we are officially insane.  We just added three dogs to our tiny little house!  They are all black, female, standard poodles, and they are a-DOR-able!!!  It really makes Shanae happy to have a dog again &#8211; a big dog &#8211; she was missing her dog back home.  The one with a cast, Cosmo,  broke her leg when she caught it on the fence while playing in the backyard.  Zoey is the big one, she&#8217;s about a year old, and very sweet.  Her poor tail is crooked, but it gives her personality.  The other two are Cosmo and Miko.  Cosmo actually belongs to Shanae&#8217;s dad and will be leaving with him when he finishes helping us remodel our house (more about that later).  Miko is ours!  She is an adorable fuzz-ball.  We love our pets and even though they cause mischief sometimes, they make us happy and make our lives a little less boring.  Cosmo and Miko are about 3 months old and will be the same size as Zoey when full grown.  Here are some pictures:</p>
<div id="attachment_249" class="wp-caption aligncenter" style="width: 310px"><a href="http://heftelfamily.com/wp-content/uploads/2009/10/shanaes-camera-2974.JPG" rel="shadowbox[sbpost-255];player=img;"><img class="size-medium wp-image-249" title="Zoey!" src="http://heftelfamily.com/wp-content/uploads/2009/10/shanaes-camera-2974-300x200.jpg" alt="Zoey!" width="300" height="200" /></a><p class="wp-caption-text">Zoey!  She&#39;s a sweetie</p></div>
<p style="text-align: center;">
<div id="attachment_250" class="wp-caption aligncenter" style="width: 310px"><a href="http://heftelfamily.com/wp-content/uploads/2009/10/shanaes-camera-2991.JPG" rel="shadowbox[sbpost-255];player=img;"><img class="size-medium wp-image-250" title="Miko!" src="http://heftelfamily.com/wp-content/uploads/2009/10/shanaes-camera-2991-300x200.jpg" alt="Miko is my little fuzzball" width="300" height="200" /></a><p class="wp-caption-text">Miko is my little fuzzball</p></div>
<div id="attachment_252" class="wp-caption aligncenter" style="width: 310px"><a href="http://heftelfamily.com/wp-content/uploads/2009/10/shanaes-camera-3791.JPG" rel="shadowbox[sbpost-255];player=img;"><img class="size-medium wp-image-252" title="The gimp with her cast" src="http://heftelfamily.com/wp-content/uploads/2009/10/shanaes-camera-3791-300x200.jpg" alt="The gimp with her cast" width="300" height="200" /></a><p class="wp-caption-text">The gimp with her cast</p></div>
<div id="attachment_253" class="wp-caption aligncenter" style="width: 210px"><a href="http://heftelfamily.com/wp-content/uploads/2009/10/shanaes-camera-3951.JPG" rel="shadowbox[sbpost-255];player=img;"><img class="size-medium wp-image-253" title="Cosmo, with her special boot." src="http://heftelfamily.com/wp-content/uploads/2009/10/shanaes-camera-3951-200x300.jpg" alt="You can see her better in this picture.  She has a special boot on her cast." width="200" height="300" /></a><p class="wp-caption-text">You can see her better in this picture.  She has a special boot on her cast.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/255-we-are-insane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the government can</title>
		<link>http://heftelfamily.com/242-the-government-can/</link>
		<comments>http://heftelfamily.com/242-the-government-can/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 17:32:44 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[how true that is]]></category>
		<category><![CDATA[uncle sam]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=242</guid>
		<description><![CDATA[So, I just received this from my good friend David Eggertsen.  It made me feel better!!

]]></description>
			<content:encoded><![CDATA[<p>So, I just received this from my good friend <a href="http://www.eggertsenfamily.com" target="_blank">David Eggertsen</a>.  It made me feel better!!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" 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/LO2eh6f5Go0&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_profilepage&amp;fs=1" /><param name="allowfullscreen" value="true" /><param name="wmode" value="transparent" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/LO2eh6f5Go0&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_profilepage&amp;fs=1" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/242-the-government-can/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>buy my piano</title>
		<link>http://heftelfamily.com/230-buy-my-piano/</link>
		<comments>http://heftelfamily.com/230-buy-my-piano/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 22:27:38 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[piano]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[selling]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=230</guid>
		<description><![CDATA[
This is a beautiful dark-brown Schumann baby grand piano. Shanae bought it for me when we got married as a wedding present. I&#8217;m so sad to let it go, but we are moving and can&#8217;t take it with us. I&#8217;ve been playing for 18 years so I had to have a good piano to play [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2009/09/front-view.jpg" rel="shadowbox[sbpost-230];player=img;"><img class="aligncenter size-full wp-image-231" title="Front View" src="http://heftelfamily.com/wp-content/uploads/2009/09/front-view.jpg" alt="Front View" width="596" height="398" /></a><br />
This is a beautiful dark-brown Schumann baby grand piano. Shanae bought it for me when we got married as a wedding present. I&#8217;m so sad to let it go, but we are moving and can&#8217;t take it with us. I&#8217;ve been playing for 18 years so I had to have a good piano to play on, and so when we got married we looked through many pianos together and this is the one I finally chose. We bought it used but it is in good condition. There is some cosmetic damage from previous owners that is visible in the pictures, but the action is great and it still plays and sounds like new. It is in need of some tuning. Please, if you are in the Provo, Utah area and are in need of a piano, come check it out!  We are asking $2500 or best offer.</p>

<a href='http://heftelfamily.com/wp-content/uploads/2009/09/front-view.jpg' rel='shadowbox[sbalbum-230];player=img;' title='Front View'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2009/09/front-view-150x150.jpg" class="attachment-thumbnail" alt="Front View" title="Front View" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2009/09/extrapic1.jpg' rel='shadowbox[sbalbum-230];player=img;' title='extrapic1'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2009/09/extrapic1-150x150.jpg" class="attachment-thumbnail" alt="extrapic1" title="extrapic1" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2009/09/extrapic2.jpg' rel='shadowbox[sbalbum-230];player=img;' title='extrapic2'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2009/09/extrapic2-150x150.jpg" class="attachment-thumbnail" alt="extrapic2" title="extrapic2" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2009/09/extrapic3.jpg' rel='shadowbox[sbalbum-230];player=img;' title='extrapic3'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2009/09/extrapic3-150x150.jpg" class="attachment-thumbnail" alt="extrapic3" title="extrapic3" /></a>
<a href='http://heftelfamily.com/wp-content/uploads/2009/09/extrapic4.jpg' rel='shadowbox[sbalbum-230];player=img;' title='extrapic4'><img width="150" height="150" src="http://heftelfamily.com/wp-content/uploads/2009/09/extrapic4-150x150.jpg" class="attachment-thumbnail" alt="extrapic4" title="extrapic4" /></a>

]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/230-buy-my-piano/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>welcome to my life</title>
		<link>http://heftelfamily.com/222-welcome-to-my-life/</link>
		<comments>http://heftelfamily.com/222-welcome-to-my-life/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 22:02:04 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[customer service]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[tech support]]></category>
		<category><![CDATA[tech support cheat sheet]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=222</guid>
		<description><![CDATA[This XKCD comic made me laugh out loud, in the middle of the workday, in the middle of the office.  I relate to this so much it&#8217;s scary:

Here&#8217;s a link to the comic on the original page.
]]></description>
			<content:encoded><![CDATA[<p>This XKCD comic made me laugh out loud, in the middle of the workday, in the middle of the office.  I relate to this so much it&#8217;s scary:</p>
<p><img class="xkcd" src="http://imgs.xkcd.com/comics/tech_support_cheat_sheet.png" alt="XKCD Tech Support" width="732" height="823" /></p>
<p>Here&#8217;s a <a href="http://www.xkcd.com/627/">link</a> to the comic on the original page.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/222-welcome-to-my-life/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Pandora</title>
		<link>http://heftelfamily.com/221-pandora/</link>
		<comments>http://heftelfamily.com/221-pandora/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 00:08:41 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[pandora]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/221-pandora/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img style="visibility:hidden;width:0px;height:0px;" border=0 width=0 height=0 src="http://counters.gigya.com/wildfire/IMP/CXNID=2000002.0NXC/bHQ9MTI1MDk4NjA*NTEwNSZwdD*xMjUwOTg2MTA1NDg1JnA9NjU4NjcxJmQ9Jm49d29yZHByZXNzJmc9MiZvPTYyYjgwNWUzMzA1YjQ1ODI5YmUxNGY4MDRlOWJhYWI*Jm9mPTA=.gif" /><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="525" id="pandora_widget" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="false" /><param name="movie" value="http://www.pandora.com/static/badge/pandora_widget.swf?userID=kheftel&#038;gig_noFBShare=1" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" /><embed src="http://www.pandora.com/static/badge/pandora_widget.swf?userID=kheftel" quality="high" wmode="transparent" bgcolor="#ffffff" width="100%" height="525" name="pandora_widget" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/221-pandora/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>megawoosh</title>
		<link>http://heftelfamily.com/218-megawoosh/</link>
		<comments>http://heftelfamily.com/218-megawoosh/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 05:54:41 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=218</guid>
		<description><![CDATA[What a great video!!  I really enjoyed watching it.

MEGAWOOSH @ Yahoo! Video
]]></description>
			<content:encoded><![CDATA[<p>What a great video!!  I really enjoyed watching it.</p>
<div><object width="512" height="322" data="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.46" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" value="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=15038418&amp;vid=5741391&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/video01/5741391_rnd0506a960_19.jpg&amp;embed=1&amp;ap=9460582" /><param name="src" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.46" /><param name="flashvars" value="id=15038418&amp;vid=5741391&amp;lang=en-us&amp;intl=us&amp;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/video01/5741391_rnd0506a960_19.jpg&amp;embed=1&amp;ap=9460582" /><param name="allowfullscreen" value="true" /></object><br />
<a href="http://video.yahoo.com/watch/5741391/15038418">MEGAWOOSH</a> @ <a href="http://video.yahoo.com">Yahoo! Video</a></div>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/218-megawoosh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>biggest drum kit ever</title>
		<link>http://heftelfamily.com/206-biggest-drum-kit-ever/</link>
		<comments>http://heftelfamily.com/206-biggest-drum-kit-ever/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 18:45:35 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[big drum kit]]></category>
		<category><![CDATA[how do you play that thing]]></category>
		<category><![CDATA[insane]]></category>
		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=206</guid>
		<description><![CDATA[How many drums do you REALLY need in a drumkit?  I stumbled on the following picture today:

This picture comes from Terry Bozzio&#8217;s website (click here for drum specs, click the image to go to Terry&#8217;s site).  This is officially the biggest drumkit I have ever seen!  How does one even play such a beast?  [...]]]></description>
			<content:encoded><![CDATA[<p>How many drums do you REALLY need in a drumkit?  I stumbled on the following picture today:</p>
<p style="text-align: center;"><a href="http://terrybozzio.com/"><img class="size-full wp-image-209 aligncenter" title="terry_bozzio_kit" src="http://heftelfamily.com/wp-content/uploads/2009/07/terry_bozzio_kit.jpg" alt="Terry Bozzio's Huge drumkit" width="512" height="344" /></a></p>
<p>This picture comes from Terry Bozzio&#8217;s website (click <a href="http://terrybozzio.com/kit-setup/" target="_blank">here </a>for drum specs, click the image to go to Terry&#8217;s site).  This is officially the biggest drumkit I have ever seen!  How does one even play such a beast?  I also stumbled upon the following video today.  This is a timelapse video of what it takes to set up the kit.  I definitely admire the guy for being able to play so many drums, but there is no way I would be able to have the patience to setup that kind of a kit (to say nothing of the skill required to actually play it).</p>
<p><object width="425" height="344" data="http://www.youtube.com/v/uV9WlgC5oWo&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/uV9WlgC5oWo&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/206-biggest-drum-kit-ever/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>my twitter comes of age</title>
		<link>http://heftelfamily.com/202-my-twitter-account-comes-of-age/</link>
		<comments>http://heftelfamily.com/202-my-twitter-account-comes-of-age/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 18:44:41 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=202</guid>
		<description><![CDATA[I now have more people following me than I am following!  I somehow feel like I&#8217;ve come of age in the Twitter world.  I&#8217;m pretty new to the Twitter world, my account is less than a year old.  I didn&#8217;t quite understand it at first, when a friend explained it to me &#8211; [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_201" class="wp-caption alignright" style="width: 275px"><img class="size-full wp-image-201" title="My Twitter account comes of age" src="http://heftelfamily.com/wp-content/uploads/2009/07/twittercomesofage.jpg" alt="followers &gt; following!" width="265" height="269" /><p class="wp-caption-text">followers &gt; following!</p></div>
<p>I now have more people following me than I am following!  I somehow feel like I&#8217;ve come of age in the Twitter world.  I&#8217;m pretty new to the Twitter world, my account is less than a year old.  I didn&#8217;t quite understand it at first, when a friend explained it to me &#8211; it took a lot of experimenting on my own to figure it out.  But now that I&#8217;m on it I love it.  I especially love using the TwitterFox extension for FireFox &#8211; it turns Twitter into a truly real-time stream of updates from people I care about, and allows me to almost use Twitter as an instant messaging protocol.  I also love that Twitter has so many apps that interface with it, it&#8217;s available through WordPress here at my blog, and from my iPod touch, etc.  Twitter is truly a modern-day phenomenon.  It allows me to quickly communicate my thoughts on pressing issues to an audience of people that is different from Facebook and other accounts I may have.  I use it to comment on science and technology articles, shamelessly promote my content, and occasionally tell people what I&#8217;m doing at work or at my <a title="Utah Recording Studio" href="http://www.heftelstudios.com" target="_blank">recording studio</a> (shameless plug).  Here&#8217;s to Twitter and more growth to come!  Follow me on Twitter <a href="http://www.twitter.com/kheftel">@kheftel<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/202-my-twitter-account-comes-of-age/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sunday thoughts</title>
		<link>http://heftelfamily.com/196-sunday-thoughts/</link>
		<comments>http://heftelfamily.com/196-sunday-thoughts/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 23:02:44 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[religion]]></category>
		<category><![CDATA[sunday]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=196</guid>
		<description><![CDATA[Just some thoughts on a Sunday afternoon as I sit here on the couch while Ne&#8217; is resting next to me.  As many or all of you know, I have been working at the LDS Motion Picture Studio and I&#8217;ve been working on editing audio from the Seminar for New Mission Presidents.  This is where [...]]]></description>
			<content:encoded><![CDATA[<p>Just some thoughts on a Sunday afternoon as I sit here on the couch while Ne&#8217; is resting next to me.  As many or all of you know, I have been working at the LDS Motion Picture Studio and I&#8217;ve been working on editing audio from the Seminar for New Mission Presidents.  This is where all the new mission presidents come to the MTC for four days of intense training from General Authorities before they go out to preside over their missions for three years.  It really is an amazing thing &#8211; they have only a few marathon twelve-hour days to learn how to do their calling, learning from General Authorities and drinking in their instruction firehose-style, before they are sent out across the world.  The second they arrive in their missions, they are in charge and the current mission president becomes the former mission president.  Usually within a day the former mission president is on a plane headed home.  How&#8217;s that for feeling inadequate and having to rely on the spirit?<span id="more-196"></span></p>
<p>I just read a blog post by a friend of mine and a former coworker, where he explained that he used to pray as a kid, but God never answered, and now as an adult, he feels it is silly to worry about God and where we come from or where we are going.  I posted the following as a comment on his post, and thought I&#8217;d share it with all of you.  Consider it my testimony that God lives and loves us despite all that is wrong with the world:</p>
<p>I believe that there IS a point to life, and that there is a God up there who loves us. Yes, I know that seems contradictory with all of the suffering that happens on this planet on a day-to-day basis. But that doesn&#8217;t change my belief that God knows each and every one of us by name, and that he will one day make right all that has been wrong here on earth. We are here to learn to be kind to others even when no one is being kind to us. We are here to learn to do good when there is no immediate reward, or even when we take flak for it. I don&#8217;t claim to know why infants die from malnutrition in poorer parts of the world, but I know for sure it&#8217;s not because they &#8220;deserved&#8221; it, and I believe God will make up for their innocent suffering on the other side. God ultimately wants us to be happy, and if we soften our hearts and turn to him in times of distress he will hear us, and if we know how to listen we will hear his response. When it seems like he doesn&#8217;t answer our prayers and save us from hard things, it is because there is something for us to learn from it. There is no shortcut or easy way to learn and grow, we must put in the work necessary for such growth to happen. And through it all, the triumphs and the sadness, the thrills and the heartaches, God is there, watching us and rooting for us to succeed, but also allowing us to go through hard times so we may grow.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/196-sunday-thoughts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ipod touch musings</title>
		<link>http://heftelfamily.com/190-ipod-touch-musings/</link>
		<comments>http://heftelfamily.com/190-ipod-touch-musings/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 03:11:21 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[touch]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/190-ipod-touch-musings/</guid>
		<description><![CDATA[This is my first blog post from my iPod touch. I find that typing on the small keyboard takes longer than a normal keyboard, and the lack of tactile response makes it easier to have all sorts of weird typos. The auto-complete function works fairly well for common words and common typos, but you still [...]]]></description>
			<content:encoded><![CDATA[<p>This is my first blog post from my iPod touch. I find that typing on the small keyboard takes longer than a normal keyboard, and the lack of tactile response makes it easier to have all sorts of weird typos. The auto-complete function works fairly well for common words and common typos, but you still have to verify that the iPod software didn&#8217;t screw you over while trying to be helpful and user-friendly. Still, the thought of posting to my blog from a handheld device is decidedly cool, and makes my inner techno-geek drool. I got bored in church today and wrote a letter to my Latvian buddy Artjom &#8211; in Cyrillic characters, from the iPod. That, I have got to admit, is cool. It even had limited auto-correct in russian! In the iPod/iPhone 3.0 software I would like to see a much better Russian dictionary for auto-complete.</p>
<p>While on the topic of the iPod, I wonder why the included safari browser doesn&#8217;t allow you to download files from the web. I mean, I have an iPod that can surf the web, and I can&#8217;t download music to it from a server I own, nor can I download pictures to it unless I email them to myself. That is quite annoying!! I haven&#8217;t checked to see if I can email myself mp3s and download them to the iPod &#8211; I&#8217;ll have to try that and get back to you.</p>
<p>All in all, though, the iPod touch is an incredible piece of hardware and software. I mean, it beats the computer I first learned to program on at the tender age of 11 in every aspect, from memory to processor to storage. Plus it connects to wi-fi, plays mp3s and video, has a touchscreen, and a better display than what I used to use in my games back then (I started programming games I&#8217;m mode X &#8211; 320 by 240 graphics, 256 colors). And did I mention it fits in the palm of my hand? We do indeed live in a marvelous world.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/190-ipod-touch-musings/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>new things in north carolina</title>
		<link>http://heftelfamily.com/165-new-things-in-north-carolina/</link>
		<comments>http://heftelfamily.com/165-new-things-in-north-carolina/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 18:41:35 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[manly]]></category>
		<category><![CDATA[NC]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[rabbit]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=165</guid>
		<description><![CDATA[Okay, I promised a new blog post about visiting Shanae&#8217;s family in North Carolina, and now it&#8217;s time to do it.  It&#8217;s been fun hanging out here, I&#8217;ve gotten to do a bunch of new things I&#8217;ve never done before.   For one, I got to eat rabbit for the first time!  And not just [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, I promised a new blog post about visiting Shanae&#8217;s family in North Carolina, and now it&#8217;s time to do it.  It&#8217;s been fun hanging out here, I&#8217;ve gotten to do a bunch of new things I&#8217;ve never done before.   For one, I got to eat rabbit for the first time!  And not just any rabbit:</p>
<p style="text-align: center;"><a href="http://heftelfamily.com/wp-content/uploads/2009/06/bunny-cropped.jpg" rel="shadowbox[sbpost-165];player=img;"><img class="size-medium wp-image-175 aligncenter" title="bunny in the front yard" src="http://heftelfamily.com/wp-content/uploads/2009/06/bunny-cropped-300x199.jpg" alt="bunny in the front yard" width="300" height="199" /></a></p>
<p>This rabbit was hopping around in the front yard until my father-in-law shot it with a bow and arrow, skinned and cleaned it, and roasted it on the grill:</p>
<p style="text-align: center;"><a href="http://heftelfamily.com/wp-content/uploads/2009/06/img_4838.jpg" rel="shadowbox[sbpost-165];player=img;"><img class="size-medium wp-image-176 aligncenter" title="rabbit on the barbie!" src="http://heftelfamily.com/wp-content/uploads/2009/06/img_4838-300x199.jpg" alt="rabbit on the barbie!" width="300" height="199" /></a></p>
<p>Yes, that is the same rabbit!!  I wish I could compare to my father-in-law in manliness and sheer testosterone, but I&#8217;m afraid that will never happen.  I&#8217;ll have to stick to hunting PHP/MySQL bugs in the thickets of server code.  Here is how the rabbit looked on the table:</p>
<p style="text-align: center;"><a href="http://heftelfamily.com/wp-content/uploads/2009/06/img_4844.jpg" rel="shadowbox[sbpost-165];player=img;"><img class="size-medium wp-image-177 aligncenter" title="Roast rabbit with a garnish of parsley" src="http://heftelfamily.com/wp-content/uploads/2009/06/img_4844-300x199.jpg" alt="Roast rabbit with a garnish of parsley" width="300" height="199" /></a></p>
<p>Rabbit kinda tastes like a cross between chicken and pork, with the texture of tough steak (most of the pieces were tough, and some of the pieces that came from the back cut of the rabbit were actually pretty tender).  So there you have it &#8211; I have officially eaten rabbit.</p>
<p>Another new thing is I got to ride a riding lawnmower for the first time!  It felt like I was driving a zamboni!!  I&#8217;ve always wanted to drive a zamboni!!  I felt like this guy:</p>
<p style="text-align: center;"><a href="http://heftelfamily.com/wp-content/uploads/2009/06/zamboni20cropped.jpg" rel="shadowbox[sbpost-165];player=img;"><img class="size-medium wp-image-183 aligncenter" title="Zamboni drivers are cool" src="http://heftelfamily.com/wp-content/uploads/2009/06/zamboni20cropped-300x267.jpg" alt="Zamboni drivers are cool" width="300" height="267" /></a></p>
<p style="text-align: center;">
<p>Shanae thought it was pretty funny how excited I was to drive a riding lawnmower &#8211; her family has always owned them.  I guess in Florida, push lawnmowers don&#8217;t count as &#8220;real&#8221; lawnmowers.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/165-new-things-in-north-carolina/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>technorati profile</title>
		<link>http://heftelfamily.com/163-technorati-profile/</link>
		<comments>http://heftelfamily.com/163-technorati-profile/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 22:17:38 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=163</guid>
		<description><![CDATA[I have a profile now at technorati, here&#8217;s the link to visit it: Technorati Profile
]]></description>
			<content:encoded><![CDATA[<p>I have a profile now at technorati, here&#8217;s the link to visit it: <a href="http://technorati.com/claim/dr9aqu5avb" rel="me">Technorati Profile</a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/163-technorati-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>music from sand</title>
		<link>http://heftelfamily.com/124-music-from-sand/</link>
		<comments>http://heftelfamily.com/124-music-from-sand/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 20:23:36 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[coolness]]></category>
		<category><![CDATA[sand]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=124</guid>
		<description><![CDATA[Okay, this is really cool.  I stumbled on a video today of a guy who made a song entirely out of sampled recordings of sand.  That&#8217;s right, he recorded sand in all sorts of ways and then used those samples to make music!  Check it out on vimeo:

]]></description>
			<content:encoded><![CDATA[<p>Okay, this is really cool.  I stumbled on a video today of a guy who made a song entirely out of sampled recordings of sand.  That&#8217;s right, he recorded sand in all sorts of ways and then used those samples to make music!  Check it out on vimeo:</p>
<p><object width="400" height="225"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3080808&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=3080808&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225" wmode="opaque"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/124-music-from-sand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install svn on mac osx</title>
		<link>http://heftelfamily.com/117-install-svn-on-mac-osx/</link>
		<comments>http://heftelfamily.com/117-install-svn-on-mac-osx/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 21:48:14 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=117</guid>
		<description><![CDATA[Just found a great tutorial on how to install SVN on Mac OSX &#8211; it came in handy today.
]]></description>
			<content:encoded><![CDATA[<p>Just found a <a href="http://www.wikihow.com/Install-Subversion-on-Mac-OS-X">great tutorial </a>on how to install SVN on Mac OSX &#8211; it came in handy today.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/117-install-svn-on-mac-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lds criticism</title>
		<link>http://heftelfamily.com/110-lds-criticism/</link>
		<comments>http://heftelfamily.com/110-lds-criticism/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 19:42:36 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[LDS Church]]></category>
		<category><![CDATA[LDS Criticism]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=110</guid>
		<description><![CDATA[I just read a very informative article about what members of the Church of Jesus Christ of Latter-Day Saints are to do in response to HBO&#8217;s portrayal of our sacred temple ordinances, or really in response to any criticism of the Church: nothing.
From the article:
As Catholics, Jews and Muslims have known for centuries, such attention [...]]]></description>
			<content:encoded><![CDATA[<p>I just read a <a href="http://newsroom.lds.org/ldsnewsroom/eng/commentary/the-publicity-dilemma">very informative article </a>about what members of the Church of Jesus Christ of Latter-Day Saints are to do in response to HBO&#8217;s portrayal of our sacred temple ordinances, or really in response to any criticism of the Church: <strong>nothing</strong>.<br />
From the article:</p>
<blockquote><p>As Catholics, Jews and Muslims have known for centuries, such attention is inevitable once an institution or faith group reaches a size or prominence sufficient to attract notice. Yet Latter-day Saints – sometimes known as Mormons &#8211; still wonder whether and how they should respond when news or entertainment media insensitively trivialize or misrepresent sacred beliefs or practices.</p></blockquote>
<p>This is the problem &#8211; what do you do when your beliefs are criticized, put down, or otherwise blown out of proportion, without your consent and without context?<span id="more-110"></span></p>
<p>You do what you do when a small child throws a temper tantrum to get negative attention &#8211; you ignore it.</p>
<p>From the article:</p>
<blockquote><p>The Church of Jesus Christ of Latter-day Saints as an institution does not call for boycotts. Such a step would simply generate the kind of controversy that the media loves and in the end would increase audiences for the series. As Elder M. Russell Ballard and Elder Robert D. Hales of the Council of the Twelve Apostles have both said recently, when expressing themselves in the public arena, Latter-day Saints should conduct themselves with dignity and thoughtfulness . . . There is no need to feel defensive when the Church is moving forward so rapidly. The Church’s strength is in its faithful members in 170-plus countries, and there is no evidence that extreme misrepresentations in the media that appeal only to a narrow audience have any long-term negative effect on the Church.</p></blockquote>
<p>There have been many criticisms of the Church in the past, and there will continue to be criticisms in the future, but the best course of action for those who truly believe is to let the truth speak for itself.  We can defend ourselves and our beliefs without stooping to the level of our attackers.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/110-lds-criticism/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>song about hope</title>
		<link>http://heftelfamily.com/105-song-about-hope/</link>
		<comments>http://heftelfamily.com/105-song-about-hope/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 11:29:15 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=105</guid>
		<description><![CDATA[
This song expresses my faith in and my hope for humanity.  It is my hope that my music can bring hope and a little more brightness to a world too often darkened by cynicism, doubt, and fear.  If you like it, please comment below!
]]></description>
			<content:encoded><![CDATA[<p><object width="500" height="405"><param name="movie" value="http://www.youtube-nocookie.com/v/v_foSXJxSOU&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/v_foSXJxSOU&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"></embed></object><br />
This song expresses my faith in and my hope for humanity.  It is my hope that my music can bring hope and a little more brightness to a world too often darkened by cynicism, doubt, and fear.  If you like it, please comment below!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/105-song-about-hope/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>conference quotes 09</title>
		<link>http://heftelfamily.com/99-conference-quotes-09/</link>
		<comments>http://heftelfamily.com/99-conference-quotes-09/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 07:12:34 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[General Conference]]></category>
		<category><![CDATA[LDS]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=99</guid>
		<description><![CDATA[My favorite quotes from this April&#8217;s LDS General Conference:
Elder Uchtdorf:
It&#8217;s not merely enough to surround ourselves with symbols of our faith.  Ours is not a second-hand religion.  We cannot receive the benefit of the Gospel by merely observing what others do.  We must get off the couch and practice what we preach.
Be of one heart [...]]]></description>
			<content:encoded><![CDATA[<p>My favorite quotes from this April&#8217;s LDS General Conference:</p>
<p>Elder Uchtdorf:<br />
It&#8217;s not merely enough to surround ourselves with symbols of our faith.  Ours is not a second-hand religion.  We cannot receive the benefit of the Gospel by merely observing what others do.  We must get off the couch and practice what we preach.</p>
<p>Be of one heart and one mind in your marriage and family.</p>
<p>Elder Anderson:<br />
God shapes the back to fit the burdens placed upon it.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/99-conference-quotes-09/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Garden 09!</title>
		<link>http://heftelfamily.com/77-garden-09/</link>
		<comments>http://heftelfamily.com/77-garden-09/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 06:28:17 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[garden]]></category>
		<category><![CDATA[pumpkins]]></category>
		<category><![CDATA[sunflowers]]></category>
		<category><![CDATA[tomatoes]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=77</guid>
		<description><![CDATA[
Any questions?  Planting begins in May!  Woohoo!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2009/04/garden-09.jpg" rel="shadowbox[sbpost-77];player=img;"></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/garden-09.jpg" rel="shadowbox[sbpost-77];player=img;"><img class="alignnone size-full wp-image-82" style="margin: 5px;" title="Garden Schematic 09!" src="http://heftelfamily.com/wp-content/uploads/2009/04/garden-09.jpg" alt="Garden Schematic 09!" width="482" height="354" /></a></p>
<p>Any questions?  Planting begins in May!  Woohoo!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/77-garden-09/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>flatback and leather books</title>
		<link>http://heftelfamily.com/40-bookbinding/</link>
		<comments>http://heftelfamily.com/40-bookbinding/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 20:33:35 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[art books]]></category>
		<category><![CDATA[bookbinding]]></category>
		<category><![CDATA[burned edges]]></category>
		<category><![CDATA[leather]]></category>
		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=40</guid>
		<description><![CDATA[


This is a book I made myself in a bookbinding class with my lovely wife.  It&#8217;s a flatback book &#8211; a book with a hard spine similar to many books you may buy commercially.  I can&#8217;t believe I made something so cool!  Bookbinding is neat, but takes many hours of hard work.  The finished product [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_31771.jpg" rel="shadowbox[sbpost-40];player=img;"><br />
</a></p>
<p><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_2547.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="size-medium wp-image-41" style="margin: 5px;" title="img_2547" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_2547-300x200.jpg" alt="Kawika's flatback book" width="180" height="120" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_2549.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="size-medium wp-image-50 alignnone" style="margin: 5px;" title="img_2549" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_2549-300x200.jpg" alt="Kawika flatback book" width="180" height="120" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_2552.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-51" style="margin: 5px;" title="Kawika's Flatback Book Detail" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_2552-300x200.jpg" alt="Kawika's Flatback Book Detail" width="180" height="120" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_2405.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-55" style="margin: 5px;" title="Kawika's Flatbackbook Interior Detail" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_2405-300x200.jpg" alt="Kawika's Flatbackbook Interior Detail" width="180" height="120" /></a></p>
<p>This is a book I made myself in a bookbinding class with my lovely wife.  It&#8217;s a flatback book &#8211; a book with a hard spine similar to many books you may buy commercially.  I can&#8217;t believe I made something so cool!  Bookbinding is neat, but takes many hours of hard work.  The finished product is amazing, though!  Below are pictures of Shanae&#8217;s flatback book:</p>
<p><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_2553.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-49" title="img_2553" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_2553-200x300.jpg" alt="Shanae's Flatback Book" width="120" height="180" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_2554.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-48" title="Shanae's Flatback Book" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_2554-200x300.jpg" alt="Shanae's Flatback Book" width="120" height="180" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_2555.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-52" title="Shanae's Flatbook Book Interior" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_2555-300x200.jpg" alt="Shanae's Flatbook Book Interior" width="270" height="180" /></a></p>
<p>Shanae is so artistic.  She can take ordinary things and imbue them with artistry and beauty.  I am truly blessed to be at her side.  She took the already-cool book above and made a matching box for it, to keep it safe and protect it.  Here are the pictures:</p>
<p><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_3162.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-60" style="margin: 5px;" title="Shanae's Clamshell Box Finished" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_3162-300x199.jpg" alt="Shanae's Clamshell Box Finished" width="180" height="119" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_3165.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-61" style="margin: 5px;" title="Shanae's Clamshell box detail" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_3165-300x199.jpg" alt="Shanae's Clamshell box detail" width="180" height="119" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_3168.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-62" style="margin: 5px;" title="Detail of how the book fits into the box" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_3168-300x199.jpg" alt="Detail of how the book fits into the box" width="180" height="119" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_3170.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-63" style="margin: 5px;" title="Shanae's Clamshell Box Back" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_3170-300x199.jpg" alt="Shanae's Clamshell Box Back" width="180" height="119" /></a></p>
<p>But coolest of all is her final project for this class.  She made a leather-covered book to use for quotes.  The edges of the pages are burned so they have a cool, blackened, irregular look.  She used her awesome calligraphy skills to put famous quotes on many of the interior pages.  Basically this book rocks:</p>
<p><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_31741.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-65" style="margin: 5px;" title="Shanae's Leather Book Cover" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_31741-300x199.jpg" alt="Shanae's Leather Book Cover" width="180" height="119" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_31771.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-66" style="margin: 5px;" title="Shanae's Leather Book Cover" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_31771-300x199.jpg" alt="Shanae's Leather Book Cover" width="180" height="119" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_3180.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-67" style="margin: 5px;" title="Inside Pages" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_3180-300x199.jpg" alt="Inside Pages" width="180" height="119" /></a><a href="http://heftelfamily.com/wp-content/uploads/2009/04/img_3183.jpg" rel="shadowbox[sbpost-40];player=img;"><img class="alignnone size-medium wp-image-68" style="margin: 5px;" title="Leather Book Quote" src="http://heftelfamily.com/wp-content/uploads/2009/04/img_3183-300x199.jpg" alt="Leather Book Quote" width="180" height="119" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/40-bookbinding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kai’s second birthday</title>
		<link>http://heftelfamily.com/28-kais-second-birthday/</link>
		<comments>http://heftelfamily.com/28-kais-second-birthday/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 08:43:28 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[birthday]]></category>
		<category><![CDATA[cute]]></category>
		<category><![CDATA[kai]]></category>
		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=28</guid>
		<description><![CDATA[
My little brother Kai just turned 2!  This picture is from his birthday party, he was simply adorable.  So cute!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://heftelfamily.com/wp-content/uploads/2009/04/kai-w-cake.jpg" rel="shadowbox[sbpost-28];player=img;"><img class="alignnone size-medium wp-image-27" title="kai-w-cake" src="http://heftelfamily.com/wp-content/uploads/2009/04/kai-w-cake-225x300.jpg" alt="kai-w-cake" width="225" height="300" /></a></p>
<p>My little brother Kai just turned 2!  This picture is from his birthday party, he was simply adorable.  So cute!</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/28-kais-second-birthday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>creation</title>
		<link>http://heftelfamily.com/24-creation/</link>
		<comments>http://heftelfamily.com/24-creation/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 07:53:54 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[creation]]></category>
		<category><![CDATA[joke]]></category>
		<category><![CDATA[religion]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=24</guid>
		<description><![CDATA[God is sitting in Heaven when a scientist says to Him, &#8220;Lord, we don&#8217;t need you anymore. Science has finally figured out a way to create life out of nothing.  In other words, we can now do what you did in the &#8216;beginning&#8217;.&#8221;
&#8220;Oh, is that so? Tell me&#8230;&#8221; replies God.
&#8220;Well&#8221;, says the scientist, &#8220;we [...]]]></description>
			<content:encoded><![CDATA[<p>God is sitting in Heaven when a scientist says to Him, &#8220;Lord, we don&#8217;t need you anymore. Science has finally figured out a way to create life out of nothing.  In other words, we can now do what you did in the &#8216;beginning&#8217;.&#8221;</p>
<p>&#8220;Oh, is that so? Tell me&#8230;&#8221; replies God.</p>
<p>&#8220;Well&#8221;, says the scientist, &#8220;we can take dirt and form it into the likeness of you and breathe life into it, thus creating man.&#8221;</p>
<p>&#8220;Well, that&#8217;s interesting. Show me.&#8221;</p>
<p>So the scientist bends down to the earth and starts to mold the soil.</p>
<p>&#8220;Oh no, no, no.&#8221; interrupts God.</p>
<p>(I love this&#8230;)</p>
<p>&#8220;Get your own dirt.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/24-creation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dogs are better</title>
		<link>http://heftelfamily.com/11-dogs-are-better/</link>
		<comments>http://heftelfamily.com/11-dogs-are-better/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 06:10:51 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[cats]]></category>
		<category><![CDATA[diary]]></category>
		<category><![CDATA[dogs]]></category>
		<category><![CDATA[joke]]></category>
		<category><![CDATA[journal]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=11</guid>
		<description><![CDATA[Excerpts from a Dog&#8217;s Diary&#8230;
8:00  am &#8211; Dog food! My favorite thing!
9:30 am &#8211; A car ride! My favorite thing!
9:40 am &#8211; A walk in the park! My favorite  thing!
10:30 am &#8211; Got rubbed and petted! My favorite  thing!
12:00 pm &#8211; Lunch! My favorite thing!
1:00  pm &#8211; Played in the yard! My favorite thing!
3:00 pm [...]]]></description>
			<content:encoded><![CDATA[<h4>Excerpts from a Dog&#8217;s Diary&#8230;</h4>
<p>8:00  am &#8211; Dog food! My favorite thing!<br />
9:30 am &#8211; A car ride! My favorite thing!<br />
9:40 am &#8211; A walk in the park! My favorite  thing!<br />
10:30 am &#8211; Got rubbed and petted! My favorite  thing!<br />
12:00 pm &#8211; Lunch! My favorite thing!<br />
1:00  pm &#8211; Played in the yard! My favorite thing!<br />
3:00 pm &#8211; Wagged my tail! My favorite thing!<br />
5:00 pm &#8211; Milk Bones! My favorite thing!<br />
7:00 pm &#8211; Got to play ball! My favorite thing!<br />
8:00 pm &#8211; Wow! Watched TV with the people! My favorite thing!<br />
11:00 pm &#8211; Sleeping on the bed! My favorite thing!</p>
<h4>Excerpts from a Cat&#8217;s Diary&#8230;</h4>
<p>Day  983 of my captivity &#8230;</p>
<p>My captors continue to taunt me with bizarre little dangling objects.  They dine lavishly on fresh meat, while the other inmates  and I are fed hash or some sort of dry nuggets.</p>
<p>Although I make my contempt for the rations  perfectly clear, I nevertheless must eat something in order to keep up my strength.</p>
<p>The only thing that keeps me going is my dream of  escape. In an attempt to disgust them, I once again vomit on the  carpet.  Today I decapitated a mouse and dropped its headless  body at their feet. I had hoped this would strike fear into their hearts, since  it clearly demonstrates what I am capable of. However, they merely made condescending comments about what a &#8216;good little hunter&#8217; I am.  S&#8212;!</p>
<p>There was some sort of assembly of their accomplices  tonight. I was placed in solitary confinement for the duration of the event. However, I could hear the noises and smell the food. I overheard that my confinement was due to the power of &#8216;allergies&#8217;. I must learn what this means  and how to use it to my advantage.</p>
<p>Today I was almost  successful in an attempt to assassinate one of my tormentors by weaving around  his feet as he was walking. I must try this again tomorrow &#8212; but at the top of  the stairs.</p>
<p>I am convinced that the other prisoners here are  flunkies and snitches. The dog receives special privileges. He is regularly released &#8211; and seems to be more than willing to return. He is obviously short of  his mental capacities.</p>
<p>The bird has got to be an informant. I observe him communicating with the guards regularly. I am certain that he reports my every move. My captors have arranged protective custody for him in an elevated cell, so he is safe.</p>
<p>For now&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/11-dogs-are-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>atheist holy day</title>
		<link>http://heftelfamily.com/3-florida-court-sets-atheist-holy-day/</link>
		<comments>http://heftelfamily.com/3-florida-court-sets-atheist-holy-day/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 05:44:21 +0000</pubDate>
		<dc:creator>Kawika Heftel</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[april fools]]></category>
		<category><![CDATA[atheist]]></category>
		<category><![CDATA[holy day]]></category>
		<category><![CDATA[joke]]></category>

		<guid isPermaLink="false">http://heftelfamily.com/?p=3</guid>
		<description><![CDATA[In Florida, an atheist created a case against the upcoming Easter and Passover Holy days. He hired an attorney to bring a discrimination case against Christians, Jews and observances of their holy days. The argument was that it was unfair that atheists had no such recognized days.
The case was brought before a judge. After listening [...]]]></description>
			<content:encoded><![CDATA[<p>In Florida, an atheist created a case against the upcoming Easter and Passover Holy days. He hired an attorney to bring a discrimination case against Christians, Jews and observances of their holy days. The argument was that it was unfair that atheists had no such recognized days.</p>
<p>The case was brought before a judge. After listening to the passionate presentation by the lawyer, the judge banged his gavel declaring,&#8221;Case dismissed!&#8221;</p>
<p>The lawyer immediately stood objecting to the ruling saying, &#8220;Your honor, how can you possibly dismiss this case? The Christians have Christmas, Easter and others. The Jews have Passover, Yom Kippur and Hanukkah, yet my Client and all other atheists have no such holidays.&#8221;</p>
<p>The judge leaned forward in his chair saying, &#8220;But you do. Your client, counsel, is woefully ignorant.&#8221;</p>
<p>The lawyer said, &#8220;Your Honor, we are unaware of any special observance or holiday for atheists.&#8221;</p>
<p>The judge said, &#8220;The calendar says April 1st is April Fools Day. Psalm 14:1 states, &#8216;The fool says in his heart, there is no God.&#8217; Thus, it is the opinion of this court, that if your client says there is no God, then he is a fool. Therefore, April 1st is his day. Court is adjourned.</p>
]]></content:encoded>
			<wfw:commentRss>http://heftelfamily.com/3-florida-court-sets-atheist-holy-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

