<?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>Weicker.net</title>
	<atom:link href="http://www.weicker.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.weicker.net</link>
	<description>is a work in progress</description>
	<lastBuildDate>Thu, 25 Aug 2011 15:21:03 +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>Querying messy XML in Oracle</title>
		<link>http://www.weicker.net/technical/querying-messy-xml-in-oracle</link>
		<comments>http://www.weicker.net/technical/querying-messy-xml-in-oracle#comments</comments>
		<pubDate>Thu, 25 Aug 2011 15:21:03 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=40</guid>
		<description><![CDATA[I found some XML stored in a XMLType column in an Oracle table that doesn&#8217;t conform to a structured XML schema. It looks like this: &#60;root&#62; &#60;fields&#62; &#60;field_abc&#62; &#60;name&#62;field_abc&#60;/name&#62; &#60;value&#62;1&#60;/value&#62; &#60;enabled&#62;true&#60;/enabled&#62; &#60;/field_abc&#62; &#60;/fields&#62; &#60;fields&#62; &#60;field_def&#62; &#60;name&#62;field_def&#60;/name&#62; &#60;value&#62;2&#60;/value&#62; &#60;enabled&#62;false&#60;/enabled&#62; &#60;/field_def&#62; &#60;/fields&#62; &#60;/root&#62; Note how all the nodes under /root/fields are named after the field name, rather [...]]]></description>
			<content:encoded><![CDATA[<p>I found some XML stored in a XMLType column in an Oracle table that doesn&#8217;t conform to a structured XML schema. It looks like this:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;root<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;fields<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;field_abc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>field_abc<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;value<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/value<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/field_abc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/fields<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;fields<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;field_def<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>field_def<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;value<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>2<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/value<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/field_def<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/fields<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/root<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Note how all the nodes under /root/fields are named after the field name, rather than each node being named &lt;field&gt;. So I can&#8217;t just ask for all the nodes named field or all the field nodes in the fields collection, and I don&#8217;t know what the field names are or how many there are either.</p>
<p>I can&#8217;t easily change the format of the XML to conform to a schema since this table has been in production for a few years on a few dozen Oracle instances. </p>
<p>So how can I query and/or loop through all the children in the /root/fields path without knowing the child node names? It turns out to be fairly easy!</p>
<p><b>Example Query:</b></p>

<div class="wp_syntax"><div class="code"><pre class="plsql" style="font-family:monospace;"><span style="color: #00F;">SELECT</span> <span style="color: #000;">EXTRACTVALUE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">VALUE</span> <span style="color: #00F;">&#40;</span>xml<span style="color: #00F;">&#41;</span><span style="color: #00F;">,</span> <span style="color: #F00;">'*/name'</span><span style="color: #00F;">&#41;</span> <span style="color: #00F;">AS</span> <span style="color: #F00;">&quot;name&quot;</span><span style="color: #00F;">,</span>
       <span style="color: #000;">EXTRACTVALUE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">VALUE</span> <span style="color: #00F;">&#40;</span>xml<span style="color: #00F;">&#41;</span><span style="color: #00F;">,</span> <span style="color: #F00;">'*/value'</span><span style="color: #00F;">&#41;</span> <span style="color: #00F;">AS</span> <span style="color: #F00;">&quot;value&quot;</span><span style="color: #00F;">,</span>
       <span style="color: #000;">EXTRACTVALUE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">VALUE</span> <span style="color: #00F;">&#40;</span>xml<span style="color: #00F;">&#41;</span><span style="color: #00F;">,</span> <span style="color: #F00;">'*/enabled'</span><span style="color: #00F;">&#41;</span> <span style="color: #00F;">AS</span> <span style="color: #F00;">&quot;enabled&quot;</span>
  <span style="color: #00F;">FROM</span> my_table_with_xml tbl<span style="color: #00F;">,</span>
       <span style="color: #00F;">TABLE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">XMLSEQUENCE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">EXTRACT</span> <span style="color: #00F;">&#40;</span>tbl<span style="color: #00F;">.</span>xml_type_col<span style="color: #00F;">,</span> <span style="color: #F00;">'/root/fields/*'</span><span style="color: #00F;">&#41;</span><span style="color: #00F;">&#41;</span><span style="color: #00F;">&#41;</span> xml
 <span style="color: #00F;">WHERE</span> tbl<span style="color: #00F;">.</span>primary_key <span style="color: #00F;">=</span> <span style="color: #800;">1234</span><span style="color: #00F;">;</span></pre></div></div>

<p><b>Example Output:</b></p>
<pre>
name        value   enabled
---------------------------
field_abc   1       true
field_def   2       false
</pre>
<p>The trick is this line:</p>

<div class="wp_syntax"><div class="code"><pre class="plsql" style="font-family:monospace;"><span style="color: #00F;">TABLE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">XMLSEQUENCE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">EXTRACT</span> <span style="color: #00F;">&#40;</span>tbl<span style="color: #00F;">.</span>xml_type_col<span style="color: #00F;">,</span> <span style="color: #F00;">'/root/fields/*'</span><span style="color: #00F;">&#41;</span><span style="color: #00F;">&#41;</span><span style="color: #00F;">&#41;</span></pre></div></div>

<p>What we do is we EXTRACT() all the nodes below the /root/fields path regardless of their names (* wildcard). Then XMLSEQUENCE() will split the extracted nodes into a VARRAY of XMLTypes. Finally, the TABLE() function allows us to query the VARRAY results by converting the multiple array values into a pseudo table containing multiple rows.</p>
<p>We could even apply a WHERE clause against the XML data to further restrict the results:</p>
<p><b>Example Query:</b></p>

<div class="wp_syntax"><div class="code"><pre class="plsql" style="font-family:monospace;"><span style="color: #00F;">SELECT</span> <span style="color: #000;">EXTRACTVALUE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">VALUE</span> <span style="color: #00F;">&#40;</span>xml<span style="color: #00F;">&#41;</span><span style="color: #00F;">,</span> <span style="color: #F00;">'*/name'</span><span style="color: #00F;">&#41;</span> <span style="color: #00F;">AS</span> <span style="color: #F00;">&quot;name&quot;</span><span style="color: #00F;">,</span>
       <span style="color: #000;">EXTRACTVALUE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">VALUE</span> <span style="color: #00F;">&#40;</span>xml<span style="color: #00F;">&#41;</span><span style="color: #00F;">,</span> <span style="color: #F00;">'*/value'</span><span style="color: #00F;">&#41;</span> <span style="color: #00F;">AS</span> <span style="color: #F00;">&quot;value&quot;</span><span style="color: #00F;">,</span>
       <span style="color: #000;">EXTRACTVALUE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">VALUE</span> <span style="color: #00F;">&#40;</span>xml<span style="color: #00F;">&#41;</span><span style="color: #00F;">,</span> <span style="color: #F00;">'*/enabled'</span><span style="color: #00F;">&#41;</span> <span style="color: #00F;">AS</span> <span style="color: #F00;">&quot;enabled&quot;</span>
  <span style="color: #00F;">FROM</span> my_table_with_xml tbl<span style="color: #00F;">,</span>
       <span style="color: #00F;">TABLE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">XMLSEQUENCE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">EXTRACT</span> <span style="color: #00F;">&#40;</span>tbl<span style="color: #00F;">.</span>xml_type_col<span style="color: #00F;">,</span> <span style="color: #F00;">'/root/fields/*'</span><span style="color: #00F;">&#41;</span><span style="color: #00F;">&#41;</span><span style="color: #00F;">&#41;</span> xml
 <span style="color: #00F;">WHERE</span> tbl<span style="color: #00F;">.</span>primary_key <span style="color: #00F;">=</span> <span style="color: #800;">1234</span>
   <span style="color: #00F;">AND</span> <span style="color: #000;">EXTRACTVALUE</span> <span style="color: #00F;">&#40;</span><span style="color: #000;">VALUE</span><span style="color: #00F;">&#40;</span>xml<span style="color: #00F;">&#41;</span><span style="color: #00F;">,</span> <span style="color: #F00;">'*/enabled'</span><span style="color: #00F;">&#41;</span> <span style="color: #00F;">=</span> <span style="color: #F00;">'true'</span><span style="color: #00F;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/technical/querying-messy-xml-in-oracle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Queen of Hearts video</title>
		<link>http://www.weicker.net/music/queen-of-hearts-video</link>
		<comments>http://www.weicker.net/music/queen-of-hearts-video#comments</comments>
		<pubDate>Thu, 23 Jun 2011 22:00:17 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=37</guid>
		<description><![CDATA[Check out the music video for Queen of Hearts by Canadian indie artist Fucked Up off their new album David Comes to Life (four free tracks are available for download on their website). I love how this video challenged my expectations and turned out to be the opposite of what I would describe as a [...]]]></description>
			<content:encoded><![CDATA[<p>Check out the <a href="http://youtu.be/syg6XGbdUkM">music video</a> for Queen of Hearts by Canadian indie artist <a href="http://radio3.cbc.ca/#/bands/Fucked-Up">Fucked Up</a> off their new album <a href="http://www.amazon.ca/gp/product/B004RZTNUM/ref=as_li_ss_tl?ie=UTF8&#038;tag=weickernet05-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=B004RZTNUM">David Comes to Life</a> (four free tracks are available for download on <a href="http://davidcomestolife.com/announcement.html">their website</a>).</p>
<p>I love how this video challenged my expectations and turned out to be the opposite of what I would describe as a &#8216;normal&#8217; music video. Instead of actors (or the band) lip syncing along to the original audio of the song, the actors in this video are actually overdubbed so you can hear <i>them</i> singing the song. It&#8217;s a totally different song when sung by children; I think I might like the music video version more than the original! Very cool idea.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/music/queen-of-hearts-video/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eatliz</title>
		<link>http://www.weicker.net/music/eatliz</link>
		<comments>http://www.weicker.net/music/eatliz#comments</comments>
		<pubDate>Tue, 10 May 2011 06:32:15 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=34</guid>
		<description><![CDATA[I recently discovered the amazing band from Tel Aviv, Israel known as Eatliz. If you go to their website you will find that you can stream every track from their debut album and related EP. After listening to their streaming tracks I was very impressed! Their music reminds me of so many different genres and [...]]]></description>
			<content:encoded><![CDATA[<p>I recently discovered the amazing band from Tel Aviv, Israel known as <a href="http://www.eatliz.com/">Eatliz</a>. If you go to their website you will find that you can stream every track from their <a href="http://www.eatliz.com/violently-delicate-2/">debut album</a> and <a href="http://www.eatliz.com/delicately-violent-3/">related EP</a>.</p>
<p>After listening to their streaming tracks I was very impressed! Their music reminds me of so many different genres and artists at the same time. So I joined <a href="http://www.eatliz.com/downloads/">their mailing list</a> and they emailed me some selected tracks:</p>
<ul>
<li>Bolsheviks &#8211; reminds me of Mars Volta + Mr. Bungle + Bjork + Opeth</li>
<li>Hey &#8211; reminds me of&#8230; Fantômas + Bjork + Tori Amos + Broken Social Scene</li>
<li>Must Get Laid &#8211; reminds me of Mr. Bungle + Goldfrapp</li>
<li>Zoo &#8211; reminds me of Mew + Metric with hints of Coheed and Cambria, but mostly of Electric Turn To Me (<i>I really wish they hadn&#8217;t broken up a few years back!)</i></li>
<li>Sunshine &#8211; VERY Mars Volta like + Fantômas + Coheed and Cambria</li>
<li>Army of Me (Bjork Cover) &#8211; Whoa.. I mean.. &#8220;WOW!!!&#8221; Definitely check out <a href="http://vimeo.com/7925595">the video</a> to see for yourself.</li>
</ul>
<p>OK, so the music is good, I&#8217;m digging this new find so far&#8230; then I decided to check out their music videos&#8230; WOW, now I&#8217;m totally blown away! You <i>MUST</i> check out their <a href="http://www.eatliz.com/video-2/">awesome music videos</a>! &#8220;Lose This Child&#8221; and &#8220;Hey&#8221; are both extremely impressive videos but I especially like the video for &#8220;Attractive&#8221; &#8211; a soft, delicate song with a video that seems like it could have been inspired by <a href="http://www.littlebigplanet.com/">Little Big Planet</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/music/eatliz/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Halo: Cryptum</title>
		<link>http://www.weicker.net/book/halo-cryptum</link>
		<comments>http://www.weicker.net/book/halo-cryptum#comments</comments>
		<pubDate>Wed, 20 Apr 2011 03:37:26 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Book]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=35</guid>
		<description><![CDATA[Being a gamer, a fan of the Halo series of games and a long time fan of author Greg Bear, I was very excited to read his new book Halo: Cryptum. I found it was a bit slow to start but I very quickly became glued to it. I don&#8217;t normally like large franchise book [...]]]></description>
			<content:encoded><![CDATA[<p>Being a gamer, a fan of the <a href="http://en.wikipedia.org/wiki/Halo_(series)">Halo series</a> of games and a long time fan of author <a href="http://www.gregbear.com/">Greg Bear</a>, I was very excited to read his new book Halo: Cryptum. I found it was a bit slow to start but I very quickly became glued to it. I don&#8217;t normally like large franchise book series, let alone recommend them, but if you like Greg Bear&#8217;s hard science fiction style and/or have any interest in the Halo story then I highly recommend checking it out.</p>
<p><iframe src="http://rcm-ca.amazon.ca/e/cm?lt1=_blank&#038;bc1=FFFFFF&#038;IS2=1&#038;npa=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=weickernet05-20&#038;o=15&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;ref=tf_til&#038;asins=0765323966" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/book/halo-cryptum/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>UBC LipDub Video</title>
		<link>http://www.weicker.net/news/ubc-lipdub-video</link>
		<comments>http://www.weicker.net/news/ubc-lipdub-video#comments</comments>
		<pubDate>Mon, 11 Apr 2011 15:16:43 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=36</guid>
		<description><![CDATA[My wife showed me the UBC LipDub video from her school this weekend. I love the Old Spice Guy parody bit at the beginning! The rest of it is pretty incredible too &#8211; one long continuous scene involving a thousand person dance mob, a bus, a swimming pool and a helicopter! I&#8217;m very impressed with [...]]]></description>
			<content:encoded><![CDATA[<p>My wife showed me the <a href="http://www.ubclipdub.com">UBC LipDub</a> video from her school this weekend. I love the <a href="http://en.wikipedia.org/wiki/The_Man_Your_Man_Could_Smell_Like">Old Spice Guy</a> parody bit at the beginning! The rest of it is pretty incredible too &#8211; one long continuous scene involving a thousand person dance mob, a bus, a swimming pool and a helicopter! I&#8217;m very impressed with the directing and production. Check out the <a href="http://www.youtube.com/watch?v=Dpp3quce1Vo">YouTube video</a> when you have ten minutes to spare.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/news/ubc-lipdub-video/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wedding Playlist</title>
		<link>http://www.weicker.net/music/wedding-playlist</link>
		<comments>http://www.weicker.net/music/wedding-playlist#comments</comments>
		<pubDate>Fri, 08 Apr 2011 19:45:39 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=28</guid>
		<description><![CDATA[Music is important to me. So for my wedding, obviously I wanted to try and incorporate as much great music into the day as possible. I wanted to find a balance between my taste in music, music that a wide variety of other people would enjoy, music that is appropriate for wedding day celebrations and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.weicker.net/music/the-importance-of-music">Music is important to me.</a> So for my wedding, obviously I wanted to try and incorporate as much great music into the day as possible. I wanted to find a balance between my taste in music, music that a wide variety of other people would enjoy, music that is appropriate for wedding day celebrations and a selection of fun and spontaneous choices that the crowd on the dance floor would be demanding at any point in time. After discussing this with my wife we decided our primary goal was to host a once in a lifetime party, so for that reason we hired <a href="http://www.doitall.ca/">Drew Arrington</a> to DJ our reception. We loved his attitude and energy at a friend&#8217;s wedding in 2009; he was the perfect fit to entertain our guests!</p>
<p>That took care of our primary goal, but what about <i>my</i> secondary goals? I wanted to include some of my favourite music! This was <i>our</i> day after all! What could I do without turning into Groom-zilla on our DJ (or my wife)? I toyed with the idea of giving a few favourite band names to Drew to see what he&#8217;d come up with, but as I typed out some of my ideas I quickly realized that I had too many opinions; that I&#8217;m too picky; that I really had to build some sort of playlist myself and pass it on in it&#8217;s entirety.</p>
<p>I had a great idea: during the time between the ceremony and dinner (roughly 1.5 to 2 hours) while we&#8217;re off <a href="http://www.laraeichhorn.com/photography/weddings/warren-and-lauras-wedding/">taking photos</a> and the bar is just opening up why not share some of my musical selections with our guests as they mingle? I didn&#8217;t mind that I wouldn&#8217;t be able to hear most of these songs because I knew them all by heart and I&#8217;d always have the playlist to listen to whenever I felt like it. That sounds like an easy task right, an hour or two of celebration music to psych up our guests while they&#8217;re waiting for us?</p>
<p>Well, the playlist grew, and grew, and grew&#8230; and soon the scope of my little project included music to play during dinner as well. I was worried that Drew would feel that I was stepping on his toes, but luckily he was ok with it, he actually complimented my taste in music! His <i>real job</i> for the day would begin after dinner and go into the wee hours of the morning, so really, I was doing him a favour &#8211; he could sit back and relax for the first few hours!</p>
<p>I took inspiration from many sources, including the <a href="http://radio3.cbc.ca/#/blogs/2010/5/Wedding-Bells-Playlist-Podcast-244">CBC Radio 3 Wedding Bell&#8217;s Podcast</a> long time personal favourite artists and tracks and of course songs that had a personal meaning behind them. I tried to group the songs such that more modern, fun and upbeat songs would play earlier when the guests were arriving, getting their first drinks and mingling in the sun. Then in the middle section when we would be arriving at the reception I chose songs with some personal meaning behind them, then later in the mix some of the more quieter and romantically themed songs would come on while guests were eating.</p>
<p>Here it is, my wedding playlist:</p>
<ol style="margin: 0px 0px 30px 23px;">
<li style="padding: 0px;"><a href="http://www.brokensocialscene.ca/">Broken Social Scene</a> &#8211; <a href="http://itunes.apple.com/ca/album/forced-to-love/id367109097?i=367109703&#038;uo=4" target="itunes_store">Forced to Love</a></li>
<li style="padding: 0px;"><a href="http://www.kingsofleon.com/">Kings of Leon</a> &#8211; <a href="http://itunes.apple.com/ca/album/use-somebody/id289072736?i=289072756&#038;uo=4" target="itunes_store">Use Somebody</a></li>
<li style="padding: 0px;"><a href="http://www.landoftalk.com/">Land of Talk</a> &#8211; <a href="http://itunes.apple.com/ca/album/some-are-lakes/id385710269?i=385710387&#038;uo=4" target="itunes_store">Some Are Lakes</a></li>
<li style="padding: 0px;"><a href="http://www.yousayparty.com/">You Say Party!</a> &#8211; <a href="http://itunes.apple.com/ca/album/laura-palmers-prom/id386096959?i=386097077&#038;uo=4" target="itunes_store">Laura Palmer&#8217;s Prom</a></li>
<li style="padding: 0px;"><a href="http://www.thenewpornographers.com/">The New Pornographers</a> &#8211; <a href="http://itunes.apple.com/ca/album/go-places/id262164878?i=262164913&#038;uo=4" target="itunes_store">Go Places</a></li>
<li style="padding: 0px;"><a href="http://www.youarestars.com/">Stars</a> &#8211; <a href="http://itunes.apple.com/ca/album/fixed/id377281615?i=377281766&#038;uo=4" target="itunes_store">Fixed</a></li>
<li style="padding: 0px;"><a href="http://www.siamusic.net/">Sia</a> &#8211; <a href="http://itunes.apple.com/ca/album/under-the-milky-way/id350514206?i=350514208&#038;uo=4" target="itunes_store">Under the Milky Way (The Church Cover)</a></li>
<li style="padding: 0px;"><a href="http://www.thehip.com/">The Tragically Hip</a> &#8211; <a href="http://itunes.apple.com/ca/album/flamenco/id28719565?i=28719579&#038;uo=4" target="itunes_store">Flamenco</a></li>
<li style="padding: 0px;"><a href="http://www.zero7.co.uk/">Zero 7</a> &#8211; <a href="http://itunes.apple.com/ca/album/somersault/id5559789?i=5559771&#038;uo=4" target="itunes_store">Somersault</a></li>
<li style="padding: 0px;"><a href="http://www.carybrothers.com/">Cary Brothers</a> &#8211; <a href="http://itunes.apple.com/ca/album/blue-eyes/id153445128?i=153445459&#038;uo=4" target="itunes_store">Blue Eyes</a></li>
<li style="padding: 0px;"><a href="http://www.googoodolls.com/">The Goo Goo Dolls</a> &#8211; <a href="http://itunes.apple.com/ca/album/iris/id299800094?i=299800249&#038;uo=4" target="itunes_store">Iris</a></li>
<li style="padding: 0px;"><a href="http://www.myspace.com/yands">Young and Sexy</a> &#8211; <a href="http://itunes.apple.com/ca/album/young-sexy/id128461808?i=128461930&#038;uo=4" target="itunes_store">Life Through One Speaker</a></li>
<li style="padding: 0px;"><a href="http://www.myspace.com/bonniesomerville">Bonnie Somerville</a> &#8211; <a href="http://itunes.apple.com/ca/album/winding-road/id153445128?i=153445727&#038;uo=4" target="itunes_store">Winding Road</a></li>
<li style="padding: 0px;"><a href="http://applesinstereo.com/">The Apples In Stereo</a> &#8211; <a href="http://itunes.apple.com/ca/album/nobody-but-you/id359247359?i=359248110&#038;uo=4" target="itunes_store">Nobody But You</a></li>
<li style="padding: 0px;"><a href="http://www.myspace.com/bigstarband">Big Star</a> &#8211; <a href="http://itunes.apple.com/ca/album/im-in-love-with-a-girl/id309929470?i=309929593&#038;uo=4" target="itunes_store">I&#8217;m In Love With A Girl</a></li>
<li style="padding: 0px;"><a href="http://www.jasonmraz.com/">Jason Mraz</a> &#8211; <a href="http://itunes.apple.com/ca/album/im-yours/id277635758?i=277635828&#038;uo=4" target="itunes_store">I&#8217;m Yours</a></li>
<li style="padding: 0px;"><a href="http://www.smashingpumpkins.com/">Smashing Pumpkins</a> &#8211; <a href="http://itunes.apple.com/ca/album/tonight-tonight/id55265153?i=55265069&#038;uo=4" target="itunes_store">Tonight, Tonight</a></li>
<li style="padding: 0px;"><a href="http://www.collectivesoul.com/">Collective Soul</a> &#8211; <a href="http://itunes.apple.com/ca/album/the-world-i-know/id300977264?i=300977286&#038;uo=4" target="itunes_store">The World I Know</a></li>
<li style="padding: 0px;"><a href="http://www.googoodolls.com/">The Goo Goo Dolls</a> &#8211; <a href="http://itunes.apple.com/ca/album/let-love-in/id145302926?i=145301211&#038;uo=4" target="itunes_store">Let Love In</a></li>
<li style="padding: 0px;"><a href="http://www.thenewpornographers.com/">The New Pornographers</a> &#8211; <a href="http://itunes.apple.com/ca/album/we-end-up-together/id369313790?i=369314280&#038;uo=4" target="itunes_store">We End Up Together</a></li>
<li style="padding: 0px;"><a href="http://www.theshins.com/">The Shins</a> &#8211; <a href="http://itunes.apple.com/ca/album/new-slang/id3271807?i=3271795&#038;uo=4" target="itunes_store">New Slang</a></li>
<li style="padding: 0px;"><a href="http://www.royalwood.ca/">Royal Wood</a> &#8211; <a href="http://itunes.apple.com/ca/album/im-so-glad/id216005596?i=216005781&#038;uo=4" target="itunes_store">I&#8217;m So Glad</a></li>
<li style="padding: 0px;"><a href="http://www.myspace.com/lambofficial">Lamb</a> &#8211; <a href="http://itunes.apple.com/ca/album/gorecki/id49393?i=49391&#038;uo=4" target="itunes_store">Gorecki</a></li>
<li style="padding: 0px;"><a href="http://www.ilovemetric.com/">Metric</a> &#8211; <a href="http://itunes.apple.com/ca/album/love-is-a-place/id28695916?i=28695948&#038;uo=4" target="itunes_store">Love Is a Place</a></li>
<li style="padding: 0px;"><a href="http://hannahgeorgas.com/">Hannah Georgas</a> &#8211; <a href="http://itunes.apple.com/ca/album/this-is-good/id407373871?i=407373900&#038;uo=4" target="itunes_store">This Is Good</a></li>
<li style="padding: 0px;"><a href="http://www.youarestars.com/">Stars</a> &#8211; <a href="http://itunes.apple.com/ca/album/my-favourite-book/id259166019?i=259166871&#038;uo=4" target="itunes_store">My Favourite Book</a></li>
<li style="padding: 0px;"><a href="http://davidmyles.com/">David Myles</a> &#8211; <a href="http://itunes.apple.com/ca/album/run-away/id389164791?i=389164802&#038;uo=4" target="itunes_store">Run Away</a></li>
<li style="padding: 0px;"><a href="http://www.jasonmraz.com/">Jason Mraz</a> &#8211; <a href="http://itunes.apple.com/ca/album/lucky-feat-colbie-caillat/id277635758?i=277635829&#038;uo=4" target="itunes_store">Lucky (feat. Colbie Caillat)</a></li>
<li style="padding: 0px;"><a href="http://www.sarahharmer.com/">Sarah Harmer</a> &#8211; <a href="http://itunes.apple.com/ca/album/open-window-the-wedding-song/id28719440?i=28719465&#038;uo=4" target="itunes_store">Open Window (the Wedding Song)</a></li>
<li style="padding: 0px;"><a href="http://www.hawksleyworkman.com/">Hawksley Workman</a> &#8211; <a href="http://itunes.apple.com/ca/album/oh-you-delicate-heart/id272220892?i=272220951&#038;uo=4" target="itunes_store">Oh You Delicate Heart</a></li>
<li style="padding: 0px;"><a href="http://www.arts-crafts.ca/constantines/islandsinthestream/">Constantines &#038; Feist</a> &#8211; <a href="http://itunes.apple.com/ca/album/islands-in-the-stream/id279726366?i=279726370&#038;uo=4" target="itunes_store">Islands In the Stream</a></li>
<li style="padding: 0px;"><a href="http://patrickbrealey.com/">Patrick Brealey &#038; the Knives</a> &#8211; <a href="http://itunes.apple.com/ca/album/how-would-you-choose-to-be/id261125894?i=261126053&#038;uo=4" target="itunes_store">How Would You Choose to Be Loved?</a></li>
<li style="padding: 0px;"><a href="http://hannahgeorgas.com/">Hannah Georgas</a> &#8211; <a href="http://itunes.apple.com/ca/album/shine/id407373871?i=407373913&#038;uo=4" target="itunes_store">Shine</a></li>
<li style="padding: 0px;"><a href="http://www.jillbarber.com/">Jill Barber</a> &#8211; <a href="http://itunes.apple.com/ca/album/chances/id291653195?i=291653207&#038;uo=4" target="itunes_store">Chances</a></li>
</ol>
<p>You&#8217;re probably wondering what the grand finale was, the song that rose above all others and was selected to be the soundtrack for our first dance. This was a tough choice, there were many contenders, but in the end we chose <a href="http://itunes.apple.com/ca/album/celebrate/id336235802?i=336236601&#038;uo=4" target="itunes_store">Celebrate</a> by <a href="http://www.rosecousins.com/">Rose Cousins</a>. It was wonderful and amazing; everyone loved it!</p>
<p>I hope you enjoy this playlist as much as I do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/music/wedding-playlist/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>House!</title>
		<link>http://www.weicker.net/news/house</link>
		<comments>http://www.weicker.net/news/house#comments</comments>
		<pubDate>Tue, 05 Apr 2011 23:40:19 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=33</guid>
		<description><![CDATA[I find it funny that my blog is so young and yet I&#8217;ve already taken time off from it! Oh well&#8230; I&#8217;ll try to get into a routine over the next few weeks. Anyways, over the past three weeks I have been focusing intensely on selling our townhouse and buying a house. I am happy [...]]]></description>
			<content:encoded><![CDATA[<p>I find it funny that my blog is so young and yet I&#8217;ve already taken time off from it! Oh well&#8230; I&#8217;ll try to get into a routine over the next few weeks. Anyways, over the past three weeks I have been focusing intensely on selling our townhouse and buying a house. I am happy to report that both transactions are final now and we couldn&#8217;t be happier with how things turned out! We will be moving in the summer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/news/house/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stars</title>
		<link>http://www.weicker.net/music/stars</link>
		<comments>http://www.weicker.net/music/stars#comments</comments>
		<pubDate>Mon, 07 Mar 2011 06:26:57 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=30</guid>
		<description><![CDATA[Most radio stations showcase a band of the month. Some artists have song of the day or songs for the week recommendations. I&#8217;m not sure that I&#8217;ll ever be that ambitious or routine, but today I&#8217;d like to talk about the band known as Stars. I was listening to their incredible 2007 album In Our [...]]]></description>
			<content:encoded><![CDATA[<p>Most radio stations showcase a band of the month. Some artists have song of the day or songs for the week recommendations. I&#8217;m not sure that I&#8217;ll ever be that ambitious or routine, but today I&#8217;d like to talk about the band known as <a href="http://www.youarestars.com/home/">Stars</a>.</p>
<p>I was listening to their incredible 2007 album <a href="http://www.amazon.ca/gp/product/B000UZ4EFM?ie=UTF8&#038;tag=weickernet05-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=B000UZ4EFM">In Our Bedroom After The War</a> while driving on the highway the other night and a few thoughts went through my mind:</p>
<ul>
<li>This is my favourite Stars album. I hadn&#8217;t listened to it for a while so it immediately felt like I was connecting with an old friend. Newer releases always bump the older ones out of the CD wallet in my car but I wish I had never taken this one out.</li>
<li>This is an <i>excellent</i> CD to listen to while driving! With a wide variety of beats and melodies you can listen to it loud or soft, whether you&#8217;re alone with the stereo cranked up or listening to it in the background while having a conversation.</li>
<li>My favourite song on the album is the second track <a href="http://www.amazon.com/gp/product/B000TPPC68?ie=UTF8&#038;tag=weickernet-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B000TPPC68">The Night Starts Here</a>.  It&#8217;s a beautiful male/female duet that starts out light and dreamy but ends in an epic bass driven alt-pop orchestra &#8211; I love it!</li>
<li>I enjoy whistling along to most of the songs on this album when I&#8217;m alone. I didn&#8217;t really realize I was doing this at first, it just felt natural.</li>
<li>I think this would be a fun album to sing along to&#8230; especially the duets.</li>
<li>This album is upbeat enough to keep you awake yet smooth and calming enough to prevent road rage and traffic frustrations from making my drive unpleasant.</li>
</ul>
<p>In conclusion, this album is wonderful and it deserves more attention, go listen to it right now!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/music/stars/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The name speaks for itself&#8230;</title>
		<link>http://www.weicker.net/photos/the-name-speaks-for-itself</link>
		<comments>http://www.weicker.net/photos/the-name-speaks-for-itself#comments</comments>
		<pubDate>Wed, 02 Mar 2011 15:35:24 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Humour]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=25</guid>
		<description><![CDATA[I&#8217;m not sure whether this is static content or whether it updates from time to time, so I took a screenshot to show you what it looks like right now. The name pretty much speaks for itself, check it out: http://www.thebestpictureontheinternet.com/]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure whether this is static content or whether it updates from time to time, so I took a <a href="http://www.weicker.net/wp-content/uploads/2011/03/thebestpictureontheinternet.png">screenshot</a> to show you what it looks like right now. The name pretty much speaks for itself, check it out: <a href="http://www.thebestpictureontheinternet.com/">http://www.thebestpictureontheinternet.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/photos/the-name-speaks-for-itself/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The importance of music in my life</title>
		<link>http://www.weicker.net/music/the-importance-of-music</link>
		<comments>http://www.weicker.net/music/the-importance-of-music#comments</comments>
		<pubDate>Tue, 01 Mar 2011 21:24:06 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=27</guid>
		<description><![CDATA[Music is important to me. I spend as much time as possible listening to great music each day! I am a bit of an audiophile (in the sense that I am &#8220;an individual who is very interested and enthusiastic about the sound quality of a stereo or home theater system&#8221; but not in the sense [...]]]></description>
			<content:encoded><![CDATA[<p>Music is important to me. I spend as much time as possible listening to <a href="http://radio3.cbc.ca/">great music</a> each day! I am a bit of an <a href="http://en.wikipedia.org/wiki/Audiophile">audiophile</a> (in the sense that I am &#8220;an individual who is very interested and enthusiastic about the sound quality of a stereo or home theater system&#8221; <i>but not</i> in the sense that I am <a href="http://www.royaldevice.com/custom.htm#THE%20REAL%20TOTAL%20HORN">insane</a> or <a href="http://freshome.com/2008/02/07/jeremy-kipnis%E2%80%99-6000000-home-theater/">full of money</a>). I own humorous t-shirts like <a href="http://store.dieselsweeties.com/products/elitism">this one</a>. I have a turntable. I still enjoy going hunting for records on weekends. Even though the rest of the world has <a href="http://www.cnn.com/2010/SHOWBIZ/Music/07/19/cd.digital.sales/index.html">generally stopped buying CDs</a> I still do sometimes! </p>
<p>You get the picture, I enjoy and <i>value</i> music in my life! Maybe it&#8217;s because I respect musicians so much. I have never played any instruments with a measurable proficiency myself so I look up to those who are experts in their craft. Now that I think about it, really, I look up to anyone who is an expert in their craft.</p>
<p>Another reason I love music so much is that it is one of few asynchronous activities I can do. For example, I can listen to music while working, cooking, exercising, reading, etc. It&#8217;s not so easy to cook while exercising, or to read a book while riding a bike, etc! So, because music is so important to me I would like to share some of my personal favorite artists and tracks. Once in a while I will publish some of my playlists on this blog under the <a href="http://www.weicker.net/category/music">Music category</a>. Stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/music/the-importance-of-music/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Dino!</title>
		<link>http://www.weicker.net/photos/snow-dino</link>
		<comments>http://www.weicker.net/photos/snow-dino#comments</comments>
		<pubDate>Sun, 27 Feb 2011 23:26:14 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=26</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.weicker.net/wp-content/uploads/2011/02/snow-dino.jpg"><br />
<img src="http://www.weicker.net/wp-content/uploads/2011/02/snow-dino-boy.jpg"><br />
<img src="http://www.weicker.net/wp-content/uploads/2011/02/snow-dino-claw.jpg"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/photos/snow-dino/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>David Weicker in the news</title>
		<link>http://www.weicker.net/news/david-weicker-in-the-news</link>
		<comments>http://www.weicker.net/news/david-weicker-in-the-news#comments</comments>
		<pubDate>Fri, 25 Feb 2011 15:55:55 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=24</guid>
		<description><![CDATA[From a press release on the Athletics Canada website: I am pleased to be joining the (Athletics Canada) team and am truly excited about bringing my experience to the fold in continuing to assist in the development of Canadian Officials to be the best in the World.]]></description>
			<content:encoded><![CDATA[<p>From a <a href="http://www.athletics.ca/display_news.asp?newsid=1116">press release</a> on the Athletics Canada website:</p>
<blockquote><p>I am pleased to be joining the (Athletics Canada) team and am truly excited about bringing my experience to the fold in continuing to assist in the development of Canadian Officials to be the best in the World.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/news/david-weicker-in-the-news/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>What an interesting appendage!</title>
		<link>http://www.weicker.net/photos/what-an-interesting-appendage</link>
		<comments>http://www.weicker.net/photos/what-an-interesting-appendage#comments</comments>
		<pubDate>Wed, 23 Feb 2011 07:00:53 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=21</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<a href="http://www.weicker.net/wp-content/uploads/2011/02/wing-large.jpg"><img src="http://www.weicker.net/wp-content/uploads/2011/02/wing.jpg" alt="" title="butterfly-wing-macro" width="580" height="414" class="size-full wp-image-22" /></a>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/photos/what-an-interesting-appendage/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hello World</title>
		<link>http://www.weicker.net/introspective/hello-world</link>
		<comments>http://www.weicker.net/introspective/hello-world#comments</comments>
		<pubDate>Tue, 22 Feb 2011 03:23:45 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
				<category><![CDATA[Introspective]]></category>

		<guid isPermaLink="false">http://www.weicker.net/?p=6</guid>
		<description><![CDATA[I’ve decided to work on my identity. Primarily my online identity, but not just that, my scope is larger than that. You see, I came to the realization that I may have all these great ideas, fascinating interests and profound opinions floating around in my head, but how many people (even those who know me [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve decided to work on my identity. Primarily my online identity, but not just that, my scope is larger than that. You see, I came to the realization that I may have all these great ideas, fascinating interests and profound opinions floating around in my head, but how many people (even those who know me well) are aware of all these things if I don’t express them?</p>
<p>This is why I’ve started this blog. So I can say what I want to say. So I can be proud of who I am and stand up for the thoughts and opinions I have. So I can help spread interesting information and promote new ideas. So I can connect my network of projects, hobbies, interests, peers, beliefs and opinions together under a single personal website. So I can help people better understand who I am and what I stand for.</p>
<p>I hope this will benefit me by activating parts of my brain that are usually on auto pilot. It’s time for me to put more effort in. It’s time for me to make my future what I want it to be. I&#8217;d like to invite you to <a href="http://www.weicker.net/feed">subscribe to this blog</a>, follow me on <a href="http://www.twitter.com/wweicker">Twitter</a>, or connect with me on <a href="http://ca.linkedin.com/pub/warren-weicker/2a/506/6a3">LinkedIn</a>. Let’s see what happens next!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weicker.net/introspective/hello-world/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

