<?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 for Answer My Searches</title>
	<atom:link href="http://www.answermysearches.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.answermysearches.com</link>
	<description>Answers to everything I search for, every day</description>
	<lastBuildDate>Wed, 25 Aug 2010 09:41:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on How to Round Up to the Nearest Quarter in Python by ΤΖΩΤΖΙΟΥ</title>
		<link>http://www.answermysearches.com/how-to-round-up-to-the-nearest-quarter-in-python/2212/comment-page-1/#comment-64494</link>
		<dc:creator>ΤΖΩΤΖΙΟΥ</dc:creator>
		<pubDate>Wed, 25 Aug 2010 09:41:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/?p=2212#comment-64494</guid>
		<description>Sorry :( Missed the round “up” part.</description>
		<content:encoded><![CDATA[<p>Sorry <img src='http://www.answermysearches.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Missed the round “up” part.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Round Up to the Nearest Quarter in Python by ΤΖΩΤΖΙΟΥ</title>
		<link>http://www.answermysearches.com/how-to-round-up-to-the-nearest-quarter-in-python/2212/comment-page-1/#comment-64493</link>
		<dc:creator>ΤΖΩΤΖΙΟΥ</dc:creator>
		<pubDate>Wed, 25 Aug 2010 09:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/?p=2212#comment-64493</guid>
		<description>Without using the math module, it&#039;s even simpler:

round(num*4)/4</description>
		<content:encoded><![CDATA[<p>Without using the math module, it&#8217;s even simpler:</p>
<p>round(num*4)/4</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Round Up to the Nearest Quarter in Python by Christoph</title>
		<link>http://www.answermysearches.com/how-to-round-up-to-the-nearest-quarter-in-python/2212/comment-page-1/#comment-64492</link>
		<dc:creator>Christoph</dc:creator>
		<pubDate>Sun, 22 Aug 2010 21:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/?p=2212#comment-64492</guid>
		<description>Without using the math module:

x if 4*x == int(4*x) else int(4*x+1)/4.0

Rounding down is easier:

int(4*x)/4.0</description>
		<content:encoded><![CDATA[<p>Without using the math module:</p>
<p>x if 4*x == int(4*x) else int(4*x+1)/4.0</p>
<p>Rounding down is easier:</p>
<p>int(4*x)/4.0</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mini Searches with Answers by Jody</title>
		<link>http://www.answermysearches.com/mini-searches-with-answers-93/2179/comment-page-1/#comment-64441</link>
		<dc:creator>Jody</dc:creator>
		<pubDate>Thu, 29 Apr 2010 01:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/?p=2179#comment-64441</guid>
		<description>They&#039;re doing away with textile pretty soon...

http://productblog.37signals.com/products/2010/04/a-preview-of-the-new-basecamp-messages-and-comments-editor.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+typepad/37signals/products+(37signals+Product+Blog)</description>
		<content:encoded><![CDATA[<p>They&#8217;re doing away with textile pretty soon&#8230;</p>
<p><a href="http://productblog.37signals.com/products/2010/04/a-preview-of-the-new-basecamp-messages-and-comments-editor.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+typepad/37signals/products+(37signals+Product+Blog)" rel="nofollow">http://productblog.37signals.com/products/2010/04/a-preview-of-the-new-basecamp-messages-and-comments-editor.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+typepad/37signals/products+(37signals+Product+Blog)</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SSRS &#8211; How to set a default parameter to the first day of the month by Jody</title>
		<link>http://www.answermysearches.com/ssrs-how-to-set-a-default-parameter-to-the-first-day-of-the-month/2167/comment-page-1/#comment-64392</link>
		<dc:creator>Jody</dc:creator>
		<pubDate>Tue, 30 Mar 2010 22:38:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/?p=2167#comment-64392</guid>
		<description>We normally go to the trouble of setting up a second data set and running select on these kinds of things...

First of This Month:
SELECT CAST(CONVERT(char(6),GETDATE(),112) + &#039;01&#039; as datetime)

First of Next Month:
SELECT CAST(CONVERT(char(6),dateadd(mm, 1, GETDATE()),112) + &#039;01&#039; as  datetime) 

Then referencing those in the parameter.  Just another way to do it.</description>
		<content:encoded><![CDATA[<p>We normally go to the trouble of setting up a second data set and running select on these kinds of things&#8230;</p>
<p>First of This Month:<br />
SELECT CAST(CONVERT(char(6),GETDATE(),112) + &#8216;01&#8242; as datetime)</p>
<p>First of Next Month:<br />
SELECT CAST(CONVERT(char(6),dateadd(mm, 1, GETDATE()),112) + &#8216;01&#8242; as  datetime) </p>
<p>Then referencing those in the parameter.  Just another way to do it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
