<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Blog Pseudoaccidentale</title>
	<atom:link href="http://keramida.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://keramida.wordpress.com</link>
	<description></description>
	<lastBuildDate>Mon, 09 Nov 2009 01:13:08 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Using the Condensed DejaVu Font-Family Variant by Default by Messylaneous for 2009/11/07 &#171; The Daily BSD</title>
		<link>http://keramida.wordpress.com/2009/11/07/dejavu-condensed-as-default/#comment-12352</link>
		<dc:creator>Messylaneous for 2009/11/07 &#171; The Daily BSD</dc:creator>
		<pubDate>Mon, 09 Nov 2009 01:13:08 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=652#comment-12352</guid>
		<description>[...] Keramidas talks about font substitution in Firefox.  This should work on any [...]</description>
		<content:encoded><![CDATA[<p>[...] Keramidas talks about font substitution in Firefox.  This should work on any [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the Condensed DejaVu Font-Family Variant by Default by Messylaneous for 2009/11/07 &#183; DragonFly BSD Digest</title>
		<link>http://keramida.wordpress.com/2009/11/07/dejavu-condensed-as-default/#comment-12351</link>
		<dc:creator>Messylaneous for 2009/11/07 &#183; DragonFly BSD Digest</dc:creator>
		<pubDate>Sun, 08 Nov 2009 18:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=652#comment-12351</guid>
		<description>[...] Keramidas talks about font substitution in Firefox.  This should work on any [...]</description>
		<content:encoded><![CDATA[<p>[...] Keramidas talks about font substitution in Firefox.  This should work on any [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the Condensed DejaVu Font-Family Variant by Default by Astuce : Configuration de polices de caractère at FreeBSD-fr: Les nouvelles du géant en français</title>
		<link>http://keramida.wordpress.com/2009/11/07/dejavu-condensed-as-default/#comment-12347</link>
		<dc:creator>Astuce : Configuration de polices de caractère at FreeBSD-fr: Les nouvelles du géant en français</dc:creator>
		<pubDate>Sat, 07 Nov 2009 10:39:32 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=652#comment-12347</guid>
		<description>[...] ce billet keramida@ nous explique comment utiliser fontconfig pour forcer l&#8217;utilisation par defaut [...]</description>
		<content:encoded><![CDATA[<p>[...] ce billet keramida@ nous explique comment utiliser fontconfig pour forcer l&#8217;utilisation par defaut [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the Condensed DejaVu Font-Family Variant by Default by mperedim</title>
		<link>http://keramida.wordpress.com/2009/11/07/dejavu-condensed-as-default/#comment-12345</link>
		<dc:creator>mperedim</dc:creator>
		<pubDate>Sat, 07 Nov 2009 08:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=652#comment-12345</guid>
		<description>&lt;i&gt;XML is a very verbose and chatty format&lt;/i&gt;

That&#039;s a nice and polite way to put it ;)</description>
		<content:encoded><![CDATA[<p><i>XML is a very verbose and chatty format</i></p>
<p>That&#8217;s a nice and polite way to put it ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Puzzle: Student grades and other amusements by myle</title>
		<link>http://keramida.wordpress.com/2009/06/15/puzzle-student-grades-and-other-amusements/#comment-12342</link>
		<dc:creator>myle</dc:creator>
		<pubDate>Sun, 27 Sep 2009 11:10:52 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=557#comment-12342</guid>
		<description>As I was skimming your blog, I didn&#039;t stumble on your solution. Given that the problem was sounding interesting, I tried to find it out on my own.
It reminds of a game theory problem, but what is asked is some statistics and not the best strategy.

Well, I am not sure if I have well understood the problem, but below is the hasty solution I came up with, to demonstrate my feeling that indeed, this algorithm is not fair as far as each position of the final rankings is concerned.

team = []
number_of_teams = 5
number_of_students = 150

for i in range(number_of_teams):
    team.append([])


# for each ballot, find the favourable places
for ballot in range(15, 21):
    n = 1
    while (n &lt;= number_of_students):
      # how many students remain in this team
      # that could belong to the first five
      remaining_students = min(number_of_students - n + 1, number_of_teams);
      
      for j in range(remaining_students):
        # first student of the team
        team[j].append(n+j)

      # proceed to the next team
      n += ballot
      
  
#for i in range(number_of_teams):
#    team[i].sort()

print(team)

# initialize a double vector with zeros
# there has to be a better way
histogram = []
for i in range(number_of_teams):
  histogram.append([])
  for j in range(number_of_students):
    histogram[i].append(0)

for i in range(number_of_teams):
  for x in team[i]: 
    # start indexing from 1 (human readable)
    # we already know that no student can achieve to be 0th in his year
    histogram[i][x-1] += 1


print(histogram)</description>
		<content:encoded><![CDATA[<p>As I was skimming your blog, I didn&#8217;t stumble on your solution. Given that the problem was sounding interesting, I tried to find it out on my own.<br />
It reminds of a game theory problem, but what is asked is some statistics and not the best strategy.</p>
<p>Well, I am not sure if I have well understood the problem, but below is the hasty solution I came up with, to demonstrate my feeling that indeed, this algorithm is not fair as far as each position of the final rankings is concerned.</p>
<p>team = []<br />
number_of_teams = 5<br />
number_of_students = 150</p>
<p>for i in range(number_of_teams):<br />
    team.append([])</p>
<p># for each ballot, find the favourable places<br />
for ballot in range(15, 21):<br />
    n = 1<br />
    while (n &lt;= number_of_students):<br />
      # how many students remain in this team<br />
      # that could belong to the first five<br />
      remaining_students = min(number_of_students &#8211; n + 1, number_of_teams);</p>
<p>      for j in range(remaining_students):<br />
        # first student of the team<br />
        team[j].append(n+j)</p>
<p>      # proceed to the next team<br />
      n += ballot</p>
<p>#for i in range(number_of_teams):<br />
#    team[i].sort()</p>
<p>print(team)</p>
<p># initialize a double vector with zeros<br />
# there has to be a better way<br />
histogram = []<br />
for i in range(number_of_teams):<br />
  histogram.append([])<br />
  for j in range(number_of_students):<br />
    histogram[i].append(0)</p>
<p>for i in range(number_of_teams):<br />
  for x in team[i]:<br />
    # start indexing from 1 (human readable)<br />
    # we already know that no student can achieve to be 0th in his year<br />
    histogram[i][x-1] += 1</p>
<p>print(histogram)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Life According to Blackmore&#8217;s Night by My life according to Hawkwind &#171; J&#8217;ai un trou dans ma tete&#8230; c&#8217;est bien!</title>
		<link>http://keramida.wordpress.com/2009/08/07/my-life-according-to-blackmores-night/#comment-12327</link>
		<dc:creator>My life according to Hawkwind &#171; J&#8217;ai un trou dans ma tete&#8230; c&#8217;est bien!</dc:creator>
		<pubDate>Wed, 19 Aug 2009 00:23:08 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=625#comment-12327</guid>
		<description>[...] life according to&#160;Hawkwind  Μετάβαση στα σχόλια  They tagged me and it&#8217;s cool :) Thanks!! Ι choose Hawkwind! Space is one of the first things that really [...]</description>
		<content:encoded><![CDATA[<p>[...] life according to&nbsp;Hawkwind  Μετάβαση στα σχόλια  They tagged me and it&#8217;s cool :) Thanks!! Ι choose Hawkwind! Space is one of the first things that really [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Life According to Blackmore&#8217;s Night by My life according to Rory Gallagher &#124; What's on a geek woman's mind</title>
		<link>http://keramida.wordpress.com/2009/08/07/my-life-according-to-blackmores-night/#comment-12319</link>
		<dc:creator>My life according to Rory Gallagher &#124; What's on a geek woman's mind</dc:creator>
		<pubDate>Fri, 07 Aug 2009 08:43:21 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=625#comment-12319</guid>
		<description>[...] tagged me in My Life According to Blackmore’s Night. A music meme: Using only song names from ONE ARTIST, cleverly answer these questions. Pass it on [...]</description>
		<content:encoded><![CDATA[<p>[...] tagged me in My Life According to Blackmore’s Night. A music meme: Using only song names from ONE ARTIST, cleverly answer these questions. Pass it on [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How Big is a Size and Why Should You Care? by Andrey</title>
		<link>http://keramida.wordpress.com/2006/04/03/how-big-is-a-size/#comment-12317</link>
		<dc:creator>Andrey</dc:creator>
		<pubDate>Mon, 20 Jul 2009 06:37:25 +0000</pubDate>
		<guid isPermaLink="false">https://keramida.wordpress.com/2006/04/03/how-big-is-a-size/#comment-12317</guid>
		<description>20 issues of porting C++ code on the 64-bit platform
http://www.viva64.com/art-1-2-599168895.html

A 64-bit horse that can count
http://www.viva64.com/art-1-2-377673569.html</description>
		<content:encoded><![CDATA[<p>20 issues of porting C++ code on the 64-bit platform<br />
<a href="http://www.viva64.com/art-1-2-599168895.html" rel="nofollow">http://www.viva64.com/art-1-2-599168895.html</a></p>
<p>A 64-bit horse that can count<br />
<a href="http://www.viva64.com/art-1-2-377673569.html" rel="nofollow">http://www.viva64.com/art-1-2-377673569.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ιδιωτικότητα και Ελευθερία του Λόγου στο Διαδίκτυο by Manolis</title>
		<link>http://keramida.wordpress.com/2009/07/01/%ce%b9%ce%b4%ce%b9%cf%89%cf%84%ce%b9%ce%ba%cf%8c%cf%84%ce%b7%cf%84%ce%b1-%ce%ba%ce%b1%ce%b9-%ce%b5%ce%bb%ce%b5%cf%85%ce%b8%ce%b5%cf%81%ce%af%ce%b1-%cf%84%ce%bf%cf%85-%ce%bb%cf%8c%ce%b3%ce%bf%cf%85/#comment-12313</link>
		<dc:creator>Manolis</dc:creator>
		<pubDate>Sat, 11 Jul 2009 16:12:42 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=590#comment-12313</guid>
		<description>Και όμως υπάρχει λέξη ιδιωτικότητα (Λεξικό Μπαμπινιώτη Β&#039; έκδοση 2006, σελ. 771)</description>
		<content:encoded><![CDATA[<p>Και όμως υπάρχει λέξη ιδιωτικότητα (Λεξικό Μπαμπινιώτη Β&#8217; έκδοση 2006, σελ. 771)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on fts(3) or Avoiding to Reinvent the Wheel by enorl</title>
		<link>http://keramida.wordpress.com/2009/07/05/fts3-or-avoiding-to-reinvent-the-wheel/#comment-12311</link>
		<dc:creator>enorl</dc:creator>
		<pubDate>Sun, 05 Jul 2009 21:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://keramida.wordpress.com/?p=612#comment-12311</guid>
		<description>Hey Giorgos :)

Thanks for yet another informative post. POSIX mandates a similar interface, ftw(3). But, to quote Issue 7, &quot;The ftw() function may be removed in a future version.&quot;. On the other hand it doesn&#039;t say whether it will be replaced by some other interface.

Anyway, ftw(3) is implemented on top of fts(3) in NetBSD that I checked.

Cheers,
Stathis</description>
		<content:encoded><![CDATA[<p>Hey Giorgos :)</p>
<p>Thanks for yet another informative post. POSIX mandates a similar interface, ftw(3). But, to quote Issue 7, &#8220;The ftw() function may be removed in a future version.&#8221;. On the other hand it doesn&#8217;t say whether it will be replaced by some other interface.</p>
<p>Anyway, ftw(3) is implemented on top of fts(3) in NetBSD that I checked.</p>
<p>Cheers,<br />
Stathis</p>
]]></content:encoded>
	</item>
</channel>
</rss>
