<?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>Deacon&#039;s Blog</title>
	<atom:link href="http://ducharme.cc/feed/" rel="self" type="application/rss+xml" />
	<link>http://ducharme.cc</link>
	<description>by Daryl Joseph Ducharme</description>
	<lastBuildDate>Fri, 20 Aug 2010 10:00:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Caution: Example Code Ahead</title>
		<link>http://ducharme.cc/caution-code/</link>
		<comments>http://ducharme.cc/caution-code/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 10:00:41 +0000</pubDate>
		<dc:creator>Deacon</dc:creator>
				<category><![CDATA[Flash Friday]]></category>

		<guid isPermaLink="false">http://ducharme.cc/?p=454</guid>
		<description><![CDATA[Today&#8217;s post veers from anything flash specific and goes to the more generic area of example code.  For everything you want learn about in the world of programming there is some example code.  Example code is a great way to see what book authors and blog posters are trying to explain in their posts. I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s post veers from anything flash specific and goes to the more generic area of example code.  For everything you want learn about in the world of programming there is some example code.  Example code is a great way to see what book authors and blog posters are trying to explain in their posts. I&#8217;m a better programmer than a writer so I know how difficult it is to explain some of these concepts without showing code. However, example code has some issues that it is important to be aware of when you use it.</p>
<h2>Comments aren&#8217;t part of the example</h2>
<p>Unless you are reading a book about writitng good code ( I recommend <a href="http://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1281897409&amp;sr=8-1" target="_blank">Code Complete by Steve McConnell</a> ) the comments in the code are not there to show you good commenting practice. I could rant on and on how code should be self documenting and be able to be read like a good book but my main complaint with comments in most example code is stuff like this:</p>
<pre>// define variable a as an integer and set it to 5
var a:int = 5</pre>
<p>Now when you are learning about defining and setting variables this comment is important and that is why this comment is in example code. Unfortunately, I see this all too often in code I&#8217;ve had to debug. Code that is straight forward doesn&#8217;t need to be commented. In case you don&#8217;t know, comments like that in real world code scream amateur and/or I just copied this from the internet somewhere. Moving forward, you might want to make your code as straight forward as possible so you don&#8217;t need to comment it.</p>
<h2>Best Practices are rarely in example code</h2>
<p>Recently I was reading a book on AJAX programming that was trying to show how to use a simple service written in PHP.  To do this they had two input fields in a form where you entered numbers.  The javascript would then send the values of those two fields to a simple PHP webservice that divided the numbers then returned the results. After that the results were parsed to show the answer on the screen.  For the purpose of the book, which was to show how you could use a webservice without being overloaded with other code, this is okay.  In real life, you should just divide the numbers using javascript and leave the webservice out of it.</p>
<p>Also, if you read books and blog posts word for word the authors know that what they are doing isn&#8217;t meant for prime time so they will leave a caution warning ( possibly with a cartoony icon ) letting you know this. Please heed their advice if it is there, but since it usually isn&#8217;t just realize that example code probably isn&#8217;t the best way to handle the problem domain it seems to be solving.</p>
<h2>My oh my!</h2>
<p>This next section is about a pet peeve of mine, the use of the word &#8220;my&#8221; in example method and variable names.  For instance, I sometimes run across code like the following:</p>
<pre>var myName:String
function myClickHandler( event:Event ):void{
...
}</pre>
<p>Unlike the previous examples, I don&#8217;t think the reasoning behind this convention in example code is strong enough to even use it there. The reason I don&#8217;t like this convention is the readability of code that has to use it .  Using the <code>myName</code> variable as an example, which code appears cleaner and easier to read?</p>
<pre>if( employee.myName == 'Jeff' )</pre>
<p>or</p>
<pre>if( employee.name == 'Jeff' )</pre>
<p>I think you&#8217;ll agree that the second example, without the redundant prefix is cleaner and easier to read.</p>
<h2>The code doesn&#8217;t always work</h2>
<p>Anyone who has ever tried to copy or [GASP!] cuts and pastes example code has probably figured out that there is a high probability that it won&#8217;t work.  There are several possibilities for this from editors who think they know better to code that was only written in a text editor but not tested or even an errant copy and post from the author&#8217;s IDE that forgot a semi-colon.</p>
<p>This isn&#8217;t a problem in the way that the previous items are a problem with example code. Though it would probably be better if it didn&#8217;t occur, its better just to know that your chances of perfectly working code are 50/50. In fact, non-working example code can be a good thing to debug. Especially when you consider a majority of your programming career ( or hobby for that matter ) will probably be taken up with debugging code that you swear should work.</p>
<h2>What else?</h2>
<p>While the heading for this section might make you think I&#8217;m going to discuss the overuse of if-else statements I&#8217;m really asking for your opinions on example code.  Am I off base?  Do you have your own issues with example code? Perhaps you want to discuss the overuse of if-else statements in example code or maybe you&#8217;d like to see more of them.  Please, comment below and let me know.</p>
<p><br /><NOSCRIPT>
	<a href='http://www.dpbolvw.net/click-3730281-10591347'>
		<img alt='' border='0' height='60' src='http://www.lduhtrp.net/image-3730281-10591347' width='468'>
		</img>
	</a>
</NOSCRIPT>
<SCRIPT src='http://www.awltovhc.com/javascript/get_flash_html.js' type='text/javascript'>
</SCRIPT>
<SCRIPT type='text/javascript'>
 getFlashHtml('US - 468x60 - CS4 Design Premium (Flash)', 468, 60, 'http://www.tqlkg.com/flash-3730281-10591347?clickTag=http://www.dpbolvw.net/click-3730281-10591347', '', 'http://www.lduhtrp.net/image-3730281-10591347', 'http://www.dpbolvw.net/click-3730281-10591347')
</SCRIPT>
				    <br /><br />
If you liked this post please subscribe to my <a href="http://ducharme.cc/feed">RSS feed</a> and/or <a title="My twitter page" href="http://twitter.com/diacre" target="_blank">follow me on Twitter</a>. If you only want to see my <a href="http://ducharme.cc/category/flash-friday/" target="_blank">Flash Friday posts</a> you can follow the subscribe to the <a href="http://ducharme.cc/category/flash-friday/feed">Flash Friday feed</a>. How&#8217;s that for alliteration <img src='http://ducharme.cc/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Until next time keep on coding.</p>
<p><map name='google_ad_map_454_4d908d47eedd0248'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/454?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_454_4d908d47eedd0248' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=454&amp;url= http%3A%2F%2Fducharme.cc%2Fcaution-code%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://ducharme.cc/caution-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What would it take to get to normal?</title>
		<link>http://ducharme.cc/normal/</link>
		<comments>http://ducharme.cc/normal/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 10:00:27 +0000</pubDate>
		<dc:creator>Deacon</dc:creator>
				<category><![CDATA[Wednesday Warrior]]></category>
		<category><![CDATA[bmi]]></category>
		<category><![CDATA[fitness]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[weight]]></category>

		<guid isPermaLink="false">http://ducharme.cc/?p=445</guid>
		<description><![CDATA[The other day I was listening to NPR talk about BMI or body mass index with regards to healthiness. I have always poo-pooed BMI because as a former personal trainer I know that it doesn&#8217;t take into account actual body fat percentage. For instance, a well conditioned athlete might have enough muscle to be considered [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://medicaldude.com/2010/07/obesity-guidelines-should-be-revised-for-seniors-revised-body-mass-index-bmi/"><img class="alignleft" title="The obsurdity of BMI" src="http://medicaldude.com/wp-content/uploads/2010/07/bmi-comparison.gif" alt="" width="200" height="201" /></a>The other day I was listening to NPR talk about BMI or body mass index with regards to healthiness. I have always poo-pooed BMI because as a former personal trainer I know that it doesn&#8217;t take into account actual body fat percentage. For instance, a well conditioned athlete might have enough muscle to be considered obese using BMI while somebody in the &#8216;normal&#8217; range might actually be skinny-fat and thus too weak to really function on a day to day basis. And, as I looked for a link to the story I was listening to at NPR.org it looks like there were many follow-ups or alternate stories that feel the same way.</p>
<blockquote><p><em><strong>BMI is a bogus measurement</strong></em></p></blockquote>
<p>However, despite the reality that BMI is a bogus measurement I decided to get real on my personal situation.  While I used to be a professional wrestler and a personal trainer, I have been 5 years retired from both and my fitness level is that of a social media game developer( my current profession ) but my eating habits have not changed enough to compensate.  So right now I am sitting at 240 pounds which is considered obese by the BMI measurement for a 6 foot tall person.</p>
<p>On the flip side, 220 pounds is the top end of the overweight label for my height and 180 is the top end for the normal range.  Its interesting to note that 180 pounds was my weight in High School, probably when I was most active without trying to add muscle. I know that 220 is realistic as I was about 225 when I wrestled. However, is 180 realistic?<br />
<br/><script type="text/javascript"><!--
google_ad_client = "pub-6047221647343234";
/* 468x60, created 11/18/09 */
google_ad_slot = "7210119755";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br/></p>
<h2>Getting real about the numbers</h2>
<p>Let&#8217;s go through the numbers, keeping in mind I don&#8217;t actually know my bodyfat percentage right now.<br />
If I&#8217;m at 30% body fat ( which is high for a man but definitely believable ) than I have 168 pounds of lean body mass and if I could somehow lose the weight without losing muscle mass ( a very difficult task &#8211; though attainable ) then I would be at 7% body fat. 7% body fat is pretty low, especially for a social media game developer. Am I willing to lose muscle mass, is it still that important to me?</p>
<p>The truth be told, I could have a higher or lower body fat than 30%.  If it is higher, 180 could be attainable without losing muscle. If it is lower then I can just kiss some of that muscle goodbye if I want to hit 180.</p>
<h2>Do I even want to try?</h2>
<p>Do I want to try for 180?  That&#8217;s a big goal.  If I get to 180, will I have done it in a healthy way that I can continue for the rest of my life?</p>
<p>The answer is yes, I do want to make the journey toward 180 pounds and I&#8217;m going to use this blog to take you all along the journey with me. I say journey because I know that is more important than the destination.  I might find a fork in the path along the way that is better for me and I will share that if I get there.  For now, I have a destination and I just have to look through my old maps ( old personal training books ) and possibly get some new ones ( apps for my phone have helped in the past ).  I guess one of those forks will come when I have to decide if losing muscle mass is worth it to me.<br />
<br />
If you liked this post please subscribe to my<a title="Deacon's blog RSS feed." href="http://ducharme.cc/feed/">RSS Feed</a> and/or <a href="http://twitter.com/diacre">follow me on Twitter</a>. If you only want to read my Wednesday Warrior posts subscribe to the <a title="Wednesday Warrior RSS feed" href="http://ducharme.cc/category/wednesday-warrior/feed/">Wednesday Warrior feed</a>. Until next time, thanks for reading.</p>
<p><map name='google_ad_map_445_4d908d47eedd0248'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/445?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_445_4d908d47eedd0248' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=445&amp;url= http%3A%2F%2Fducharme.cc%2Fnormal%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://ducharme.cc/normal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EMC 2010 Report &#8211; Just Another Magic Monday (Day 1)</title>
		<link>http://ducharme.cc/emc-2010-report-magic-monday/</link>
		<comments>http://ducharme.cc/emc-2010-report-magic-monday/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 10:00:51 +0000</pubDate>
		<dc:creator>Deacon</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Just Another Magic Monday]]></category>
		<category><![CDATA[barry and stuart]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[essential magic conference]]></category>
		<category><![CDATA[Magic]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ducharme.cc/?p=433</guid>
		<description><![CDATA[The 15th through the 17th of July held a very special magical event. This event was the Essential Magic Conference. The first ever international online magic conference ( at least that&#8217;s what I got from the marketing ).  At a price of just 55 euros, it was worth every penny before the end of the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://vimeo.com/13048214"><img class="alignleft" title="EMC Logo" src="http://ps.vimeo.com.s3.amazonaws.com/420/420892_75.jpg" alt="Essential Magic Conference Logo" width="75" height="75" /></a>The 15th through the 17th of July held a very special magical event. This event was the <a href="http://essentialmagicconference.com" target="_blank">Essential Magic Conference</a>. The first ever international online magic conference ( at least that&#8217;s what I got from the marketing ).  At a price of just 55 euros, it was worth every penny before the end of the first day. One participant even mentioned in chat that it was worth the price after the first session.</p>
<p>Speaking of the first day, so far that&#8217;s all I have gotten through. Sure, I listened and watch parts of the sessions from days 2 and 3 as they were happening live but its taken until now for me to have the time to actually study the first 3 sessions from day 1. As of last Friday, all 9 sessions are available online as video on demand for people who signed up for the conference. So, if you missed this conference in real time you can still get more than your <a href="http://essentialmagicconference.com/users/new">registration</a> fee out of these videos.</p>
<p>As someone who still considers himself a novice magician, I gained loads from the first day( and even the first session) with speeches, performances and presentations form the likes of <a href="http://essentialmagicconference.com/users/lennart-green" target="_blank">Lennart Greene</a>, <a href="http://essentialmagicconference.com/users/barry" target="_blank">Barry &amp; Stuart</a>, <a href="http://essentialmagicconference.com/users/ponta-the-smith" target="_blank">Ponta the smith</a>, <a href="http://essentialmagicconference.com/users/apollo-robbins" target="_blank">Apollo Robbins</a>, <a href="http://essentialmagicconference.com/users/gaetan-bloom" target="_blank">Gaetan Bloom</a>, <a href="http://essentialmagicconference.com/users/max-maven" target="_blank">Max Maven</a> and <a href="http://essentialmagicconference.com/speakers" target="_blank">many more</a>.</p>
<p>While I gained a lot from everybody, I gained the most from a magical duo I hadn&#8217;t heard of before &#8211; Barry &amp; Stuart. They had a first day speech entitled,<a href="http://essentialmagicconference.com/videos/54" target="_blank"> &#8220;Everything We&#8217;ve Learned So Far&#8221;</a> [Registration Required]. What drew me in the most was an idea that their presentation kept dancing around and they summed up in one of their final bullet points as:</p>
<blockquote><p>If you want to subvert your art, you need to first learn your craft.</p></blockquote>
<p>While I have never come across as much of a rebel who would want to subvert much of anything, I do have this constant need to make things my own and I latched on to many of their ideas. Barry and Stuart are 2 young guys who have worked hard and created a niche and name for themselves in magic. And while there are many performances from day 1 I&#8217;d like to show my readership ( Ponta the smith&#8217;s performance in session 1 comes to mind ) &#8211; I don&#8217;t have access and permission to do that. So, I&#8217;ve looked up an entertaining video of Barry and Stuart for my magical and muggle readership alike. Enjoy.<br />
<iframe class="youtube-player" type="text/html" width="500" height="405" src="http://www.youtube.com/embed/nFSkpwLEi-A" frameborder="0"><br />
</iframe></p>
<p><br /><a href="http://www.pntrs.com/t/R0BES0xGSUBHR0hHTEBFTEpHRw?sid=ducharmeCC"><img src="http://www.pntrs.com/b/R0BES0xGSUBHR0hHTEBFTEpHRw?sid=ducharmeCC" border="0" width="468" height="60" title="Save 5% On Your Entire Order at Ellusionist.com" alt="Save 5% On Your Entire Order at Ellusionist.com"></a><br style="clear:both"/><br />
If you liked this post please <a href="http://twitter.com/diacre" target="_blank">follow me on twitter</a> and/or subscribe to my <a href="http://ducharme.cc/feed/" target="_self">RSS feed</a>. If you only want to see my <abbr title="Just Another Magic Monday">JAMM</abbr> posts you can subscribe to the <a href="http://ducharme.cc/category/magic-monday/feed/" target="_blank">Just Another Magic Monday Feed</a>.</p>
<p><map name='google_ad_map_433_4d908d47eedd0248'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/433?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_433_4d908d47eedd0248' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=433&amp;url= http%3A%2F%2Fducharme.cc%2Femc-2010-report-magic-monday%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://ducharme.cc/emc-2010-report-magic-monday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Not Just Another Magic Monday</title>
		<link>http://ducharme.cc/magic-monday/</link>
		<comments>http://ducharme.cc/magic-monday/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 18:51:49 +0000</pubDate>
		<dc:creator>Deacon</dc:creator>
				<category><![CDATA[Just Another Magic Monday]]></category>
		<category><![CDATA[Dan Harlan]]></category>
		<category><![CDATA[Jeff Mcbride]]></category>
		<category><![CDATA[Magic]]></category>
		<category><![CDATA[magic school]]></category>

		<guid isPermaLink="false">http://ducharme.cc/?p=417</guid>
		<description><![CDATA[The weekend before last was a very magical weekend for me.  The local magic ring in my new home, Ring #199, had a weekend of 2 lectures, a magic show and a master class. All of which I had the pleasure of attending. The first lecture was an awesome lecture from Dan Harlan that was [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://www.ring129.com/images/wr02.jpg" alt="Dan Harlan doing a lecture" width="240" height="198" />The weekend before last was a very magical weekend for me.  The local magic ring in my new home, <a href="http://www.magician.org/member/raleigh" target="_blank">Ring #199</a>, had a weekend of 2 lectures, a magic show and a master class. All of which I had the pleasure of attending. The first lecture was an awesome lecture from <a href="http://www.magiclegends.com/danharlanmagic.html" target="_blank">Dan Harlan</a> that was more about presentation than it was on any tricks. His background in drama came through clear and at times he had me in stitches.</p>
<p>The second lecture followed a show by none other than Jeff McBride, my favorite magician. His show was more amazing in person than any recording I had seen, even if it was in a more intimate setting than a Masters of Illusion taping. In fact, the intimate setting and the fact that I&#8217;d seen some of these before made the show better. I had the chance to see, well&#8230;nothing. The routines and effects which I was unaware of how he accomplished them left me still unaware &#8211; though very entertained. Much of the audience were magicians and I can say that we were all entertained. He actually did sorcerer&#8217;s apprentice on stage with a teenage magician and it came out quite funny without deviating much from any time I&#8217;ve seen it performed on video.<br />
<br /><a href="http://www.pntrs.com/t/R0BES0tHRkBHR0hHTEBFTEpHRw" class="aligncenter"><img class="aligncenter" title="Learn Street Magic at Ellusionist.com" src="http://www.pntrs.com/b/R0BES0tHRkBHR0hHTEBFTEpHRw" border="0" alt="Learn Street Magic at Ellusionist.com" width="392" height="72" /></a>

<br style="clear:both" /><br />
As if that show and the following lecture weren&#8217;t enough I was lucky enough to be part of a 4 hour ( turned into 4.5 hour ) master class taught by Jeff Mcbride the following Sunday. In this class I was able to get a little taste of what it must be like at Mcbride&#8217;s Magic and Mystery School out in Vegas. I learned a lot from this master class and I feel very lucky that I was able to attend.</p>
<p>However, this post is not about me gloating that I got to see my magical hero in person and learn from him. Instead I want to teach a lesson I learned from the weekend. If you want to learn to be a master you need to seek masters to learn from. For some that means making it out to Vegas to attend a Master Class at the Magic and Mystery School. For others it means heading to South America to learn from Juan Tamariz ( mentioned several times by Jeff ).</p>
<p>It may not be ( or at least it may not seem ) possible for you to do any of this right now. However, thanks to the power of the internet, the <a href="http://magicalwisdom.com">Magic and Mystery school</a> can come to you. Now there is a <a href="http://virtual.magicalwisdom.com">Virtual Magic and Mystery school</a> available for you to learn from the masters. I&#8217;m not sure how long they&#8217;ll be doing this but you can sign up for a free trial and get a free lesson in magic from Jeff to see how the system works.</p>
[See post to watch Flash video]<br />
</p>
<p><map name='google_ad_map_417_4d908d47eedd0248'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/417?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_417_4d908d47eedd0248' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=417&amp;url= http%3A%2F%2Fducharme.cc%2Fmagic-monday%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://ducharme.cc/magic-monday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://virtual.magicalwisdom.com/video/vms_promo.flv" length="5011729" type="video/x-flv" />
		</item>
		<item>
		<title>Liu Qian &#8211; Just Another Magic Monday</title>
		<link>http://ducharme.cc/liu-qian-magic-monday/</link>
		<comments>http://ducharme.cc/liu-qian-magic-monday/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 10:00:50 +0000</pubDate>
		<dc:creator>Deacon</dc:creator>
				<category><![CDATA[Just Another Magic Monday]]></category>
		<category><![CDATA[Coins]]></category>
		<category><![CDATA[Liu Qian]]></category>
		<category><![CDATA[Magic]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ducharme.cc/?p=411</guid>
		<description><![CDATA[Magic is international. In some of my previous JAMM posts I have shown some stage performances from magicians of different locales. Stage performances, especially card manipulation performances, don&#8217;t usually require a lot of words.  More intimate performances, especially table performances, require quite a bit more banter to connect with the audience. However, the following video [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="Liu Qian" src="http://ducharme.cc/wp-content/uploads/2010/04/1630010.jpg" alt="Liu Qian" width="171" height="228" />Magic is international. In some of my previous JAMM posts I have shown some stage performances from magicians of different locales. Stage performances, especially card manipulation performances, don&#8217;t usually require a lot of words.  More intimate performances, especially table performances, require quite a bit more banter to connect with the audience.</p>
<p>However, the following video proves ( if you don&#8217;t speak chinese at least ) that magic, and the language of &#8220;holy crap that&#8217;s insanely awesome&#8221;, doesn&#8217;t require much more than body language to convey its message. Watch and be amazed&#8230;watch more and be amazed more..keep watching its worth seeing all of it <img src='http://ducharme.cc/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<iframe class="youtube-player" type="text/html" width="500" height="300" src="http://www.youtube.com/embed/hwVy_2eOfsE" frameborder="0"><br />
</iframe><br />
<br /><a href="http://www.pntrs.com/t/R0BES0tHRkBHR0hHTEBFTEpHRw" class="aligncenter"><img class="aligncenter" title="Learn Street Magic at Ellusionist.com" src="http://www.pntrs.com/b/R0BES0tHRkBHR0hHTEBFTEpHRw" border="0" alt="Learn Street Magic at Ellusionist.com" width="392" height="72" /></a>

<br style="clear:both" /></p>
<p><map name='google_ad_map_411_4d908d47eedd0248'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/411?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_411_4d908d47eedd0248' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=411&amp;url= http%3A%2F%2Fducharme.cc%2Fliu-qian-magic-monday%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://ducharme.cc/liu-qian-magic-monday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Humor of Male Inequality</title>
		<link>http://ducharme.cc/humor-male-inequality/</link>
		<comments>http://ducharme.cc/humor-male-inequality/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 10:00:14 +0000</pubDate>
		<dc:creator>Deacon</dc:creator>
				<category><![CDATA[Sunday Funnies]]></category>

		<guid isPermaLink="false">http://ducharme.cc/?p=409</guid>
		<description><![CDATA[For my first post back from break, I thought I would start with a little humor. The humor I chose isn&#8217;t any humor, but it is humor related to the more serious topics written about in this blog &#8211; the men&#8217;s movement. Watching this clip was almost surreal for me because there was a part [...]]]></description>
			<content:encoded><![CDATA[<p>For my first post back from break, I thought I would start with a little humor. The humor I chose isn&#8217;t any humor, but it is humor related to the more serious topics written about in this blog &#8211; the men&#8217;s movement. Watching this clip was almost surreal for me because there was a part of me that thought I should be offended but I wasn&#8217;t and Samantha Bee if hilarious. So watch this fake news piece on the men&#8217;s movement and enjoy.</p>
<table style="font: normal normal normal 11px/normal arial; color: #333333; background-color: #f5f5f5; height: 353px;" cellspacing="0" cellpadding="0" width="360">
<tbody>
<tr style="background-color: #e5e5e5;" valign="middle">
<td style="padding: 2px 1px 0px 5px;"><a style="color: #333; text-decoration: none; font-weight: bold;" href="http://www.thedailyshow.com" target="_blank">The Daily Show With Jon Stewart</a></td>
<td style="padding: 2px 5px 0px 5px; text-align: right; font-weight: bold;">Mon &#8211; Thurs 11p / 10c</td>
</tr>
<tr style="height: 14px;" valign="middle">
<td style="padding: 2px 1px 0px 5px;" colspan="2"><a style="color: #333; text-decoration: none; font-weight: bold;" href="http://www.thedailyshow.com/watch/wed-february-3-2010/male-inequality" target="_blank">Male Inequality</a><a></a></td>
</tr>
<tr style="height: 14px; background-color: #353535;" valign="middle">
<td style="padding: 2px 5px 0px 5px; width: 360px; overflow: hidden; text-align: right;" colspan="2"><a style="color: #96deff; text-decoration: none; font-weight: bold;" href="http://www.thedailyshow.com/" target="_blank">www.thedailyshow.com</a></td>
</tr>
<tr valign="middle">
<td style="padding: 0px;" colspan="2"><object style="display: block;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="360" height="301" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="bgcolor" value="#000000" /><param name="flashvars" value="autoPlay=false" /><param name="src" value="http://media.mtvnservices.com/mgid:cms:item:comedycentral.com:263465" /><param name="wmode" value="window" /><param name="allowfullscreen" value="true" /><embed style="display: block;" type="application/x-shockwave-flash" width="360" height="301" src="http://media.mtvnservices.com/mgid:cms:item:comedycentral.com:263465" allowfullscreen="true" wmode="window" flashvars="autoPlay=false" bgcolor="#000000"></embed></object></td>
</tr>
<tr style="height: 18px;" valign="middle">
<td style="padding: 0px;" colspan="2">
<table style="text-align: center; height: 100%; margin: 0px;" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr valign="middle">
<td style="padding: 3px; width: 33%;"><a style="font: 10px arial; color: #333; text-decoration: none;" href="http://www.thedailyshow.com/full-episodes" target="_blank">Daily Show<br />
Full Episodes</a></td>
<td style="padding: 3px; width: 33%;"><a style="font: 10px arial; color: #333; text-decoration: none;" href="http://www.indecisionforever.com" target="_blank">Political Humor</a></td>
<td style="padding: 3px; width: 33%;"><a style="font: 10px arial; color: #333; text-decoration: none;" href="http://www.thedailyshow.com/videos/tag/health" target="_blank">Health Care Crisis</a></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p>You may have noticed I kept this post very short. This is on purpose. The other post this week is my Wednesday Warrior post and this clip will be a great source for a topic.<br />
<br />
If you liked this post please subscribe to my <a title="Deacon's blog RSS feed." href="http://ducharme.cc/feed/">RSS Feed</a> and/or <a href="http://twitter.com/diacre">follow me on Twitter</a>. If you only want to read my Sunday Funnies posts subscribe to the <a title="Wednesday Warrior RSS feed" href="http://ducharme.cc/category/sunday-funnies/feed/">Sunday Funnies feed</a>. Until next time, thanks for reading and Happy Valentine&#8217;s day.</p>
<p><map name='google_ad_map_409_4d908d47eedd0248'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/409?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_409_4d908d47eedd0248' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=409&amp;url= http%3A%2F%2Fducharme.cc%2Fhumor-male-inequality%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://ducharme.cc/humor-male-inequality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A respite from blog posts</title>
		<link>http://ducharme.cc/respite-blog-posts/</link>
		<comments>http://ducharme.cc/respite-blog-posts/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 01:34:49 +0000</pubDate>
		<dc:creator>Deacon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ducharme.cc/?p=405</guid>
		<description><![CDATA[Recently, I got offered a position at Merscom Games to be a flash developer for social media games. Everything is happening quite quickly and it made me realize a couple things. I have a lot to get done to move to another city so I&#8217;m going to have to take a break from blogging. I [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I got offered a position at Merscom Games to be a flash developer for social media games. Everything is happening quite quickly and it made me realize a couple things.</p>
<ol>
<li>I have a lot to get done to move to another city so I&#8217;m going to have to take a break from blogging.</li>
<li>I have been blogging too frequently to put the quality in I would like.</li>
</ol>
<p>So, for the next couple weeks I&#8217;m going to take a break from my scheduled blogging times. When I come back I&#8217;m reducing the amount of scheduled posts to 2 a week. I will do this by staggering the posts. So one week I will do a Just Another Magic Monday post along with a Flash Friday post. The following week will consist of a Sunday Funnies post and a Wednesday Warrior post.</p>
<p>Hopefully this change will allow for me to put more time into my blog posts. At the same time, it should help me to continue to post even when certain major events occur.</p>
<p>So, until I am settled &#8211; adieu.</p>
<p><map name='google_ad_map_405_4d908d47eedd0248'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/405?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_405_4d908d47eedd0248' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=405&amp;url= http%3A%2F%2Fducharme.cc%2Frespite-blog-posts%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://ducharme.cc/respite-blog-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grandfather Sky: The Grandfatherly Heart &#8211; awakening my sacred masculine</title>
		<link>http://ducharme.cc/grandfather-sky-grandfatherly-heart-awakening-sacred-masculine/</link>
		<comments>http://ducharme.cc/grandfather-sky-grandfatherly-heart-awakening-sacred-masculine/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 10:00:04 +0000</pubDate>
		<dc:creator>Deacon</dc:creator>
				<category><![CDATA[Wednesday Warrior]]></category>
		<category><![CDATA[Men's Studies]]></category>
		<category><![CDATA[spirituality]]></category>

		<guid isPermaLink="false">http://ducharme.cc/?p=393</guid>
		<description><![CDATA[Finally, we have reached the 10th metaphor in Matthew Fox&#8217;s book The Hidden Spiruality of Men &#8211; Ten Metaphors to Awaken the Sacred Masculine. As a man who is a father but not a grandfather I wondered what I would be able to get out of this metaphor. As I am writing these blog posts [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kqzyfj.com/click-3730281-42121?isbn=1577316754" target="_blank"><img class="alignleft" title="Hidden Spirituality of Men by Matthew Fox" src="http://covers2.booksamillion.com/covers/bam/1/57/731/607/157731607X_l.gif" alt="" width="158" height="237" /></a>Finally, we have reached the 10th metaphor in Matthew Fox&#8217;s book <a href="http://www.kqzyfj.com/click-3730281-42121?isbn=1577316754" target="_blank">The Hidden Spiruality of Men &#8211; Ten Metaphors to Awaken the Sacred Masculine</a>. As a man who is a father but not a grandfather I wondered what I would be able to get out of this metaphor. As I am writing these blog posts with the hopes that I can help others, what can someone who is neither a grandfather or even a father get from this metaphor. For my second reading of this metaphor though, I did get something out of for myself and hopefully for others. We have already had a few <em>father</em> metaphors, what is Grandfather Sky and how is it different?</p>
<h2>The Grandfatherly Heart</h2>
<p>Grandfather Sky, the grandfatherly heart, isn&#8217;t that different in relationship to the father metaphors than the relationship between grandfathers and fathers ( and sons for that matter ). Grandfather Sky is the father metaphors at new stage of life. Where the father metaphors are still about providing for family and community through (great) work, Grandfather sky is about providing for family and community through wisdom.</p>
<p>Beyond just sharing its own wisdom, the Grandfatherly Heart is also about taking in the wisdom of youth &#8211; be that the sons or be that the fathers. The Grandfatherly Heart knows enough to know that there is much he doesn&#8217;t know. Thus, Grandfather Sky, learns from youth as much as they teach the youth.</p>
<h2>My Own Experiences</h2>
<p>In reading this chapter again I remember a conversation I had with my step-father in law regarding his relationship with my sons. I couldn&#8217;t ask for a better grandfather figure in my sons&#8217; lives than him and I was telling him how much I appreciate him. He D&#8217;Artagnan and Draegan so much time and I know when I come home I often don&#8217;t have the focus or energy to give the same amount of myself to them as he does. He just smiled and told me it was the same for him with his kids. He reminded me, I have to drum up the energy every day and he only has to do it when we come to visit. His energy, his heart is not only a gift to my sons but it is a gift to me as well.</p>
<p>Then there are the projects. Both my step father in law and father in law spend time doing projects with my kids. Often woodworking projects, something they are both good at and I have no experience in. I so appreciate their passing down of wisdom to the boys. That is the Grandfatherly Heart giving freely, not so much wisdom, but love of a craft.</p>
<h2>My Inner Grandfather</h2>
<p>Rather than wait the many years until I, possibly, become a literal grandfather I decided to take a look at what this metaphor means for me right now. Often the modern versions of the father looks at their actual work as the way they define themselves. The grandfather, on the other hand, now looks at their family, their communities and their contributions as the way they define themselves. There is also the difference in relationship to death. The grandfatherly heart is much more aware of death, and accepting of it. It is, after all, a natural part of life and they know enough to see it for what it is. In this way Grandfather Sky is connected to the <a href="http://ducharme.cc/awakening-my-sacred-masculine-the-hunter-gatherer/" target="_blank">Hunter-Gatherer</a> who just sees death as and extremely natural part of life. In a recent <a href="http://ngm.nationalgeographic.com/2009/12/hadza/finkel-text/1" target="_blank">national geographic article on the Hazda</a>, they have only begun to bury their dead in recent decades after pressure from governments. Instead they just let nature take its course. It takes a bit for my modern mind to even deal with that &#8211; even though it makes perfect sense.<br />
<br />
If you liked this post please subscribe to my<a title="Deacon's blog RSS feed." href="http://ducharme.cc/feed/">RSS Feed</a> and/or <a href="http://twitter.com/diacre">follow me on Twitter</a>. If you only want to read my Wednesday Warrior posts subscribe to the <a title="Wednesday Warrior RSS feed" href="http://ducharme.cc/category/wednesday-warrior/feed/">Wednesday Warrior feed</a>. Until next time, thanks for reading.</p>
<p><map name='google_ad_map_393_4d908d47eedd0248'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/393?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_393_4d908d47eedd0248' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=393&amp;url= http%3A%2F%2Fducharme.cc%2Fgrandfather-sky-grandfatherly-heart-awakening-sacred-masculine%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://ducharme.cc/grandfather-sky-grandfatherly-heart-awakening-sacred-masculine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bill Malone and Sam the Bellhop</title>
		<link>http://ducharme.cc/bill-malone-sam-bellhop/</link>
		<comments>http://ducharme.cc/bill-malone-sam-bellhop/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 10:00:13 +0000</pubDate>
		<dc:creator>Deacon</dc:creator>
				<category><![CDATA[Just Another Magic Monday]]></category>
		<category><![CDATA[bill malone]]></category>
		<category><![CDATA[Cards]]></category>
		<category><![CDATA[Magic]]></category>

		<guid isPermaLink="false">http://ducharme.cc/?p=380</guid>
		<description><![CDATA[Before I got into magic there were a lot of magicians I had never heard of but should have. I still have many more to learn about. Of course, with magic there are so many types of magic that this fact is not that surprising. Many of my past Just Another Magic Monday posts have [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.magic.org/store/product_info.php?products_id=56"><img class="alignleft" title="Bill Malone and Sam the Bellhop" src="http://www.magic.org/store/images/imagecache/sam1.jpg" alt="" width="162" height="130" /></a>Before I got into magic there were a lot of magicians I had never heard of but should have. I still have many more to learn about. Of course, with magic there are so many types of magic that this fact is not that surprising.</p>
<p>Many of my past Just Another Magic Monday posts have shown off card manipulators as I learned about some of them. However, recently I posted about <a href="http://http://ducharme.cc/magic-royal-road/" target="_blank">Go Magic Go and the Royal Road to Card Magic</a>. I did this because I&#8217;ve decided to make 2010 a magical year for me and those are the tools I am using myself to gain some magical confidence. <a href="http://www.jdoqocy.com/click-3730281-42121?isbn=9780486408439" target="_blank">The Royal Road to Card Magic</a> isn&#8217;t a book about card manipulation even if it does have some utility flourishes. Instead, it is a book about good old fashioned card magic.</p>
<p>For many people, card magic is the reason they <em>think</em> they don&#8217;t like magic. Since card magic is so easy for people to get started at, many people learn the tricks but don&#8217;t learn how to really <strong>perform</strong> them.  Without the performance a trick is just a trick and rarely, if ever, entertains. Thank goodness for my pro wrestling background, I already understand this fact.</p>
<p>Card magic can be extremely entertaining though. In the hands of the right performer, a simple deck of cards can be all someone needs to entertain any group of people. In the magical world many would say that Bill Malone is one of the best card magic entertainers there is. I only learned about him while talking with an old friend about my new journey into magic. In the following video Bill Malone does a lot of magic, but you may not even notice it because the routine is so entertaining.</p>
<p>Enjoy <a href="http://www.youtube.com/watch?v=GErpOl3KG_w">Bill Malone&#8217;s &#8211; Sam the Bellhop</a></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/GErpOl3KG_w&amp;hl=en_US&amp;fs=1&amp;color1=0x5d1719&amp;color2=0xcd311b" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/GErpOl3KG_w&amp;hl=en_US&amp;fs=1&amp;color1=0x5d1719&amp;color2=0xcd311b" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
<br /><a href="http://www.pntrs.com/t/R0BES0tHRkBHR0hHTEBFTEpHRw" class="aligncenter"><img class="aligncenter" title="Learn Street Magic at Ellusionist.com" src="http://www.pntrs.com/b/R0BES0tHRkBHR0hHTEBFTEpHRw" border="0" alt="Learn Street Magic at Ellusionist.com" width="392" height="72" /></a>

<br style="clear:both" /><br />
If you liked this post please <a href="http://twitter.com/diacre" target="_blank">follow me on twitter</a> and/or subscribe to my <a href="http://ducharme.cc/feed/" target="_self">RSS feed</a>. If you only want to see my <abbr title="Just Another Magic Monday">JAMM</abbr> posts you can subscribe to the <a href="http://ducharme.cc/category/magic-monday/feed/" target="_blank">Just Another Magic Monday Feed</a>.</p>
<p><map name='google_ad_map_380_4d908d47eedd0248'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/380?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_380_4d908d47eedd0248' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=380&amp;url= http%3A%2F%2Fducharme.cc%2Fbill-malone-sam-bellhop%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://ducharme.cc/bill-malone-sam-bellhop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>French + Flight of the Conchords = Sweet</title>
		<link>http://ducharme.cc/french-flight-conchords-sweet/</link>
		<comments>http://ducharme.cc/french-flight-conchords-sweet/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 10:00:36 +0000</pubDate>
		<dc:creator>Deacon</dc:creator>
				<category><![CDATA[Sunday Funnies]]></category>
		<category><![CDATA[Eliza Coupe]]></category>
		<category><![CDATA[Flight of the Conchords]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Scrubs]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ducharme.cc/?p=373</guid>
		<description><![CDATA[I love flight of the conchords. I also love Scrubs. I am also a fan of comedy and the french language. These 4 things came together in the first season of Flight of the Conchords. Watching season 9 of Scrubs, where Eliza Coupe plays Dr. Denise Mahoney I am constantly thinking about &#8220;A Kiss Is [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 138px"><img class=" " title="Eliza Coupe" src="http://static.tvfanatic.com/images/gallery/eliza-coupe-as-denise.jpg" alt="Eliza Coupe as Dr. Mahoney on Scrubs" width="128" height="192" /><p class="wp-caption-text">Eliza Coupe on Scrubs</p></div>
<p>I love flight of the conchords. I also love Scrubs. I am also a fan of comedy and the french language. These 4 things came together in the first season of Flight of the Conchords. Watching season 9 of Scrubs, where Eliza Coupe plays Dr. Denise Mahoney I am constantly thinking about &#8220;<a href="http://www.youtube.com/watch?v=9iSlPoQm2XY" target="_blank">A Kiss Is Not A Contract</a>.&#8221;</p>
<blockquote><p>Definitely No Sugar</p></blockquote>
<p>Of course, the number one song and video for me from the series is Foux De Fa Fa. If you ever took French in high school and have forgotten everything since this should be pretty funny for you. If you are a <a href="http://www.youtube.com/watch?v=9iSlPoQm2XY" target="_blank">francophile </a>with a sense of humor( like myself ), enjoy.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/JZG2Cb1I7oo&amp;hl=en_US&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/JZG2Cb1I7oo&amp;hl=en_US&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
<br />
If you liked this post please subscribe to my <a title="Deacon's blog RSS feed." href="http://ducharme.cc/feed/">RSS Feed</a> and/or <a href="http://twitter.com/diacre">follow me on Twitter</a>. If you only want to read my Sunday Funnies posts subscribe to the <a title="Wednesday Warrior RSS feed" href="http://ducharme.cc/category/sunday-funnies/feed/">Sunday Funnies feed</a>. Until next time, thanks for reading.</p>
<p><map name='google_ad_map_373_4d908d47eedd0248'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/373?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_373_4d908d47eedd0248' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=373&amp;url= http%3A%2F%2Fducharme.cc%2Ffrench-flight-conchords-sweet%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://ducharme.cc/french-flight-conchords-sweet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
