<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:annotate="http://purl.org/rss/1.0/modules/annotate/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!--
	This feed generated for Anonymous	More info at http://naklon.info/rss/about.htm
-->
<channel>
<title>Mathematical &amp; Computer Sciences</title>
<link>http://ore.mines.edu/phpbb/</link>
<description>Spring 2008</description>
<managingEditor>mcolagro@mines.edu</managingEditor>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>RSS Feed 2.2.4</generator>
<language>en</language><lastBuildDate>Tue, 07 Oct 2008 09:23:05 GMT</lastBuildDate>
<image>
	<url>http://ore.mines.edu/phpbb/templates/subSilver/images/logo_phpBB_med.gif</url>
	<title>Mathematical &amp; Computer Sciences</title>
	<link>http://ore.mines.edu/phpbb/</link>
	<width>122</width>
	<height>56</height>
</image>
<item>
<title>OS Projects :: RE: Project2 | How to receive the output from the fetch script</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14716#14716</link>
<pubDate>Tue, 07 Oct 2008 07:22:11 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14716#14716</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=451&quot; target=&quot;_blank&quot;&gt;Jeremy Norman&lt;/a&gt;&lt;br /&gt;
Posted: Tue Oct 07, 2008 1:22 am (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Justin,
&lt;br /&gt;

&lt;br /&gt;
If you have a directory that was given from the command line options, then don't bother reading from standard in.
&lt;br /&gt;

&lt;br /&gt;
Otherwise, you are free to provide a prompt so that a human at the terminal knows why it is waiting (type in a directory). The prompt will obviously be ignored by a piped program and have no affect except for usability.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Jeremy Norman</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14691#14691" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14716</comments>
</item>
<item>
<title>OS Projects :: RE: Project2 | How to receive the output from the fetch script</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14715#14715</link>
<pubDate>Tue, 07 Oct 2008 06:04:11 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14715#14715</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=500&quot; target=&quot;_blank&quot;&gt;Justin Guerra&lt;/a&gt;&lt;br /&gt;
Posted: Tue Oct 07, 2008 12:04 am (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Is there a way to check that there actually is stdin?  Currently if I pipe info my script runs fine, but if I don't pipe something in it gets stuck.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Justin Guerra</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14691#14691" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14715</comments>
</item>
<item>
<title>Concepts, Projects, and Lounge :: RE: Reversi Questions</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14714#14714</link>
<pubDate>Tue, 07 Oct 2008 03:44:14 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14714#14714</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=522&quot; target=&quot;_blank&quot;&gt;apryce&lt;/a&gt;&lt;br /&gt;
Subject: Bug found?&lt;br /&gt;Posted: Mon Oct 06, 2008 9:44 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I believe I may have found a bug. This occurs when reversi.cpp when checkSquares is called. I believe that it is occurring because at line 282 -1 is passed to checkSquares which uses &lt;span style=&quot;font-weight: bold&quot;&gt;unsigned char&lt;/span&gt; which goes from 0-255 so a -1 effectively rolls back to 255. This is used as a reference to a square on the board in getSquare a few lines later resulting in an exception. I have a screen-shot, but don't know how to attach it here.
&lt;br /&gt;

&lt;br /&gt;
Adam
&lt;br /&gt;

&lt;br /&gt;
Edit: I tried modifying this call so that it took arguments of int (to handle -1) and then modified
&lt;br /&gt;

&lt;br /&gt;
  unsigned char row = (unsigned char)((int)getRow() + rIncr);
&lt;br /&gt;
  unsigned char col = (unsigned char)((int)getCol() + cIncr);
&lt;br /&gt;
  if(!(row&amp;lt;boardSize &amp;amp;&amp;amp; col&amp;lt;boardSize))
&lt;br /&gt;
	  return false;
&lt;br /&gt;

&lt;br /&gt;
This doesn't help though because row is incremented to 8 around line 255. Then isLegal is called however isLegal doesn't check whether a move is in the bounds of the board.
&lt;br /&gt;

&lt;br /&gt;
isLegal is used in key circumstances, so I am hesitant to assume a simple if statement will not have other affects on the logic. Ed, as designer if you get a chance to look at this it would be very helpful.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>apryce</dc:creator>
<dc:subject>Concepts, Projects, and Lounge</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14701#14701" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14714</comments>
</item>
<item>
<title>Toilers :: RE: Fall 2008: Toiler Meetings</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14713#14713</link>
<pubDate>Tue, 07 Oct 2008 02:33:40 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14713#14713</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=497&quot; target=&quot;_blank&quot;&gt;amunjal&lt;/a&gt;&lt;br /&gt;
Subject: Handout posted&lt;br /&gt;Posted: Mon Oct 06, 2008 8:33 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I have posted the handout for the coming Toilers talk on the twiki home page.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>amunjal</dc:creator>
<dc:subject>Toilers</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14308#14308" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14713</comments>
</item>
<item>
<title>Concepts, Projects, and Lounge :: RE: Reversi Questions</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14712#14712</link>
<pubDate>Tue, 07 Oct 2008 02:31:32 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14712#14712</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=522&quot; target=&quot;_blank&quot;&gt;apryce&lt;/a&gt;&lt;br /&gt;
Subject: Unable to extract archive&lt;br /&gt;Posted: Mon Oct 06, 2008 8:31 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I am unable to extract the 'tgz' level of the reversi.tgz.gz 
&lt;br /&gt;
I am using Winzip 11.2
&lt;br /&gt;
Is there a free windows based archiver that anybody has had luck with?
&lt;br /&gt;

&lt;br /&gt;
Adam
&lt;br /&gt;

&lt;br /&gt;
Edit: looking more closely on the BB assignment it is listed as reversi.tgz, but when Chrome downloads it becomes reversi.tgz.gz
&lt;br /&gt;

&lt;br /&gt;
SOLUTION: Chrome is adding an extra .gz in the name which confuses winzip. Just remove the .gz from the name and you can extract it.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>apryce</dc:creator>
<dc:subject>Concepts, Projects, and Lounge</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14701#14701" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14712</comments>
</item>
<item>
<title>Concepts, Projects, and Lounge :: RE: Reversi Questions</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14711#14711</link>
<pubDate>Tue, 07 Oct 2008 01:41:20 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14711#14711</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=522&quot; target=&quot;_blank&quot;&gt;apryce&lt;/a&gt;&lt;br /&gt;
Subject: Error in project doc&lt;br /&gt;Posted: Mon Oct 06, 2008 7:41 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I believe player and score should be reversed in the following from page 6
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;typename Game::Score The type of the player number reported
&lt;br /&gt;
by getScore
&lt;br /&gt;
typename Game::Player The type of the score reported by
&lt;br /&gt;
getPlayer
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>apryce</dc:creator>
<dc:subject>Concepts, Projects, and Lounge</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14701#14701" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14711</comments>
</item>
<item>
<title>OS Projects :: RE: Data collection question</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14710#14710</link>
<pubDate>Tue, 07 Oct 2008 00:00:04 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14710#14710</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=436&quot; target=&quot;_blank&quot;&gt;Chris Walsh&lt;/a&gt;&lt;br /&gt;
Posted: Mon Oct 06, 2008 6:00 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Here's a new architecture that just hit me that removes the monolithic element but still allows you to do in-line manipulation. With this way you keep modularity too!
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;CMD_ONE=&amp;quot;commands | commands&amp;quot;
&lt;br /&gt;
CMD_TWO=&amp;quot;commands | commands&amp;quot;
&lt;br /&gt;
CMD_THREE=&amp;quot;commands | commands&amp;quot;
&lt;br /&gt;
ssh host &amp;quot;$CMD_ONE; $CMD_TWO; $CMD_THREE&amp;quot; redirect into $HOST_FILE &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt; The question that matters to me right now is: will I lose points for keeping it as one command?&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
EDIT: You made such a good point that I'm trying to get Tracy to make an announcement that you shouldn't do a monolithic approach BUT remote manipulation is OK. So if she makes the in-class announcement than yes you'll lose points... if not, I think you're okay.
&lt;br /&gt;

&lt;br /&gt;
Try and spread the word for those that don't check Ore frequently if you could, Ben - as the handout was a bit ambiguous. Thanks &lt;img src=&quot;http://ore.mines.edu/phpbb/images/smiles/icon_smile.gif&quot; alt=&quot;Smile&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
(Huzzah I hit post #50!)&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Chris Walsh</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14689#14689" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14710</comments>
</item>
<item>
<title>OS Projects :: RE: Data collection question</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14709#14709</link>
<pubDate>Mon, 06 Oct 2008 20:52:53 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14709#14709</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=530&quot; target=&quot;_blank&quot;&gt;benjones&lt;/a&gt;&lt;br /&gt;
Posted: Mon Oct 06, 2008 2:52 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I think that it makes sense to do at least some of the processing in the ssh command, like when I count processes: &lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;ps ax | wc -l&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt; Listing all the running processes would take a lot more network bandwith than printing &amp;quot;120&amp;quot;.  I think there are valid points for both approaches.  The question that matters to me right now is: will I lose points for keeping it as one command? &lt;img src=&quot;http://ore.mines.edu/phpbb/images/smiles/icon_smile.gif&quot; alt=&quot;Smile&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
Thanks
&lt;br /&gt;
-Ben&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>benjones</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14689#14689" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14709</comments>
</item>
<item>
<title>Concepts, Projects, and Lounge :: RE: Schedule</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14708#14708</link>
<pubDate>Mon, 06 Oct 2008 19:56:51 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14708#14708</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=110&quot; target=&quot;_blank&quot;&gt;ekrohne&lt;/a&gt;&lt;br /&gt;
Posted: Mon Oct 06, 2008 1:56 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Here you go.
&lt;br /&gt;

&lt;br /&gt;
Lab 2 due: Midnight Tuesday, 10/14
&lt;br /&gt;
Midterm: Friday, 10/17
&lt;br /&gt;
Final project 1st deliverable: Midnight Sunday, 10/26
&lt;br /&gt;

&lt;br /&gt;
Also, blackboard was wrong before.  It used to say 10/12; I've just fixed it.&lt;br /&gt;_________________&lt;br /&gt;&amp;quot;8:14; Press Return&amp;quot;
&lt;br /&gt;
   -- Darren Aronofsky, Pi
&lt;br /&gt;

&lt;br /&gt;
&amp;quot;Watch me set my pants on fire!&amp;quot;
&lt;br /&gt;
   -- Fred Gallagher, Megatokyo&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>ekrohne</dc:creator>
<dc:subject>Concepts, Projects, and Lounge</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14706#14706" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14708</comments>
</item>
<item>
<title>Concepts, Projects, and Lounge :: RE: Schedule</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14707#14707</link>
<pubDate>Mon, 06 Oct 2008 18:13:06 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14707#14707</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=451&quot; target=&quot;_blank&quot;&gt;Jeremy Norman&lt;/a&gt;&lt;br /&gt;
Posted: Mon Oct 06, 2008 12:13 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
So as stated again in class, for sure reversi is due on 10/14/08 (I think even blackboard had that)...
&lt;br /&gt;

&lt;br /&gt;
So still interested in the next deadline: final project check-point deliverable.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Jeremy Norman</dc:creator>
<dc:subject>Concepts, Projects, and Lounge</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14706#14706" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14707</comments>
</item>
<item>
<title>Concepts, Projects, and Lounge :: Schedule</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14706#14706</link>
<pubDate>Mon, 06 Oct 2008 17:29:04 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14706#14706</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=451&quot; target=&quot;_blank&quot;&gt;Jeremy Norman&lt;/a&gt;&lt;br /&gt;
Subject: Schedule&lt;br /&gt;Posted: Mon Oct 06, 2008 11:29 am (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Ed,
&lt;br /&gt;

&lt;br /&gt;
I cannot remember exactly how everything is working out for dates in the next few weeks. I think that it was decided that the reversi agent will be done a week from tomorrow, and sometime after that is our first deliverable.
&lt;br /&gt;

&lt;br /&gt;
Can you put specific dates here on ore (in response to this). That way we don't need to bring it up in class again and also in an easy to reference place?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Jeremy Norman</dc:creator>
<dc:subject>Concepts, Projects, and Lounge</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14706#14706" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14706</comments>
</item>
<item>
<title>Concepts, Projects, and Lounge :: RE: Reversi Questions</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14705#14705</link>
<pubDate>Mon, 06 Oct 2008 17:03:25 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14705#14705</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=110&quot; target=&quot;_blank&quot;&gt;ekrohne&lt;/a&gt;&lt;br /&gt;
Posted: Mon Oct 06, 2008 11:03 am (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
You can assume moves your agent receives are valid.  If the referee gives your agent an illegal move, and you make an illegal move (or a non-move) based on it, then it won't count against you in any way.  The referee will keep track of and store a game log that we can analyze later to determine what went wrong.  I'll verify whose fault it is if anyone gets disqualified.&lt;br /&gt;_________________&lt;br /&gt;&amp;quot;8:14; Press Return&amp;quot;
&lt;br /&gt;
   -- Darren Aronofsky, Pi
&lt;br /&gt;

&lt;br /&gt;
&amp;quot;Watch me set my pants on fire!&amp;quot;
&lt;br /&gt;
   -- Fred Gallagher, Megatokyo&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>ekrohne</dc:creator>
<dc:subject>Concepts, Projects, and Lounge</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14701#14701" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14705</comments>
</item>
<item>
<title>OS Projects :: Project 2 | Loadavg</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14704#14704</link>
<pubDate>Mon, 06 Oct 2008 01:24:50 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14704#14704</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=498&quot; target=&quot;_blank&quot;&gt;Mark Godwin&lt;/a&gt;&lt;br /&gt;
Subject: Project 2 | Loadavg&lt;br /&gt;Posted: Sun Oct 05, 2008 7:24 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
For those of you curious... I found this text on /proc/loadavg that helps explain what the numbers mean exactly.
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;The load average equals the average of the number of tasks running or in
&lt;br /&gt;
a runnable state at any instant, as opposed to zombie tasks, tasks
&lt;br /&gt;
waiting on an operation such as I/O, suspended tasks, etc.  The three
&lt;br /&gt;
different numbers represent that average as measured over the last
&lt;br /&gt;
minute, the last five minutes, and the last fifteen minutes,
&lt;br /&gt;
respectively.
&lt;br /&gt;

&lt;br /&gt;
Optimally, then, you want to have the load average stay below the number
&lt;br /&gt;
of CPUs in your machine.  So, on a dual box, it's best if the load
&lt;br /&gt;
average is below 2.
&lt;br /&gt;

&lt;br /&gt;
When the load average goes over the number of CPUs on the system, this
&lt;br /&gt;
means that there are tasks left sitting and waiting for CPU time.  This
&lt;br /&gt;
may or may not be a problem depending on what the system is doing, how
&lt;br /&gt;
good the kernel scheduler is, and other things.  For example, if you're
&lt;br /&gt;
running something like distributed.net or SETI@home, your load average
&lt;br /&gt;
will never go below the number of processes you've got running for those
&lt;br /&gt;
projects; this isn't a problem because the priority for those tasks is
&lt;br /&gt;
low and there's no deadline for finishing those tasks.
&lt;br /&gt;

&lt;br /&gt;
So there's no magic rule about load averages.  You could have two
&lt;br /&gt;
single-CPU boxes, and the one with a 1.5 load average could perform much
&lt;br /&gt;
worse than the one with a 4 load average.  I've heard of boxes with load
&lt;br /&gt;
averages in the three-digit range (before the decimal) that are still
&lt;br /&gt;
usable.
&lt;br /&gt;

&lt;br /&gt;
Incidentally, the same information that's displayed in /proc/loadavg is
&lt;br /&gt;
also displayed with the &amp;quot;uptime&amp;quot; command; the output from that command
&lt;br /&gt;
is pretty standard, so your code will be more portable if you parse
&lt;br /&gt;
uptime's output instead of parsing /proc/loadavg.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
from &lt;a href=&quot;http://www.luci.org/luci-discuss/200210/msg00055.html&quot; target=&quot;_blank&quot;&gt;http://www.luci.org/luci-discuss/200210/msg00055.html&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Mark Godwin</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14704#14704" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14704</comments>
</item>
<item>
<title>OS Projects :: RE: Project2 | How to receive the output from the fetch script</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14703#14703</link>
<pubDate>Mon, 06 Oct 2008 01:10:54 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14703#14703</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=552&quot; target=&quot;_blank&quot;&gt;Alan Rowe&lt;/a&gt;&lt;br /&gt;
Posted: Sun Oct 05, 2008 7:10 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Or, you can use the command 'read'.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Alan Rowe</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14691#14691" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14703</comments>
</item>
<item>
<title>OS Projects :: RE: Data collection question</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14702#14702</link>
<pubDate>Mon, 06 Oct 2008 00:51:53 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14702#14702</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=436&quot; target=&quot;_blank&quot;&gt;Chris Walsh&lt;/a&gt;&lt;br /&gt;
Posted: Sun Oct 05, 2008 6:51 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hey Ben,
&lt;br /&gt;

&lt;br /&gt;
I think that it would be a better design (even though you make a good point about the network traffic) to keep it simple. Just like one of the tenets of shell scripting; things that do only one thing but do it well.
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;x=`ssh host &amp;quot;run commands ; more commands&amp;quot;`
&lt;br /&gt;
y=`echo $x | awk stuff`
&lt;br /&gt;
z=`echo $x | sed stuff`&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Another benefit to the design above is that it's modular. Say you want to add more data to the retrieval list - its just a matter of adding on to the first line and then doing your own manipulation as a fourth var after z. It's much more maintainable and readable than your monolithic line approach, imo.
&lt;br /&gt;

&lt;br /&gt;
Good job on doing all the commands in one ssh though as opposed to doing one ssh for each command. This keeps the overhead of authentication and handshaking down to a minimum.
&lt;br /&gt;

&lt;br /&gt;
Excuse my late response; I've been at a conference in Keystone since Wednesday.
&lt;br /&gt;

&lt;br /&gt;
Enjoy!&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Chris Walsh</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14689#14689" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14702</comments>
</item>
<item>
<title>Concepts, Projects, and Lounge :: Reversi Questions</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14701#14701</link>
<pubDate>Mon, 06 Oct 2008 00:25:20 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14701#14701</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=517&quot; target=&quot;_blank&quot;&gt;mbarkmei&lt;/a&gt;&lt;br /&gt;
Subject: Reversi Questions&lt;br /&gt;Posted: Sun Oct 05, 2008 6:25 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Are we able to assume that any move given to the agent is a valid move, or should we check for it being valid?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>mbarkmei</dc:creator>
<dc:subject>Concepts, Projects, and Lounge</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14701#14701" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14701</comments>
</item>
<item>
<title>OS Projects :: RE: Project2 | How to receive the output from the fetch script</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14700#14700</link>
<pubDate>Sun, 05 Oct 2008 21:37:41 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14700#14700</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=504&quot; target=&quot;_blank&quot;&gt;Curtis Fleming&lt;/a&gt;&lt;br /&gt;
Subject: Using Pipe&lt;br /&gt;Posted: Sun Oct 05, 2008 3:37 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
So given this pseudo-code example
&lt;br /&gt;

&lt;br /&gt;
fetchScript | publishScript
&lt;br /&gt;

&lt;br /&gt;
Inside of your publishScript you can access what fetchScript outputed by cat-ing the file /dev/stdin
&lt;br /&gt;

&lt;br /&gt;
so
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;# In the publishScript I need to read something from the Standard In pipe
&lt;br /&gt;
myVariable=`cat /dev/stdin/`&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
where all of the output from fetchScript is read in as a single line into myVariable
&lt;br /&gt;
In other words, if fetchScript echoed out 
&lt;br /&gt;

&lt;br /&gt;
apples are red
&lt;br /&gt;
Some other text
&lt;br /&gt;

&lt;br /&gt;
 then myVariable in your publishScript with have the value
&lt;br /&gt;
apples are red Some other text&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Curtis Fleming</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14691#14691" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14700</comments>
</item>
<item>
<title>OS Projects :: RE: Project2 | How to receive the output from the fetch script</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14699#14699</link>
<pubDate>Sun, 05 Oct 2008 20:43:31 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14699#14699</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=550&quot; target=&quot;_blank&quot;&gt;songliu&lt;/a&gt;&lt;br /&gt;
Posted: Sun Oct 05, 2008 2:43 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
yes, but the sentry script will print out the directory on stdout
&lt;br /&gt;
so, how to use it (directory on stdout) in publish script?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>songliu</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14691#14691" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14699</comments>
</item>
<item>
<title>OS Projects :: RE: On alamode versus &quot;on&quot; alamode</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14698#14698</link>
<pubDate>Sun, 05 Oct 2008 03:20:45 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14698#14698</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=451&quot; target=&quot;_blank&quot;&gt;Jeremy Norman&lt;/a&gt;&lt;br /&gt;
Posted: Sat Oct 04, 2008 9:20 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Doug is right. 
&lt;br /&gt;

&lt;br /&gt;
While in class the other day, many people sshed onto alamode itself to run their scripts rather than running them locally. This is also true for many that were using their own computers for the project.
&lt;br /&gt;

&lt;br /&gt;
So... make sure your prompt says username@labmachine$ when you run your program. DO NOT run when your prompt says username@alamode$&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Jeremy Norman</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14695#14695" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14698</comments>
</item>
<item>
<title>OS Projects :: RE: On alamode versus &quot;on&quot; alamode</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14697#14697</link>
<pubDate>Sat, 04 Oct 2008 23:14:22 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14697#14697</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=518&quot; target=&quot;_blank&quot;&gt;Doug Welch!&lt;/a&gt;&lt;br /&gt;
Posted: Sat Oct 04, 2008 5:14 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I believe that Jeremy means that if you log in remotely (which has to be done though alamode) that you should ssh into another machine so that you arent using alamode to run your scripts
&lt;br /&gt;

&lt;br /&gt;
The commands will then be passed through alamode then executed on the machine that you ssh into and alamode just has to worry about managing the remote connection
&lt;br /&gt;

&lt;br /&gt;
what computer you ssh into may be easier to pick if you know the loads on the computer ...&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Doug Welch!</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14695#14695" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14697</comments>
</item>
<item>
<title>OS Projects :: RE: On alamode versus &quot;on&quot; alamode</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14696#14696</link>
<pubDate>Sat, 04 Oct 2008 21:10:38 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14696#14696</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=504&quot; target=&quot;_blank&quot;&gt;Curtis Fleming&lt;/a&gt;&lt;br /&gt;
Subject: Question&lt;br /&gt;Posted: Sat Oct 04, 2008 3:10 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Do you mean don't profile all of the computers in alamode often because it is too taxing ssh-ing around?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Curtis Fleming</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14695#14695" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14696</comments>
</item>
<item>
<title>OS Projects :: On alamode versus &quot;on&quot; alamode</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14695#14695</link>
<pubDate>Sat, 04 Oct 2008 14:42:33 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14695#14695</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=451&quot; target=&quot;_blank&quot;&gt;Jeremy Norman&lt;/a&gt;&lt;br /&gt;
Subject: On alamode versus &amp;quot;on&amp;quot; alamode&lt;br /&gt;Posted: Sat Oct 04, 2008 8:42 am (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I meant to make an announcement during class the other day.
&lt;br /&gt;

&lt;br /&gt;
Please do not actually run your scripts on alamode itself. Alamode is used to help coordinate the lab and is a SHARED resource. That means you should use it for as little as you can afford.
&lt;br /&gt;

&lt;br /&gt;
Instead, make sure to run your scripts from a specific lab machine. &lt;a href=&quot;http://ore.mines.edu/phpBB/viewtopic.php?t=3657&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;http://ore.mines.edu/phpBB/viewtopic.php?t=3657&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Jeremy Norman</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14695#14695" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14695</comments>
</item>
<item>
<title>Concepts, Projects, and Lounge :: RE: Study Group Sign up and Dates (Do the right thing!)</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14694#14694</link>
<pubDate>Sat, 04 Oct 2008 02:18:33 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14694#14694</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=582&quot; target=&quot;_blank&quot;&gt;abarman&lt;/a&gt;&lt;br /&gt;
Posted: Fri Oct 03, 2008 8:18 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Sweet, I hope people go there on tuesday too. unfortunately I have class during that time on Tuesday. But I will be at Van Deuker Lounge 6 to 10 doing Comp Org in the evenings  &lt;img src=&quot;http://ore.mines.edu/phpbb/images/smiles/icon_smile.gif&quot; alt=&quot;Smile&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>abarman</dc:creator>
<dc:subject>Concepts, Projects, and Lounge</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14645#14645" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14694</comments>
</item>
<item>
<title>OS Projects :: RE: Project2 | How to receive the output from the fetch script</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14693#14693</link>
<pubDate>Fri, 03 Oct 2008 15:17:32 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14693#14693</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=530&quot; target=&quot;_blank&quot;&gt;benjones&lt;/a&gt;&lt;br /&gt;
Posted: Fri Oct 03, 2008 9:17 am (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
The alamode-sentry script is supposed to print out the directory it saved stuff to.
&lt;br /&gt;

&lt;br /&gt;
-Ben&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>benjones</dc:creator>
<dc:subject>OS Projects</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14691#14691" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14693</comments>
</item>
<item>
<title>OS Concepts :: Review Question 4.6</title>
<link>http://ore.mines.edu/phpbb/viewtopic.php?p=14692#14692</link>
<pubDate>Fri, 03 Oct 2008 05:17:56 GMT</pubDate>
<guid isPermaLink="true">http://ore.mines.edu/phpbb/viewtopic.php?p=14692#14692</guid>
<description>Author: &lt;a href=&quot;http://ore.mines.edu/phpbb/profile.php?mode=viewprofile&amp;u=550&quot; target=&quot;_blank&quot;&gt;songliu&lt;/a&gt;&lt;br /&gt;
Subject: Review Question 4.6&lt;br /&gt;Posted: Thu Oct 02, 2008 11:17 pm (GMT -6)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
List three advantages of ULTs over KLTs.
&lt;br /&gt;

&lt;br /&gt;
1. The cost of threads swithing is small
&lt;br /&gt;

&lt;br /&gt;
2. Threads can be scheduled acording to particular needs
&lt;br /&gt;

&lt;br /&gt;
3. ULTs can run on any OS&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>songliu</dc:creator>
<dc:subject>OS Concepts</dc:subject>
<annotate:reference rdf:resource="http://ore.mines.edu/phpbb/viewtopic.php?p=14692#14692" />
<comments>http://ore.mines.edu/phpbb/posting.php?mode=quote&amp;p=14692</comments>
</item>
</channel>
</rss>
<!-- Page generation time: 0.1491s  - Memory Usage: 1.500 Mb  - GZIP enabled -->