<?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 Olhovsky</title>
	<atom:link href="http://www.olhovsky.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.olhovsky.com</link>
	<description>Miscellaneous Coding</description>
	<lastBuildDate>Wed, 28 Jul 2010 04:37:04 +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 ToString Garbage Creation in C# by Gavin Pugh</title>
		<link>http://www.olhovsky.com/2009/09/tostring-garbage-creation-in-c/comment-page-1/#comment-56</link>
		<dc:creator>Gavin Pugh</dc:creator>
		<pubDate>Wed, 28 Jul 2010 04:37:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.olhovsky.com/?p=70#comment-56</guid>
		<description>Hi, I stumbled across this article from a web search.

A few months back I published some articles which delve into some methods to avoid garbage when working with strings. Particularly the ones you mention in this post; they would be addressed by using something similar from this:
http://www.musictomakegamesby.com/2010/04/01/xnac-avoiding-garbage-when-working-with-stringbuilder/

Cheers.</description>
		<content:encoded><![CDATA[<p>Hi, I stumbled across this article from a web search.</p>
<p>A few months back I published some articles which delve into some methods to avoid garbage when working with strings. Particularly the ones you mention in this post; they would be addressed by using something similar from this:<br />
<a href="http://www.musictomakegamesby.com/2010/04/01/xnac-avoiding-garbage-when-working-with-stringbuilder/" rel="nofollow">http://www.musictomakegamesby.com/2010/04/01/xnac-avoiding-garbage-when-working-with-stringbuilder/</a></p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extract Longest Non-Decreasing Sequence From Any Sequence by brian</title>
		<link>http://www.olhovsky.com/2009/11/extract-longest-increasing-sequence-from-any-sequence/comment-page-1/#comment-55</link>
		<dc:creator>brian</dc:creator>
		<pubDate>Thu, 08 Jul 2010 15:20:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.olhovsky.com/?p=106#comment-55</guid>
		<description>Nice to know it&#039;s here if I ever need it.  I like the format of the listing too (fixed pitch, alternating shading).</description>
		<content:encoded><![CDATA[<p>Nice to know it&#8217;s here if I ever need it.  I like the format of the listing too (fixed pitch, alternating shading).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extract Longest Non-Decreasing Sequence From Any Sequence by olhovsky</title>
		<link>http://www.olhovsky.com/2009/11/extract-longest-increasing-sequence-from-any-sequence/comment-page-1/#comment-49</link>
		<dc:creator>olhovsky</dc:creator>
		<pubDate>Thu, 13 May 2010 23:29:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.olhovsky.com/?p=106#comment-49</guid>
		<description>Hey someone found a &lt;em&gt;use&lt;/em&gt; for this?! Well, that&#039;s more than I expected when posting it :)</description>
		<content:encoded><![CDATA[<p>Hey someone found a <em>use</em> for this?! Well, that&#8217;s more than I expected when posting it <img src='http://www.olhovsky.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extract Longest Non-Decreasing Sequence From Any Sequence by newur</title>
		<link>http://www.olhovsky.com/2009/11/extract-longest-increasing-sequence-from-any-sequence/comment-page-1/#comment-47</link>
		<dc:creator>newur</dc:creator>
		<pubDate>Thu, 06 May 2010 05:25:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.olhovsky.com/?p=106#comment-47</guid>
		<description>Hey,

that was (nearly) excact what i was looking for. Had to write this for univerisity in Java. In the end my resulting code looks MUCH different and is not as fast as yours, but its still okay. Without your example I would have never find a solution (and it took only 3 Hours of try-and-error to understand, how it works ^^)

Thanks for sharing, man. :)</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>that was (nearly) excact what i was looking for. Had to write this for univerisity in Java. In the end my resulting code looks MUCH different and is not as fast as yours, but its still okay. Without your example I would have never find a solution (and it took only 3 Hours of try-and-error to understand, how it works ^^)</p>
<p>Thanks for sharing, man. <img src='http://www.olhovsky.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extract Longest Non-Decreasing Sequence From Any Sequence by olhovsky</title>
		<link>http://www.olhovsky.com/2009/11/extract-longest-increasing-sequence-from-any-sequence/comment-page-1/#comment-46</link>
		<dc:creator>olhovsky</dc:creator>
		<pubDate>Tue, 20 Apr 2010 06:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.olhovsky.com/?p=106#comment-46</guid>
		<description>Can you be a little bit more specific?
E.g., tell me a sequence that this algorithm doesn&#039;t work on.

I have verified this against a few million random strings which were solved using a more brute force approach, so I&#039;d be surprised if there is an error.</description>
		<content:encoded><![CDATA[<p>Can you be a little bit more specific?<br />
E.g., tell me a sequence that this algorithm doesn&#8217;t work on.</p>
<p>I have verified this against a few million random strings which were solved using a more brute force approach, so I&#8217;d be surprised if there is an error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extract Longest Non-Decreasing Sequence From Any Sequence by Mac</title>
		<link>http://www.olhovsky.com/2009/11/extract-longest-increasing-sequence-from-any-sequence/comment-page-1/#comment-44</link>
		<dc:creator>Mac</dc:creator>
		<pubDate>Fri, 09 Apr 2010 00:19:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.olhovsky.com/?p=106#comment-44</guid>
		<description>Yo, this shit doesn&#039;t fucking work</description>
		<content:encoded><![CDATA[<p>Yo, this shit doesn&#8217;t fucking work</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2D CDF 9/7 Wavelet Transform in Python by olhovsky</title>
		<link>http://www.olhovsky.com/2009/03/2d-cdf-97-wavelet-transform-in-python/comment-page-1/#comment-38</link>
		<dc:creator>olhovsky</dc:creator>
		<pubDate>Thu, 08 Oct 2009 17:17:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.olhovsky.com/?p=17#comment-38</guid>
		<description>I&#039;ve edited the code as per your suggestion, thanks Chris.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve edited the code as per your suggestion, thanks Chris.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2D CDF 9/7 Wavelet Transform in Python by Chris Murphy</title>
		<link>http://www.olhovsky.com/2009/03/2d-cdf-97-wavelet-transform-in-python/comment-page-1/#comment-34</link>
		<dc:creator>Chris Murphy</dc:creator>
		<pubDate>Wed, 07 Oct 2009 21:45:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.olhovsky.com/?p=17#comment-34</guid>
		<description>Hi,
  Could you please add an explicit license for this code, or declare that you release it to the public domain?

Thank you,
  Chris</description>
		<content:encoded><![CDATA[<p>Hi,<br />
  Could you please add an explicit license for this code, or declare that you release it to the public domain?</p>
<p>Thank you,<br />
  Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2D CDF 9/7 Wavelet Transform in Python by olhovsky</title>
		<link>http://www.olhovsky.com/2009/03/2d-cdf-97-wavelet-transform-in-python/comment-page-1/#comment-5</link>
		<dc:creator>olhovsky</dc:creator>
		<pubDate>Fri, 26 Jun 2009 17:13:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.olhovsky.com/?p=17#comment-5</guid>
		<description>You can trust the coefficients on wikipedia at the time of posting this. The coefficients I used in my python code are also correct, and mine have more precision (which won&#039;t matter unless you use 64 bit floats).</description>
		<content:encoded><![CDATA[<p>You can trust the coefficients on wikipedia at the time of posting this. The coefficients I used in my python code are also correct, and mine have more precision (which won&#8217;t matter unless you use 64 bit floats).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2D CDF 9/7 Wavelet Transform in Python by GERAUD BOUSQUET</title>
		<link>http://www.olhovsky.com/2009/03/2d-cdf-97-wavelet-transform-in-python/comment-page-1/#comment-3</link>
		<dc:creator>GERAUD BOUSQUET</dc:creator>
		<pubDate>Sat, 09 May 2009 09:51:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.olhovsky.com/?p=17#comment-3</guid>
		<description>Hi !

I am interested in the implementation of CDF 9/7 in RealBasic to use it for denoising pictures in my softwar SeamlessMaker (http://www.hypatiasoft.fr). I have already writen all subroutines  it for Haar&#039;s wavelets but the results are not very good. Can I use the same subroutines for CDF 9/7 just changing the High pass and lowpass filters ?  Can I trust in these coefficients : http://en.wikipedia.org/wiki/Cohen-Daubechies-Feauveau_wavelet ?

Thanks in advance.

Géraud Bousquet</description>
		<content:encoded><![CDATA[<p>Hi !</p>
<p>I am interested in the implementation of CDF 9/7 in RealBasic to use it for denoising pictures in my softwar SeamlessMaker (<a href="http://www.hypatiasoft.fr" rel="nofollow">http://www.hypatiasoft.fr</a>). I have already writen all subroutines  it for Haar&#8217;s wavelets but the results are not very good. Can I use the same subroutines for CDF 9/7 just changing the High pass and lowpass filters ?  Can I trust in these coefficients : <a href="http://en.wikipedia.org/wiki/Cohen-Daubechies-Feauveau_wavelet" rel="nofollow">http://en.wikipedia.org/wiki/Cohen-Daubechies-Feauveau_wavelet</a> ?</p>
<p>Thanks in advance.</p>
<p>Géraud Bousquet</p>
]]></content:encoded>
	</item>
</channel>
</rss>
