<?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>Yesterday's Thoughts &#187; Politics</title>
	<atom:link href="http://www.warmroom.com/yesterdays/category/politics/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.warmroom.com</link>
	<description>Reflections on family life, software, politics and endurance sports.</description>
	<lastBuildDate>Sat, 10 Sep 2011 20:46:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Four Letter Life Story</title>
		<link>http://www.warmroom.com/yesterdays/2011/09/10/four-letter-life-story/</link>
		<comments>http://www.warmroom.com/yesterdays/2011/09/10/four-letter-life-story/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 20:46:58 +0000</pubDate>
		<dc:creator>Ray Baxter</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.warmroom.com/?p=341</guid>
		<description><![CDATA[According to this test my Meyers-Briggs Personality Type is Introverted, Intuitive, Feeling, Judging (INFJ: 33, 12, 50, 33) This page gives my possible career paths as: Clergy / Religious Work Teachers Medical Doctors / Dentists Alternative Health Care Practitioners, i.e. Chiropractor, Reflexologist Psychologists Psychiatrists Counselors and Social Workers Musicians and Artists Photographers Child Care / [...]]]></description>
			<content:encoded><![CDATA[<p>According to this <a href="http://www.humanmetrics.com/cgi-win/JTypes1.htm">test</a> my Meyers-Briggs Personality Type is Introverted, Intuitive, Feeling, Judging (INFJ: 33, 12, 50, 33)</p>
<p>This <a href="http://www.personalitypage.com/html/INFJ_car.html">page</a> gives my possible career paths as:</p>
<blockquote><p>
Clergy / Religious Work<br />
Teachers<br />
Medical Doctors / Dentists<br />
Alternative Health Care Practitioners, i.e. Chiropractor, Reflexologist<br />
Psychologists<br />
Psychiatrists<br />
Counselors and Social Workers<br />
Musicians and Artists<br />
Photographers<br />
Child Care / Early Childhood Development
</p></blockquote>
<p>I&#8217;m really enjoying teaching yoga. It&#8217;s deeply satisfying in a way that neither science nor programming are. I wonder what my 18-year-old self&#8217;s type was? </p>
]]></content:encoded>
			<wfw:commentRss>http://www.warmroom.com/yesterdays/2011/09/10/four-letter-life-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails 3.1 Nested Associations</title>
		<link>http://www.warmroom.com/yesterdays/2011/08/30/rails-3-1-nested-associations/</link>
		<comments>http://www.warmroom.com/yesterdays/2011/08/30/rails-3-1-nested-associations/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 06:26:05 +0000</pubDate>
		<dc:creator>Ray Baxter</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.warmroom.com/?p=336</guid>
		<description><![CDATA[Some cool changes here: http://guides.rubyonrails.org/3_1_release_notes.html Look at this one! &#8220;Associations with a :through option can now use any association as the through or source association, including other associations which have a :through option and has_and_belongs_to_many associations.&#8221; From the API Documentation (search for &#8220;Nested Associations&#8221;) class Author &#60; ActiveRecord::Base has_many :posts has_many :comments, :through =&#62; :posts [...]]]></description>
			<content:encoded><![CDATA[<p>Some cool changes here: http://guides.rubyonrails.org/3_1_release_notes.html</p>
<p>Look at this one!</p>
<p>&#8220;Associations with a :through option can now use any association as the through or source association, including other associations which have a :through option and has_and_belongs_to_many associations.&#8221;</p>
<p>From the <a href="http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html" title="API Documentation">API Documentation</a> (search for &#8220;Nested Associations&#8221;)</p>
<pre><code>
class Author &lt; ActiveRecord::Base
  has_many :posts
  has_many :comments, :through =&gt; :posts
  has_many :commenters, :through =&gt; :comments
end

class Post &lt; ActiveRecord::Base
  has_many :comments
end

class Comment &lt; ActiveRecord::Base
  belongs_to :commenter
end

@author = Author.first
@author.commenters # =&gt; People who commented on posts written by the author
</code></pre>
<p>or equivalently</p>
<pre>
<code>
class Author &lt; ActiveRecord::Base
  has_many :posts
  has_many :commenters, :through =&gt; :posts
end

class Post &lt; ActiveRecord::Base
  has_many :comments
  has_many :commenters, :through =&gt; :comments
end

class Comment &lt; ActiveRecord::Base
  belongs_to :commenter
end
</code></pre>
<p>The associations are read only: </p>
<blockquote><p>When using nested association, you will not be able to modify the association because there is not enough information to know what modification to make. For example, if you tried to add a Commenter in the example above, there would be no way to tell how to set up the intermediate Post and Comment objects.</p></blockquote>
<p>so you can&#8217;t do <code>@author.commenters &lt;&lt; Comment.new</code>, but still this is a nice savings for some deeply nested associations that I&#8217;ve been dealing with lately.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.warmroom.com/yesterdays/2011/08/30/rails-3-1-nested-associations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Disgrace of Everyday Life</title>
		<link>http://www.warmroom.com/yesterdays/2011/05/19/the-disgrace-of-everyday-life/</link>
		<comments>http://www.warmroom.com/yesterdays/2011/05/19/the-disgrace-of-everyday-life/#comments</comments>
		<pubDate>Fri, 20 May 2011 04:06:48 +0000</pubDate>
		<dc:creator>Ray Baxter</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.warmroom.com/?p=326</guid>
		<description><![CDATA[An autobiography is only to be trusted when it reveals something disgraceful. A man who gives a good account of himself is probably lying, since any life when viewed from the inside is simply a series of defeats. George Orwell, Benefit of Clergy: Some Notes on Salvador Dali]]></description>
			<content:encoded><![CDATA[<blockquote><p>An autobiography is only to be trusted when it reveals something disgraceful. A man who gives a good account of himself is probably lying, since any life when viewed from the inside is simply a series of defeats.</p></blockquote>
<p>George Orwell, <em>Benefit of Clergy: Some Notes on Salvador Dali</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.warmroom.com/yesterdays/2011/05/19/the-disgrace-of-everyday-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Bush, A Different War, The Same Lies</title>
		<link>http://www.warmroom.com/yesterdays/2011/02/05/another-bush-a-different-war-the-same-lies/</link>
		<comments>http://www.warmroom.com/yesterdays/2011/02/05/another-bush-a-different-war-the-same-lies/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 21:12:38 +0000</pubDate>
		<dc:creator>Ray Baxter</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.warmroom.com/?p=315</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/OfF7FUlhg4o?rel=0" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.warmroom.com/yesterdays/2011/02/05/another-bush-a-different-war-the-same-lies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What We Need to Know</title>
		<link>http://www.warmroom.com/yesterdays/2011/02/03/what-we-need-to-know/</link>
		<comments>http://www.warmroom.com/yesterdays/2011/02/03/what-we-need-to-know/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 08:25:00 +0000</pubDate>
		<dc:creator>Ray Baxter</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.warmroom.com/?p=307</guid>
		<description><![CDATA[Ken Robinson on Changing Education Paradigms]]></description>
			<content:encoded><![CDATA[<p>Ken Robinson on Changing Education Paradigms</p>
<p><span style='text-align:center; display: block;'><object width='614' height='376'><param name='movie' value='http://www.youtube.com/v/zDZFcDGpL4U?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;hd=1' /><param name='allowfullscreen' value='true' /><param name='wmode' value='opaque' /><embed src='http://www.youtube.com/v/zDZFcDGpL4U?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;hd=1' type='application/x-shockwave-flash' allowfullscreen='true' width='614' height='376' wmode='opaque'></embed></object></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.warmroom.com/yesterdays/2011/02/03/what-we-need-to-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Power of Vulnerability</title>
		<link>http://www.warmroom.com/yesterdays/2011/02/02/power-of-vulnerability/</link>
		<comments>http://www.warmroom.com/yesterdays/2011/02/02/power-of-vulnerability/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 00:01:19 +0000</pubDate>
		<dc:creator>Ray Baxter</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.warmroom.com/?p=302</guid>
		<description><![CDATA[Brene Brown on the Power of Vulnerability]]></description>
			<content:encoded><![CDATA[<p>Brene Brown on the Power of Vulnerability </p>
<p><object width="446" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always"/><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/BreneBrown_2010X-medium.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/BreneBrown-2010X.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=1042&#038;introDuration=15330&#038;adDuration=4000&#038;postAdDuration=830&#038;adKeys=talk=brene_brown_on_vulnerability;year=2010;theme=a_taste_of_tedx;theme=new_on_ted_com;theme=what_makes_us_happy;theme=how_the_mind_works;event=TEDxHouston;&#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" allowScriptAccess="always" flashvars="vu=http://video.ted.com/talks/dynamic/BreneBrown_2010X-medium.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/BreneBrown-2010X.embed_thumbnail.jpg&#038;vw=432&#038;vh=240&#038;ap=0&#038;ti=1042&#038;introDuration=15330&#038;adDuration=4000&#038;postAdDuration=830&#038;adKeys=talk=brene_brown_on_vulnerability;year=2010;theme=a_taste_of_tedx;theme=new_on_ted_com;theme=what_makes_us_happy;theme=how_the_mind_works;event=TEDxHouston;"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.warmroom.com/yesterdays/2011/02/02/power-of-vulnerability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool. Check. Scary. Check.</title>
		<link>http://www.warmroom.com/yesterdays/2010/05/25/cool-check-scary-check/</link>
		<comments>http://www.warmroom.com/yesterdays/2010/05/25/cool-check-scary-check/#comments</comments>
		<pubDate>Wed, 26 May 2010 05:53:10 +0000</pubDate>
		<dc:creator>Ray Baxter</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.warmroom.com/?p=291</guid>
		<description><![CDATA[This robot from USC moves amazingly. That it is funded by DARPA makes me think twice about what it might be used for.]]></description>
			<content:encoded><![CDATA[<p>This robot from USC moves amazingly. That it is funded by DARPA makes me think twice about what it might be used for.</p>
<p><object width="853" height="505"><param name="movie" value="http://www.youtube.com/v/nUQsRPJ1dYw&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nUQsRPJ1dYw&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="853" height="505"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.warmroom.com/yesterdays/2010/05/25/cool-check-scary-check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Words to Live By</title>
		<link>http://www.warmroom.com/yesterdays/2010/03/31/words-to-live-by/</link>
		<comments>http://www.warmroom.com/yesterdays/2010/03/31/words-to-live-by/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 22:43:00 +0000</pubDate>
		<dc:creator>Ray Baxter</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.warmroom.com/yesterdays/2010/03/31/words-to-live-by/</guid>
		<description><![CDATA[Stumbling Through Mediocrity]]></description>
			<content:encoded><![CDATA[<p><a href="http://jamesshore.com/Blog/Stumbling-Through-Mediocrity.html">Stumbling Through Mediocrity</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.warmroom.com/yesterdays/2010/03/31/words-to-live-by/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Standardized Tests and National Security</title>
		<link>http://www.warmroom.com/yesterdays/2009/05/25/standardized-tests-and-national-security/</link>
		<comments>http://www.warmroom.com/yesterdays/2009/05/25/standardized-tests-and-national-security/#comments</comments>
		<pubDate>Tue, 26 May 2009 05:02:01 +0000</pubDate>
		<dc:creator>Ray Baxter</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.warmroom.com/?p=275</guid>
		<description><![CDATA[One of James Fallows&#8217; readers comments on teaching to students in China and their obsession with the standardized test (gaokao) that will determine their future. The only thing that matters is the test, and doing well on the test is a matter of memorizing a number of decontextualized facts. The worst affect by far of [...]]]></description>
			<content:encoded><![CDATA[<p>One of James Fallows&#8217; readers <a href='http://jamesfallows.theatlantic.com/archives/2009/05/back_to_the_gaokao.php'>comments</a> on teaching to students in China and their obsession with the standardized test (gaokao) that will determine their future.</p>
<blockquote><p>The only thing that matters is the test, and doing well on the test is a matter of memorizing a number of decontextualized facts. The worst affect by far of the exam system is that it creates a distorted and poverty stricken idea of what education is and how to engage in it. These students hunger for real engagement, real knowledge, real education, but they don&#8217;t know what it is or how to look for it.</p>
<p>The thing that bothers me more than anything else, though, is that the educational system in the U.S. is being pushed down the same road. The increasing emphasis on standardized testing, something which teachers almost universally deplore, is leading to the Sinification of American education. If things continue in the direction they are going, the U.S. will soon have a system that is just as rigid and anti-creative as China. From having taught in both places, I think the U.S. is already well on its way.</p>
</blockquote>
<p>From that point, my mind can go a hundred directions. </p>
<p>For some reason, today, it went to national security. Our educational system has already failed us, with catastrophic consequences for national security. Somehow we were presented with a pastiche of fact about Saddam Hussein, weapons of mass destruction, and threats to our national security and neither average Americans, nor elite-educated Americans, were able to shift fact from fiction in any significant numbers. </p>
<p>How many facts does one have to memorize in order to develop the discernment to note that the &#8220;facts&#8221; one is being presented, have no basis in fact?  Or perhaps more correctly, how many &#8220;facts&#8221; does one have to memorize in order to lose the discernment that those facts have no basis in fact?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.warmroom.com/yesterdays/2009/05/25/standardized-tests-and-national-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Company They Keep</title>
		<link>http://www.warmroom.com/yesterdays/2009/01/22/the-company-they-keep/</link>
		<comments>http://www.warmroom.com/yesterdays/2009/01/22/the-company-they-keep/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 06:17:22 +0000</pubDate>
		<dc:creator>Ray Baxter</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.warmroom.com/?p=253</guid>
		<description><![CDATA[I agree with Dick Cheney! Asked for his reaction to Bush&#8217;s decision [not to pardon Scooter Libby] Cheney said: &#8220;Scooter Libby is one of the most capable and honorable men I&#8217;ve ever known. He&#8217;s been an outstanding public servant throughout his career. He was the victim of a serious miscarriage of justice, and I strongly [...]]]></description>
			<content:encoded><![CDATA[<p>I agree with Dick Cheney!</p>
<blockquote><p>Asked for his reaction to Bush&#8217;s decision [not to pardon Scooter Libby] Cheney said: &#8220;Scooter Libby is one of the most capable and honorable men I&#8217;ve ever known. He&#8217;s been an outstanding public servant throughout his career. He was the victim of a serious miscarriage of justice, and I strongly believe that he deserved a presidential pardon. Obviously, I disagree with President Bush&#8217;s decision.&#8221;</p></blockquote>
<p>via <a href='http://www.weeklystandard.com/Content/Public/Articles/000/000/016/044cbxcp.asp'>Cheney Speaks Out on Libby</a>.</p>
<p>Let&#8217;s see, who has Dick Cheney known in his life? Gerald Ford, George W. Bush, George H. W. Bush, Donald Rumsfeld, Paul Wolfowitz, David Addington, Lynne Cheney, The American Enterprise Institute, Halliburton, William Kristol, the Project for the New American Century. </p>
<p>Yeah, I guess compared to that lot, being a convicted of obstruction of justice,  perjury and making false statements is &#8220;capable and honorable&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.warmroom.com/yesterdays/2009/01/22/the-company-they-keep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

