<?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>itcommando.com</title>
	<atom:link href="http://itcommando.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://itcommando.com</link>
	<description>because I'm tired of seeing other people when I google Chris McNeill</description>
	<lastBuildDate>Mon, 15 Mar 2010 15:22:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Example Google App Script</title>
		<link>http://itcommando.com/2010/03/15/example-google-app-script/</link>
		<comments>http://itcommando.com/2010/03/15/example-google-app-script/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 15:11:06 +0000</pubDate>
		<dc:creator>Chris McNeill</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itcommando.com/?p=514</guid>
		<description><![CDATA[So I hacked this together to add a little communication between my (current) favorite methods of staying on my financial track &#8211; Google docs and Google Calendar.  This is quick and dirty and reads from a spreadsheet the name of a Payee, the Date that a Payment is Due and the Amount Due.  It loads [...]]]></description>
			<content:encoded><![CDATA[<p>So I hacked this together to add a little communication between my (current) favorite methods of staying on my financial track &#8211; Google docs and Google Calendar.  This is quick and dirty and reads from a spreadsheet the name of a Payee, the Date that a Payment is Due and the Amount Due.  It loads this information into an event on the user&#8217;s default calendar.  Note that this is something I threw together after walking through the first <a title="Google Apps Script Example" href="http://www.google.com/google-d-s/scripts/yourfirstscript.html" target="_blank">example</a> and reading the <a title="Google Apps Script" href="http://www.google.com/google-d-s/scripts/scripts.html" target="_blank">API</a> a bit, and it has no logic whatsoever.</p>
<p>As I spend more time on it over the next few days I&#8217;ll add the ability to read multiple items from multiple sheets &#8211; my organizational system gives me one sheet for each month of a given year.  I&#8217;d also like to add support for writing to a different calendar, as well as a to-do list or even my new favorite toy &#8211; <a title="Google Queues" href="http://www.gqueues.com/" target="_blank">GQueues</a>.</p>
<p>The functionality I&#8217;m really looking for is the ability to populate the information from the spreadsheet to multiple sources, and have my to-do list or GQueues push out to each source when the item is completed, ultimately logging the date (and amount paid) back on the spreadsheet.  But I tend to get ahead of myself &#8211; that will probably require more checks in both directions that I will ever feel like writing.</p>
<p>Oh, and a disclamer &#8211; I&#8217;m no programmer, I just dabble.  If you want to talk to a coder, talk to my brother.</p>
<pre><span style="color: #770088;">function </span><span style="color: black;">GoogleAppScriptExample</span><span style="color: #666666;">(</span><span style="color: #666666;">) </span><span style="color: #666666;">{ </span>
<span> </span><span style="color: #770088;">var </span><span style="color: #0000ff;">ss </span><span style="color: #666666;">= </span><span style="color: black;">SpreadsheetApp</span><span style="color: #666666;">.</span><span style="color: black;">getActiveSpreadsheet</span><span style="color: #666666;">(</span><span style="color: #666666;">)</span><span style="color: #666666;">; //gets the active spreadsheet</span>
<span> </span><span style="color: #770088;">var </span><span style="color: #0000ff;">sheet </span><span style="color: #666666;">= </span><span style="color: #004499;">ss</span><span style="color: #666666;">.</span><span style="color: black;">getSheets</span><span style="color: #666666;">(</span><span style="color: #666666;">)</span><span style="color: #666666;">[</span><span style="color: #228811;">0</span><span style="color: #666666;">]</span><span style="color: #666666;">; //gets the active sheet</span>
<span> </span><span style="color: #770088;">var </span><span style="color: #0000ff;">payee </span><span style="color: #666666;">= </span><span style="color: #004499;">sheet</span><span style="color: #666666;">.</span><span style="color: black;">getRange</span><span style="color: #666666;">(</span><span style="color: #aa2222;">"A3"</span><span style="color: #666666;">)</span><span style="color: #666666;">.</span><span style="color: black;">getValue</span><span style="color: #666666;">(</span><span style="color: #666666;">)</span><span style="color: #666666;">; //you can figure the rest out yourselves, its not that complicated.</span>
<span> </span><span style="color: #770088;">var </span><span style="color: #0000ff;">dateDue </span><span style="color: #666666;">= </span><span style="color: #004499;">sheet</span><span style="color: #666666;">.</span><span style="color: black;">getRange</span><span style="color: #666666;">(</span><span style="color: #aa2222;">"B3"</span><span style="color: #666666;">)</span><span style="color: #666666;">.</span><span style="color: black;">getValue</span><span style="color: #666666;">(</span><span style="color: #666666;">)</span><span style="color: #666666;">;</span>
<span> </span><span style="color: #770088;">var </span><span style="color: #0000ff;">amountDue </span><span style="color: #666666;">= </span><span style="color: #004499;">sheet</span><span style="color: #666666;">.</span><span style="color: black;">getRange</span><span style="color: #666666;">(</span><span style="color: #aa2222;">"C3"</span><span style="color: #666666;">)</span><span style="color: #666666;">.</span><span style="color: black;">getValue</span><span style="color: #666666;">(</span><span style="color: #666666;">)</span><span style="color: #666666;">;</span>
<span> </span><span style="color: black;">Browser</span><span style="color: #666666;">.</span><span style="color: black;">msgBox</span><span style="color: #666666;">(</span><span style="color: #aa2222;">"Payee: " </span><span style="color: #666666;">+ </span><span style="color: #004499;">payee </span><span style="color: #666666;">+ </span><span style="color: #aa2222;">" Due Date: " </span><span style="color: #666666;">+ </span><span style="color: #004499;">dateDue </span><span style="color: #666666;">+ </span><span style="color: #aa2222;">" Amount Due: " </span><span style="color: #666666;">+ </span><span style="color: #004499;">amountDue</span><span style="color: #666666;">)</span><span style="color: #666666;">; //turn off for real deployment</span>
<span> </span><span style="color: #770088;">var </span><span style="color: #0000ff;">cal </span><span style="color: #666666;">= </span><span style="color: black;">CalendarApp</span><span style="color: #666666;">.</span><span style="color: black;">getDefaultCalendar</span><span style="color: #666666;">(</span><span style="color: #666666;">)</span><span style="color: #666666;">;</span>
<span> </span><span style="color: #004499;">cal</span><span style="color: #666666;">.</span><span style="color: black;">createEvent</span><span style="color: #666666;">(</span><span style="color: #004499;">payee </span><span style="color: #666666;">+ </span><span style="color: #aa2222;">": " </span><span style="color: #666666;">+ </span><span style="color: #004499;">amountDue</span><span style="color: #666666;">, </span><span style="color: #770088;">new </span><span style="color: black;">Date</span><span style="color: #666666;">(</span><span style="color: #004499;">dateDue</span><span style="color: #666666;">)</span><span style="color: #666666;">, </span><span style="color: #770088;">new </span><span style="color: black;">Date</span><span style="color: #666666;">(</span><span style="color: #004499;">dateDue</span><span style="color: #666666;">)</span><span style="color: #666666;">)</span><span style="color: #666666;">;</span>
<span style="color: #666666;">}</span></pre>
<p><span style="color: #666666;">Have fun &#8211; I&#8217;ll keep posting stuff as I get it done.</span></p>
<p style="padding-left: 30px;"><span style="color: #666666;"><span style="color: #000000;"><br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://itcommando.com/2010/03/15/example-google-app-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Build Your Self-Confidence</title>
		<link>http://feedproxy.google.com/~r/ismckenzie/ELEH/~3/7-xwfc9vY4Q/</link>
		<comments>http://feedproxy.google.com/~r/ismckenzie/ELEH/~3/7-xwfc9vY4Q/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 14:55:40 +0000</pubDate>
		<dc:creator>Ian McKenzie</dc:creator>
				<category><![CDATA[Motivation]]></category>
		<category><![CDATA[Self-help]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/ca19a899586119dc</guid>
		<description><![CDATA[Self-confidence is important in almost every aspect of our lives, yet many people struggle to find it. This can be a vicious circle: people who lack self-confidence can find it difficult to become successful.
If your self-confidence is low, can you do ...]]></description>
			<content:encoded><![CDATA[<p>Self-confidence is important in almost every aspect of our lives, yet many people struggle to find it. This can be a vicious circle: people who lack self-confidence can find it difficult to become successful.</p>
<p>If your self-confidence is low, can you do things to change that? Do you control your own self-confidence?</p>
<p>I believe you can take steps to increase your confidence. You weren’t born with low self-confidence and you don’t have to rely on others to increase your self-confidence. If you feel you are not competent, smart, attractive or whatever it may be… that can be changed.</p>
<p>Here are four steps to help build your confidence:</p>
<p><strong>Accept yourself</strong></p>
<p>Imagine what your life would be like if you could just be yourself, without thinking twice about other people’s perceptions of you. The first step is to accept yourself. Nobody is perfect, so why spend time worrying about the things you can’t do?</p>
<p><span style="color:#000000">You’re probably familiar with the <a title="silence your inner critic" href="http://www.ismckenzie.com/silence-your-inner-critic/">voice in your head saying you’re never good enoug</a>h. Instead of listening to that voice; focus on your successes. Use them as an example to drive you forward.</span></p>
<p><strong>Do something you enjoy</strong></p>
<p>Decide what work brings you joy. This may seem obvious, but how much time do you spend thinking about the work you enjoy doing? It’s easy to get caught up in checking things off that <a title="Time management" rel="wikipedia" href="http://en.wikipedia.org/wiki/Time_management">to-do list</a> or rushing off to yet another meeting. Take a few minutes this week, and make a list of all the work that jazzes you.</p>
<p>Don’t forget those non-work things that give you pleasure:</p>
<ul>
<li>time for family and friends</li>
<li>look after your <a title="Health" rel="wikipedia" href="http://en.wikipedia.org/wiki/Health">health</a></li>
<li>pursue hobbies and interests</li>
<li>stretch your mind</li>
</ul>
<p><strong>Find your peers</strong></p>
<p>Building and maintaining self-confidence is not a solo effort. You need the support of like-minded people. It is easier when you are among people who are share the same interests mind-set as you. They will understand you and vice versa. This creates conditions for healthy conversations. You will feel more secure in your ideas when others want to hear and appreciate what you have to say.</p>
<p><strong>Set Goals</strong></p>
<p>Setting goals is not complicated. It can be challenging, but the process of goal setting can be of value to you in building excitement and commitment, which are important factors in achieving success.</p>
<p>The idea is to begin with a small single step that can then further developed into giant strides. Learn to do the work at hand rather than to overwhelm oneself by looking at the whole of a large task.</p>
<p>Break a big task into a list of small tasks. Check off each step you complete. A completed task, no matter how small, gives a sense of achievement that boosts self-confidence and gives more drive to try a bigger task.</p>
<h6 style="font-size:1em">Related articles by Zemanta</h6>
<ul>
<li><a href="http://www.healthmoneysuccess.com/1795/33-differences-between-winners-and-losers/">33 Striking Differences Between Winners And Losers – So Which Side Are You On?</a> (healthmoneysuccess.com)</li>
<li><a href="http://thecustomercollective.com/TCC/48566">Six Secrets for Building your Confidence</a> (thecustomercollective.com)</li>
</ul>
<div style="margin-top:10px;height:15px"><a title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img style="border:none;float:right" src="http://img.zemanta.com/zemified_a.png?x-id=b2cf6b69-6905-4496-a24d-52d2744ec82b" alt="Enhanced by Zemanta"></a><span></span></div>
<p><strong><em>Recommended</em></strong>:  <a href="https://www.e-junkie.com/ecom/gb.php?ii=88489&amp;c=ib&amp;aff=16425&amp;ev=b07c488520">The Zen Habits Handbook for Life!</a><em> </em></p>



<div style="text-align:left">


</div>


<p><iframe src="http://feedads.g.doubleclick.net/~ah/f/75b54feer2cath24rr3ku1eac4/468/60#http%3A%2F%2Fwww.ismckenzie.com%2Fhow-to-build-your-self-confidence%2F" width="100%" height="60" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?a=7-xwfc9vY4Q:idK8fDfm-ro:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?a=7-xwfc9vY4Q:idK8fDfm-ro:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?i=7-xwfc9vY4Q:idK8fDfm-ro:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?a=7-xwfc9vY4Q:idK8fDfm-ro:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?d=7Q72WNTAKBA" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/ismckenzie/ELEH/~4/7-xwfc9vY4Q" height="1" width="1">]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/ismckenzie/ELEH/~3/7-xwfc9vY4Q/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Build Your Self-Confidence</title>
		<link>http://feedproxy.google.com/~r/ismckenzie/ELEH/~3/7-xwfc9vY4Q/</link>
		<comments>http://feedproxy.google.com/~r/ismckenzie/ELEH/~3/7-xwfc9vY4Q/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 14:55:40 +0000</pubDate>
		<dc:creator>Ian McKenzie</dc:creator>
				<category><![CDATA[Goal setting]]></category>
		<category><![CDATA[Motivation]]></category>
		<category><![CDATA[Self-help]]></category>
		<category><![CDATA[Time Management]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/ca19a899586119dc</guid>
		<description><![CDATA[Self-confidence is important in almost every aspect of our lives, yet many people struggle to find it. This can be a vicious circle: people who lack self-confidence can find it difficult to become successful.
If your self-confidence is low, can you do ...]]></description>
			<content:encoded><![CDATA[<p>Self-confidence is important in almost every aspect of our lives, yet many people struggle to find it. This can be a vicious circle: people who lack self-confidence can find it difficult to become successful.</p>
<p>If your self-confidence is low, can you do things to change that? Do you control your own self-confidence?</p>
<p>I believe you can take steps to increase your confidence. You weren’t born with low self-confidence and you don’t have to rely on others to increase your self-confidence. If you feel you are not competent, smart, attractive or whatever it may be… that can be changed.</p>
<p>Here are four steps to help build your confidence:</p>
<p><strong>Accept yourself</strong></p>
<p>Imagine what your life would be like if you could just be yourself, without thinking twice about other people’s perceptions of you. The first step is to accept yourself. Nobody is perfect, so why spend time worrying about the things you can’t do?</p>
<p><span style="color:#000000">You’re probably familiar with the <a title="silence your inner critic" href="http://www.ismckenzie.com/silence-your-inner-critic/">voice in your head saying you’re never good enoug</a>h. Instead of listening to that voice; focus on your successes. Use them as an example to drive you forward.</span></p>
<p><strong>Do something you enjoy</strong></p>
<p>Decide what work brings you joy. This may seem obvious, but how much time do you spend thinking about the work you enjoy doing? It’s easy to get caught up in checking things off that <a title="Time management" rel="wikipedia" href="http://en.wikipedia.org/wiki/Time_management">to-do list</a> or rushing off to yet another meeting. Take a few minutes this week, and make a list of all the work that jazzes you.</p>
<p>Don’t forget those non-work things that give you pleasure:</p>
<ul>
<li>time for family and friends</li>
<li>look after your <a title="Health" rel="wikipedia" href="http://en.wikipedia.org/wiki/Health">health</a></li>
<li>pursue hobbies and interests</li>
<li>stretch your mind</li>
</ul>
<p><strong>Find your peers</strong></p>
<p>Building and maintaining self-confidence is not a solo effort. You need the support of like-minded people. It is easier when you are among people who are share the same interests mind-set as you. They will understand you and vice versa. This creates conditions for healthy conversations. You will feel more secure in your ideas when others want to hear and appreciate what you have to say.</p>
<p><strong>Set Goals</strong></p>
<p>Setting goals is not complicated. It can be challenging, but the process of goal setting can be of value to you in building excitement and commitment, which are important factors in achieving success.</p>
<p>The idea is to begin with a small single step that can then further developed into giant strides. Learn to do the work at hand rather than to overwhelm oneself by looking at the whole of a large task.</p>
<p>Break a big task into a list of small tasks. Check off each step you complete. A completed task, no matter how small, gives a sense of achievement that boosts self-confidence and gives more drive to try a bigger task.</p>
<h6 style="font-size:1em">Related articles by Zemanta</h6>
<ul>
<li><a href="http://www.healthmoneysuccess.com/1795/33-differences-between-winners-and-losers/">33 Striking Differences Between Winners And Losers – So Which Side Are You On?</a> (healthmoneysuccess.com)</li>
<li><a href="http://thecustomercollective.com/TCC/48566">Six Secrets for Building your Confidence</a> (thecustomercollective.com)</li>
</ul>
<div style="margin-top:10px;height:15px"><a title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img style="border:none;float:right" src="http://img.zemanta.com/zemified_a.png?x-id=b2cf6b69-6905-4496-a24d-52d2744ec82b" alt="Enhanced by Zemanta"></a><span></span></div>
<p><strong><em>Recommended</em></strong>:  <a href="https://www.e-junkie.com/ecom/gb.php?ii=88489&amp;c=ib&amp;aff=16425&amp;ev=b07c488520">The Zen Habits Handbook for Life!</a><em> </em></p>



<div style="text-align:left">


</div>


<p><iframe src="http://feedads.g.doubleclick.net/~ah/f/75b54feer2cath24rr3ku1eac4/468/60#http%3A%2F%2Fwww.ismckenzie.com%2Fhow-to-build-your-self-confidence%2F" width="100%" height="60" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?a=7-xwfc9vY4Q:idK8fDfm-ro:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?a=7-xwfc9vY4Q:idK8fDfm-ro:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?i=7-xwfc9vY4Q:idK8fDfm-ro:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?a=7-xwfc9vY4Q:idK8fDfm-ro:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?d=7Q72WNTAKBA" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/ismckenzie/ELEH/~4/7-xwfc9vY4Q" height="1" width="1">]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/ismckenzie/ELEH/~3/7-xwfc9vY4Q/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Makes Apps Script Available To All</title>
		<link>http://rss.slashdot.org/~r/Slashdot/slashdot/~3/VArqMmxAXNA/Google-Makes-Apps-Script-Available-To-All</link>
		<comments>http://rss.slashdot.org/~r/Slashdot/slashdot/~3/VArqMmxAXNA/Google-Makes-Apps-Script-Available-To-All#comments</comments>
		<pubDate>Sun, 14 Mar 2010 14:49:00 +0000</pubDate>
		<dc:creator>Soulskill</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/558dce0ce5081935</guid>
		<description><![CDATA[theodp writes "Formerly only available to Apps Users, Google has made Apps Script available to everyone (sample script), including you Google Docs low-lifers. Apps Script lets you automate actions across spreadsheets, sites, calendars, and other Google services. No spamming, kids!"<p><a href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fdevelopers.slashdot.org%2Fstory%2F10%2F03%2F14%2F1317222%2FGoogle-Makes-Apps-Script-Available-To-All" title="Share on Facebook"><img src="http://a.fsdn.com/sd/facebook_icon_large.png"></a>
   
      <a href="http://twitter.com/home?status=Google+Makes+Apps+Script+Available+To+All%3A+http%3A%2F%2Fbit.ly%2Fd46bnq" title="Share on Twitter"><img src="http://a.fsdn.com/sd/twitter_icon_large.png"></a></p><p><a href="http://developers.slashdot.org/story/10/03/14/1317222/Google-Makes-Apps-Script-Available-To-All?from=rss">Read more of this story</a> at Slashdot.</p><p></p><img src="http://feeds.feedburner.com/~r/Slashdot/slashdot/~4/VArqMmxAXNA" height="1" width="1">]]></description>
			<content:encoded><![CDATA[theodp writes "Formerly only available to Apps Users, Google has made Apps Script available to everyone (sample script), including you Google Docs low-lifers. Apps Script lets you automate actions across spreadsheets, sites, calendars, and other Google services. No spamming, kids!"<p><a href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fdevelopers.slashdot.org%2Fstory%2F10%2F03%2F14%2F1317222%2FGoogle-Makes-Apps-Script-Available-To-All" title="Share on Facebook"><img src="http://a.fsdn.com/sd/facebook_icon_large.png"></a>
   
      <a href="http://twitter.com/home?status=Google+Makes+Apps+Script+Available+To+All%3A+http%3A%2F%2Fbit.ly%2Fd46bnq" title="Share on Twitter"><img src="http://a.fsdn.com/sd/twitter_icon_large.png"></a></p><p><a href="http://developers.slashdot.org/story/10/03/14/1317222/Google-Makes-Apps-Script-Available-To-All?from=rss">Read more of this story</a> at Slashdot.</p><iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1582242&amp;smallembed=1" style="height:300px;width:100%;border:none"></iframe><p><iframe src="http://feedads.g.doubleclick.net/~ah/f/lrqi37l1p7a6hqgtg7dfla1i4g/468/60#http%3A%2F%2Fdevelopers.slashdot.org%2Fstory%2F10%2F03%2F14%2F1317222%2FGoogle-Makes-Apps-Script-Available-To-All%3Ffrom%3Drss" width="100%" height="60" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><img src="http://feeds.feedburner.com/~r/Slashdot/slashdot/~4/VArqMmxAXNA" height="1" width="1">]]></content:encoded>
			<wfw:commentRss>http://rss.slashdot.org/~r/Slashdot/slashdot/~3/VArqMmxAXNA/Google-Makes-Apps-Script-Available-To-All/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rob Pardo speaks about Blizzard game design</title>
		<link>http://www.wow.com/2010/03/12/rob-pardo-speaks-about-blizzard-game-design/</link>
		<comments>http://www.wow.com/2010/03/12/rob-pardo-speaks-about-blizzard-game-design/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 22:00:00 +0000</pubDate>
		<dc:creator>(Anne Stickney)</dc:creator>
				<category><![CDATA[GDC]]></category>
		<category><![CDATA[World of Warcraft]]></category>
		<category><![CDATA[WorldOfWarcraft]]></category>
		<category><![CDATA[blizzard]]></category>
		<category><![CDATA[game-design]]></category>
		<category><![CDATA[game-designers]]></category>
		<category><![CDATA[game-developers-conference]]></category>
		<category><![CDATA[gdc-2010]]></category>
		<category><![CDATA[lecture]]></category>
		<category><![CDATA[lectures]]></category>
		<category><![CDATA[world-of-warcraft-discussion]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/81276792e980b415</guid>
		<description><![CDATA[<div style="text-align:center"><img vspace="4" hspace="4" border="1" alt="" src="http://www.blogcdn.com/www.wow.com/media/2010/03/pardo-blizzardpardo.jpg"></div>
The tenth annual <a href="http://www.wow.com/tag/gdc">Game Developers Conference</a> is in full swing in San Francisco, CA -- and yesterday included a panel by Rob Pardo, Executive Vice President of Game Design at Blizzard Entertainment. Pardo spoke about design philosophy and how Blizzard approaches it, sharing not only Blizzard's success stories, but where they failed along the way, and what they did to fix it. Blizzard's design philosophy follows some key elements: <br />
<br />
<strong>Gameplay First</strong>: Before anything else, you want to concentrate the game on the fun. All aspects of the game -- the design, the mechanics of encounters, the quests and story are focused on making the game fun to play. Not only fun to play -- but fun to play for players, not developers. The challenge is to keep players jumping through the correct hoops, while making those hoops fun. Sometimes this involves making some changes -- for example, only night elf males could be druids in <em>Warcraft III</em>, but for the sake of making the druid class, something that sounded like all kinds of fun, they had to be made accessible to both genders, and both sides. So the lore was adjusted so that females and tauren could both be druids -- otherwise they couldn't have introduced the class at all. And that wouldn't be any fun.<p><a href="http://www.wow.com/2010/03/12/rob-pardo-speaks-about-blizzard-game-design/" rel="bookmark">Continue reading <em>Rob Pardo speaks about Blizzard game design</em></a></p><p>Filed under: <a href="http://www.wow.com/category/news-items/" rel="tag">News items</a></p><p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both"><a href="http://www.wow.com/2010/03/12/rob-pardo-speaks-about-blizzard-game-design/">Rob Pardo speaks about Blizzard game design</a> originally appeared on <a href="http://www.wow.com">WoW.com</a> on Fri, 12 Mar 2010 17:00:00 EST.  Please see our <a href="http://www.weblogsinc.com/feed-terms/">terms for use of feeds</a>.</p><p><a href="http://www.wow.com/2010/03/12/rob-pardo-speaks-about-blizzard-game-design/" rel="bookmark" title="Permanent link to this entry">Permalink</a> &#124; <a href="http://www.wow.com/forward/19396238/" title="Send this entry to a friend via email">Email this</a> &#124; <a href="http://www.wow.com/2010/03/12/rob-pardo-speaks-about-blizzard-game-design/#comments" title="View reader comments on this entry">Comments</a></p>]]></description>
			<content:encoded><![CDATA[<div style="text-align:center"><img vspace="4" hspace="4" border="1" alt="" src="http://www.blogcdn.com/www.wow.com/media/2010/03/pardo-blizzardpardo.jpg"></div>
The tenth annual <a href="http://www.wow.com/tag/gdc">Game Developers Conference</a> is in full swing in San Francisco, CA -- and yesterday included a panel by Rob Pardo, Executive Vice President of Game Design at Blizzard Entertainment. Pardo spoke about design philosophy and how Blizzard approaches it, sharing not only Blizzard's success stories, but where they failed along the way, and what they did to fix it. Blizzard's design philosophy follows some key elements: <br>
<br>
<strong>Gameplay First</strong>: Before anything else, you want to concentrate the game on the fun. All aspects of the game -- the design, the mechanics of encounters, the quests and story are focused on making the game fun to play. Not only fun to play -- but fun to play for players, not developers. The challenge is to keep players jumping through the correct hoops, while making those hoops fun. Sometimes this involves making some changes -- for example, only night elf males could be druids in <em>Warcraft III</em>, but for the sake of making the druid class, something that sounded like all kinds of fun, they had to be made accessible to both genders, and both sides. So the lore was adjusted so that females and tauren could both be druids -- otherwise they couldn't have introduced the class at all. And that wouldn't be any fun.<p><a href="http://www.wow.com/2010/03/12/rob-pardo-speaks-about-blizzard-game-design/" rel="bookmark">Continue reading <em>Rob Pardo speaks about Blizzard game design</em></a></p><p>Filed under: <a href="http://www.wow.com/category/news-items/" rel="tag">News items</a></p><p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both"><a href="http://www.wow.com/2010/03/12/rob-pardo-speaks-about-blizzard-game-design/">Rob Pardo speaks about Blizzard game design</a> originally appeared on <a href="http://www.wow.com">WoW.com</a> on Fri, 12 Mar 2010 17:00:00 EST.  Please see our <a href="http://www.weblogsinc.com/feed-terms/">terms for use of feeds</a>.</p><p><a href="http://www.wow.com/2010/03/12/rob-pardo-speaks-about-blizzard-game-design/" rel="bookmark" title="Permanent link to this entry">Permalink</a> | <a href="http://www.wow.com/forward/19396238/" title="Send this entry to a friend via email">Email this</a> | <a href="http://www.wow.com/2010/03/12/rob-pardo-speaks-about-blizzard-game-design/#comments" title="View reader comments on this entry">Comments</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.wow.com/2010/03/12/rob-pardo-speaks-about-blizzard-game-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 Deadly Mistakes You Must Avoid When Pursuing Your Dreams</title>
		<link>http://feeds.killeraces.com/~r/wisebread/~3/wNfIF4yB1Vk/4-deadly-mistakes-you-must-avoid-when-pursuing-your-dreams</link>
		<comments>http://feeds.killeraces.com/~r/wisebread/~3/wNfIF4yB1Vk/4-deadly-mistakes-you-must-avoid-when-pursuing-your-dreams#comments</comments>
		<pubDate>Fri, 12 Mar 2010 15:00:01 +0000</pubDate>
		<dc:creator>Henri Junttila</dc:creator>
				<category><![CDATA[Career Building]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[follow your dreams]]></category>
		<category><![CDATA[passion]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/7f941ba5b56ae8df</guid>
		<description><![CDATA[<p>By <a href="http://www.wisebread.com/user/henri-junttila" title="View user profile.">Henri Junttila</a> </p> <img src="http://www.wisebread.com/files/fruganomics/imagecache/blog_image_full/files/fruganomics/blog-images/mdanys%20Flickr.jpg" alt="Caribbean beach"><p>In my last post I wrote about <a href="http://wisebread.com/5-simple-ways-to-find-your-passion">how you can find your passion</a>, but today I want to focus on the mistakes people make while going after their dreams. If you can identify with any of these mistakes, you might want to get it corrected as fast as possible. It will help you get back on track to moving towards making your dreams a reality instead of moving away from them.</p>
<p>We often get stuck in arbitrary things. We make excuses. We try to find shortcuts, and we try to do all these things that in the end only prevent us from reaching our goals. If you're really serious about pursuing your dreams and making them real, then you may want to read on...</p>
<h3>1. Stopping at Uncomfortable</h3>
<p>When you start something new, it will be scary. If you are serious about finding, following, and making your passion(s) and dream(s) a reality, you will have to deal with fear. You will have to accept that being uncomfortable means growing as a human being and making progress towards your goals.</p>
<p>I'm not talking about being physically uncomfortable, such as sitting on your leg until it falls asleep. I am talking about being emotionally uncomfortable. Being afraid to take the next step because you don't know what lies behind the next turn. Your journey will be unique, so you will have to learn how to deal with this yourself.</p>
<p>Look at it as driving a car: you know your destination (most times), but you can't see beyond the next bend. You still know where you're going, but you just can't see it.</p>
<h3>2. Looking for Shortcuts</h3>
<p>A lot of people are looking for shortcuts. They are looking for that one thing that will make them catapult to the front of the line and eliminate years off their learning curve. I'm sorry to say this, but it doesn't work that way. If you want to create your dream life and live out your passion(s), you will first have to find your passion and then take action to make it happen. (If you love gardening and want to teach other people how to do it, for example, that's excellent, and you can make a living doing that if you really want to.)</p>
<p>Remember, there's always room for those that are willing to go the extra mile. Stop looking for shortcuts and start using what you have. There are no magic bullets out there that will do it all for you. You will have to learn. You will have to work hard and you will have to make mistakes and learn from them.</p>
<h3>3. Waiting for Perfection</h3>
<p>I'm so guilty of this one. I used to be the worst perfectionist. I still am to a certain degree, but I'm more aware of it now. I am able to let things be imperfect without going crazy.</p>
<p>You don't have to wait for the stars to align or for someone to give you permission to go after your dreams. Most people blame their circumstances for not allowing them to make their dreams a reality. This is a big mistake. If you want to live your dream life, do what you love and change the world, you will have to take matters into your own hands and make a change.</p>
<p>You can always start somewhere. Don't worry about not knowing what to do. All you have to learn is what to do next. (Maybe you need to start a blog. Do a simple Google search for that, and you'll find plenty of tutorials. Maybe you will even <a href="http://www.wakeupcloud.com/niche-website-failure/">fail at blogging</a> and learn that you like something else instead.) It's all a part of the process. Successful people didn't become successful overnight, although that is what it usually looks like. They often failed over and over again until they found what worked for them.</p>
<h3>4. Failing to Listen to Your Heart</h3>
<p>Your heart knows things. Your mind...not so much. Your mind worries, it analyzes, it judges, and it does all those things that can easily take over your life. Now, I'm not saying that the mind is bad, it's just a tool, but it has become a bad thing in most people's lives because it has taken over. Many refer to this as the Ego, the Id or whatever you like to call it.</p>
<p>Your heart, on the other hand, will let you know when you're on the right path. You will feel good when you're following your passion. You will feel awesome when you're heading in the right direction, and you will feel blissed out when you realize that you have a whole guidance system inside of you that is perfect for you. (But remember, you also have to <a href="http://www.dragosroua.com/understanding-emotions/">understand your emotions</a>, because your heart may be trying to tell you something and you may be blocking it with fear or a surface emotion.)</p>
<p>If you want to pursue your dreams, start by finding your passion, then thinking about how you can make it real, and then taking action. It's really that simple. If you want to slow yourself down, then go ahead and pick one of the deadly mistakes above.</p>
<p>But know this: you are here for a reason. You are here to have a positive impact on this planet. You know that thing that you feel in your heart that you've always wanted to do? I'm here to tell you that you can do it, if you really want to. So what are you waiting for?</p><p></p><div>
<a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wisebread?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wisebread?i=wNfIF4yB1Vk:vcDs16moT08:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wisebread?i=wNfIF4yB1Vk:vcDs16moT08:F7zBnMyn0Lo" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:bcOpcFrp8Mo"><img src="http://feeds.feedburner.com/~ff/wisebread?d=bcOpcFrp8Mo" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wisebread?d=qj6IDK7rITs" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/wisebread?d=dnMXMwOfBR0" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/wisebread?d=cGdyc7Q-1BI" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/wisebread?i=wNfIF4yB1Vk:vcDs16moT08:wF9xT3WuBAs" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wisebread?i=wNfIF4yB1Vk:vcDs16moT08:gIN9vFwOqvQ" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/wisebread?d=l6gmwiTKsz0" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/wisebread/~4/wNfIF4yB1Vk" height="1" width="1">]]></description>
			<content:encoded><![CDATA[<p>By <a href="http://www.wisebread.com/user/henri-junttila" title="View user profile.">Henri Junttila</a> </p> <img src="http://www.wisebread.com/files/fruganomics/imagecache/blog_image_full/files/fruganomics/blog-images/mdanys%20Flickr.jpg" alt="Caribbean beach" title="Caribbean beach"><p>In my last post I wrote about <a href="http://wisebread.com/5-simple-ways-to-find-your-passion">how you can find your passion</a>, but today I want to focus on the mistakes people make while going after their dreams. If you can identify with any of these mistakes, you might want to get it corrected as fast as possible. It will help you get back on track to moving towards making your dreams a reality instead of moving away from them.</p>
<p>We often get stuck in arbitrary things. We make excuses. We try to find shortcuts, and we try to do all these things that in the end only prevent us from reaching our goals. If you're really serious about pursuing your dreams and making them real, then you may want to read on...</p>
<h3>1. Stopping at Uncomfortable</h3>
<p>When you start something new, it will be scary. If you are serious about finding, following, and making your passion(s) and dream(s) a reality, you will have to deal with fear. You will have to accept that being uncomfortable means growing as a human being and making progress towards your goals.</p>
<p>I'm not talking about being physically uncomfortable, such as sitting on your leg until it falls asleep. I am talking about being emotionally uncomfortable. Being afraid to take the next step because you don't know what lies behind the next turn. Your journey will be unique, so you will have to learn how to deal with this yourself.</p>
<p>Look at it as driving a car: you know your destination (most times), but you can't see beyond the next bend. You still know where you're going, but you just can't see it.</p>
<h3>2. Looking for Shortcuts</h3>
<p>A lot of people are looking for shortcuts. They are looking for that one thing that will make them catapult to the front of the line and eliminate years off their learning curve. I'm sorry to say this, but it doesn't work that way. If you want to create your dream life and live out your passion(s), you will first have to find your passion and then take action to make it happen. (If you love gardening and want to teach other people how to do it, for example, that's excellent, and you can make a living doing that if you really want to.)</p>
<p>Remember, there's always room for those that are willing to go the extra mile. Stop looking for shortcuts and start using what you have. There are no magic bullets out there that will do it all for you. You will have to learn. You will have to work hard and you will have to make mistakes and learn from them.</p>
<h3>3. Waiting for Perfection</h3>
<p>I'm so guilty of this one. I used to be the worst perfectionist. I still am to a certain degree, but I'm more aware of it now. I am able to let things be imperfect without going crazy.</p>
<p>You don't have to wait for the stars to align or for someone to give you permission to go after your dreams. Most people blame their circumstances for not allowing them to make their dreams a reality. This is a big mistake. If you want to live your dream life, do what you love and change the world, you will have to take matters into your own hands and make a change.</p>
<p>You can always start somewhere. Don't worry about not knowing what to do. All you have to learn is what to do next. (Maybe you need to start a blog. Do a simple Google search for that, and you'll find plenty of tutorials. Maybe you will even <a href="http://www.wakeupcloud.com/niche-website-failure/">fail at blogging</a> and learn that you like something else instead.) It's all a part of the process. Successful people didn't become successful overnight, although that is what it usually looks like. They often failed over and over again until they found what worked for them.</p>
<h3>4. Failing to Listen to Your Heart</h3>
<p>Your heart knows things. Your mind...not so much. Your mind worries, it analyzes, it judges, and it does all those things that can easily take over your life. Now, I'm not saying that the mind is bad, it's just a tool, but it has become a bad thing in most people's lives because it has taken over. Many refer to this as the Ego, the Id or whatever you like to call it.</p>
<p>Your heart, on the other hand, will let you know when you're on the right path. You will feel good when you're following your passion. You will feel awesome when you're heading in the right direction, and you will feel blissed out when you realize that you have a whole guidance system inside of you that is perfect for you. (But remember, you also have to <a href="http://www.dragosroua.com/understanding-emotions/">understand your emotions</a>, because your heart may be trying to tell you something and you may be blocking it with fear or a surface emotion.)</p>
<p>If you want to pursue your dreams, start by finding your passion, then thinking about how you can make it real, and then taking action. It's really that simple. If you want to slow yourself down, then go ahead and pick one of the deadly mistakes above.</p>
<p>But know this: you are here for a reason. You are here to have a positive impact on this planet. You know that thing that you feel in your heart that you've always wanted to do? I'm here to tell you that you can do it, if you really want to. So what are you waiting for?</p><p><iframe src="http://feedads.g.doubleclick.net/~ah/f/50qpt8c2sajpkb569nfe4eev2s/468/60#http%3A%2F%2Fwww.wisebread.com%2F4-deadly-mistakes-you-must-avoid-when-pursuing-your-dreams" width="100%" height="60" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wisebread?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wisebread?i=wNfIF4yB1Vk:vcDs16moT08:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wisebread?i=wNfIF4yB1Vk:vcDs16moT08:F7zBnMyn0Lo" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:bcOpcFrp8Mo"><img src="http://feeds.feedburner.com/~ff/wisebread?d=bcOpcFrp8Mo" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wisebread?d=qj6IDK7rITs" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/wisebread?d=dnMXMwOfBR0" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/wisebread?d=cGdyc7Q-1BI" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/wisebread?i=wNfIF4yB1Vk:vcDs16moT08:wF9xT3WuBAs" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wisebread?i=wNfIF4yB1Vk:vcDs16moT08:gIN9vFwOqvQ" border="0"></a> <a href="http://feeds.killeraces.com/~ff/wisebread?a=wNfIF4yB1Vk:vcDs16moT08:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/wisebread?d=l6gmwiTKsz0" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/wisebread/~4/wNfIF4yB1Vk" height="1" width="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.killeraces.com/~r/wisebread/~3/wNfIF4yB1Vk/4-deadly-mistakes-you-must-avoid-when-pursuing-your-dreams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clean up Uncertain Phrases in Your Communication</title>
		<link>http://feedproxy.google.com/~r/ismckenzie/ELEH/~3/LH0RQbds1s4/</link>
		<comments>http://feedproxy.google.com/~r/ismckenzie/ELEH/~3/LH0RQbds1s4/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 12:31:43 +0000</pubDate>
		<dc:creator>Ian McKenzie</dc:creator>
				<category><![CDATA[Communication]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/002e99b9175b35eb</guid>
		<description><![CDATA[What do these phrases mean to you?

A good chance
Almost certain
Better than even
Definite
Highly probable
Highly unlikely
Impossible
Improbable
Likely
Possible
Probable
Quite likely
Rare
Seldom
Unlikely
Very

Do they mean the same thing to the people ...]]></description>
			<content:encoded><![CDATA[<p>What do these phrases mean to you?</p>
<ul>
<li>A good chance</li>
<li>Almost certain</li>
<li>Better than even</li>
<li>Definite</li>
<li>Highly probable</li>
<li>Highly unlikely</li>
<li>Impossible</li>
<li>Improbable</li>
<li>Likely</li>
<li>Possible</li>
<li>Probable</li>
<li>Quite likely</li>
<li>Rare</li>
<li>Seldom</li>
<li>Unlikely</li>
<li>Very</li>
</ul>
<p>Do they mean the same thing to the people listen you use them or read what your write?</p>
<p>What you say is only as effective as what is heard and understood by the listener. Too often, our messages are obscured by the the words we use. We compound the problem when we are unaware of the gap between what is intended and the message received.</p>
<p>I am guilty of using all of these phrases when speaking and writing. I shouldn’t expect other people to adopt what I think the phrases mean; I should work on using the clearest language possible.</p>
<h6 style="font-size:1em">Related articles by Zemanta</h6>
<ul>
<li><a href="http://www.slideshare.net/RePierre/definite-clause-grammars-for-language-analysis">Definite Clause Grammars For Language Analysis</a> (slideshare.net)</li>
</ul>
<div style="margin-top:10px;height:15px"><a title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img style="border:medium none;float:right" src="http://img.zemanta.com/zemified_a.png?x-id=9963cc39-227e-4324-82aa-82f142661bc2" alt="Enhanced by Zemanta"></a><span></span></div>
<p><strong><em>Recommended</em></strong>:  <a href="https://www.e-junkie.com/ecom/gb.php?ii=88489&amp;c=ib&amp;aff=16425&amp;ev=b07c488520">The Zen Habits Handbook for Life!</a><em> </em></p>



<div style="text-align:left">


</div>


<p><iframe src="http://feedads.g.doubleclick.net/~ah/f/75b54feer2cath24rr3ku1eac4/468/60#http%3A%2F%2Fwww.ismckenzie.com%2Fclean-up-the-uncertain-language-in-your-communication%2F" width="100%" height="60" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><div>
<a href="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?a=LH0RQbds1s4:qUm0IGjkcXA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?a=LH0RQbds1s4:qUm0IGjkcXA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?i=LH0RQbds1s4:qUm0IGjkcXA:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?a=LH0RQbds1s4:qUm0IGjkcXA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ismckenzie/ELEH?d=7Q72WNTAKBA" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/ismckenzie/ELEH/~4/LH0RQbds1s4" height="1" width="1">]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/ismckenzie/ELEH/~3/LH0RQbds1s4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avoid Appearing Out of Touch in Interviews by Emphasizing the New [Interviews]</title>
		<link>http://feeds.gawker.com/~r/lifehacker/full/~3/f7zgKgYuxc8/avoid-appearing-out-of-touch-in-interviews-by-emphasizing-the-new</link>
		<comments>http://feeds.gawker.com/~r/lifehacker/full/~3/f7zgKgYuxc8/avoid-appearing-out-of-touch-in-interviews-by-emphasizing-the-new#comments</comments>
		<pubDate>Thu, 11 Mar 2010 21:30:00 +0000</pubDate>
		<dc:creator>Jason Fitzpatrick</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[Employment]]></category>
		<category><![CDATA[Interviews]]></category>
		<category><![CDATA[Job search]]></category>
		<category><![CDATA[Jobs]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/7a56a043500bf2d5</guid>
		<description><![CDATA[<div style="float:left;padding-right:10px">
										
					<div><a title="Click here to read Avoid Appearing Out of Touch in Interviews by Emphasizing the New" href="http://lifehacker.com/5490296/avoid-appearing-out-of-touch-in-interviews-by-emphasizing-the-new">
						<img style="border-color:#B3B3B3;border-width:0 1px 1px;border-style:none solid solid" height="120" width="160" alt="Click here to read Avoid Appearing Out of Touch in Interviews by Emphasizing the New" src="http://cache-06.gawkerassets.com/assets/images/17/2010/03/160x120_2010-03-11_154721.jpg">
											</a></div>
									</div>
				Having the experience of an industry veteran is great, but appearing old and out of touch during a job interview is not. Follow these guidelines to avoid looking like a dinosaur.				<a href="http://lifehacker.com/5490296/avoid-appearing-out-of-touch-in-interviews-by-emphasizing-the-new" title="Click here to read more about Avoid Appearing Out of Touch in Interviews by Emphasizing the New [Interviews]">More »</a>
				<br />
			<br />
<br />
<a href="http://ads.pheedo.com/click.phdo?s=bc654c384ac5bf3f5b89fe350dc9ef94&#38;p=1"><img alt="" style="border:0" border="0" src="http://ads.pheedo.com/img.phdo?s=bc654c384ac5bf3f5b89fe350dc9ef94&#38;p=1"></a>
<div>
<a href="http://feeds.gawker.com/~ff/lifehacker/full?a=f7zgKgYuxc8:b_B77xoaHiM:H0mrP-F8Qgo"><img src="http://feeds.feedburner.com/~ff/lifehacker/full?d=H0mrP-F8Qgo" border="0"></a> <a href="http://feeds.gawker.com/~ff/lifehacker/full?a=f7zgKgYuxc8:b_B77xoaHiM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/lifehacker/full?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.gawker.com/~ff/lifehacker/full?a=f7zgKgYuxc8:b_B77xoaHiM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/lifehacker/full?i=f7zgKgYuxc8:b_B77xoaHiM:D7DqB2pKExk" border="0"></a> <a href="http://feeds.gawker.com/~ff/lifehacker/full?a=f7zgKgYuxc8:b_B77xoaHiM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/lifehacker/full?i=f7zgKgYuxc8:b_B77xoaHiM:V_sGLiPBpWU" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/lifehacker/full/~4/f7zgKgYuxc8" height="1" width="1">]]></description>
			<content:encoded><![CDATA[<div style="float:left;padding-right:10px">
										
					<div><a title="Click here to read Avoid Appearing Out of Touch in Interviews by Emphasizing the New" href="http://lifehacker.com/5490296/avoid-appearing-out-of-touch-in-interviews-by-emphasizing-the-new">
						<img style="border-color:#B3B3B3;border-width:0 1px 1px;border-style:none solid solid" height="120" width="160" title="Click here to read Avoid Appearing Out of Touch in Interviews by Emphasizing the New" alt="Click here to read Avoid Appearing Out of Touch in Interviews by Emphasizing the New" src="http://cache-06.gawkerassets.com/assets/images/17/2010/03/160x120_2010-03-11_154721.jpg">
											</a></div>
									</div>
				Having the experience of an industry veteran is great, but appearing old and out of touch during a job interview is not. Follow these guidelines to avoid looking like a dinosaur.				<a href="http://lifehacker.com/5490296/avoid-appearing-out-of-touch-in-interviews-by-emphasizing-the-new" title="Click here to read more about Avoid Appearing Out of Touch in Interviews by Emphasizing the New [Interviews]">More »</a>
				<br style="clear:both">
			<br style="clear:both">
<br style="clear:both">
<a href="http://ads.pheedo.com/click.phdo?s=bc654c384ac5bf3f5b89fe350dc9ef94&amp;p=1"><img alt="" style="border:0" border="0" src="http://ads.pheedo.com/img.phdo?s=bc654c384ac5bf3f5b89fe350dc9ef94&amp;p=1"></a>
<div>
<a href="http://feeds.gawker.com/~ff/lifehacker/full?a=f7zgKgYuxc8:b_B77xoaHiM:H0mrP-F8Qgo"><img src="http://feeds.feedburner.com/~ff/lifehacker/full?d=H0mrP-F8Qgo" border="0"></a> <a href="http://feeds.gawker.com/~ff/lifehacker/full?a=f7zgKgYuxc8:b_B77xoaHiM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/lifehacker/full?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.gawker.com/~ff/lifehacker/full?a=f7zgKgYuxc8:b_B77xoaHiM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/lifehacker/full?i=f7zgKgYuxc8:b_B77xoaHiM:D7DqB2pKExk" border="0"></a> <a href="http://feeds.gawker.com/~ff/lifehacker/full?a=f7zgKgYuxc8:b_B77xoaHiM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/lifehacker/full?i=f7zgKgYuxc8:b_B77xoaHiM:V_sGLiPBpWU" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/lifehacker/full/~4/f7zgKgYuxc8" height="1" width="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.gawker.com/~r/lifehacker/full/~3/f7zgKgYuxc8/avoid-appearing-out-of-touch-in-interviews-by-emphasizing-the-new/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Make Gratin Dauphinois</title>
		<link>http://feedproxy.google.com/~r/apartmenttherapy/thekitchn/~3/wHcmenk4J3I/how-to-make-gratin-dauphinois-111029</link>
		<comments>http://feedproxy.google.com/~r/apartmenttherapy/thekitchn/~3/wHcmenk4J3I/how-to-make-gratin-dauphinois-111029#comments</comments>
		<pubDate>Thu, 11 Mar 2010 13:22:21 +0000</pubDate>
		<dc:creator>Laure Joliet</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/edbe0375d3fb799f</guid>
		<description><![CDATA[   		

When the weather outside is chilly and you have a lot of people to feed it&#39;s nice to have some standby dishes that are easy to make, delicious, and unquestionably comforting. Enter Gratin Dauphinois — a recipe born in the French Alps that ...]]></description>
			<content:encoded><![CDATA[<div style="width:525px"> <div style="text-align:center;padding-bottom:4px">  <a href="http://www.thekitchn.com/thekitchn/how-to/how-to-make-gratin-dauphinois-111029"><img alt="" src="http://s3.amazonaws.com/atimg/1233005/gratin10_rect540.jpg"></a>	</div><div style="margin-top:20px;width:400px;margin:0 auto;text-align:center"><a href="http://www.thekitchn.com/thekitchn/how-to/how-to-make-gratin-dauphinois-111029?image_id=1233005"><img alt="" src="http://s3.amazonaws.com/atimg/1233005/gratin10_square72.jpg" style="padding:4px"></a><a href="http://www.thekitchn.com/thekitchn/how-to/how-to-make-gratin-dauphinois-111029?image_id=1232915"><img alt="" src="http://s3.amazonaws.com/atimg/1232915/gratin3_square72.jpg" style="padding:4px"></a><a href="http://www.thekitchn.com/thekitchn/how-to/how-to-make-gratin-dauphinois-111029?image_id=1232935"><img alt="" src="http://s3.amazonaws.com/atimg/1232935/gratin5_square72.jpg" style="padding:4px"></a><a href="http://www.thekitchn.com/thekitchn/how-to/how-to-make-gratin-dauphinois-111029?image_id=1232895"><img alt="" src="http://s3.amazonaws.com/atimg/1232895/gratin2_square72.jpg" style="padding:4px"></a><a href="http://www.thekitchn.com/thekitchn/how-to/how-to-make-gratin-dauphinois-111029?image_id=1232876"><img alt="" src="http://s3.amazonaws.com/atimg/1232876/gratin0_square72.jpg" style="padding:4px"></a></div>	</div>

When the weather outside is chilly and you have a lot of people to feed it&#39;s nice to have some standby dishes that are easy to make, delicious, and unquestionably comforting. Enter Gratin Dauphinois — a recipe born in the French Alps that combines scalloped potatoes, cream, and garlic all baked to perfection.<br><br><a href="http://www.thekitchn.com/thekitchn/how-to/how-to-make-gratin-dauphinois-111029">Read Full Post</a><img src="http://feeds.feedburner.com/~r/apartmenttherapy/thekitchn/~4/wHcmenk4J3I" height="1" width="1">]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/apartmenttherapy/thekitchn/~3/wHcmenk4J3I/how-to-make-gratin-dauphinois-111029/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MyEdu Will Be Your Curriculum Guide And Virtual College Advisor Rolled Into One</title>
		<link>http://feedproxy.google.com/~r/Techcrunch/~3/2zs5Bmjn5jA/</link>
		<comments>http://feedproxy.google.com/~r/Techcrunch/~3/2zs5Bmjn5jA/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 11:00:03 +0000</pubDate>
		<dc:creator>Leena Rao</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[myedu]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/f8e3d878ac918ca4</guid>
		<description><![CDATA[Do you remember to the days of college, when you were required to sort through your curriculum and career goals with your designated college advisor? Education startup MyEdu aims to replace this by helping  students virtually access their academic info...]]></description>
			<content:encoded><![CDATA[<p><a href="http://api.tweetmeme.com/share?url=http://techcrunch.com/2010/03/11/myedu-will-be-your-curriculum-guide-and-virtual-college-advisor-rolled-into-one/&amp;style=compact&amp;source=techcrunch&amp;service=bit.ly"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://techcrunch.com/2010/03/11/myedu-will-be-your-curriculum-guide-and-virtual-college-advisor-rolled-into-one/&amp;style=compact&amp;source=techcrunch&amp;service=bit.ly"></a></p><p><img src="http://tctechcrunch.files.wordpress.com/2010/03/myedu.png">Do you remember to the days of college, when you were required to sort through your curriculum and career goals with your designated college advisor? Education startup <a href="http://www.myedu.com/">MyEdu</a> aims to replace this by helping  students virtually access their academic information and create a roadmap tailored to their career goals. </p>
<p>To date, over 2 million students at 750 universities have used MyEdu to earn their degree. MyEdu’s suite of online products try to streamline the entire process of a college student’s lifecycle, from selecting a college through to earning a degree. The suite includes detailed course descriptions, grade distributions, official course evaluations, and student reviews to pick the right classes; and schedule Planner to build the best schedule that fits a student’s time constraints and goals. </p>
<p>MyEdu also includes a graduation and degree roadmap to help students build a plan and stay on course towards the degree they want in order to graduate. And the academic progress dashboard allows students to track their grades in a centralized place. MyEdu charges a $20 annual subscription for the entire academic suite.</p>
<p>The startup, which just raised <a href="http://venturebeat.com/2010/02/19/myedu-lands-5-5m-more-to-help-you-graduate-college-while-saving-money/">$5.5 million</a> in funding from Bain Capital Ventures, has a compelling model to help both students and parents participate in the college planning process. And as colleges are now rapidly adopting web technologies as a educational tool (i.e. Blackboard); it makes sense for universities to do the same for college advising. </p>
<div><div><div><a href="http://www.crunchbase.com/">CrunchBase Information</a></div></div><div><div><a href="http://www.crunchbase.com/company/myedu">MyEdu</a></div><div></div><div>Information provided by <a href="http://www.crunchbase.com/">CrunchBase</a></div></div></div>
<br>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tctechcrunch.wordpress.com/164694/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tctechcrunch.wordpress.com/164694/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tctechcrunch.wordpress.com/164694/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tctechcrunch.wordpress.com/164694/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tctechcrunch.wordpress.com/164694/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tctechcrunch.wordpress.com/164694/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tctechcrunch.wordpress.com/164694/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tctechcrunch.wordpress.com/164694/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tctechcrunch.wordpress.com/164694/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tctechcrunch.wordpress.com/164694/"></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techcrunch.com&amp;blog=11718616&amp;post=164694&amp;subd=tctechcrunch&amp;ref=&amp;feed=1">
<p><a href="http://feedads.g.doubleclick.net/~at/e0aC97GIHmEIkWaP2eOweBdUfdM/0/da"><img src="http://feedads.g.doubleclick.net/~at/e0aC97GIHmEIkWaP2eOweBdUfdM/0/di" border="0" ismap></a><br>
<a href="http://feedads.g.doubleclick.net/~at/e0aC97GIHmEIkWaP2eOweBdUfdM/1/da"><img src="http://feedads.g.doubleclick.net/~at/e0aC97GIHmEIkWaP2eOweBdUfdM/1/di" border="0" ismap></a></p><div>
<a href="http://feeds.feedburner.com/~ff/Techcrunch?a=2zs5Bmjn5jA:7CsS5Xx-l6k:2mJPEYqXBVI"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=2mJPEYqXBVI" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=2zs5Bmjn5jA:7CsS5Xx-l6k:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=dnMXMwOfBR0" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=2zs5Bmjn5jA:7CsS5Xx-l6k:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Techcrunch?i=2zs5Bmjn5jA:7CsS5Xx-l6k:D7DqB2pKExk" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=2zs5Bmjn5jA:7CsS5Xx-l6k:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=7Q72WNTAKBA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=2zs5Bmjn5jA:7CsS5Xx-l6k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=yIl2AUoC8zA" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/Techcrunch/~4/2zs5Bmjn5jA" height="1" width="1">]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/Techcrunch/~3/2zs5Bmjn5jA/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
