<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for In a programmer's mind</title>
	<atom:link href="http://www.remyroy.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.remyroy.com</link>
	<description>software development, technology, science and philosophy by Rémy Roy</description>
	<pubDate>Wed, 10 Mar 2010 19:31:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>Comment on The doomed relationship of MVC and server web development by LloydAllyson33</title>
		<link>http://www.remyroy.com/2009/10/25/the-doomed-relationship-of-mvc-and-server-web-development/#comment-23906</link>
		<dc:creator>LloydAllyson33</dc:creator>
		<pubDate>Fri, 05 Mar 2010 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.remyroy.com/?p=556#comment-23906</guid>
		<description>I strictly recommend not to wait until you get enough amount of money to buy different goods! You can just take the &lt;a href="http://lowest-rate-loans.com/topics/personal-loans" rel="nofollow"&gt;personal loans&lt;/a&gt; or just credit loan and feel fine</description>
		<content:encoded><![CDATA[<p>I strictly recommend not to wait until you get enough amount of money to buy different goods! You can just take the <a href="http://lowest-rate-loans.com/topics/personal-loans" rel="nofollow">personal loans</a> or just credit loan and feel fine</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Blog spam protection by Fritz</title>
		<link>http://www.remyroy.com/2008/01/18/blog-spam-protection/#comment-19870</link>
		<dc:creator>Fritz</dc:creator>
		<pubDate>Wed, 09 Sep 2009 16:46:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.remyroy.com/2008/01/18/blog-spam-protection/#comment-19870</guid>
		<description>Hi guys. Beware the pull on your heartstrings -- it's often the pursestrings that are actually being reached for.
I am from Guinea and know bad English, give true I wrote the following sentence: "It was partially, you pour, it's actually several."

Thanks :-). Fritz.</description>
		<content:encoded><![CDATA[<p>Hi guys. Beware the pull on your heartstrings &#8212; it&#8217;s often the pursestrings that are actually being reached for.<br />
I am from Guinea and know bad English, give true I wrote the following sentence: &#8220;It was partially, you pour, it&#8217;s actually several.&#8221;</p>
<p>Thanks :-). Fritz.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Computers are getting better at character recognition for bad purposes by Rémy Roy</title>
		<link>http://www.remyroy.com/2008/02/25/computers-are-getting-better-at-character-recognition-for-bad-purposes/#comment-11367</link>
		<dc:creator>Rémy Roy</dc:creator>
		<pubDate>Mon, 30 Mar 2009 06:04:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.remyroy.com/2008/02/25/computers-are-getting-better-at-character-recognition-for-bad-purposes/#comment-11367</guid>
		<description>Hello Sparky,

I am not a Yahoo mail user. So I cannot verify this. However, the intent of using a CAPTCHA, some difficult to read character recognition test, is to differentiate you from potential automated software. Since it is relatively hard for automated programs to figure out those characters, my guess is that Yahoo feel like it will reduce spam sent from their users using this technique.</description>
		<content:encoded><![CDATA[<p>Hello Sparky,</p>
<p>I am not a Yahoo mail user. So I cannot verify this. However, the intent of using a CAPTCHA, some difficult to read character recognition test, is to differentiate you from potential automated software. Since it is relatively hard for automated programs to figure out those characters, my guess is that Yahoo feel like it will reduce spam sent from their users using this technique.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Computers are getting better at character recognition for bad purposes by Sparky</title>
		<link>http://www.remyroy.com/2008/02/25/computers-are-getting-better-at-character-recognition-for-bad-purposes/#comment-11356</link>
		<dc:creator>Sparky</dc:creator>
		<pubDate>Sun, 29 Mar 2009 16:43:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.remyroy.com/2008/02/25/computers-are-getting-better-at-character-recognition-for-bad-purposes/#comment-11356</guid>
		<description>Why should I have to cope with difficult to read character recognition tests to send a Yahoo email when I don't for gmail or aol?</description>
		<content:encoded><![CDATA[<p>Why should I have to cope with difficult to read character recognition tests to send a Yahoo email when I don&#8217;t for gmail or aol?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Duck typing and Python by Rémy Roy</title>
		<link>http://www.remyroy.com/2008/06/01/duck-typing-and-python/#comment-11083</link>
		<dc:creator>Rémy Roy</dc:creator>
		<pubDate>Sun, 15 Mar 2009 20:42:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.remyroy.com/2008/06/01/duck-typing-and-python/#comment-11083</guid>
		<description>Hello Carla,

A good example of this would be the file like objects used in Python. In various modules, you can use file like objects for different input/ouput operations.

For instance, take the pickle module: http://docs.python.org/library/pickle.html . It provides object de/serialization. It requires a file object for loading or dumping object. If you were to use an old tape component where there is no built in mechanism to access it, you could create a Tapefile class simply by specifying the few methods required by pickle. It could look like this:

class Tapefile():
    "A tape file"
    def __init__(self,params):
        #various initialization for tape access
        pass
    def read(len):
        #use special methods to access tape
        pass
    def readline():
        #use special methods to read a whole line on tape
        pass
    def write(value):
        #use special methods to write on tape
        pass

You could than pass a Tapefile object to the pickle module and it would simply work. The pickle module do not care if it has a file object or another object pretending to act like a file. As long as it has the right methods, it will work.</description>
		<content:encoded><![CDATA[<p>Hello Carla,</p>
<p>A good example of this would be the file like objects used in Python. In various modules, you can use file like objects for different input/ouput operations.</p>
<p>For instance, take the pickle module: <a href="http://docs.python.org/library/pickle.html" rel="nofollow">http://docs.python.org/library/pickle.html</a> . It provides object de/serialization. It requires a file object for loading or dumping object. If you were to use an old tape component where there is no built in mechanism to access it, you could create a Tapefile class simply by specifying the few methods required by pickle. It could look like this:</p>
<p>class Tapefile():<br />
    &#8220;A tape file&#8221;<br />
    def __init__(self,params):<br />
        #various initialization for tape access<br />
        pass<br />
    def read(len):<br />
        #use special methods to access tape<br />
        pass<br />
    def readline():<br />
        #use special methods to read a whole line on tape<br />
        pass<br />
    def write(value):<br />
        #use special methods to write on tape<br />
        pass</p>
<p>You could than pass a Tapefile object to the pickle module and it would simply work. The pickle module do not care if it has a file object or another object pretending to act like a file. As long as it has the right methods, it will work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Duck typing and Python by Carla</title>
		<link>http://www.remyroy.com/2008/06/01/duck-typing-and-python/#comment-10958</link>
		<dc:creator>Carla</dc:creator>
		<pubDate>Tue, 10 Mar 2009 05:47:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.remyroy.com/2008/06/01/duck-typing-and-python/#comment-10958</guid>
		<description>is it possible you could display an example of duck typing with python...</description>
		<content:encoded><![CDATA[<p>is it possible you could display an example of duck typing with python&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Central control, central power by Rémy Roy</title>
		<link>http://www.remyroy.com/2009/01/02/central-control-central-power/#comment-10225</link>
		<dc:creator>Rémy Roy</dc:creator>
		<pubDate>Thu, 19 Feb 2009 01:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.remyroy.com/?p=395#comment-10225</guid>
		<description>Hey Felix,

I tend to think that our societies have evolved and are evolving in a way that is good for most people.

I am not an environmental expert but I think plastic bags used as one-time disposable objects, they way they are mostly used here in Canada, are a treat to the environment. A plastic bag tax would considerably reduce that usage pattern.</description>
		<content:encoded><![CDATA[<p>Hey Felix,</p>
<p>I tend to think that our societies have evolved and are evolving in a way that is good for most people.</p>
<p>I am not an environmental expert but I think plastic bags used as one-time disposable objects, they way they are mostly used here in Canada, are a treat to the environment. A plastic bag tax would considerably reduce that usage pattern.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Central control, central power by _Felix</title>
		<link>http://www.remyroy.com/2009/01/02/central-control-central-power/#comment-10203</link>
		<dc:creator>_Felix</dc:creator>
		<pubDate>Wed, 18 Feb 2009 15:15:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.remyroy.com/?p=395#comment-10203</guid>
		<description>:) I'm amused by the thought that we could simply resolve once and for all which tragedy-of-the-commons situations require fixing with strongly enforced laws and which don't. Has it occurred to you that the process of working this out might already be going on, in the form of the entire history (and future) of politics?

Incidentally, what is a plastic bag tax for? Politicians in the UK have admitted that plastic bags don't pose a significant threat to the environment other than being unsightly, but they want to implement the tax anyway, "to send a message". The message this sends to me is that I don't have the aesthetic freedom to simply not mind a few plastic bags drifting around. Instead I am compelled to throw a bit more cash down the central drain, in order to make me behave in a way which is, by somebody else's standards, more pretty.</description>
		<content:encoded><![CDATA[<p> <img src='http://www.remyroy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> I&#8217;m amused by the thought that we could simply resolve once and for all which tragedy-of-the-commons situations require fixing with strongly enforced laws and which don&#8217;t. Has it occurred to you that the process of working this out might already be going on, in the form of the entire history (and future) of politics?</p>
<p>Incidentally, what is a plastic bag tax for? Politicians in the UK have admitted that plastic bags don&#8217;t pose a significant threat to the environment other than being unsightly, but they want to implement the tax anyway, &#8220;to send a message&#8221;. The message this sends to me is that I don&#8217;t have the aesthetic freedom to simply not mind a few plastic bags drifting around. Instead I am compelled to throw a bit more cash down the central drain, in order to make me behave in a way which is, by somebody else&#8217;s standards, more pretty.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Encoding problems by cbelisle</title>
		<link>http://www.remyroy.com/2009/01/14/encoding-problems/#comment-8737</link>
		<dc:creator>cbelisle</dc:creator>
		<pubDate>Wed, 21 Jan 2009 20:58:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.remyroy.com/?p=403#comment-8737</guid>
		<description>Same problem here, but with my last name. So a long time ago, I took the decision that on the Internet, my name doesn't contain accents.

Unicode is not young (early 90's) and it's still not used in many cases. It's sad...</description>
		<content:encoded><![CDATA[<p>Same problem here, but with my last name. So a long time ago, I took the decision that on the Internet, my name doesn&#8217;t contain accents.</p>
<p>Unicode is not young (early 90&#8217;s) and it&#8217;s still not used in many cases. It&#8217;s sad&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My rant about Team Server Foundation by Rémy Roy</title>
		<link>http://www.remyroy.com/2008/11/25/my-rant-about-team-server-foundation/#comment-5627</link>
		<dc:creator>Rémy Roy</dc:creator>
		<pubDate>Sun, 30 Nov 2008 22:28:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.remyroy.com/?p=303#comment-5627</guid>
		<description>Hello neongreen,

Getting used to the basic Get Latest, Check Out, Check In is quick. It is probably a matter of minutes. If you happen to have a conflit, the conflit resolution workflow can take a little while to get used too.

If you have to use Work Items in the process, that takes a few hours if you have to use all the panels.

I hope it helps.</description>
		<content:encoded><![CDATA[<p>Hello neongreen,</p>
<p>Getting used to the basic Get Latest, Check Out, Check In is quick. It is probably a matter of minutes. If you happen to have a conflit, the conflit resolution workflow can take a little while to get used too.</p>
<p>If you have to use Work Items in the process, that takes a few hours if you have to use all the panels.</p>
<p>I hope it helps.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
