<?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>app79</title>
	<atom:link href="http://app79.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://app79.com</link>
	<description>common wisdom, helpful code and useful apps</description>
	<lastBuildDate>Wed, 12 Aug 2009 05:01:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>IE Stack Overflow Javascript Fix</title>
		<link>http://app79.com/2009/08/11/ie-stack-overflow-javascript-fix/</link>
		<comments>http://app79.com/2009/08/11/ie-stack-overflow-javascript-fix/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 04:58:15 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[onchange]]></category>
		<category><![CDATA[stack overflow]]></category>

		<guid isPermaLink="false">http://app79.com/2009/08/11/ie-stack-overflow-javascript-fix/</guid>
		<description><![CDATA[Fix for calling the same function a few times in an almost infinite loop using the onchange event and getting a stack overflow at line 0 or any other line error in Internet Explorer:
function MyFunction(currentTextBox, nextTextBox)
{ 
//magic code in here
//when magic finished, call next magic spell
setTimeout(function(){FireNextBox(nextTextBox},1);
}
function FireNextBox(nextTextBox)
{
nextTextBox.onchange();
}
//for last textbox in loop
function FinalFunction()
{
return;
//the end
}

The above scenario [...]]]></description>
			<content:encoded><![CDATA[<p>Fix for calling the same function a few times in an almost infinite loop using the onchange event and getting a stack overflow at line 0 or any other line error in Internet Explorer:</p>
<blockquote><p><font color="#008000" size="2">function MyFunction(currentTextBox, nextTextBox)</font></p>
<p><font color="#008000" size="2">{ </font></p>
<p><font color="#008000" size="2">//magic code in here</font></p>
<p><font color="#008000" size="2">//when magic finished, call next magic spell</font></p>
<p><code><font color="#008000" size="2">setTimeout(function(){FireNextBox(nextTextBox},1);</font></code></p>
<p><font color="#008000" size="2">}</font></p>
<p><font color="#008000" size="2">function FireNextBox(nextTextBox)</font></p>
<p><font color="#008000" size="2">{</font></p>
<p><font color="#008000" size="2">nextTextBox.onchange();</font></p>
<p><font color="#008000" size="2">}</font></p>
<p><font color="#008000" size="2">//for last textbox in loop</font></p>
<p><font color="#008000" size="2">function FinalFunction()</font></p>
<p><font color="#008000" size="2">{</font></p>
<p><font color="#008000" size="2">return;</font></p>
<p><font color="#008000" size="2">//the end</font></p>
<p><font color="#008000" size="2">}</font></p>
</blockquote>
<p>The above scenario assumes the onchange event calls ‘MyFunction’ and there is a return function available, ‘FinalFunction’ that is called by the onchange event of the last textbox in this loop. Using setTimeout is necessary in Internet Explorer, otherwise it will throw a stack overflow error, works fine in Firefox with and without the setTimeout.</p>
]]></content:encoded>
			<wfw:commentRss>http://app79.com/2009/08/11/ie-stack-overflow-javascript-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Marshmallow theory</title>
		<link>http://app79.com/2009/05/27/marshmallow-theory/</link>
		<comments>http://app79.com/2009/05/27/marshmallow-theory/#comments</comments>
		<pubDate>Thu, 28 May 2009 01:54:19 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cartoons]]></category>
		<category><![CDATA[theory]]></category>
		<category><![CDATA[cartoon]]></category>
		<category><![CDATA[marshmallow theory]]></category>

		<guid isPermaLink="false">http://app79.com/2009/05/27/marshmallow-theory/</guid>
		<description><![CDATA[I apparently have too much time on my hands this evening. Here is a cartoon:

Technorati Tags: marshmallow theory,cartoon
]]></description>
			<content:encoded><![CDATA[<p>I apparently have too much time on my hands this evening. Here is a cartoon:</p>
<p><a href="http://app79.com/wp-content/uploads/2009/05/marshmallowtheory.png" ><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="marshmallowtheory" src="http://app79.com/wp-content/uploads/2009/05/marshmallowtheory-thumb.png" border="0" alt="marshmallowtheory" width="468" height="293" /></a></p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2ba6ce62-b7c5-4feb-83a2-ca777b50efeb" class="wlWriterEditableSmartContent" style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px">Technorati Tags: <a rel="tag" href="http://technorati.com/tags/marshmallow+theory" onclick="javascript:pageTracker._trackPageview('/outbound/article/technorati.com');">marshmallow theory</a>,<a rel="tag" href="http://technorati.com/tags/cartoon" onclick="javascript:pageTracker._trackPageview('/outbound/article/technorati.com');">cartoon</a></div>
]]></content:encoded>
			<wfw:commentRss>http://app79.com/2009/05/27/marshmallow-theory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get me to watch your YouTube tutorial video</title>
		<link>http://app79.com/2009/05/27/how-to-get-me-to-watch-your-youtube-tutorial-video/</link>
		<comments>http://app79.com/2009/05/27/how-to-get-me-to-watch-your-youtube-tutorial-video/#comments</comments>
		<pubDate>Thu, 28 May 2009 00:40:56 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://app79.com/2009/05/27/how-to-get-me-to-watch-your-youtube-tutorial-video/</guid>
		<description><![CDATA[Sometimes I watch youtube videos for things besides crazy beatboxers and kids getting attacked by ninja cats.
Sometimes I like learning things. The problem is you people who teach on youtube waste a lot of my time with ineffective tutorial videos. Instead of just complaining here is my mini guide to effective youtube tutorializing.
1. Keep it [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I watch youtube videos for things besides crazy beatboxers and kids getting attacked by ninja cats.<a href="http://app79.com/wp-content/uploads/2009/05/youtubeeducation.jpg" ><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="youtube-education" src="http://app79.com/wp-content/uploads/2009/05/youtubeeducation-thumb.jpg" border="0" alt="youtube-education" width="110" height="56" align="right" /></a></p>
<p>Sometimes I like learning things. The problem is you people who teach on youtube waste a lot of my time with ineffective tutorial videos. Instead of just complaining here is my mini guide to effective youtube tutorializing.</p>
<p>1. Keep it short, like under 4 minutes. This ensures that I learn stuff in small consumable steps that I can repeat until my practice makes perfect and I can move on the next step. Not ideal for all situations, but it probably is for yours.</p>
<p>2. Start with the end result. This way I know whether your video is worth watching.</p>
<p>3. If the sound cuts off, if your camera breaks, if anything goes wrong, please don’t post it with excuses, just rerecord. Seriously, quit being lazy, it wastes my time.</p>
<p>4. If your tutorial involves screen capturing and I can’t read your screen, don’t post it.</p>
<p>5. Talk. I think cameras come with microphones for a reason, maybe.</p>
<p>6. Learn to talk. Write an outline or script beforehand so you’re not ‘umming’ and ‘erring’ your way through the video. My <a href="http://helloburin.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/helloburin.com');">friend</a> will make fun of you when I link him to your video if you don’t.</p>
<p>That covers it. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://app79.com/2009/05/27/how-to-get-me-to-watch-your-youtube-tutorial-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why can&#8217;t my Mii be happy I&#8217;m a loser? &#8211; Nintendo&#8217;s Tech Support Forums</title>
		<link>http://app79.com/2009/03/30/why-cant-my-mii-be-happy-im-a-loser-nintendos-tech-support-forums/</link>
		<comments>http://app79.com/2009/03/30/why-cant-my-mii-be-happy-im-a-loser-nintendos-tech-support-forums/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 01:34:07 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[nintendo]]></category>

		<guid isPermaLink="false">http://app79.com/2009/03/30/why-cant-my-mii-be-happy-im-a-loser-nintendos-tech-support-forums/</guid>
		<description><![CDATA[ Trying out Windows Live Writer (Yahoo it if you want to download it). Found this awesome thread on Nintendo’s tech support forum regarding why your mii on your wii can’t be permanently happy:
Turn off sad face on Wii sports - Wii Games - Nintendo's Tech Support Forums
(Windows Live Writer and my findings are uncorrelated [...]]]></description>
			<content:encoded><![CDATA[<p> Trying out Windows Live Writer (Yahoo it if you want to download it). Found this awesome thread on Nintendo’s tech support forum regarding why your mii on your wii can’t <a href="http://techforums.nintendo.com/nins/board/message?board.id=gamehelp_wii&amp;thread.id=8249&amp;view=by_date_ascending&amp;page=1" onclick="javascript:pageTracker._trackPageview('/outbound/article/techforums.nintendo.com');"></a></a>be permanently happy:<a href="http://app79.com/wp-content/uploads/2009/03/sadmii.jpg" ><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="sad-mii" border="0" alt="sad-mii" align="left" src="http://app79.com/wp-content/uploads/2009/03/sadmii-thumb.jpg" width="77" height="97" /></a></p>
<p><a href="http://techforums.nintendo.com/nins/board/message?board.id=gamehelp_wii&amp;thread.id=8249&amp;view=by_date_ascending&amp;page=1" onclick="javascript:pageTracker._trackPageview('/outbound/article/techforums.nintendo.com');">Turn off sad face on Wii sports - Wii Games - Nintendo's Tech Support Forums</a></p>
<p>(Windows Live Writer and my findings are uncorrelated though there is causation.)</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:e00ab685-c3ff-4b9d-8f74-2508f875772a" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/nintendo" onclick="javascript:pageTracker._trackPageview('/outbound/article/technorati.com');" rel="tag">nintendo</a>,<a href="http://technorati.com/tags/wii" onclick="javascript:pageTracker._trackPageview('/outbound/article/technorati.com');" rel="tag">wii</a>,<a href="http://technorati.com/tags/tech+support" onclick="javascript:pageTracker._trackPageview('/outbound/article/technorati.com');" rel="tag">tech support</a>,<a href="http://technorati.com/tags/windows+live+writer" onclick="javascript:pageTracker._trackPageview('/outbound/article/technorati.com');" rel="tag">windows live writer</a>,<a href="http://technorati.com/tags/microsoft" onclick="javascript:pageTracker._trackPageview('/outbound/article/technorati.com');" rel="tag">microsoft</a></div>
]]></content:encoded>
			<wfw:commentRss>http://app79.com/2009/03/30/why-cant-my-mii-be-happy-im-a-loser-nintendos-tech-support-forums/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tech Support Sadness</title>
		<link>http://app79.com/2009/03/11/tech-support-sadness/</link>
		<comments>http://app79.com/2009/03/11/tech-support-sadness/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 04:10:11 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[corporate]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[sadness]]></category>
		<category><![CDATA[tech support]]></category>
		<category><![CDATA[upside down computer]]></category>

		<guid isPermaLink="false">http://app79.com/?p=34</guid>
		<description><![CDATA[Below are some of the sad scenarios my friend Alex has had to endure while providing tech support to a city office that shall remain unnamed.

E-mail Fail 1
Customer: “I haven’t got an e mail in 2 days, fix it.”
Alex: “Have you tried sorting by date and not subject?”

E-mail Fail 2
Customer: “I haven’t been getting email”
Alex: [...]]]></description>
			<content:encoded><![CDATA[<p>Below are some of the sad scenarios my friend Alex has had to endure while providing tech support to a city office that shall remain unnamed.<br />
<strong></strong></p>
<p><strong>E-mail Fail 1</strong></p>
<p>Customer: “I haven’t got an e mail in 2 days, fix it.”</p>
<p>Alex: “Have you tried sorting by date and not subject?”<br />
<strong></strong></p>
<p><strong>E-mail Fail 2</strong></p>
<p>Customer: “I haven’t been getting email”</p>
<p>Alex: “Your groups are collapsed.”<br />
<strong></strong></p>
<p><strong>Computer Dyslexia</strong></p>
<p>Customer: “My CDs don’t fit in the tray. They fit for everyone else but not me.”</p>
<p>(Alex doesn’t know what to do, thinks maybe she has a zip drive or is trying to put a CD in the floppy drive, even logs into the machine remotely)</p>
<p>Alex: “I’m going to send a tech to look at your box.”</p>
<p>(Alex goes with the tech to investigate. She had her computer upside down.)<br />
<strong></strong></p>
<p><strong>Keyboard Dyslexia</strong></p>
<p>Customer: “My screen is upside down”</p>
<p>Alex: “Okay, we need you to log in to your computer”</p>
<p>Customer: “I can’t, I can’t read upside down”</p>
<p>Alex: “Is your keyboard upside down?”</p>
<p>Customer: “No”</p>
<p>Alex: “Then type it like you normally would.”</p>
]]></content:encoded>
			<wfw:commentRss>http://app79.com/2009/03/11/tech-support-sadness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m famous.</title>
		<link>http://app79.com/2009/02/17/im-famous/</link>
		<comments>http://app79.com/2009/02/17/im-famous/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 03:28:59 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://app79.com/?p=31</guid>
		<description><![CDATA[Not really, but I did compose some music once upon a time for this pretty cool multimedia piece by this guy dominic who works for the washington post. You can view it here: www.dominicbracco.com click on 'recent multimedia' and it's the second piece that plays about abandoned places. While you're there check out some of [...]]]></description>
			<content:encoded><![CDATA[<p>Not really, but I did compose some music once upon a time for this pretty cool multimedia piece by this guy dominic who works for the washington post. You can view it here: <a title="Dominic Bracco Multimedia" href="http://www.dominicbracco.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.dominicbracco.com');" target="_blank">www.dominicbracco.com </a>click on 'recent multimedia' and it's the second piece that plays about abandoned places. While you're there check out some of the other pieces, he's an awesome photographer.</p>
]]></content:encoded>
			<wfw:commentRss>http://app79.com/2009/02/17/im-famous/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Generation Y can survive in the Corporate World</title>
		<link>http://app79.com/2009/02/14/how-generation-y-can-survive-in-the-corporate-world/</link>
		<comments>http://app79.com/2009/02/14/how-generation-y-can-survive-in-the-corporate-world/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 20:34:51 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[corporate]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[theory]]></category>

		<guid isPermaLink="false">http://app79.com/?p=29</guid>
		<description><![CDATA[Do what you're getting paid to do at the highest level you can and quit complaining.
]]></description>
			<content:encoded><![CDATA[<p>Do what you're getting paid to do at the highest level you can and quit complaining.</p>
]]></content:encoded>
			<wfw:commentRss>http://app79.com/2009/02/14/how-generation-y-can-survive-in-the-corporate-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The LinkBox Project</title>
		<link>http://app79.com/2009/02/09/the-linkbox-project/</link>
		<comments>http://app79.com/2009/02/09/the-linkbox-project/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 03:29:33 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://app79.com/?p=7</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img src="http://app79.com/images/linkbox.jpg" alt="Link Box" width="300" height="225" /></p>
]]></content:encoded>
			<wfw:commentRss>http://app79.com/2009/02/09/the-linkbox-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the top 7 benefits of switching to linux</title>
		<link>http://app79.com/2009/02/05/the-top-7-benefits-of-switching-to-linux/</link>
		<comments>http://app79.com/2009/02/05/the-top-7-benefits-of-switching-to-linux/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 00:01:14 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[linux computers os]]></category>

		<guid isPermaLink="false">http://app79.com/?p=24</guid>
		<description><![CDATA[(intentionally left blank)
]]></description>
			<content:encoded><![CDATA[<p>(intentionally left blank)</p>
]]></content:encoded>
			<wfw:commentRss>http://app79.com/2009/02/05/the-top-7-benefits-of-switching-to-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to schedule your employees</title>
		<link>http://app79.com/2009/02/04/how-to-schedule-your-workers/</link>
		<comments>http://app79.com/2009/02/04/how-to-schedule-your-workers/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 23:29:11 +0000</pubDate>
		<dc:creator>armando</dc:creator>
				<category><![CDATA[management]]></category>
		<category><![CDATA[management office]]></category>

		<guid isPermaLink="false">http://app79.com/?p=21</guid>
		<description><![CDATA[Manager: When do you work best?
Employee: '( Morning, Afternoon, Evening, Twilight ) '
Manager: Ok, you can work in the (insert employee's selection)
]]></description>
			<content:encoded><![CDATA[<p>Manager: When do you work best?</p>
<p>Employee: '( Morning, Afternoon, Evening, Twilight ) '</p>
<p>Manager: Ok, you can work in the (insert employee's selection)</p>
]]></content:encoded>
			<wfw:commentRss>http://app79.com/2009/02/04/how-to-schedule-your-workers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
