<?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/"
		>
<channel>
	<title>Comments on: q, textual queue manager</title>
	<atom:link href="http://probablyprogramming.com/2009/04/21/q-textual-queue-manager/feed/" rel="self" type="application/rss+xml" />
	<link>http://probablyprogramming.com/2009/04/21/q-textual-queue-manager/</link>
	<description>It&#039;s what I&#039;m doing, and what posts on this blog are about.</description>
	<lastBuildDate>Thu, 04 Mar 2010 13:05:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: pib</title>
		<link>http://probablyprogramming.com/2009/04/21/q-textual-queue-manager/comment-page-1/#comment-6186</link>
		<dc:creator>pib</dc:creator>
		<pubDate>Tue, 21 Apr 2009 18:16:40 +0000</pubDate>
		<guid isPermaLink="false">http://probablyprogramming.com/?p=278#comment-6186</guid>
		<description>&lt;p&gt;Jawa: It&#039;s kind of a hybrid of the two, since with the append command makes it act as a queue. If I added a way to pop off the end of it, it would be a deque, which is like a stack which you can push and pop from either end (double-ended queue).&lt;/p&gt;

&lt;p&gt;Really, I was just going for the more general meaning of the word queue, some sort of in-order list of things. Also, there&#039;s not a single-letter that sounds like &quot;stack&quot; :)&lt;/p&gt;

&lt;p&gt;And yes, after each command it shows you the item at the top of the queue.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Jawa: It&#8217;s kind of a hybrid of the two, since with the append command makes it act as a queue. If I added a way to pop off the end of it, it would be a deque, which is like a stack which you can push and pop from either end (double-ended queue).</p>

<p>Really, I was just going for the more general meaning of the word queue, some sort of in-order list of things. Also, there&#8217;s not a single-letter that sounds like &#8220;stack&#8221; <img src='http://probablyprogramming.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p>And yes, after each command it shows you the item at the top of the queue.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Silly Jawa</title>
		<link>http://probablyprogramming.com/2009/04/21/q-textual-queue-manager/comment-page-1/#comment-6166</link>
		<dc:creator>Silly Jawa</dc:creator>
		<pubDate>Tue, 21 Apr 2009 07:13:28 +0000</pubDate>
		<guid isPermaLink="false">http://probablyprogramming.com/?p=278#comment-6166</guid>
		<description>&lt;p&gt;Hi Paul,&lt;/p&gt;

&lt;p&gt;From what I can gather in your examples and your supported command names, it seems that you&#039;ve implemented a &quot;stack&quot; [which follows a last in, first out (LIFO) policy] rather than a traditional &quot;queue&quot; [which follows first in, first out (FIFO) rules].&lt;/p&gt;

&lt;p&gt;I made an assumption about q.py (please correct me if I&#039;m wrong) to come to this conclusion: it looks like the output of &quot;./q.py queuename [command [params]]&quot; is the &quot;next&quot; of that structure after the command has been carried out.  (The best evidence of this is in the output of the &#039;append&#039; command.)&lt;/p&gt;

&lt;p&gt;Overall, quite a nifty idea.  I trust that people will find good use for it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Paul,</p>

<p>From what I can gather in your examples and your supported command names, it seems that you&#8217;ve implemented a &#8220;stack&#8221; [which follows a last in, first out (LIFO) policy] rather than a traditional &#8220;queue&#8221; [which follows first in, first out (FIFO) rules].</p>

<p>I made an assumption about q.py (please correct me if I&#8217;m wrong) to come to this conclusion: it looks like the output of &#8220;./q.py queuename [command [params]]&#8221; is the &#8220;next&#8221; of that structure after the command has been carried out.  (The best evidence of this is in the output of the &#8216;append&#8217; command.)</p>

<p>Overall, quite a nifty idea.  I trust that people will find good use for it.</p>]]></content:encoded>
	</item>
</channel>
</rss>
