<?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>Thinking Different</title>
	<atom:link href="http://christianpayne.com.au/feed/" rel="self" type="application/rss+xml" />
	<link>http://christianpayne.com.au</link>
	<description></description>
	<lastBuildDate>Thu, 12 Jan 2012 00:55:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Recovering lost disk space on Windows 7</title>
		<link>http://christianpayne.com.au/2011/11/29/recovering-lost-disk-space-on-windows-7/</link>
		<comments>http://christianpayne.com.au/2011/11/29/recovering-lost-disk-space-on-windows-7/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 07:57:14 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Companies]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Disk space]]></category>
		<category><![CDATA[window 7]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=537</guid>
		<description><![CDATA[A colleague at work suggested I download Team Fortress 2 since it&#8217;s now free on Steam. It requires about 10 gig disk space &#8211; I only had about 3.5gig. Scott Hanselman recently wrote a blog post on how to Freeing up Disk Space under Windows 7. I&#8217;m normally quite skeptical on these suggestions. 9 times [...]]]></description>
			<content:encoded><![CDATA[<p>A colleague at work suggested I download <a href="http://www.teamfortress.com/" title="Team Fortress">Team Fortress 2</a> since it&#8217;s now <a href="http://www.teamfortress.com/freetoplay/">free on Steam</a>.</p>
<p>It requires about 10 gig disk space &#8211; I only had about 3.5gig.  Scott Hanselman recently wrote a blog post on how to <a href="http://www.hanselman.com/blog/GuideToFreeingUpDiskSpaceUnderWindows7.aspx">Freeing up Disk Space under Windows 7</a>.</p>
<p>I&#8217;m normally quite skeptical on these suggestions.  9 times out of 10 they are common sense.</p>
<p>Long story short, I did the first 4 steps (he has about 10 more) and I got back almost 20 gig back!</p>
<p>Who&#8217;d have thought?</p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=537&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/11/29/recovering-lost-disk-space-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Entity State in Dynamics CRM 2011</title>
		<link>http://christianpayne.com.au/2011/11/15/entitystate/</link>
		<comments>http://christianpayne.com.au/2011/11/15/entitystate/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 21:54:19 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Dynamics CRM]]></category>
		<category><![CDATA[Entity State]]></category>
		<category><![CDATA[SDK]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=526</guid>
		<description><![CDATA[I had an interesting challenge recently. As part of a Credit Card Payment Solution we are working on, I was trying to set the Invoice State. According to the MSDN documentation, all you need to do is set the Status Code = 100001 and the State Code = 2. Eg: Guid invoiceID = new Guid(&#34;Existing Invoice [...]]]></description>
			<content:encoded><![CDATA[<div>
I had an interesting challenge recently.</p>
<p>As part of a Credit Card Payment Solution we are working on, I was trying to set the Invoice State.</p>
<p>According to the <a href="http://msdn.microsoft.com/en-us/library/gg594422.aspx">MSDN documentation</a>, all you need to do is set the Status Code = 100001 and the State Code = 2.</p>
<p>Eg:</p>
<pre class="brush: c#; ">

Guid invoiceID = new Guid(&quot;Existing Invoice Guid&quot;);
IOrganizationService orgService = OrgServiceFactory.GetInstance();

orgService.BeginRetrieve(&quot;invoice&quot;, invoiceID, new ColumnSet(new string[] { &quot;invoiceid&quot;, &quot;statecode&quot;, &quot;statuscode&quot; }), (result) =&gt;
{
    var fetchResp = orgService.EndRetrieve(result);

    var statecodeAttrib = fetchResp.Attributes.Single(a =&gt; a.Key == &quot;statecode&quot;);
    OptionSetValue statecode = (OptionSetValue)statecodeAttrib.Value;
    statecode.Value = 2; 

    var statuscodeAttrib = fetchResp.Attributes.Single(a =&gt; a.Key == &quot;statuscode&quot;);
    OptionSetValue statuscode = (OptionSetValue)statuscodeAttrib.Value;
    statuscode.Value = 100001;

    orgService.BeginUpdate(fetchResp, (updateResult) =&gt;
    {
        /* Web Exception thrown here */
        orgService.EndUpdate(updateResult);
        Console.Write(&quot;&quot;);
    }, orgService);

}, orgService);
</pre>
<p>When I did this, I was getting a &#8220;NotFound&#8221; exception.</p>
<p>So I asked this on <a href="http://stackoverflow.com/q/8117335/5188" target="_blank">Stackoverflow</a>.  Turns out in CRM 2011, you need to use the <a href="http://msdn.microsoft.com/en-us/library/cc155990.aspx">SetState</a> message.</p>
<p>Digging a little further, <a href="http://technet.microsoft.com/en-us/library/gg309408.aspx">the SDK</a> has <a href="http://technet.microsoft.com/en-us/library/gg309346.aspx">a good example</a> of how to take an Opportunity to a Won Order, to a Sales Order to an Invoice.</p>
<p><em>Illustration <a href="http://www.flickr.com/photos/heatsink/110859301/">courtesy of Jon Watson</a>.</em>
</div>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=526&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/11/15/entitystate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieving the Text of an OptionSet in Silverlight</title>
		<link>http://christianpayne.com.au/2011/10/20/retrieving-the-text-of-an-optionset-in-silverlight/</link>
		<comments>http://christianpayne.com.au/2011/10/20/retrieving-the-text-of-an-optionset-in-silverlight/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 01:09:04 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Dynamics CRM]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Dynamics CRM 2011]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=518</guid>
		<description><![CDATA[I&#8217;ve been pulling my hair out over this. &#160; If you look at the Dynamics CRM 2011 SDK, you can see how to get an Entity using FetchXML: Using FetchXML, you can get to an entity like this: string fetchXML = "&#60;fetch mapping='logical'&#62;"; fetchXML += "&#60;entity name='account'&#62;&#60;all-attributes/&#62;"; fetchXML += "&#60;/entity&#62;&#60;/fetch&#62;"; IOrganizationService orgService = OrgServiceFactory.GetInstance(); orgService.BeginRetrieveMultiple(new [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been pulling my hair out over this.</p>
<p>&nbsp;</p>
<p>If you look at the <a href="http://msdn.microsoft.com/en-us/library/bb219490.aspx">Dynamics CRM 2011 SDK</a>, you can see how to <a href="http://msdn.microsoft.com/en-us/library/bb928434.aspx">get an Entity using FetchXML</a>:</p>
<p>Using FetchXML, you can get to an entity like this:</p>
<pre>string fetchXML = "&lt;fetch mapping='logical'&gt;";</pre>
<pre>fetchXML += "&lt;entity name='account'&gt;&lt;all-attributes/&gt;";</pre>
<pre>fetchXML += "&lt;/entity&gt;&lt;/fetch&gt;";</pre>
<pre></pre>
<pre>IOrganizationService orgService = OrgServiceFactory.GetInstance();</pre>
<pre>orgService.BeginRetrieveMultiple(new FetchExpression() { Query = fetchXML }, EntityGet_callback, orgService);</pre>
<p>&nbsp;</p>
<p>And the callback:</p>
<pre>public void EntityGet_callback(IAsyncResult ar)</pre>
<pre>{</pre>
<pre>   IOrganizationService orgservice = ar.AsyncState as IOrganizationService;</pre>
<pre>   var fetchResp = orgservice.EndRetrieveMultiple(ar);</pre>
<pre>    var entities = fetchResp.Entities;</pre>
<pre>    foreach (var entity in entities)</pre>
<pre>    {</pre>
<pre>        var email = helper.GetValue(entity, "email");</pre>
<pre>    }</pre>
<pre>}</pre>
<p>&nbsp;</p>
<p>Nothing fancy in the helper method:</p>
<pre>public static object GetValue(Entity entity, string name)</pre>
<pre>{</pre>
<pre>    if (entity.Attributes.ContainsKey(name))</pre>
<pre>    {</pre>
<pre>        return entity.GetAttributeValue</pre>
<p>&nbsp;</p>
<pre>    }</pre>
<pre>    return null;</pre>
<pre>}</pre>
<p>&nbsp;</p>
<p>If I wanted to get the Address 1 Type, I would use:</p>
<pre>helper.GetValue(entity, "address1_addresstypecode")</pre>
<p>Unfortunately this returns the value (0, 1, 2&#8230;) Not the string.</p>
<p>The answer is the <a href="http://msdn.microsoft.com/en-us/library/microsoft.xrm.sdk.entity.formattedvalues.aspx">Entity.FormattedValues</a>.</p>
<p>Eg</p>
<pre>entity.GetAttributeValue</pre>
<p>&nbsp;</p>
<p>With thanks to a post on <a href="http://samantasayantan.wordpress.com/2011/08/16/crm-2011-retrieve-metadata-in-silverlight-web-resource-using-organization-service/">Sayantan Samanta&#8217;s blog</a>.</p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=518&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/10/20/retrieving-the-text-of-an-optionset-in-silverlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Klout?</title>
		<link>http://christianpayne.com.au/2011/07/14/what-is-klout/</link>
		<comments>http://christianpayne.com.au/2011/07/14/what-is-klout/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 00:53:42 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Klout]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=498</guid>
		<description><![CDATA[Recently, Cathie McGinn tweeted: I first heard of Klout during an interview with their CEO Joe Fernandez, on This Week in Startups. So what is it? For me, Klout is a method of measuring who is popular in social media and why. Lets use a few examples: Scott Hanselman &#8211; Technologist and promoter of Diabetic [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, Cathie McGinn tweeted:<br />
<a href="http://twitter.com/#!/acatinatree/status/91040353255309312"><img title="klout" src="http://christianpayne.com.au/wp-content/uploads/2011/07/klout.png" alt="" /></a></p>
<p>I first heard of <a href="http://klout.com">Klout</a> during an interview with their CEO Joe Fernandez, on <a href="http://thisweekin.com/thisweekin-startups/joe-fernandez-of-klout-on-this-week-in-startups-155/">This Week in Startups</a>.</p>
<p>So what is it? For me, Klout is a method of measuring who is popular in social media and why.</p>
<p>Lets use a few examples:</p>
<ul>
<li><a href="http://twitter.com/#!/shanselman">Scott Hanselman</a> &#8211; Technologist and promoter of Diabetic awareness</li>
<li><a href="http://twitter.com/#!/EmRusciano">Em Rusciano</a> &#8211; Australian television host &amp; <a href="http://emrusciano.blogspot.com/">blogger</a></li>
<li><a href="http://twitter.com/#!/acatinatree">Cathie McGinn</a> &#8211; Australian social media commentator &amp; <a href="http://theyearofthecat.com">blogger</a></li>
</ul>
<p>Three people I admire, and all with a Klout score of 60 or better.</p>
<p>The &#8220;score&#8221; is a percentile rank. 60 or above means you are in the top 40%.</p>
<p>Below is a screen shot of <a href="http://klout.com/#/shanselman">Scott&#8217;s</a>, <a href="http://klout.com/#/EmRusciano">Em&#8217;s</a> &amp; <a href="http://klout.com/#/acatinatree">Cathie&#8217;s</a> profiles:<br />
<a href="http://christianpayne.com.au/wp-content/uploads/2011/07/Klout_shanselman.png"><img class="alignnone size-medium wp-image-502" title="Klout_shanselman" src="http://christianpayne.com.au/wp-content/uploads/2011/07/Klout_shanselman-300x160.png" alt="" width="300" height="160" /></a><br />
<a href="http://christianpayne.com.au/wp-content/uploads/2011/07/Klout_EmRusciano.png"><img class="alignnone size-medium wp-image-507" title="Klout_EmRusciano" src="http://christianpayne.com.au/wp-content/uploads/2011/07/Klout_EmRusciano-300x157.png" alt="" width="300" height="157" /></a><br />
<a href="http://christianpayne.com.au/wp-content/uploads/2011/07/Klout_aCat.png"><img class="alignnone size-medium wp-image-500" title="Klout_aCat" src="http://christianpayne.com.au/wp-content/uploads/2011/07/Klout_aCat-300x159.png" alt="" width="300" height="159" /></a></p>
<p>This is very powerful stuff! It allows me to see how I compare to my peers, and provides me with intelligent data on what I can do to improve my social profile.</p>
<p>If I was being honest with myself, I&#8217;d say that I am focused, but not very consistent &#8211; the images above reflect this.</p>
<p>&nbsp;</p>
<p>The lesson learnt here is that I need to create and I need to do this more often.</p>
<p>Back to Cathies&#8217; tweet, it makes sense that she feels her most influential topics aren&#8217;t relevant to her &#8211; Klout describes Cathie as a Broadcaster &#8211; &#8220;<em>She broadcasts great content that spreads like wildfire. An essential information source in her industry.</em>&#8221;</p>
<p>Great!  From that I can conclude that I should be connecting with people like Cathie more often.  If what I write resonates with her, then there is a good chance she will tell her network.</p>
<p>&nbsp;</p>
<p>Another extreme would Australian Comedian, Wil Anderson:<br />
<a href="http://christianpayne.com.au/wp-content/uploads/2011/07/Klout_WilAnderson.png"><img class="alignnone size-medium wp-image-510" title="Klout_WilAnderson" src="http://christianpayne.com.au/wp-content/uploads/2011/07/Klout_WilAnderson-268x300.png" alt="" width="268" height="300" /></a></p>
<p>Klout thinks&#8217; Wil is most influential on kurt cobain, the royal wedding &amp; miley cyrus.  If you have listened to Wil&#8217;s <a href="http://tofop.com/">podcast TOFOP</a>, then you will have some idea of why the royal wedding was popular but also his material is very broad.</p>
<p>&nbsp;</p>
<p>What can we learn from all this? 3 take home points:</p>
<ol>
<li>Don&#8217;t take the score too seriously!  (Klout thinks I am influential on Unicorns&#8230;)  It is a great tool to see what makes up a person with a score of 20, 30 or 40.  It&#8217;s less clear on how you go from a 61 to a 67.</li>
<li>It is a good way to see who is doing what in social media &#8211; what&#8217;s working and what isn&#8217;t</li>
<li>Lastly, it is the only tool I&#8217;ve seen that allows you to compare yourself across a wide range of people</li>
</ol>
<div>What do you think?  What tools do you use to measure &amp; monitor your social profile?</div>
<div>Rock on!</div>
<div>Christian</div>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=498&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/07/14/what-is-klout/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>If the voyage of the best ship is a zigzag line&#8230;</title>
		<link>http://christianpayne.com.au/2011/06/02/if-the-voyage-of-the-best-ship-is-a-zigzag-line/</link>
		<comments>http://christianpayne.com.au/2011/06/02/if-the-voyage-of-the-best-ship-is-a-zigzag-line/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 01:02:36 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[#Trust30]]></category>
		<category><![CDATA[Self Improvement]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=496</guid>
		<description><![CDATA[I&#8217;ve often thought that if you look back through the history of my blog, how would you describe it? With categories like 30 day challenge, Development, Low-carb diets and Photos &#8211; probably the kindest thing you could say is that I am a frustrated entrepreneur who doesn&#8217;t know what he wants. I&#8217;ve signed up for [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve often thought that if you look back through the history of my blog, how would you describe it?  With categories like <a href="http://christianpayne.com.au/category/companies/30-day-challenge/">30 day challenge</a>, <a href="http://christianpayne.com.au/category/development/">Development</a>, <a href="http://christianpayne.com.au/category/personal/low-carb/">Low-carb diets</a> and <a href="http://christianpayne.com.au/category/photos/">Photos</a> &#8211; probably the kindest thing you could say is that I am a frustrated entrepreneur who doesn&#8217;t know what he wants.</p>
<p>I&#8217;ve signed up for the <a href="http://ralphwaldoemerson.me/">#Trust30</a>.  This is described as:</p>
<blockquote><p>To celebrate Emerson&#8217;s 208th birthday, <a href="http://www.thedominoproject.com/">The Domino Project</a> is republishing a work of art that&#8217;s especially relevant today. Self-Reliance by Ralph Waldo Emerson urges readers to trust their intuition rather than conforming to the will of the majority.
</p></blockquote>
<p>Sign up, and you get a daily warm fuzzy inspirational message.  Funnily enough, today&#8217;s message really made me stop and think:</p>
<blockquote><p>If ‘the voyage of the best ship is a zigzag line of a hundred tacks,’ then it is more genuine to be present today than to recount yesterdays<br />
By <a href="http://twitter.com/#!/bobulate">Liz Bobulate:</a></p></blockquote>
<p>I often notice that I beat myself up.  I kick myself when I find myself off track (what <a href="http://christianpayne.com.au/category/financial/">track</a> <a href="http://christianpayne.com.au/category/design/">that</a> <a href="http://christianpayne.com.au/category/personal/6-human-needs/">might</a> <a href="http://christianpayne.com.au/category/companies/google/wave/">be</a> at the moment&#8230;).</p>
<p>But on reflection, if the best (insert noun &#8211; ship, space craft, person) takes a path that is <em>never</em> straight, why would I be any different?</p>
<p>Thanks Liz!</p>
<p>Rock on,<br />
Christian</p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=496&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/06/02/if-the-voyage-of-the-best-ship-is-a-zigzag-line/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The problem with Tekpub&#8230;</title>
		<link>http://christianpayne.com.au/2011/06/01/the-problem-with-tekpub/</link>
		<comments>http://christianpayne.com.au/2011/06/01/the-problem-with-tekpub/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 02:11:36 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Companies]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Tekpub]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=491</guid>
		<description><![CDATA[I like Rob Conery. But he is the sort of guy who just seems to go out of his way to cause trouble&#8230; A good example is a post I wrote a couple of years ago. What&#8217;s funny is that Rob even commented on the post. But unfortunately he missed the point. Rob is a [...]]]></description>
			<content:encoded><![CDATA[<p>I like <a href="http://wekeroad.com/">Rob Conery</a>.  But he is the sort of guy who just seems to go out of his way to cause trouble&#8230;</p>
<p>A good example is a post I wrote <a href="http://christianpayne.com.au/2009/01/26/stackoverflow-38/">a couple of years ago</a>.</p>
<p>What&#8217;s funny is that Rob even <a href="http://christianpayne.com.au/2009/01/26/stackoverflow-38/#comment-60">commented on the post</a>.  But unfortunately he missed the point.  Rob is a classic &#8220;Ready, Fire, AIM!&#8221; type of person.</p>
<p>Case in point, I recently purchased a <a href="http://tekpub.com/pricing">12 month Tekpub subscription</a>.  (Tekpub is an online technical education resource).</p>
<p>Now a 12 month subscription for a little under $300 is good value.  It&#8217;s competitors are either Youtube videos or companies like <a href="www.pluralsight-training.net">Plural Sight</a>.</p>
<p>Last week, Rob posted <a href="http://twitter.com/#!/robconery/status/72889120829091840">this tweet</a>:<br />
<a href="http://christianpayne.com.au/wp-content/uploads/2011/06/robconerydiscount.png"><img src="http://christianpayne.com.au/wp-content/uploads/2011/06/robconerydiscount.png" alt="" title="Rob Conery Tekpub discount" width="577" height="250" class="alignnone size-full wp-image-492" /></a>.</p>
<p>Awesome!  So why did I pay full price?</p>
<p>But that&#8217;s ok, Rob&#8217;s a good bloke!  So I pinged him, asked if I could get a 29% extension, sent my Order Number (twice), followed him up&#8230;</p>
<p>And then?  <a href="http://twitter.com/#!/christian_pyn/status/74701320975683584">Well not much!</a><br />
<a href="http://christianpayne.com.au/wp-content/uploads/2011/06/robconery_haventheard.png"><img src="http://christianpayne.com.au/wp-content/uploads/2011/06/robconery_haventheard.png" alt="" title="Rob Conery havent heard" width="293" height="230" class="alignnone size-full wp-image-493" /></a></p>
<p>I don&#8217;t know what to make of it.  Maybe he has updated my subscription?  Maybe he hasn&#8217;t.  Funny thing is that Tekpub doesn&#8217;t show when your subscription ends, just when you signed up.</p>
<p>I&#8217;ll keep you posted&#8230;</p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=491&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/06/01/the-problem-with-tekpub/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home Theater PC</title>
		<link>http://christianpayne.com.au/2011/04/26/home-theater-pc/</link>
		<comments>http://christianpayne.com.au/2011/04/26/home-theater-pc/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 08:55:31 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[media pc]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=480</guid>
		<description><![CDATA[Recently Jeff Atwood of Coding Horror fame, updated his Home Theater PC. I had been thinking of doing the same, so below is my experience. CPU Intel Core i3-2100 Motherboard MSi H67MA-E45 Memory Kingston 4GB DDR3 Standard case + power supply. I also added a 2TB hard drive + a Blueray writer. Total damage: $800 [...]]]></description>
			<content:encoded><![CDATA[<p>Recently <a href="http://www.codinghorror.com/">Jeff Atwood of Coding Horror</a> fame, updated his <a href="http://www.codinghorror.com/blog/2011/03/revisiting-the-home-theater-pc.html">Home Theater PC</a>.  I had been thinking of doing the same, so below is my experience.</p>
<table>
<tbody>
<tr>
<td>CPU</td>
<td><a href="http://ark.intel.com/Product.aspx?id=53422">Intel Core i3-2100</a></td>
</tr>
<tr>
<td>Motherboard</td>
<td><a href="http://www.msi.com/product/mb/H67MA-E45.html">MSi H67MA-E45</a></td>
</tr>
<tr>
<td>Memory</td>
<td>Kingston 4GB DDR3</td>
</tr>
</tbody>
</table>
<p>Standard case + power supply.  I also added a 2TB hard drive + a Blueray writer.</p>
<p>Total damage:  $800</p>
<p>Originally I installed <a href="http://windows.microsoft.com/en-au/windows7/products/compare?T1=tab11">Windows 7 Home Premium</a> but <a href="http://superuser.com/questions/268282/windows-7-graphics-driver-for-an-i3-2100">had a few driver problems</a>.</p>
<p>So I started again with Windows 7 Home Premium N and no problems.</p>
<p>How does it rate next to Jeffs&#8217;?  <img class="alignnone size-full wp-image-481" title="4.6 Windows Experience Index" src="http://christianpayne.com.au/wp-content/uploads/2011/04/Media-PC-Windows-Experience-Index.png" alt="4.6 Windows Experience Index" width="562" height="325" border="1" /><br />
Jeff managed a 5.1 &#8211; but I agree, take out the Aero desktop support and you have a 5.8 machine!</p>
<p>Interesting, Jeff got me all inspired when he started to talk about power consumption.  He has been <a href="http://www.codinghorror.com/blog/2008/07/building-tiny-ultra-low-power-pcs.html">writing about this</a> for sometime now.  When I tested this machine, it was just under 40 watts.<br />
<a href="http://christianpayne.com.au/wp-content/uploads/2011/04/Media-PC-Power-Consumption.png"><img class="alignnone size-full wp-image-482" title="Media PC Power Consumption" src="http://christianpayne.com.au/wp-content/uploads/2011/04/Media-PC-Power-Consumption.png" alt="Media PC Power Consumption" width="368" height="451" /></a><br />
I have no idea how Jeff pulled off 22 watts, but he did say that he recycled old parts from a <a href="http://www.codinghorror.com/blog/2008/04/building-your-own-home-theater-pc.html">previous build</a>.</p>
<p>I&#8217;m not too worried since a) this machine will be either in stand-by or turned off when not in use and b) a low power consumption device is going to increase the cost significantly.</p>
<p>For well under $AUD1,000 I&#8217;m only annoyed I didn&#8217;t do this sooner!</p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=480&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/04/26/home-theater-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When a dirty job is a good job</title>
		<link>http://christianpayne.com.au/2011/02/23/when-a-dirty-job-is-a-good-job/</link>
		<comments>http://christianpayne.com.au/2011/02/23/when-a-dirty-job-is-a-good-job/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 22:39:16 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[dirty jobs]]></category>
		<category><![CDATA[job satisfaction]]></category>
		<category><![CDATA[Mike Rowe]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=467</guid>
		<description><![CDATA[I was doing some research on Simon Sinek. He writes for AskMen.com and I came across their Top 10 TED Talks. I came across this little gem. It&#8217;s a talk by Mike Rowe, from the Dirty Jobs show. I won&#8217;t steal his thunder, just watch:]]></description>
			<content:encoded><![CDATA[<p>I was doing some research on <a href="www.startwithwhy.com">Simon Sinek</a>.  He writes for <a href="http://www.askmen.com/money/career_400/450b_live-for-the-future-simon-sinek.html">AskMen.com</a> and I came across their <a href="http://www.askmen.com/top_10/entertainment/top-10-ted-talks.html">Top 10 TED Talks</a>.</p>
<p>I came across this <a href="http://au.askmen.com/top_10/entertainment/top-10-ted-talks_8.html">little gem</a>.  It&#8217;s a talk by <a href="http://en.wikipedia.org/wiki/Mike_Rowe">Mike Rowe</a>, from the <a href="http://dsc.discovery.com/tv/dirty-jobs/">Dirty Jobs</a> show.</p>
<p>I won&#8217;t steal his thunder, just watch:</p>
<p><iframe title="YouTube video player" width="640" height="390" src="http://www.youtube.com/embed/IRVdiHu1VCc" frameborder="0" allowfullscreen></iframe></p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=467&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/02/23/when-a-dirty-job-is-a-good-job/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The power of a daily affirmation</title>
		<link>http://christianpayne.com.au/2011/02/18/the-power-of-a-daily-affirmation/</link>
		<comments>http://christianpayne.com.au/2011/02/18/the-power-of-a-daily-affirmation/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 03:47:17 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Self Development]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=455</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/qR3rK0kZFkg" frameborder="0" allowfullscreen></iframe></p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=455&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/02/18/the-power-of-a-daily-affirmation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How great leaders inspire action &#8211; by Simon Sinek</title>
		<link>http://christianpayne.com.au/2011/02/17/how-great-leaders-inspire-action-by-simon-sinek/</link>
		<comments>http://christianpayne.com.au/2011/02/17/how-great-leaders-inspire-action-by-simon-sinek/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 02:59:10 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Happiness]]></category>
		<category><![CDATA[Product Development]]></category>
		<category><![CDATA[Self Improvement]]></category>
		<category><![CDATA[Simon Sinek]]></category>
		<category><![CDATA[TED]]></category>
		<category><![CDATA[TED Talks]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=451</guid>
		<description><![CDATA[I love this TED talk! Simon Sinek discusses how great leaders inspire action:]]></description>
			<content:encoded><![CDATA[<p>I love this TED talk!</p>
<p>Simon Sinek discusses how great leaders inspire action:</p>
<p><object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always"/><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/SimonSinek_2009X-medium.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/SimonSinek-2009X.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=848&#038;introDuration=15330&#038;adDuration=4000&#038;postAdDuration=830&#038;adKeys=talk=simon_sinek_how_great_leaders_inspire_action;year=2009;theme=not_business_as_usual;theme=new_on_ted_com;theme=a_taste_of_tedx;theme=unconventional_explanations;event=TEDxPuget+Sound+;&#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" allowScriptAccess="always" flashvars="vu=http://video.ted.com/talks/dynamic/SimonSinek_2009X-medium.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/SimonSinek-2009X.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=848&#038;introDuration=15330&#038;adDuration=4000&#038;postAdDuration=830&#038;adKeys=talk=simon_sinek_how_great_leaders_inspire_action;year=2009;theme=not_business_as_usual;theme=new_on_ted_com;theme=a_taste_of_tedx;theme=unconventional_explanations;event=TEDxPuget+Sound+;"></embed></object></p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=451&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/02/17/how-great-leaders-inspire-action-by-simon-sinek/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>git, Windows 7 &amp; error: error setting certificate verify locations:</title>
		<link>http://christianpayne.com.au/2011/02/09/git-windows-7-error-error-setting-certificate-verify-locations/</link>
		<comments>http://christianpayne.com.au/2011/02/09/git-windows-7-error-error-setting-certificate-verify-locations/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 00:27:31 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[Source Control]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=447</guid>
		<description><![CDATA[Very annoying! I&#8217;ve been trying different version control systems for sometime now and I just couldn&#8217;t get git on Windows to work. I was constantly getting: $ git fetch &#8220;https://some.website.com&#8221; error: error setting certificate verify locations: CAfile: /bin/curl-ca-bundle.crt CApath: none while accessing https://some.website.com/info/refs fatal: HTTP request failed I found the solution here. Open Notepad with [...]]]></description>
			<content:encoded><![CDATA[<p>Very annoying!</p>
<p>I&#8217;ve been trying different version control systems for sometime now and I just couldn&#8217;t get <a href="http://git-scm.com/">git</a> on Windows to work.</p>
<p>I was constantly getting:<br />
$ git fetch &#8220;https://some.website.com&#8221;<br />
error: error setting certificate verify locations:<br />
CAfile: /bin/curl-ca-bundle.crt<br />
CApath: none<br />
while accessing https://some.website.com/info/refs</p>
<p>fatal: HTTP request failed<br />
<a href="http://christianpayne.com.au/wp-content/uploads/2011/02/gitScreenshot.png"><img class="alignnone size-full wp-image-448" title="git error" src="http://christianpayne.com.au/wp-content/uploads/2011/02/gitScreenshot.png" alt="error: error setting certificate verify locations" width="666" height="378" /></a></p>
<p>I found the solution <a href="http://support.trunksapp.com/discussions/problems/28-error-when-cloning-git-repository-over-https">here</a>.</p>
<ol>
<li>Open Notepad with Administrator privileges</li>
<li>Open the file <em>gitconfig</em>. For me, this was in the folder:  <em>C:\Program Files (x86)\Git\etc</em></li>
<li>The line &#8220;sslCAinfo = /bin/curl-ca-bundle.crt&#8221; is using relative references.  Change this to &#8220;sslCAinfo = C:/Program Files (x86)/Git/bin/curl-ca-bundle.crt&#8221;</li>
</ol>
<p>Too easy!</p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=447&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/02/09/git-windows-7-error-error-setting-certificate-verify-locations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Inside bars &amp; pin bars</title>
		<link>http://christianpayne.com.au/2011/01/03/inside-bars-pin-bars/</link>
		<comments>http://christianpayne.com.au/2011/01/03/inside-bars-pin-bars/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 10:11:02 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Currency]]></category>
		<category><![CDATA[Financial]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=438</guid>
		<description><![CDATA[(Unless you are trading foreign currencies, this post won&#8217;t make much sense. You should just skip this and move one&#8230;) In the past few months I&#8217;ve been looking at trading foreign currencies. I&#8217;ll save some of the details of the mechanics (why, how etc) for another day. For myself, one of the most successful entry [...]]]></description>
			<content:encoded><![CDATA[<p>(Unless you are trading foreign currencies, this post won&#8217;t make much sense.  You should just skip this and move one&#8230;)</p>
<p>In the past few months I&#8217;ve been looking at trading foreign currencies.  I&#8217;ll save some of the details of the mechanics (why, how etc) for another day.</p>
<p>For myself, one of the most successful entry indicators is an Inside Bar + Pin Bar.</p>
<p>I&#8217;m using <a>FXDD</a>, which is based on the <a href="http://www.metaquotes.net/en/metatrader4">Meta Trader</a> platform.  One of the benefits is that you can create your own indicators.</p>
<p>So, I created an Inside bar &amp; Pin bar.  Here&#8217;s the steps:</p>
<ol>
<li>Download the file <a href='http://christianpayne.com.au/wp-content/uploads/2011/01/Inside-Bar.txt'>Inside Bar.txt</a>.  You will need to rename it from .txt to .mq4.  Save it in experts\indicators folder.  If you have installed FXDD in the default location, this will be C:\Program Files\FXDD &#8211; MTXtreme 4\experts\indicators
<li>
<li>Click on Tools / MetaQuotes Language Editor</li>
<li>On the Navigator window, expand the Indicator folder and double click &#8216;Inside Bar.mq4&#8242;.  If you can&#8217;t see the Navigator window, from the menu, select View / Navigator<br />
<img alt="" src="http://i1115.photobucket.com/albums/k548/cpayne22/Step3-OpenInsideBar.png" title="Open Inside bar" class="alignnone" width="590" height="450" /></li>
<li>Click Compile.  In the results window (down the bottom) you should see 0 errors, 0 warnings.  If not, then it is likely something you have changed.<img alt="" src="http://i1115.photobucket.com/albums/k548/cpayne22/Step4-CompileNoErrors.png" title="Step 4" class="alignnone" width="585" height="514" /></li>
<li>Click Tools / Trading Terminal, to switch back to your chart</li>
<li>Select the chart you want to see the indicator on.  Click Insert / Indicators / Custom / Inside Bar
</li>
<li><img alt="" src="http://i1115.photobucket.com/albums/k548/cpayne22/Step5-InsertIndicators.png" title="Step 5" class="alignnone" width="552" height="632" /></li>
<li>Repeat steps above with <a href='http://christianpayne.com.au/wp-content/uploads/2011/01/PinBar.txt'>PinBar.txt</a></li>
</ol>
<p>You can see in the examples above, an inside bar has a tick above the bar and the pin bar is a ^ below.</p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=438&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2011/01/03/inside-bars-pin-bars/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>windows cannot automatically bind the ip protocol to the ip stack</title>
		<link>http://christianpayne.com.au/2010/11/24/windows-cannot-automatically-bind-the-ip-protocol-to-the-ip-stack/</link>
		<comments>http://christianpayne.com.au/2010/11/24/windows-cannot-automatically-bind-the-ip-protocol-to-the-ip-stack/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 07:55:06 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[AVG]]></category>
		<category><![CDATA[Companies]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Wireless Networking]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=432</guid>
		<description><![CDATA[Uugh! I&#8217;ve just spent 2 hours tracking this down. My wife is running Windows 7 Home on a Compaq Presario and her wireless networking stopped. When I ran the diagnostic, the only meaningful message I could get was: windows cannot automatically bind the ip protocol to the ip stack Not very helpful! Googling provided many [...]]]></description>
			<content:encoded><![CDATA[<p>Uugh!</p>
<p>I&#8217;ve just spent 2 hours tracking this down.</p>
<p>My wife is running Windows 7 Home on a <a href="http://www.cnet.com.au/hp-compaq-presario-cq42-136tu-339304091.htm">Compaq Presario</a> and her wireless networking stopped.</p>
<p>When I ran the diagnostic, the only meaningful message I could get was:</p>
<blockquote><p>windows cannot automatically bind the ip protocol to the ip stack</p></blockquote>
<p>Not very helpful!</p>
<p>Googling provided <a href="http://social.technet.microsoft.com/Forums/en/w7itpronetworking/thread/0f180632-30ad-43f5-9ef7-d3b14eeca7b8">many</a> <a href="http://forums.techarena.in/networking-security/1325044.htm">similar</a> <a href="http://www.sevenforums.com/network-sharing/22446-no-internet-connection-after-boot-up-wake-up.html">articles</a>.</p>
<p>This didn&#8217;t help, but I did notice that &#8220;Kaspersky Anti-Virus&#8221; seemed to be the cause.</p>
<p>This was odd (the laptop has <a href="http://free.avg.com">AVG</a>).  But I did notice something&#8230;  AVG was constantly giving me a reminder that it had been updated and needed a reboot.  After the 3rd reboot, I thought this was it.</p>
<p>So I tried to uninstall AVG, but got the message &#8220;AVG Error Code 0xC0070643&#8243;.</p>
<p>Some more <a href="http://www.computing.net/answers/security/avg-error-code-0xc0070643/31793.html">googling</a> suggested I restart in Safe Mode and manually delete the c:\program files\avg folders.</p>
<p>This seemed a little drastic, but I had nothing else to go by so I deleted the folders.</p>
<p>After a reboot, still no networking!</p>
<p>At this point, I think that AVG is the cause and that during the automatic upgrade, it didn&#8217;t uninstall the previous version.  Not much help and still no networking.  I also must add that the <a href="http://en.wikipedia.org/wiki/Ethernet">ethernet</a> port didn&#8217;t work either.</p>
<p>Again this got me thinking that AVG might have some sort of intercept to networking level?  A quick check under Control Panel / Network and Intenet / Network Connections, select the wireless network card, right click on Properties and what did I see?<br />
<a href="http://christianpayne.com.au/wp-content/uploads/2010/11/Network.png"><img src="http://christianpayne.com.au/wp-content/uploads/2010/11/Network.png" alt="" title="Network" width="377" height="474" class="aligncenter size-full wp-image-433" /></a></p>
<p>Ugg!  <strong>2nd from the top, AVG network filter driver.</strong></p>
<p>Disabled this and I was good to go!</p>
<p>I downloaded AVG and installed.  AVG thought it was already installed, so I selected Repair and good to go.</p>
<p>Again it was odd, but AVG seemed to hang. It has been running for the last 20 minutes &#8220;repairing&#8221;.  The progress bar is changing (so it hasn&#8217;t stopped).  It just seems to be going very very slowly.</p>
<p>I hope this helps!</p>
<p>Rock on,<br />
Christian</p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=432&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2010/11/24/windows-cannot-automatically-bind-the-ip-protocol-to-the-ip-stack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where is tsadmin.exe?</title>
		<link>http://christianpayne.com.au/2010/08/17/where-is-tsadmin-exe/</link>
		<comments>http://christianpayne.com.au/2010/08/17/where-is-tsadmin-exe/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 23:45:32 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[terminal services]]></category>
		<category><![CDATA[tsadmin]]></category>
		<category><![CDATA[windows Server 2008]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=389</guid>
		<description><![CDATA[On Windows 2003, you can easily open Terminal Services Manager by clicking Start / Run / typing tsadmin [enter] On Windows Server 2008 things are a little different.  I found this post on Scott Forsyth&#8217;s blog: This doesn&#8217;t work in Windows Server 2008 anymore.  The change is ever so slight.  In Windows Server 2003 the [...]]]></description>
			<content:encoded><![CDATA[<p>On Windows 2003, you can easily open Terminal Services Manager by clicking Start / Run / typing tsadmin [enter]</p>
<p>On Windows Server 2008 things are a little different.  I found <a href="http://weblogs.asp.net/owscott/archive/2008/04/03/tsadmin-command-change-in-windows-server-2008.aspx">this post</a> on <a href="http://weblogs.asp.net/owscott/about.aspx">Scott Forsyth&#8217;s</a> blog:</p>
<blockquote><p>This doesn&#8217;t work in Windows Server 2008 anymore.  The change is ever so slight.  In Windows Server 2003 the tool was tsadmin.exe, so typing &#8216;tsadmin&#8217; was all that was required to start the tool.  Now, in Windows Server 2008, this has been moved to a MMC snap-in and is called tsadmin.msc (plus tsadmin.dll is used silently).
</p></blockquote>
<p>So to fix this, click Start / Run / type tsadmin.msc [enter] and you&#8217;re good to go!</p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=389&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2010/08/17/where-is-tsadmin-exe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social media in school</title>
		<link>http://christianpayne.com.au/2010/08/04/social-media-in-school/</link>
		<comments>http://christianpayne.com.au/2010/08/04/social-media-in-school/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 04:46:16 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://christianpayne.com.au/?p=379</guid>
		<description><![CDATA[On the Ask a Teacher blog, Jacqui Murray asks the question: What do you think of Facebook in school? I thought this was a great question that should be teased out. In her post, she says that her school has banned access to Facebook, Youtube, Flickr etc. Yet these sites have kids excited about learning &#38; excited [...]]]></description>
			<content:encoded><![CDATA[<p>On the <a href="http://askatechteacher.wordpress.com/2010/08/02/what-do-you-think-of-facebook-in-schools/">Ask a Teacher blog</a>, <a href="http://askatechteacher.wordpress.com">Jacqui Murray</a> asks the question:</p>
<blockquote><p>What do you think of Facebook in school?</p></blockquote>
<p>I thought this was a great question that should be teased out.</p>
<p>In her post, she says that her school has banned access to Facebook, Youtube, Flickr etc. Yet these sites have kids excited about learning &amp; excited about technology.</p>
<p>What I thought was interesting, is that Jaqui included <a href="http://askatechteacher.wordpress.com/2009/10/05/social-media-what-the-heck-is-this-all-about/">a link</a> to two youtube videos on what Social Media / Networking is.  But more on that in a moment.</p>
<p>My first reaction was to identify what would be banned in a school and should be banned.  There is no doubt that even soft porn has no place in school.  Even sites like <a href="http://www.break.com/">Break</a> (which has scantly dressed women and guys being kicked in the nuts) should be removed.</p>
<p>So what is the purpose of banning sites?  I can understand the argument that Facebook and Twitter offer limited (if any) educational value.  They are &#8220;fun&#8221;, but do they offer anything more meaningful?</p>
<p>But have a look at the two youtube video&#8217;s Jacqui linked to.  <a href="http://commoncraft.com/">CommonCraft</a> describe themselves as a creator of three-minute videos to help educators and influencers<br />
introduce complex subjects.  (<a href="http://www.youtube.com/user/theRSAorg">RSA</a> have also done something similar).</p>
<p>To say the study of a businesses (and industry) that  just did not exist 5 years ago has no value in our schools is just crazy.  I think that if you are involved in media studies, art or even an english teacher and you are not using this medium, then you are doing your students a disservice.</p>
<p>Then again, there always will be <a href="http://www.youtube.com/watch?v=nm2LY1y0F0s">someone willing to get kicked in the nuts</a>!</p>
<img src="http://christianpayne.com.au/?ak_action=api_record_view&id=379&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://christianpayne.com.au/2010/08/04/social-media-in-school/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

