<?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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
	>
<channel>
	<title>Comments for Craig Andrews</title>
	<atom:link href="http://candrews.integralblue.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://candrews.integralblue.com</link>
	<description>Please excuse the ugliness of this site. Just remember, as McCoy said to Kirk so many times, &#34;D*&#38;@!$ Jim! I&#039;m an engineer, not a web designer!&#34;</description>
	<lastBuildDate>Sun, 10 Jan 2010 23:40:57 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
	<atom:link rel="hub" href="http://superfeedr.com/hubbub" />
		<item>
		<title>Comment on oEmbed by Minna</title>
		<link>http://candrews.integralblue.com/2009/08/oembed/comment-page-1/#comment-64</link>
		<dc:creator>Minna</dc:creator>
		<pubDate>Sun, 10 Jan 2010 23:40:57 +0000</pubDate>
		<guid isPermaLink="false">http://candrews.integralblue.com/?p=100#comment-64</guid>
		<description>BUT, the OEmbed code isn&#039;t Valid XHTML. I always strip out the  code.</description>
		<content:encoded><![CDATA[<div class='microid-mailto+http:sha1:a3cf4c38ff855dbfe26afd17678e7467ba586bdc'>BUT, the OEmbed code isn&#8217;t Valid XHTML. I always strip out the  code.</div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UTF-8 and MySQL by miqrogroove</title>
		<link>http://candrews.integralblue.com/2009/01/utf-8-and-mysql/comment-page-1/#comment-63</link>
		<dc:creator>miqrogroove</dc:creator>
		<pubDate>Sun, 20 Dec 2009 20:57:31 +0000</pubDate>
		<guid isPermaLink="false">http://candrews.integralblue.com/?p=23#comment-63</guid>
		<description>&gt; I checked the documentation for MySQL Connector/J (the JDBC driver), and it says that the connection is UTF-8

I just surfed in and noticed your DB problem here.  Actually, your MySQL Connector encoding was the original cause.  If you had ensured the text in the scripts was UTF-8 and forced the connection to match the single-byte (latin1) encoding of the DB table, then you would have had a binary-safe storage layer.

What threw you off track here was changing the table encoding to UTF-8.  As soon as you did that, it became necessary to guarantee everything between the script and the table was UTF-8 as well, to prevent implicit latin1-to-UTF8 conversion.  (That conversion is bad for binary data)

On the bright side, now all of your string columns will use chars instead of bytes :P</description>
		<content:encoded><![CDATA[<div class='microid-mailto+http:sha1:d3d7d0b6cf04d1b3740ec871ffa45192094443ed'>&gt; I checked the documentation for MySQL Connector/J (the JDBC driver), and it says that the connection is UTF-8</p>
<p>I just surfed in and noticed your DB problem here.  Actually, your MySQL Connector encoding was the original cause.  If you had ensured the text in the scripts was UTF-8 and forced the connection to match the single-byte (latin1) encoding of the DB table, then you would have had a binary-safe storage layer.</p>
<p>What threw you off track here was changing the table encoding to UTF-8.  As soon as you did that, it became necessary to guarantee everything between the script and the table was UTF-8 as well, to prevent implicit latin1-to-UTF8 conversion.  (That conversion is bad for binary data)</p>
<p>On the bright side, now all of your string columns will use chars instead of bytes <img src='http://candrews.integralblue.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One instance at a time with PID file in Bash by Gerard Seibert</title>
		<link>http://candrews.integralblue.com/2009/02/one-instance-at-a-time-with-pid-file-in-bash/comment-page-1/#comment-62</link>
		<dc:creator>Gerard Seibert</dc:creator>
		<pubDate>Mon, 30 Nov 2009 12:18:16 +0000</pubDate>
		<guid isPermaLink="false">http://candrews.integralblue.com/?p=37#comment-62</guid>
		<description>I modified your script slightly. It works on Bash and does not create a &#039;1&#039; file. Using the &#039;f&#039; flag with &#039;rm&#039; also prevents useless error messages.

PID_FILE=&quot;/var/run/my_prog.pid&quot;

## Check to see if the program is running
if [[ -e ${PID_FILE} ]]; then
## Capture the &#039;pid&#039; number in &#039;pid&#039; variable
  pid=$( ${PID_FILE}

do something

## Remove the pid file if it exists
if [[ -e ${PID_FILE} ]]; then
  rm -f ${PID_FILE}
fi</description>
		<content:encoded><![CDATA[<div class='microid-mailto+http:sha1:1a3a7da52eee5125b151fc8d9b427a3f3639630c'>I modified your script slightly. It works on Bash and does not create a &#8216;1&#8242; file. Using the &#8216;f&#8217; flag with &#8216;rm&#8217; also prevents useless error messages.</p>
<p>PID_FILE=&#8221;/var/run/my_prog.pid&#8221;</p>
<p>## Check to see if the program is running<br />
if [[ -e ${PID_FILE} ]]; then<br />
## Capture the &#8216;pid&#8217; number in &#8216;pid&#8217; variable<br />
  pid=$( ${PID_FILE}</p>
<p>do something</p>
<p>## Remove the pid file if it exists<br />
if [[ -e ${PID_FILE} ]]; then<br />
  rm -f ${PID_FILE}<br />
fi</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IPv6 Setup by Stephen</title>
		<link>http://candrews.integralblue.com/2009/01/ipv6-setup/comment-page-1/#comment-61</link>
		<dc:creator>Stephen</dc:creator>
		<pubDate>Sun, 22 Nov 2009 17:03:41 +0000</pubDate>
		<guid isPermaLink="false">http://candrews.integralblue.com/?p=28#comment-61</guid>
		<description>I have a simple apache webserver on my computer, just apache and php, i use go6 for ipv6 internet, what do i need to do to run an ipv6 server?</description>
		<content:encoded><![CDATA[<div class='microid-mailto+http:sha1:59e6d95a697c03e4d78ec3c934516603fc6e5ac5'>I have a simple apache webserver on my computer, just apache and php, i use go6 for ipv6 internet, what do i need to do to run an ipv6 server?</div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTP Caching Header Aware Servlet Filter by James Abley</title>
		<link>http://candrews.integralblue.com/2009/02/http-caching-header-aware-servlet-filter/comment-page-1/#comment-60</link>
		<dc:creator>James Abley</dc:creator>
		<pubDate>Wed, 11 Nov 2009 16:41:38 +0000</pubDate>
		<guid isPermaLink="false">http://candrews.integralblue.com/?p=32#comment-60</guid>
		<description>&lt;a href=&quot;#comment-44&quot; rel=&quot;nofollow&quot;&gt;@Craig Andrews &lt;/a&gt; 

That should get you started - http://intertwingly.net/blog/2007/09/30/Etag-vs-Encoding</description>
		<content:encoded><![CDATA[<div class='microid-mailto+http:sha1:e74f0d9a8010fdc861c6fcb9f924fc0a2af014b4'><a href="#comment-44" rel="nofollow">@Craig Andrews </a> </p>
<p>That should get you started &#8211; <a href="http://intertwingly.net/blog/2007/09/30/Etag-vs-Encoding" rel="nofollow">http://intertwingly.net/blog/2007/09/30/Etag-vs-Encoding</a></div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on oEmbed by WordPress 2.9 a chystané novinky (2): Jednoduché vkládání médií z externích služeb (např. YouTube) do příspěvků prostřednictvím oEmbed &#124; Separatista</title>
		<link>http://candrews.integralblue.com/2009/08/oembed/comment-page-1/#comment-59</link>
		<dc:creator>WordPress 2.9 a chystané novinky (2): Jednoduché vkládání médií z externích služeb (např. YouTube) do příspěvků prostřednictvím oEmbed &#124; Separatista</dc:creator>
		<pubDate>Mon, 09 Nov 2009 22:19:33 +0000</pubDate>
		<guid isPermaLink="false">http://candrews.integralblue.com/?p=100#comment-59</guid>
		<description>[...] pomocí tagu link rel v hlavičce HTML dokumentu (viz manuál). Mimochodem, tento formát může poskytovat i váš WordPress sám o sobě, např. pomocí pluginu oEmbed Provider, který stačí aktivovat a [...]</description>
		<content:encoded><![CDATA[<div class='microid-http+http:sha1:9c90b22691f5609752bc21654418a88d205b0ae1'>[...] pomocí tagu link rel v hlavičce HTML dokumentu (viz manuál). Mimochodem, tento formát může poskytovat i váš WordPress sám o sobě, např. pomocí pluginu oEmbed Provider, který stačí aktivovat a [...]</div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compression (deflate) and HTML, CSS, JS Minification in ASP.NET by Tim Meers</title>
		<link>http://candrews.integralblue.com/2009/05/compression-deflate-and-html-css-js-minification-in-asp-net/comment-page-1/#comment-58</link>
		<dc:creator>Tim Meers</dc:creator>
		<pubDate>Sat, 07 Nov 2009 02:07:42 +0000</pubDate>
		<guid isPermaLink="false">http://candrews.integralblue.com/?p=76#comment-58</guid>
		<description>Hmm, just got a chance to test this out. It works good but it&#039;s actually breaking my Asp.Net AJAX and keps it from loading and finding my ScriptResource.axd files. I&#039;d love to drop the toolkit, but for the time being it&#039;s going to stay put. Any ideas on how to correct, or did you not see this issue? Oh and btw, it compresses my page source from 48k to 9k, crazy fast loading times, just wish it didnt break the toolkit.

Tim</description>
		<content:encoded><![CDATA[<div class='microid-mailto+http:sha1:04add99bc06804d10780b3ae324eb610fceeb2b4'>Hmm, just got a chance to test this out. It works good but it&#8217;s actually breaking my Asp.Net AJAX and keps it from loading and finding my ScriptResource.axd files. I&#8217;d love to drop the toolkit, but for the time being it&#8217;s going to stay put. Any ideas on how to correct, or did you not see this issue? Oh and btw, it compresses my page source from 48k to 9k, crazy fast loading times, just wish it didnt break the toolkit.</p>
<p>Tim</p></div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTP Caching Header Aware Servlet Filter by Alexandre Victoor</title>
		<link>http://candrews.integralblue.com/2009/02/http-caching-header-aware-servlet-filter/comment-page-1/#comment-57</link>
		<dc:creator>Alexandre Victoor</dc:creator>
		<pubDate>Fri, 09 Oct 2009 22:22:32 +0000</pubDate>
		<guid isPermaLink="false">http://candrews.integralblue.com/?p=32#comment-57</guid>
		<description>Thanks for this filter.
I think there might be a concurrency bug : SimpleDateFormat is not a thread safe class, getHttpDate() and getDateFromHttpDate() are synchronized but could be called by two different threads at the same time...</description>
		<content:encoded><![CDATA[<div class='microid-mailto+http:sha1:fe72a9cf2b640e2fb90c821af76d3913c42f2f6b'>Thanks for this filter.<br />
I think there might be a concurrency bug : SimpleDateFormat is not a thread safe class, getHttpDate() and getDateFromHttpDate() are synchronized but could be called by two different threads at the same time&#8230;</div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTP Caching Header Aware Servlet Filter by Craig Andrews</title>
		<link>http://candrews.integralblue.com/2009/02/http-caching-header-aware-servlet-filter/comment-page-1/#comment-56</link>
		<dc:creator>Craig Andrews</dc:creator>
		<pubDate>Mon, 10 Aug 2009 15:45:27 +0000</pubDate>
		<guid isPermaLink="false">http://candrews.integralblue.com/?p=32#comment-56</guid>
		<description>Assuming you&#039;ve stuck to good HTTP design (ex GETs don&#039;t modify data), you can use this filter for all pages, so everything will benefit from the additional headers and caching.</description>
		<content:encoded><![CDATA[<div class='microid-mailto+http:sha1:309cf8925cf7ecf432dfe9ca75354174d4fcd107'>Assuming you&#8217;ve stuck to good HTTP design (ex GETs don&#8217;t modify data), you can use this filter for all pages, so everything will benefit from the additional headers and caching.</div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTP Caching Header Aware Servlet Filter by Alberto</title>
		<link>http://candrews.integralblue.com/2009/02/http-caching-header-aware-servlet-filter/comment-page-1/#comment-55</link>
		<dc:creator>Alberto</dc:creator>
		<pubDate>Mon, 10 Aug 2009 02:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://candrews.integralblue.com/?p=32#comment-55</guid>
		<description>Hi Craig, how do you suggest map this filter in web.xml? just for pages that i want or leave for all pages in my web application?</description>
		<content:encoded><![CDATA[<div class='microid-mailto+http:sha1:6490a4021ca340f4715427bf2e3daf66f3676c20'>Hi Craig, how do you suggest map this filter in web.xml? just for pages that i want or leave for all pages in my web application?</div>
]]></content:encoded>
	</item>
</channel>
</rss>
