<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Programming Blog</title>
	<atom:link href="http://progblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://progblog.wordpress.com</link>
	<description>Thoughts, tips and rants from a professional programmer</description>
	<lastBuildDate>Wed, 04 Feb 2009 17:21:19 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='progblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/d13df29d8ae5d08b0dc2c03376fdcbe4?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Programming Blog</title>
		<link>http://progblog.wordpress.com</link>
	</image>
			<item>
		<title></title>
		<link>http://progblog.wordpress.com/2009/02/04/64/</link>
		<comments>http://progblog.wordpress.com/2009/02/04/64/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 17:21:19 +0000</pubDate>
		<dc:creator>progblog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://progblog.wordpress.com/2009/02/04/64/</guid>
		<description><![CDATA[Reflection snippet:
Type t = Type.GetType(kid.Attributes["type"].Value);
...
object o = t.Assembly.CreateInstance(t.FullName);

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=64&subd=progblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Reflection snippet:</p>
<p><code>Type t = Type.GetType(kid.Attributes["type"].Value);<br />
...<br />
object o = t.Assembly.CreateInstance(t.FullName);<br />
</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/progblog.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/progblog.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/progblog.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/progblog.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/progblog.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/progblog.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/progblog.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/progblog.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/progblog.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/progblog.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=64&subd=progblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://progblog.wordpress.com/2009/02/04/64/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8821e6d4e29ef75067b2fe66bcab4d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">progblog</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://progblog.wordpress.com/2009/01/08/60/</link>
		<comments>http://progblog.wordpress.com/2009/01/08/60/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 18:09:27 +0000</pubDate>
		<dc:creator>progblog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://progblog.wordpress.com/?p=60</guid>
		<description><![CDATA[How to convert a string in ISO date format to a C# DateTime:
DateTime dt = DateTime.ParseExact(dateString, &#8220;yyyyMMdd&#8221;, CultureInfo.InvariantCulture);
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=60&subd=progblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>How to convert a string in ISO date format to a C# DateTime:</p>
<p><span style="font-size:small;color:#2b91af;">DateTime</span><span style="font-size:small;"> </span><span style="font-size:small;color:#010001;">dt</span><span style="font-size:small;"> = </span><span style="font-size:small;color:#2b91af;">DateTime</span><span style="font-size:small;">.</span><span style="font-size:small;color:#010001;">ParseExact</span><span style="font-size:small;">(</span><span style="font-size:small;color:#010001;">dateString</span><span style="font-size:small;">, </span><span style="font-size:small;color:#a31515;">&#8220;yyyyMMdd&#8221;</span><span style="font-size:small;">, </span><span style="font-size:small;color:#2b91af;">CultureInfo</span><span style="font-size:small;">.</span><span style="font-size:small;color:#010001;">InvariantCulture</span><span style="font-size:small;">);</span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/progblog.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/progblog.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/progblog.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/progblog.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/progblog.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/progblog.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/progblog.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/progblog.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/progblog.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/progblog.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=60&subd=progblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://progblog.wordpress.com/2009/01/08/60/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8821e6d4e29ef75067b2fe66bcab4d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">progblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Convert an integer in ISO format to a C# date</title>
		<link>http://progblog.wordpress.com/2008/11/19/convert-an-integer-in-iso-format-to-a-c-date/</link>
		<comments>http://progblog.wordpress.com/2008/11/19/convert-an-integer-in-iso-format-to-a-c-date/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 12:02:44 +0000</pubDate>
		<dc:creator>progblog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://progblog.wordpress.com/?p=58</guid>
		<description><![CDATA[Yet another DateTime conversion routine, this time using DateTime.ParseExact()
int integerDate = "20081113";
DateTime date = DateTime.ParseExact(integerDate.ToString(), "yyyyMMdd", System.Globalization.CultureInfo.CurrentCulture);
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=58&subd=progblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yet another DateTime conversion routine, this time using DateTime.ParseExact()</p>
<p><code>int integerDate = "20081113";</p>
<p>DateTime date = DateTime.ParseExact(integerDate.ToString(), "yyyyMMdd", System.Globalization.CultureInfo.CurrentCulture);</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/progblog.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/progblog.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/progblog.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/progblog.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/progblog.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/progblog.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/progblog.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/progblog.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/progblog.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/progblog.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=58&subd=progblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://progblog.wordpress.com/2008/11/19/convert-an-integer-in-iso-format-to-a-c-date/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8821e6d4e29ef75067b2fe66bcab4d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">progblog</media:title>
		</media:content>
	</item>
		<item>
		<title>A lovely piece of code for dealing with parameters in C#</title>
		<link>http://progblog.wordpress.com/2008/10/07/a-lovely-piece-of-code-for-dealing-with-parameters-in-c/</link>
		<comments>http://progblog.wordpress.com/2008/10/07/a-lovely-piece-of-code-for-dealing-with-parameters-in-c/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 08:33:42 +0000</pubDate>
		<dc:creator>progblog</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[c# parameters types generics]]></category>

		<guid isPermaLink="false">http://progblog.wordpress.com/?p=51</guid>
		<description><![CDATA[I can&#8217;t claim credit for this, as I saw it yesterday whilst receiving a demo of a (very good) messaging architecture written by another developer.  It&#8217;s only a little scrap of code, but that makes it even better: its beauty is its simplicity.  So, to get parameters out of some parameter holding class, but to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=51&subd=progblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I can&#8217;t claim credit for this, as I saw it yesterday whilst receiving a demo of a (very good) messaging architecture written by another developer.  It&#8217;s only a little scrap of code, but that makes it even better: its beauty is its simplicity.  So, to get parameters out of some parameter holding class, but to not have to (a) make everything the same type or; (b) have N methods for retrieving N types, you can do this:</p>
<pre>    public class Params
    {
        Dictionary _values = new Dictionary();

        public Params()
        {
        }

        public T GetParam(string name, T defaultValue)
        {
            if (_values.ContainsKey(name) == false)
            {
                return defaultValue;
            }
            return (T)_values[name];
        }
     }</pre>
<p>Which you then call like this:</p>
<pre>            Params p = new Params();
            int key1 = p.GetParam("key1", 39);
            string key2 = p.GetParam("key2", "defaultValue");
            double key3 = p.GetParam("key3", 44.2);</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/progblog.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/progblog.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/progblog.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/progblog.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/progblog.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/progblog.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/progblog.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/progblog.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/progblog.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/progblog.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=51&subd=progblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://progblog.wordpress.com/2008/10/07/a-lovely-piece-of-code-for-dealing-with-parameters-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8821e6d4e29ef75067b2fe66bcab4d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">progblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Theory versus Experiment</title>
		<link>http://progblog.wordpress.com/2008/10/03/theory-versus-experiment/</link>
		<comments>http://progblog.wordpress.com/2008/10/03/theory-versus-experiment/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 22:36:31 +0000</pubDate>
		<dc:creator>progblog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[programming theory experiment mathematician]]></category>

		<guid isPermaLink="false">http://progblog.wordpress.com/?p=49</guid>
		<description><![CDATA[As a former physicist, and an experimental/numerical/computational physicist at that, I am often in conflict with the &#8220;Theorists&#8221; be they Theoretical Physicists or Mathematicians.  In a programming context, I find that Theorists want to map out every last detail and believe that they can explain and account for every possible situation on paper.  This isn&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=49&subd=progblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>As a former physicist, and an experimental/numerical/computational physicist at that, I am often in conflict with the &#8220;Theorists&#8221; be they Theoretical Physicists or Mathematicians.  In a programming context, I find that Theorists want to map out every last detail and believe that they can explain and account for every possible situation on paper.  This isn&#8217;t so surprising when you consider that&#8217;s what they do/did as TPs or Ms.  Yet in my opinion the best thing you can learn, whilst moving from junior to senior programmer, is how much you don&#8217;t know about what might happen.  This led me to think up a pithy phrase to use against a particularly wiley Ph.D. mathematician/&#8221;programmer&#8221; (I use the latter term loosely&#8230;):</p>
<p><em>&#8220;Theory without Experiment is just a set of internally consistent reasoning&#8221;</em></p>
<p>or to put it another way</p>
<p><em>&#8220;Theory is Ego, Experiment is Humility&#8221;.</em></p>
<p><em></em></p>
<p>EDIT:  And this pithy re-write that I&#8217;ve just found here (<a href="http://stackoverflow.com/questions/58640/great-programming-quotes">http://stackoverflow.com/questions/58640/great-programming-quotes</a>):</p>
<p><em>The difference between theory and practice is smaller in theory than in practice. </em></p>
<p> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/progblog.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/progblog.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/progblog.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/progblog.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/progblog.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/progblog.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/progblog.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/progblog.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/progblog.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/progblog.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=49&subd=progblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://progblog.wordpress.com/2008/10/03/theory-versus-experiment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8821e6d4e29ef75067b2fe66bcab4d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">progblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Programming Fonts</title>
		<link>http://progblog.wordpress.com/2008/10/03/programming-fonts/</link>
		<comments>http://progblog.wordpress.com/2008/10/03/programming-fonts/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 14:11:46 +0000</pubDate>
		<dc:creator>progblog</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[fonts]]></category>

		<guid isPermaLink="false">http://progblog.wordpress.com/?p=46</guid>
		<description><![CDATA[Is Courier New not good enough for you?  Give your IDE a new lease of life with one of these programming-specific fonts.  I&#8217;m currently testing Proggy Tiny, in 11 point size. 
http://keithdevens.com/wiki/ProgrammerFonts
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=46&subd=progblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Is Courier New not good enough for you?  Give your IDE a new lease of life with one of these programming-specific fonts.  I&#8217;m currently testing Proggy Tiny, in 11 point size. </p>
<p><a href="http://keithdevens.com/wiki/ProgrammerFonts">http://keithdevens.com/wiki/ProgrammerFonts</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/progblog.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/progblog.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/progblog.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/progblog.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/progblog.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/progblog.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/progblog.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/progblog.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/progblog.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/progblog.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=46&subd=progblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://progblog.wordpress.com/2008/10/03/programming-fonts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8821e6d4e29ef75067b2fe66bcab4d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">progblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Joining a table on itself</title>
		<link>http://progblog.wordpress.com/2008/10/03/joining-a-table-on-itself/</link>
		<comments>http://progblog.wordpress.com/2008/10/03/joining-a-table-on-itself/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 08:18:33 +0000</pubDate>
		<dc:creator>progblog</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://progblog.wordpress.com/?p=39</guid>
		<description><![CDATA[select  RTRIM(LTRIM(rl.ric)) 'Identifier',
        case
            when (rl.code like '%46%' ) THEN 'True'
            when (rl.code like '%47%' ) THEN 'True'
            ELSE 'False' END D1,
        case
            when (rl.hard_restriction = 1 AND rl.hard_to_borrow=0) THEN 'Restricted'
            else '' end 'EventType'
from restricted_list rl_1
    inner join (select id, max(entry_date) as MaxEntryDate
                from restricted_list rl_2
                group by ric) rl_2
        on  rl_1.ric = rl_2.ric
        [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=39&subd=progblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><pre>select  RTRIM(LTRIM(rl.ric)) 'Identifier',
        case
            when (rl.code like '%46%' ) THEN 'True'
            when (rl.code like '%47%' ) THEN 'True'
            ELSE 'False' END D1,
        case
            when (rl.hard_restriction = 1 AND rl.hard_to_borrow=0) THEN 'Restricted'
            else '' end 'EventType'
from restricted_list rl_1
    inner join (select id, max(entry_date) as MaxEntryDate
                from restricted_list rl_2
                group by ric) rl_2
        on  rl_1.ric = rl_2.ric
        and rl_1.entry_date = rl_2.MaxEntryDate
order by rl_1.ric</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/progblog.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/progblog.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/progblog.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/progblog.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/progblog.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/progblog.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/progblog.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/progblog.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/progblog.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/progblog.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=39&subd=progblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://progblog.wordpress.com/2008/10/03/joining-a-table-on-itself/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8821e6d4e29ef75067b2fe66bcab4d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">progblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Interviewing</title>
		<link>http://progblog.wordpress.com/2008/09/11/interviewing/</link>
		<comments>http://progblog.wordpress.com/2008/09/11/interviewing/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 12:40:34 +0000</pubDate>
		<dc:creator>progblog</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://progblog.wordpress.com/?p=36</guid>
		<description><![CDATA[I&#8217;ve been heavily involved in interviewing recently, both as a candidate and offering advice from the &#8220;other side of the fence&#8221;.  I&#8217;ve been spending a lot of time working out in my head exactly what the best way of interviewing is.  Below is a summary of what I&#8217;ve come up with so far, with each [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=36&subd=progblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve been heavily involved in interviewing recently, both as a candidate and offering advice from the &#8220;other side of the fence&#8221;.  I&#8217;ve been spending a lot of time working out in my head exactly what the best way of interviewing is.  Below is a summary of what I&#8217;ve come up with so far, with each point to be extended in later posts.</p>
<ul>
<li>Decide exactly what you&#8217;re hiring for, the role and the tasks to be performed by that role. </li>
<li>Test for aptitude, not specific knowledge.</li>
<li>Questions need to be fair: if you&#8217;re going to ask for very answers to very specific things, then consider sending the candidate an outline/&#8221;reading list&#8221; before the interview. </li>
<li>Remember that a good team has a mix of people, skills and backgrounds.</li>
<li>Expect no more or less of your candidate than you expect of yourself &#8211; that includes turning up on time, a certain level of dress, the ability to answer questions, particular technical knowledge, etc., etc.</li>
</ul>
<p>More to come.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/progblog.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/progblog.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/progblog.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/progblog.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/progblog.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/progblog.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/progblog.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/progblog.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/progblog.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/progblog.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/progblog.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/progblog.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=36&subd=progblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://progblog.wordpress.com/2008/09/11/interviewing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8821e6d4e29ef75067b2fe66bcab4d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">progblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating a 2d Array in R</title>
		<link>http://progblog.wordpress.com/2008/09/03/creating-a-2d-array-in-r/</link>
		<comments>http://progblog.wordpress.com/2008/09/03/creating-a-2d-array-in-r/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 16:07:10 +0000</pubDate>
		<dc:creator>progblog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[R]]></category>

		<guid isPermaLink="false">http://progblog.wordpress.com/?p=34</guid>
		<description><![CDATA[Simple, first of all create a variable that contains (n*m) elements
&#62;  a = rnorm(100*100, mean=100,sd=1)
then dimension it
&#62; dim(a) = c(1000,10)
where the first parameter is the number of rows, and the second the number of columns.  Easy.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=34&subd=progblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Simple, first of all create a variable that contains (n*m) elements</p>
<p>&gt;  a = rnorm(100*100, mean=100,sd=1)</p>
<p>then dimension it</p>
<p>&gt; dim(a) = c(1000,10)</p>
<p>where the first parameter is the number of rows, and the second the number of columns.  Easy.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/progblog.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/progblog.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/progblog.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/progblog.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/progblog.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/progblog.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/progblog.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/progblog.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/progblog.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/progblog.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/progblog.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/progblog.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=34&subd=progblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://progblog.wordpress.com/2008/09/03/creating-a-2d-array-in-r/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8821e6d4e29ef75067b2fe66bcab4d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">progblog</media:title>
		</media:content>
	</item>
		<item>
		<title>Useful &#8220;R&#8221; Snippet</title>
		<link>http://progblog.wordpress.com/2008/09/02/useful-r-snippet/</link>
		<comments>http://progblog.wordpress.com/2008/09/02/useful-r-snippet/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 20:23:04 +0000</pubDate>
		<dc:creator>progblog</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[R]]></category>

		<guid isPermaLink="false">http://progblog.wordpress.com/?p=32</guid>
		<description><![CDATA[I am using R quite a bit at the moment and found a useful snippet of code to generate random &#8220;coin tosses&#8221;:
x &#60;- sample(c(-1,1), 1000, TRUE)
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=32&subd=progblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I am using R quite a bit at the moment and found a useful snippet of code to generate random &#8220;coin tosses&#8221;:</p>
<pre>x &lt;- sample(c(-1,1), 1000, TRUE)</pre>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/progblog.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/progblog.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/progblog.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/progblog.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/progblog.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/progblog.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/progblog.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/progblog.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/progblog.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/progblog.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/progblog.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/progblog.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=progblog.wordpress.com&blog=528558&post=32&subd=progblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://progblog.wordpress.com/2008/09/02/useful-r-snippet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8821e6d4e29ef75067b2fe66bcab4d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">progblog</media:title>
		</media:content>
	</item>
	</channel>
</rss>