<?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>everything flows &#187; Luke Rodgers</title>
	<atom:link href="http://www.lukerodgers.ca/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lukerodgers.ca</link>
	<description>a celestial emporium of benevolent knowledge</description>
	<lastBuildDate>Wed, 11 Jan 2012 02:35:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Hood Internet &#8211; One Midnight With You</title>
		<link>http://www.lukerodgers.ca/2012/01/the-hood-internet-one-midnight-with-you/</link>
		<comments>http://www.lukerodgers.ca/2012/01/the-hood-internet-one-midnight-with-you/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 20:03:58 +0000</pubDate>
		<dc:creator>Luke Rodgers</dc:creator>
				<category><![CDATA[acoustical things]]></category>

		<guid isPermaLink="false">http://www.lukerodgers.ca/?p=787</guid>
		<description><![CDATA[I suppose eventually I will get tired of M83 mashups, but it hasn&#8217;t happened yet.
 The Hood Internet &#8211; One Midnight With You (Mayer Hawthorne x M83) by hoodinternet]]></description>
			<content:encoded><![CDATA[<p>I suppose eventually I will get tired of M83 mashups, but it hasn&#8217;t happened yet.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" height="81" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowscriptaccess" value="always" /><param name="src" value="https://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F32564575" /><embed type="application/x-shockwave-flash" width="100%" height="81" src="https://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F32564575" allowscriptaccess="always"></embed></object> <span><a href="http://soundcloud.com/hoodinternet/mayer-hawthorne-m83">The Hood Internet &#8211; One Midnight With You (Mayer Hawthorne x M83)</a> by <a href="http://soundcloud.com/hoodinternet">hoodinternet</a></span></p>]]></content:encoded>
			<wfw:commentRss>http://www.lukerodgers.ca/2012/01/the-hood-internet-one-midnight-with-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Euler problem 9 in one line of Haskell</title>
		<link>http://www.lukerodgers.ca/2011/12/project-euler-problem-9-in-one-very-slow-line-of-haskell/</link>
		<comments>http://www.lukerodgers.ca/2011/12/project-euler-problem-9-in-one-very-slow-line-of-haskell/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 19:02:57 +0000</pubDate>
		<dc:creator>Luke Rodgers</dc:creator>
				<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.lukerodgers.ca/?p=780</guid>
		<description><![CDATA[Problem 9 of Project Euler asks you to find the product of the sole Pythagorean triplet, the sum of whose values is 1000, where a Pythagorean triplet (familiar from elementary school math) is a set of natural numbers  a &#60; (&#8230;)</p><p><a href="http://www.lukerodgers.ca/2011/12/project-euler-problem-9-in-one-very-slow-line-of-haskell/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://projecteuler.net/problem=9">Problem 9 of Project Euler</a> asks you to find the product of the sole Pythagorean triplet, the sum of whose values is 1000, where a Pythagorean triplet (familiar from elementary school math) is a set of natural numbers  a &lt; b &lt; c where a^2 + b^2 = c^2.</p>
<p>This snippet of Haskell solves it in one line and demonstrates some of what makes Haskell an interesting language, but takes several minutes to run on my MBP:</p>
<p><code>problem9 = take 1 [a * b * c | a &lt;- [1..1000], b &lt;- [1..1000], c &lt;- [1..1000], a + b + c == 1000, a^2 + b^2 == c^2]</code></p>
<p>A version with some simple improvements runs much faster. Since a &lt; b &lt; c, we know the largest possible value for a is 332 (since 333 + 334 + 335 is 1002). And since b must be larger than a, we can narrow down its possible values as well, based on a. C does not need to be independently calculated at all, since by definition it must be a value that will satisfy the Pythagorean theorem. So:</p>
<p><code>problem9' = floor $ head [a * b * sqrt (a^2 + b^2) | a &lt;- [1..332], b &lt;- [(a+1)..(999-a)], a + b + sqrt (a^2 + b^2) == 1000]</code></p>
<p>This version runs in a couple seconds.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lukerodgers.ca/2011/12/project-euler-problem-9-in-one-very-slow-line-of-haskell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP status cats</title>
		<link>http://www.lukerodgers.ca/2011/12/http-status-cats/</link>
		<comments>http://www.lukerodgers.ca/2011/12/http-status-cats/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 17:19:35 +0000</pubDate>
		<dc:creator>Luke Rodgers</dc:creator>
				<category><![CDATA[fabulous and random things]]></category>
		<category><![CDATA[web and tech]]></category>

		<guid isPermaLink="false">http://www.lukerodgers.ca/?p=776</guid>
		<description><![CDATA[From Felix Rieseberg, HTTP Status-Katzen.
]]></description>
			<content:encoded><![CDATA[<p>From Felix Rieseberg, <a href="http://www.felixrieseberg.com/deutsch/2011/12/http-status-katzen/"><abbr title="HyperText Transfer Protocol">HTTP</abbr> Status-Katzen</a>.</p>
<p><a href="http://www.lukerodgers.ca/wp-content/uploads/2011/12/6508023065_8dae48a30b.jpg"><img class="alignnone size-full wp-image-777" title="6508023065_8dae48a30b" src="http://www.lukerodgers.ca/wp-content/uploads/2011/12/6508023065_8dae48a30b.jpg" alt="" width="500" height="400" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.lukerodgers.ca/2011/12/http-status-cats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hot buttered rye breakfast cocktail</title>
		<link>http://www.lukerodgers.ca/2011/12/hot-buttered-rye-breakfast-cocktail/</link>
		<comments>http://www.lukerodgers.ca/2011/12/hot-buttered-rye-breakfast-cocktail/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 05:05:34 +0000</pubDate>
		<dc:creator>Luke Rodgers</dc:creator>
				<category><![CDATA[food and drink]]></category>
		<category><![CDATA[things about which I am not ambivalent]]></category>

		<guid isPermaLink="false">http://www.lukerodgers.ca/?p=774</guid>
		<description><![CDATA[After much experimentation, I have come close to replicating the deliciousness that is the Hot Buttered Rye breakfast cocktail from one of my favourite brunch joints in Brooklyn, Rye.

1 tbsp butter
generous dash of ground cloves
1.5 tsp of molasses
earl grey tea (&#8230;)</p><p><a href="http://www.lukerodgers.ca/2011/12/hot-buttered-rye-breakfast-cocktail/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>After much experimentation, I have come close to replicating the deliciousness that is the Hot Buttered Rye breakfast cocktail from one of my favourite brunch joints in Brooklyn, <a href="http://www.ryerestaurant.com/">Rye</a>.</p>
<ul>
<li>1 tbsp butter</li>
<li>generous dash of ground cloves</li>
<li>1.5 tsp of molasses</li>
<li>earl grey tea packet</li>
<li>rye (any whiskey) to taste</li>
</ul>
<p>Melt the butter in your mug, add in the cloves and mix em up good. Stir in the molasses. Take a big whiff&#8211;it should smell good. If it doesn&#8217;t, you screwed something up.</p>
<p>Make the tea in this same mug, and let it sit for a little while. There should be white foamy stuff on top. If not, you screwed something up, but it&#8217;ll probably still taste decent.</p>
<p>Add in an ounce or two of the whiskey.</p>
<p>Imbibe and rejoice.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lukerodgers.ca/2011/12/hot-buttered-rye-breakfast-cocktail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Performance comparison of doubling a number in javascript</title>
		<link>http://www.lukerodgers.ca/2011/10/performance-comparison-of-doubling-a-number-in-javascript/</link>
		<comments>http://www.lukerodgers.ca/2011/10/performance-comparison-of-doubling-a-number-in-javascript/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 20:21:47 +0000</pubDate>
		<dc:creator>Luke Rodgers</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[web and tech]]></category>

		<guid isPermaLink="false">http://www.lukerodgers.ca/?p=772</guid>
		<description><![CDATA[Three ways of doubling, inspired by Will it optimize?
Opera 10.6.3 failed to run the tests.]]></description>
			<content:encoded><![CDATA[<p><a href="http://jsperf.com/three-ways-of-doubling">Three ways of doubling</a>, inspired by <a href="http://ridiculousfish.com/blog/posts/will-it-optimize.html">Will it optimize?</a></p>
<p>Opera 10.6.3 failed to run the tests.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lukerodgers.ca/2011/10/performance-comparison-of-doubling-a-number-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bug in ckeditor version 3.6.1 revision 7072</title>
		<link>http://www.lukerodgers.ca/2011/07/bug-in-ckeditor-version-3-6-1-revision-7072/</link>
		<comments>http://www.lukerodgers.ca/2011/07/bug-in-ckeditor-version-3-6-1-revision-7072/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 20:51:02 +0000</pubDate>
		<dc:creator>Luke Rodgers</dc:creator>
				<category><![CDATA[annoying things]]></category>
		<category><![CDATA[web and tech]]></category>

		<guid isPermaLink="false">http://www.lukerodgers.ca/?p=769</guid>
		<description><![CDATA[Using ckeditor and jquery adapter, and with a textarea that is initialized as a ckeditor instance more than once, once with content, once without, you may encounter a bug in Firefox, p is null.
Go to line 126, change
p.setHtml('');
to
if (p) { (&#8230;)</p><p><a href="http://www.lukerodgers.ca/2011/07/bug-in-ckeditor-version-3-6-1-revision-7072/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Using ckeditor and jquery adapter, and with a textarea that is initialized as a ckeditor instance more than once, once with content, once without, you may encounter a bug in Firefox, p is null.</p>
<p>Go to line 126, change</p>
<p><code>p.setHtml('');</code></p>
<p>to</p>
<p><code>if (p) { p.setHtml(''); }</code></p>]]></content:encoded>
			<wfw:commentRss>http://www.lukerodgers.ca/2011/07/bug-in-ckeditor-version-3-6-1-revision-7072/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mis-applications of Gaia theory</title>
		<link>http://www.lukerodgers.ca/2011/05/mis-applications-of-gaia-theory/</link>
		<comments>http://www.lukerodgers.ca/2011/05/mis-applications-of-gaia-theory/#comments</comments>
		<pubDate>Tue, 31 May 2011 22:13:53 +0000</pubDate>
		<dc:creator>Luke Rodgers</dc:creator>
				<category><![CDATA[environment]]></category>
		<category><![CDATA[philosophy]]></category>

		<guid isPermaLink="false">http://www.lukerodgers.ca/?p=767</guid>
		<description><![CDATA[I often encounter a sort of frustrating combination of Gaia theory plus bad philosophy of language, which goes something like this:
Earth is not sick, earth has been around for billions of years, and underwent many catastrophes before us, and will (&#8230;)</p><p><a href="http://www.lukerodgers.ca/2011/05/mis-applications-of-gaia-theory/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I often encounter a sort of frustrating combination of Gaia theory plus bad philosophy of language, which goes something like this:</p>
<blockquote><p>Earth is not sick, earth has been around for billions of years, and underwent many catastrophes before us, and will undergo many catastrophes afterwards. Everything will be fine. Human activity is barely a blip on the radar of the earth&#8217;s lifespan, and we can have no serious, long term detrimental impacts. It is merely another form of human hubris to think that we can have so serious an impact on the earth.</p></blockquote>
<p>I admit to not being totally clear as to what people who say things like this are saying. Given the global scale at which Gaia theories consider things (life, physical processes), do they consider earth to be special, or do they suppose that earth itself is just another tiny little, basically irrelevant microcosm within what is surely a Universe teeming with life? If this is so, then presumably we shouldn&#8217;t care if the Earth is destroyed altogether at any point, because life will go on elsewhere. Man&#8217;s time on earth is to Earth as a whole, as Gaia/Earth is to Gaia/Universe.</p>
<p>I don&#8217;t suppose the people who say that sort of thing would accept this. If it&#8217;s because they think Earth really is special, and the likelihood of life elsewhere is very low, then that&#8217;s consistent enough. If not, I&#8217;m not sure what reason they could give thinking the destruction of Earth matters.</p>
<p>I&#8217;m also not clear as to what they think would constitute a genuine threat to Earth. Presuming that the destruction of Earth is a bad thing (maybe that&#8217;s an invalid assumption), how severe would the threat posed by humans have to be in order for Gaia theorists to really take it seriously?</p>
<p>If it wiped out life for 1 million years, is that okay? What about 10 million years, or 100 millions years? It seems like my Gaia theorist (who I hope is just a strawman, but I fear is not) is committed to there being some amount of destruction that would be intolerable, and just thinks it it unlikely that we will attain that level of impact. Let&#8217;s say the sun becomes a red giant in 7.5 billion years, and the earth is wiped out in 8 billion years. And let&#8217;s say that humans succeed in destroying life for the next 7 billion years in the year 2500 (improbable but not impossible), so that Earth only has about 500 million more years where it supports life. Is that acceptable, or is that &#8220;too little life&#8221;? And how would we decide? What if life is not totally wiped out, but all we have for 6 billion years is protozoa and cockroaches, acidic oceans, sulfur skies, etc. Is that bad? Is anything bad, or is that just a category that humans impose onto the world, and whether there is life or not, and what kind of life is there, and how much life there is, doesn&#8217;t matter?</p>
<p>If we are committed to there being a specific amount of destruction that is &#8220;too much,&#8221; as it seems my Gaia theorist is, how might we decide what that level is?</p>
<p>My problem is not with the idea that the Earth is a resilient system, capable of surviving great stresses, and regenerating a system capable of supporting flourishing life.</p>
<p>My problem is the incoherence of holding both that</p>
<ol>
<li>it is possible for something to happen to the Earth that we could legitimately call &#8220;bad&#8221;, or at least an undesirable outcome, i.e. it is conceivable that under some circumstances too much life might be destroyed; and</li>
<li>the earth is currently just fine, and we shouldn&#8217;t worry about it, because we humans are totally incapable of causing any serious amount of damage</li>
</ol>
<p>I would be happy if any Gaia theorist would be able to explain my confusion.</p>
<p>I say it is a combination of Gaia theory and bad <em>philosophy of language</em> because however it is put, it seems to trade on ambiguous use of words like &#8220;fine,&#8221; &#8220;sick,&#8221; &#8220;actual damage,&#8221; that the speaker wants to be able to apply both in their normal contexts (as in, we can say someone is sick even if they aren&#8217;t going to die, or were injured even if they only have a cut and will be fine), and in a sort of vague Gaia theory sense that attempts to apply them to very different contexts (large scales of space and time) without providing any sense as to how we could know whether we were using them well or badly. My point is that people who talk like my Gaia theorist does, don&#8217;t actually know what they&#8217;re saying.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lukerodgers.ca/2011/05/mis-applications-of-gaia-theory/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Neat, plausible, and wrong</title>
		<link>http://www.lukerodgers.ca/2011/05/neat-plausible-and-wrong/</link>
		<comments>http://www.lukerodgers.ca/2011/05/neat-plausible-and-wrong/#comments</comments>
		<pubDate>Thu, 05 May 2011 04:37:33 +0000</pubDate>
		<dc:creator>Luke Rodgers</dc:creator>
				<category><![CDATA[philosophy]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.lukerodgers.ca/?p=765</guid>
		<description><![CDATA[One of my favourite quotations is from H.L. Mencken:
There is always an easy solution to every human problem&#8211;neat, plausible, and wrong.
Tom Flanagan amply demonstrates the sort of reasoning at which this barb was aimed in a recent op-ed for The Globe (&#8230;)</p><p><a href="http://www.lukerodgers.ca/2011/05/neat-plausible-and-wrong/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>One of my favourite quotations is from H.L. Mencken:</p>
<blockquote><p>There is always an easy solution to every human problem&#8211;neat, plausible, and wrong.</p></blockquote>
<p>Tom Flanagan amply demonstrates the sort of reasoning at which this barb was aimed in a recent op-ed for The Globe &amp; Mail, <a href="http://www.theglobeandmail.com/news/opinions/opinion/we-dont-need-a-centre-party-to-prevent-political-polarization/article2008720/">We don&#8217;t need a centre party to prevent polarization</a>.</p>
<p>I will let his words speak for themselves:</p>
<blockquote><p>What keeps democratic politics focused on the centre? Not the existence of a centre party but the workings of the “median voter theorem” (MVT). Think of voters as points spread out along a line – on the left, on the right, in the middle. By mathematical necessity, there is a median position, with half of voters to the left and half to the right. The median voter sits at the winning position in the democratic competition of political parties.</p>
<p>The proof is simple and elegant. If Party A moves to the left or right of the median, it allows Party B to locate itself closer to the majority of voters. The MVT predicts that Party A and Party B will tend to converge on the median because they cannot afford to let their rivals cut them off from more than half the voters.</p></blockquote>
<p>The first problem is that he invokes the MVT as having some causal role here, as though it were a force moving people around rather than just a description of the phenomena. The MVT does not &#8220;keep democratic politics focused on the centre.&#8221; Any account that purported to explain such a thing would have to be vastly more complicated than this simple theorem. Its unsuitability to the task appears clearly when Flanagan notes that a move in one direction by a party &#8220;allows&#8221; the other part to locate itself closer to the majority of votes. The problem is that this &#8220;allows&#8221; not only is not &#8220;causes,&#8221; but is a stand-in for some entirely vague understanding of political strategy, and must admit of all sort of other determining factors which we don&#8217;t really have any idea of being able to outline without enough detail that we could consider the MVT to have real explanatory force here.</p>
<p>The other problem is that it is absurdly simplistic to lay out political view on a line. I thought first year undergrads learnt that any remotely sophisticated organization of the <a href="http://en.wikipedia.org/wiki/Political_spectrum">political spectrum</a> does not draw its inspiration from a straight line. It&#8217;s surprising, and somewhat disappointing, that a political science professor such as Flanagan would give any credence to this approach.</p>
<p>This is not just the problem of relating abstract models to the real world. That is of course always a problem, as a model must abstract some things out in order to be a model and not just a copy. Flanagan correctly admits that &#8220;The MVT is a mathematical abstraction belonging to game theory, and the world is far more complicated than that,&#8221; but this makes it seem like the problem is just the traditional one of translating abstraction into real-world, concrete application. In fact the issue is that the <strong>model is just bad</strong>. And when you start with a bad abstraction, you will never get a good translation back into concrete terms.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lukerodgers.ca/2011/05/neat-plausible-and-wrong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A valiant stand on science and religion</title>
		<link>http://www.lukerodgers.ca/2011/04/a-valiant-stand-on-science-and-religion/</link>
		<comments>http://www.lukerodgers.ca/2011/04/a-valiant-stand-on-science-and-religion/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 17:42:49 +0000</pubDate>
		<dc:creator>Luke Rodgers</dc:creator>
				<category><![CDATA[politics]]></category>
		<category><![CDATA[things about which I am not ambivalent]]></category>

		<guid isPermaLink="false">http://www.lukerodgers.ca/?p=754</guid>
		<description><![CDATA[Eventually, someone, somewhere had to stand up for a politician&#8217;s right to ignorance.
I for one applaud Canada&#8217;s federal Minister of State for Science and Technology, Gary Goodyear for refusing to answer reporters questions regarding his belief in evolution. Such conversations are (&#8230;)</p><p><a href="http://www.lukerodgers.ca/2011/04/a-valiant-stand-on-science-and-religion/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Eventually, someone, somewhere had to stand up for a politician&#8217;s right to ignorance.</p>
<p>I for one applaud Canada&#8217;s federal Minister of State for Science and Technology, Gary Goodyear for <a href="http://www.theglobeandmail.com/news/national/science-minister-wont-confirm-belief-in-evolution/article320476/">refusing to answer reporters questions regarding his belief in evolution</a>. Such conversations are indeed &#8220;not worth having.&#8221; The personal beliefs of a politician are simply irrelevant to his or her ability to successfully manage public affairs.</p>
<p>We have seen this amply demonstrated already by the Canadian federal conservatives in their succession of Minsters of the Environment, none of whom know the least thing about environmental science nor care a whit for sustainability, yet who have all excelled in their ability to run a tight ship.</p>
<p>Whether Goodyear &#8220;believes in science&#8221; is a total red herring. Goodyear could be a voodoo-practicing astrology columnist who tries to convert humours into gold on the weekends for all I care. The role of government is simply the bureaucratic allotment of resources to the right people at the right time, an entirely neutral science, which depends not at all for its success upon concrete knowledge of the issues concerned.</p>
<p>I actually think Goodyear erred in referring to his chiropractic expertise as providing him with a scientific knowledge of the body. To re-iterate, the man&#8217;s understanding of science is neither here nor there. All that matters is that his reasoning is sound, and this was amply attested by his grasp of the fact that lack of evidence is not evidence of lack:</p>
<blockquote><p>&#8220;I do believe that just because you can&#8217;t see it under a microscope doesn&#8217;t mean it doesn&#8217;t exist. It could mean we don&#8217;t have a powerful enough microscope yet. So I&#8217;m not fussy on this business that we already know everything. &#8230; I think we need to recognize that we don&#8217;t know.&#8221;</p></blockquote>
<p>Goodyear is clearly referring to our current and lamentable inability to see God in a microscope. It is my private hope that some of the funds he oversees will be funneled to those humble and hard-working scientists seeking to achieve this holy grail of microscopy. I will readily admit to being encouraged by this beautiful vision of science and religion working together in the most productive of ways.</p>
<p>Only good can come of this.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lukerodgers.ca/2011/04/a-valiant-stand-on-science-and-religion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hegel gets colloquial</title>
		<link>http://www.lukerodgers.ca/2011/03/hegel-gets-colloquial/</link>
		<comments>http://www.lukerodgers.ca/2011/03/hegel-gets-colloquial/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 15:11:44 +0000</pubDate>
		<dc:creator>Luke Rodgers</dc:creator>
				<category><![CDATA[philosophy]]></category>
		<category><![CDATA[unpredictable things]]></category>
		<category><![CDATA[hegel]]></category>

		<guid isPermaLink="false">http://www.lukerodgers.ca/?p=751</guid>
		<description><![CDATA[From page 1174-5, Volume 2 of the Aesthetics, translated by T.M. Knox.
&#8220;If a book does not please me, I can lay it aside, just as I can pass by pictures or statues that are not to my taste, and in (&#8230;)</p><p><a href="http://www.lukerodgers.ca/2011/03/hegel-gets-colloquial/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>From page 1174-5, Volume 2 of the <cite>Aesthetics</cite>, translated by T.M. Knox.</p>
<blockquote><p>&#8220;If a book does not please me, I can lay it aside, just as I can pass by pictures or statues that are not to my taste, and in that case the author always has available more or less the excuse that his book was not written for every Tom, Dick, or Harry.&#8221;</p></blockquote>]]></content:encoded>
			<wfw:commentRss>http://www.lukerodgers.ca/2011/03/hegel-gets-colloquial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

