<?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 [[ the sirens of titan ]]</title>
	<atom:link href="http://geekfreak.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://geekfreak.wordpress.com</link>
	<description>geekfreak's chronosynclastic infundibula</description>
	<lastBuildDate>Tue, 03 Nov 2009 14:53:24 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Removing the Time from SQL SERVER datetime by How to format datetime &#38; date in Sql Server 2005 &#171; Neven Palčec &#8211; Blog</title>
		<link>http://geekfreak.wordpress.com/2007/04/25/removing-the-time-from-sql-server-datetime-2/#comment-1611</link>
		<dc:creator>How to format datetime &#38; date in Sql Server 2005 &#171; Neven Palčec &#8211; Blog</dc:creator>
		<pubDate>Tue, 03 Nov 2009 14:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://geekfreak.wordpress.com/2007/04/25/removing-the-time-from-sql-server-datetime-2/#comment-1611</guid>
		<description>[...] Removing the Time from SQL SERVER datetime [...]</description>
		<content:encoded><![CDATA[<p>[...] Removing the Time from SQL SERVER datetime [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removing the Time from SQL SERVER datetime by SQLSimon</title>
		<link>http://geekfreak.wordpress.com/2007/04/25/removing-the-time-from-sql-server-datetime-2/#comment-1610</link>
		<dc:creator>SQLSimon</dc:creator>
		<pubDate>Wed, 14 Oct 2009 07:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://geekfreak.wordpress.com/2007/04/25/removing-the-time-from-sql-server-datetime-2/#comment-1610</guid>
		<description>In the code:
RETURN CAST( FLOOR( CAST( @d AS INTEGER) ) AS DATETIME )

As you&#039;re converting to INTEGER, I don&#039;t understand the need for the FLOOR function.  Why not just:

RETURN CAST( CAST( @d AS INTEGER) AS DATETIME ) ?

And I don&#039;t understand Groucho&#039;s comment about it needing to be a float.</description>
		<content:encoded><![CDATA[<p>In the code:<br />
RETURN CAST( FLOOR( CAST( @d AS INTEGER) ) AS DATETIME )</p>
<p>As you&#8217;re converting to INTEGER, I don&#8217;t understand the need for the FLOOR function.  Why not just:</p>
<p>RETURN CAST( CAST( @d AS INTEGER) AS DATETIME ) ?</p>
<p>And I don&#8217;t understand Groucho&#8217;s comment about it needing to be a float.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on sortable Ajax/DHTML grid by Oxphnbud</title>
		<link>http://geekfreak.wordpress.com/2006/10/15/sortable-javascript-dhtml-grid/#comment-1603</link>
		<dc:creator>Oxphnbud</dc:creator>
		<pubDate>Fri, 08 May 2009 08:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://geekfreak.wordpress.com/2006/10/15/sortable-javascript-dhtml-grid/#comment-1603</guid>
		<description>bjRmEp comment3 ,</description>
		<content:encoded><![CDATA[<p>bjRmEp comment3 ,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removing the Time from SQL SERVER datetime by Groucho</title>
		<link>http://geekfreak.wordpress.com/2007/04/25/removing-the-time-from-sql-server-datetime-2/#comment-1600</link>
		<dc:creator>Groucho</dc:creator>
		<pubDate>Fri, 06 Mar 2009 11:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://geekfreak.wordpress.com/2007/04/25/removing-the-time-from-sql-server-datetime-2/#comment-1600</guid>
		<description>The initial cast should be a cast to float:

RETURN CAST( FLOOR( CAST( @d AS FLOAT) ) AS DATETIME )

Otherwise the time fraction will cause a round up to the next full day.</description>
		<content:encoded><![CDATA[<p>The initial cast should be a cast to float:</p>
<p>RETURN CAST( FLOOR( CAST( @d AS FLOAT) ) AS DATETIME )</p>
<p>Otherwise the time fraction will cause a round up to the next full day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by matt pickell</title>
		<link>http://geekfreak.wordpress.com/about/#comment-1597</link>
		<dc:creator>matt pickell</dc:creator>
		<pubDate>Fri, 05 Dec 2008 13:48:16 +0000</pubDate>
		<guid isPermaLink="false">http://geekfreak.wordpress.com/about/#comment-1597</guid>
		<description>i have a question of some jsunit posts on your site,   but i was not sure where to ask it.  not sure if you can answer either, but i have found surprising little on the web about it.  It seems like you have done some debugging through it, so i&#039;m hoping you can help.

I set up jsunit in eclipse, and i am trying to call it from java&#039;s junit.  I setup a StandaloneTest and give it an implementation of the ConfigurationSource interface.  it starts the test, and feeds the test html pages to the browsers, but then it times out when waiting for results from the browsers. 

do you have any experience with this?  or any tips on how results are supplied so i can debug the issue?  I emailed the person who wrote jsunit via the jsunit.org page, but have received no response, so i&#039;m looking elsewhere.</description>
		<content:encoded><![CDATA[<p>i have a question of some jsunit posts on your site,   but i was not sure where to ask it.  not sure if you can answer either, but i have found surprising little on the web about it.  It seems like you have done some debugging through it, so i&#8217;m hoping you can help.</p>
<p>I set up jsunit in eclipse, and i am trying to call it from java&#8217;s junit.  I setup a StandaloneTest and give it an implementation of the ConfigurationSource interface.  it starts the test, and feeds the test html pages to the browsers, but then it times out when waiting for results from the browsers. </p>
<p>do you have any experience with this?  or any tips on how results are supplied so i can debug the issue?  I emailed the person who wrote jsunit via the jsunit.org page, but have received no response, so i&#8217;m looking elsewhere.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
