<?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 tdistler.com</title>
	<atom:link href="http://tdistler.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://tdistler.com</link>
	<description>&#34;To err is human, but to really foul things up you need a computer.”</description>
	<lastBuildDate>Wed, 30 Nov 2011 07:44:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Netem WAN Emulation: How to Setup a Netem Box by Brettyboo</title>
		<link>http://tdistler.com/2011/06/10/netem-wan-emulation-how-to-setup-a-netem-box/comment-page-1#comment-16188</link>
		<dc:creator>Brettyboo</dc:creator>
		<pubDate>Wed, 30 Nov 2011 07:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=973#comment-16188</guid>
		<description>Yes, same for Fedora actually</description>
		<content:encoded><![CDATA[<p>Yes, same for Fedora actually</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on StackHash and Application Crashes on Windows by M . R</title>
		<link>http://tdistler.com/2009/04/10/stackhash-and-application-crashes-on-windows/comment-page-1#comment-16184</link>
		<dc:creator>M . R</dc:creator>
		<pubDate>Fri, 25 Nov 2011 13:21:47 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=186#comment-16184</guid>
		<description>i am having this problem too 
with every single one of my software even paint

i`ll be glad if anybody help me throw ... 

1- changing memory is one thing i can`t afford 

if there is any other way that can decrease or make it ok i`d like to hear</description>
		<content:encoded><![CDATA[<p>i am having this problem too<br />
with every single one of my software even paint</p>
<p>i`ll be glad if anybody help me throw &#8230; </p>
<p>1- changing memory is one thing i can`t afford </p>
<p>if there is any other way that can decrease or make it ok i`d like to hear</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding stdint.h to Visual Studio by Bruce</title>
		<link>http://tdistler.com/2011/11/13/adding-stdint-h-to-visual-studio/comment-page-1#comment-16179</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Thu, 17 Nov 2011 11:41:03 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=1066#comment-16179</guid>
		<description>Visual Studio 2010 has stdint.h in C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include</description>
		<content:encoded><![CDATA[<p>Visual Studio 2010 has stdint.h in C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Netem WAN Emulation: How to Setup a Netem Box by Qi Fan</title>
		<link>http://tdistler.com/2011/06/10/netem-wan-emulation-how-to-setup-a-netem-box/comment-page-1#comment-16176</link>
		<dc:creator>Qi Fan</dc:creator>
		<pubDate>Fri, 11 Nov 2011 01:56:45 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=973#comment-16176</guid>
		<description>This is the most useful netem guide I can find online. Thank you very much.

One minor difference I found was the file path
/proc/sys/net/bridge-*
does not exist on CentOS 5 and 6;

They are located here
/proc/sys/net/bridge/bridge-*
on CentOS.</description>
		<content:encoded><![CDATA[<p>This is the most useful netem guide I can find online. Thank you very much.</p>
<p>One minor difference I found was the file path<br />
/proc/sys/net/bridge-*<br />
does not exist on CentOS 5 and 6;</p>
<p>They are located here<br />
/proc/sys/net/bridge/bridge-*<br />
on CentOS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Live555: Compiling with VS2008 by john-paul renno</title>
		<link>http://tdistler.com/2011/05/14/live555-compiling-with-vs2008/comment-page-1#comment-16172</link>
		<dc:creator>john-paul renno</dc:creator>
		<pubDate>Wed, 02 Nov 2011 23:37:15 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=959#comment-16172</guid>
		<description>The problem with the script is spaces in the path to compiler given in $(TOOLS32)

The win32config file must provide the path to VC in quotes if a space is present, however this is concantenated later with other variables along with the quotes. For me this concatenation of variables that were already quotes yielded invalid paths to the comiler exe.

The solution i employed was to create a duplicate variable of  $(TOOLS32)
without the quotes by doing: something like this:

TOOLS32_NO_QUOTES=$(TOOLS32:&quot;=)

subsequently i replaced all concatented occurances of $(TOOLS32) with $(TOOLS32_NO_QUOTES) and voila, each makefile was generated and executed with no problems according to the above.

PS: i used VS2010 SP1 compiler/linker.</description>
		<content:encoded><![CDATA[<p>The problem with the script is spaces in the path to compiler given in $(TOOLS32)</p>
<p>The win32config file must provide the path to VC in quotes if a space is present, however this is concantenated later with other variables along with the quotes. For me this concatenation of variables that were already quotes yielded invalid paths to the comiler exe.</p>
<p>The solution i employed was to create a duplicate variable of  $(TOOLS32)<br />
without the quotes by doing: something like this:</p>
<p>TOOLS32_NO_QUOTES=$(TOOLS32:&#8221;=)</p>
<p>subsequently i replaced all concatented occurances of $(TOOLS32) with $(TOOLS32_NO_QUOTES) and voila, each makefile was generated and executed with no problems according to the above.</p>
<p>PS: i used VS2010 SP1 compiler/linker.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why Google Isn&#8217;t Making Us Stupid by Steve</title>
		<link>http://tdistler.com/2008/06/23/why-google-isnt-making-us-stupid/comment-page-1#comment-16170</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 27 Oct 2011 03:43:57 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=97#comment-16170</guid>
		<description>helpful thnx;)</description>
		<content:encoded><![CDATA[<p>helpful thnx;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Live555: Compiling with VS2008 by jam</title>
		<link>http://tdistler.com/2011/05/14/live555-compiling-with-vs2008/comment-page-1#comment-16169</link>
		<dc:creator>jam</dc:creator>
		<pubDate>Fri, 21 Oct 2011 09:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=959#comment-16169</guid>
		<description>Hi, really interesting your guide. The problem for me is that I have to use Live555 in a Qt project using MinGW.

So, how can I compile Live555 with MinGW? I&#039;m working on XP

Thank you</description>
		<content:encoded><![CDATA[<p>Hi, really interesting your guide. The problem for me is that I have to use Live555 in a Qt project using MinGW.</p>
<p>So, how can I compile Live555 with MinGW? I&#8217;m working on XP</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ffmpeg and Invalid Buffer Reads by Flo</title>
		<link>http://tdistler.com/2011/01/06/ffmpeg-and-invalid-buffer-reads/comment-page-1#comment-16168</link>
		<dc:creator>Flo</dc:creator>
		<pubDate>Thu, 20 Oct 2011 06:19:25 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=705#comment-16168</guid>
		<description>Hi Tom,

sounds interesting: I&#039;m also struggeling with read buffer problems with ffmpeg regarding live transcoding of a mpeg2 stream. Maybe this issue is also addressed with your patch.
Have you committed your changes back to the official ffmpeg sources or are your changes available (patch file)?

-Florian</description>
		<content:encoded><![CDATA[<p>Hi Tom,</p>
<p>sounds interesting: I&#8217;m also struggeling with read buffer problems with ffmpeg regarding live transcoding of a mpeg2 stream. Maybe this issue is also addressed with your patch.<br />
Have you committed your changes back to the official ffmpeg sources or are your changes available (patch file)?</p>
<p>-Florian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASCII Video Rendering by Software Developer</title>
		<link>http://tdistler.com/2008/10/03/ascii-video-rendering/comment-page-1#comment-16167</link>
		<dc:creator>Software Developer</dc:creator>
		<pubDate>Thu, 13 Oct 2011 13:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=140#comment-16167</guid>
		<description>thanks for this post.. how can i watch this video??</description>
		<content:encoded><![CDATA[<p>thanks for this post.. how can i watch this video??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Etymology of &#8220;Foo&#8221; by Kevin K</title>
		<link>http://tdistler.com/2007/03/27/etymology-of-foo/comment-page-1#comment-16166</link>
		<dc:creator>Kevin K</dc:creator>
		<pubDate>Fri, 30 Sep 2011 01:59:23 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=72#comment-16166</guid>
		<description>How about the &quot;hierarchy&quot; of foo?  You&#039;re West Coast, right?

For some reason, I put &quot;garply&quot; fourth, before &quot;quux&quot;...</description>
		<content:encoded><![CDATA[<p>How about the &#8220;hierarchy&#8221; of foo?  You&#8217;re West Coast, right?</p>
<p>For some reason, I put &#8220;garply&#8221; fourth, before &#8220;quux&#8221;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Motivational Poster: Programming by Kevin K</title>
		<link>http://tdistler.com/2008/07/18/motivational-poster-programming/comment-page-1#comment-16165</link>
		<dc:creator>Kevin K</dc:creator>
		<pubDate>Fri, 30 Sep 2011 01:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=119#comment-16165</guid>
		<description>&quot;Since it&#039;s Monday, I thought we might like to dive right into the bug tracker &lt;b&gt;&lt;i&gt;first thing&lt;/i&gt;&lt;/b&gt;...&quot;</description>
		<content:encoded><![CDATA[<p>&#8220;Since it&#8217;s Monday, I thought we might like to dive right into the bug tracker <b><i>first thing</i></b>&#8230;&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Faith vs. Hope by Beekae</title>
		<link>http://tdistler.com/2007/01/07/faith-vs-hope/comment-page-1#comment-16163</link>
		<dc:creator>Beekae</dc:creator>
		<pubDate>Mon, 26 Sep 2011 06:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=82#comment-16163</guid>
		<description>Nice article. I&#039;ve wondered why don&#039;t churches just focus on faith instead recently. I&#039;ve come to the understanding that whether one has hope or faith depends on their level of maturity - not necessarily only in a spiritual sense since faith and hope can be powerful for non-Christians as well. Those who don&#039;t grasp the power of faith enough settle for the relief from mental burdens that hope brings. Those who grasp faith a bit further, would never settle with hoping. 

Even from a totally worldly practical perspective, one can see that with faith, you can focus all of your faculties and resources toward a solution but when hoping you waste much mental energy and time just consoling yourself and convincing yourself that things will be better.</description>
		<content:encoded><![CDATA[<p>Nice article. I&#8217;ve wondered why don&#8217;t churches just focus on faith instead recently. I&#8217;ve come to the understanding that whether one has hope or faith depends on their level of maturity &#8211; not necessarily only in a spiritual sense since faith and hope can be powerful for non-Christians as well. Those who don&#8217;t grasp the power of faith enough settle for the relief from mental burdens that hope brings. Those who grasp faith a bit further, would never settle with hoping. </p>
<p>Even from a totally worldly practical perspective, one can see that with faith, you can focus all of your faculties and resources toward a solution but when hoping you waste much mental energy and time just consoling yourself and convincing yourself that things will be better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Crazy Old Print Ads by Chris</title>
		<link>http://tdistler.com/2008/01/18/crazy-old-print-ads/comment-page-1#comment-16150</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 15 Sep 2011 14:44:24 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=15#comment-16150</guid>
		<description>Oh ho, gotta love American advertising</description>
		<content:encoded><![CDATA[<p>Oh ho, gotta love American advertising</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C/C++: Using Bitfields Effectively by anduril462</title>
		<link>http://tdistler.com/2008/07/21/cc-using-bitfields-effectively/comment-page-1#comment-16148</link>
		<dc:creator>anduril462</dc:creator>
		<pubDate>Thu, 08 Sep 2011 17:35:28 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=120#comment-16148</guid>
		<description>Nice article, especially the race condition section.  There&#039;s one other big problem you missed though.  The order of allocation of bit-fields is implementation defined, so it&#039;s entirely possible, though unlikely, that the implementation puts the fields in some order other than what you specify.  That means, for example, that Base may actually occupy bits 16-31, and your direct read from a hardware register wont work.  To use this reliably, you must have a thorough understanding of your implementation (compiler, etc) and even then, it&#039;s not likely to be portable.  See section 6.7.2.1 of the C99 standard for a list of other implementation-defined and unspecified behaviors to look out for.</description>
		<content:encoded><![CDATA[<p>Nice article, especially the race condition section.  There&#8217;s one other big problem you missed though.  The order of allocation of bit-fields is implementation defined, so it&#8217;s entirely possible, though unlikely, that the implementation puts the fields in some order other than what you specify.  That means, for example, that Base may actually occupy bits 16-31, and your direct read from a hardware register wont work.  To use this reliably, you must have a thorough understanding of your implementation (compiler, etc) and even then, it&#8217;s not likely to be portable.  See section 6.7.2.1 of the C99 standard for a list of other implementation-defined and unspecified behaviors to look out for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Faith vs. Hope by Pratap</title>
		<link>http://tdistler.com/2007/01/07/faith-vs-hope/comment-page-1#comment-16144</link>
		<dc:creator>Pratap</dc:creator>
		<pubDate>Sat, 27 Aug 2011 20:50:47 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=82#comment-16144</guid>
		<description>This article has thrown a simple but comprehensive distinction between FAITH and HOPE which was often confusing me. And when referring FAITH in the light of the Biblical versus, it was more obvious and reinstated my FAITH (not Hope!) in my understanding the subject which otherwise was of the opinion that there wasn&#039;t any difference.

Thank You Tom! God Bless You.</description>
		<content:encoded><![CDATA[<p>This article has thrown a simple but comprehensive distinction between FAITH and HOPE which was often confusing me. And when referring FAITH in the light of the Biblical versus, it was more obvious and reinstated my FAITH (not Hope!) in my understanding the subject which otherwise was of the opinion that there wasn&#8217;t any difference.</p>
<p>Thank You Tom! God Bless You.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Define NaN (Not-a-Number) on Windows by Chris</title>
		<link>http://tdistler.com/2011/03/24/how-to-define-nan-not-a-number-on-windows/comment-page-1#comment-16141</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 22 Aug 2011 14:27:09 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=874#comment-16141</guid>
		<description>I found the following easier and independent of 32/64 bit platform issues.
It also avoids the __nan constant:

#ifdef _MSC_VER
#define INFINITY    (DBL_MAX+DBL_MAX)
#define NAN           (INFINITY-INFINITY)
#endif

The check for a defined _MSC_VER makes sure that the code can even
be compiled on a C99 compliant compiler or on Unix/Linux.</description>
		<content:encoded><![CDATA[<p>I found the following easier and independent of 32/64 bit platform issues.<br />
It also avoids the __nan constant:</p>
<p>#ifdef _MSC_VER<br />
#define INFINITY    (DBL_MAX+DBL_MAX)<br />
#define NAN           (INFINITY-INFINITY)<br />
#endif</p>
<p>The check for a defined _MSC_VER makes sure that the code can even<br />
be compiled on a C99 compliant compiler or on Unix/Linux.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Live555: Compiling with VS2008 by Baris Evrim Demiroz</title>
		<link>http://tdistler.com/2011/05/14/live555-compiling-with-vs2008/comment-page-1#comment-16139</link>
		<dc:creator>Baris Evrim Demiroz</dc:creator>
		<pubDate>Mon, 08 Aug 2011 14:06:26 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=959#comment-16139</guid>
		<description>Thanks a bunch, I was trying to compile it with VS2010 and having problems. This was really helpful.</description>
		<content:encoded><![CDATA[<p>Thanks a bunch, I was trying to compile it with VS2010 and having problems. This was really helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on High-performance Timing on Linux / Windows by jgreen</title>
		<link>http://tdistler.com/2010/06/27/high-performance-timing-on-linux-windows/comment-page-1#comment-16137</link>
		<dc:creator>jgreen</dc:creator>
		<pubDate>Fri, 22 Jul 2011 17:31:38 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=350#comment-16137</guid>
		<description>I find your article to be very informative and am trying to measure an apps perf across multiple procs. What I am unable to find or get info on is the typical value of the cpu clock id that is returned by the function clock_getcpuclockid. I&#039;m getting negative integers but oddly enough, they are unique on the node, but identical across nodes. (i.e. cpu clock id for cpu #1/4 is the same value on node one as it is on node 12). Does this make sense to you? If so, please explain. Thanks!</description>
		<content:encoded><![CDATA[<p>I find your article to be very informative and am trying to measure an apps perf across multiple procs. What I am unable to find or get info on is the typical value of the cpu clock id that is returned by the function clock_getcpuclockid. I&#8217;m getting negative integers but oddly enough, they are unique on the node, but identical across nodes. (i.e. cpu clock id for cpu #1/4 is the same value on node one as it is on node 12). Does this make sense to you? If so, please explain. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CRC32: A Simple C++ Class by uklam</title>
		<link>http://tdistler.com/2011/06/22/crc32-a-simple-c-class/comment-page-1#comment-16126</link>
		<dc:creator>uklam</dc:creator>
		<pubDate>Sat, 25 Jun 2011 05:30:05 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=993#comment-16126</guid>
		<description>probably not worth seeing an accountant, but I&#039;ll try it, thx</description>
		<content:encoded><![CDATA[<p>probably not worth seeing an accountant, but I&#8217;ll try it, thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Audio Resampling Using FFMpeg (avcodec) by GRR</title>
		<link>http://tdistler.com/2010/07/22/audio-resampling-using-ffmpeg-avcodec/comment-page-1#comment-16119</link>
		<dc:creator>GRR</dc:creator>
		<pubDate>Sun, 22 May 2011 04:40:19 +0000</pubDate>
		<guid isPermaLink="false">http://tdistler.com/?p=427#comment-16119</guid>
		<description>Hi,

Thanks for posting the code. I have one question.  Looks like av_resample API only excepts input data which is a &quot;short&quot; int. I have a wav file with each value being a double. Can you suggest me what I can do in this case. Can I still use the av_resample API?


--GRR</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for posting the code. I have one question.  Looks like av_resample API only excepts input data which is a &#8220;short&#8221; int. I have a wav file with each value being a double. Can you suggest me what I can do in this case. Can I still use the av_resample API?</p>
<p>&#8211;GRR</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 3.380 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-08 16:15:18 -->

