<?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 Calvin Froedge</title>
	<atom:link href="http://www.calvinfroedge.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.calvinfroedge.com</link>
	<description>Stuff I think about and do</description>
	<lastBuildDate>Mon, 20 Feb 2012 06:19:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Comment on Ikigai by Sebastian Marshall &#8211; A Review by Calvin Froedge</title>
		<link>http://www.calvinfroedge.com/ikigai-by-sebastian-marshall-a-review/#comment-3096</link>
		<dc:creator>Calvin Froedge</dc:creator>
		<pubDate>Mon, 20 Feb 2012 06:19:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.calvinfroedge.com/?p=232#comment-3096</guid>
		<description>Yea, man!  It&#039;s funny, just re-reading what I wrote after your response I saw several of my own minor mistakes that I didn&#039;t notice while I was writing = ).  If you want anything proofed in the future hit me up.

Really enjoyed Ikigai.  A book I&#039;d highly recommend you check out (right up your alley) is &quot;The Talent Code&quot; by Daniel Coyle.  Fascinating stuff about how talent is built through deliberate practice (the science, down to the level of myelin wrapping neurons in your brain to hard wire new skills).</description>
		<content:encoded><![CDATA[<p>Yea, man!  It&#8217;s funny, just re-reading what I wrote after your response I saw several of my own minor mistakes that I didn&#8217;t notice while I was writing = ).  If you want anything proofed in the future hit me up.</p>
<p>Really enjoyed Ikigai.  A book I&#8217;d highly recommend you check out (right up your alley) is &#8220;The Talent Code&#8221; by Daniel Coyle.  Fascinating stuff about how talent is built through deliberate practice (the science, down to the level of myelin wrapping neurons in your brain to hard wire new skills).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ikigai by Sebastian Marshall &#8211; A Review by Sebastian Marshall</title>
		<link>http://www.calvinfroedge.com/ikigai-by-sebastian-marshall-a-review/#comment-3094</link>
		<dc:creator>Sebastian Marshall</dc:creator>
		<pubDate>Mon, 20 Feb 2012 05:15:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.calvinfroedge.com/?p=232#comment-3094</guid>
		<description>Thanks for the review, really appreciated. We&#039;re doing a final cleanup of typos and polish before we push to Createspace so people can get physical copies -- I agree about the value of polish. Thanks for the read and the review, best wishes,

-SM</description>
		<content:encoded><![CDATA[<p>Thanks for the review, really appreciated. We&#8217;re doing a final cleanup of typos and polish before we push to Createspace so people can get physical copies &#8212; I agree about the value of polish. Thanks for the read and the review, best wishes,</p>
<p>-SM</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The difference between a function-like macro and a function in C, C++ by Calvin Froedge</title>
		<link>http://www.calvinfroedge.com/the-difference-between-a-function-like-macro-and-a-function-in-c-cplusplus/#comment-3055</link>
		<dc:creator>Calvin Froedge</dc:creator>
		<pubDate>Fri, 17 Feb 2012 15:23:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.calvinfroedge.com/?p=207#comment-3055</guid>
		<description>Yo, thanks, John!  Yea, you&#039;re right.  The MIT Open Courseware also compares several of the different possibilities based on parenthesis uses.   Thanks for reading!</description>
		<content:encoded><![CDATA[<p>Yo, thanks, John!  Yea, you&#8217;re right.  The MIT Open Courseware also compares several of the different possibilities based on parenthesis uses.   Thanks for reading!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The difference between a function-like macro and a function in C, C++ by John Crepezzi</title>
		<link>http://www.calvinfroedge.com/the-difference-between-a-function-like-macro-and-a-function-in-c-cplusplus/#comment-3049</link>
		<dc:creator>John Crepezzi</dc:creator>
		<pubDate>Fri, 17 Feb 2012 11:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.calvinfroedge.com/?p=207#comment-3049</guid>
		<description>Nice post - definitely worth noting that since the macro is equivalent to a substitution, wrapping 2 + 1 in parenthesis fixes the discrepancy.  Great topic!</description>
		<content:encoded><![CDATA[<p>Nice post &#8211; definitely worth noting that since the macro is equivalent to a substitution, wrapping 2 + 1 in parenthesis fixes the discrepancy.  Great topic!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How Well Do You Understand &#8220;Static&#8221; Variables? by Calvin Froedge</title>
		<link>http://www.calvinfroedge.com/how-well-do-you-understand-static-variables/#comment-3040</link>
		<dc:creator>Calvin Froedge</dc:creator>
		<pubDate>Thu, 16 Feb 2012 21:52:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.calvinfroedge.com/?p=200#comment-3040</guid>
		<description>Hey Nick, thanks, I dd not include the static keyword in the second code sample by mistake.  I copy and pasted from the first. 

You make a great point about what may seem like a subtle difference:

static $test;
$test = 0;

...does yield a totally different result than

static $test = 0;

For anyone who may not have caught the difference, in the first example $test is initialized as a static variable with a NULL value, and is then immediately reassigned a value of 0.  In Nick&#039;s second example, $test is initialized  as a static variable with a n integer value of 0.  Because the static keyword is used, $test need not be reinitialized.

Thanks for reading and contributing!</description>
		<content:encoded><![CDATA[<p>Hey Nick, thanks, I dd not include the static keyword in the second code sample by mistake.  I copy and pasted from the first. </p>
<p>You make a great point about what may seem like a subtle difference:</p>
<p>static $test;<br />
$test = 0;</p>
<p>&#8230;does yield a totally different result than</p>
<p>static $test = 0;</p>
<p>For anyone who may not have caught the difference, in the first example $test is initialized as a static variable with a NULL value, and is then immediately reassigned a value of 0.  In Nick&#8217;s second example, $test is initialized  as a static variable with a n integer value of 0.  Because the static keyword is used, $test need not be reinitialized.</p>
<p>Thanks for reading and contributing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How Well Do You Understand &#8220;Static&#8221; Variables? by Nick Brown</title>
		<link>http://www.calvinfroedge.com/how-well-do-you-understand-static-variables/#comment-3039</link>
		<dc:creator>Nick Brown</dc:creator>
		<pubDate>Thu, 16 Feb 2012 20:41:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.calvinfroedge.com/?p=200#comment-3039</guid>
		<description>In the second code example, you should actually put the &#039;static&#039; keyword in there, to be clear about what you mean.

&lt;code&gt;
static $test;
$test = 0;
&lt;/code&gt;

... produces a completely different result than ...

&lt;code&gt;
static $test = 0;
&lt;/code&gt;

The static keyword not only affects the behaviour of the variable, but also the behaviour of the &lt;em&gt;initialization&lt;/em&gt; of the variable, if and only if it is initialzed as part of the static declaration.

I think you&#039;ll struggle to dispell anyones sense of it being trippy, unless you get that point across.

Cheers.</description>
		<content:encoded><![CDATA[<p>In the second code example, you should actually put the &#8216;static&#8217; keyword in there, to be clear about what you mean.</p>
<p><code><br />
static $test;<br />
$test = 0;<br />
</code></p>
<p>&#8230; produces a completely different result than &#8230;</p>
<p><code><br />
static $test = 0;<br />
</code></p>
<p>The static keyword not only affects the behaviour of the variable, but also the behaviour of the <em>initialization</em> of the variable, if and only if it is initialzed as part of the static declaration.</p>
<p>I think you&#8217;ll struggle to dispell anyones sense of it being trippy, unless you get that point across.</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick Introduction to the Observer Pattern by Fast, Easy Web Design! &#187; Blog Archive &#187; Web based Application Development and ReEngineering Viteb &#8230;</title>
		<link>http://www.calvinfroedge.com/quick-introduction-to-the-observer-pattern/#comment-3031</link>
		<dc:creator>Fast, Easy Web Design! &#187; Blog Archive &#187; Web based Application Development and ReEngineering Viteb &#8230;</dc:creator>
		<pubDate>Thu, 16 Feb 2012 09:51:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.calvinfroedge.com/?p=193#comment-3031</guid>
		<description>[...] Quick Introduction to the Observer PatternBy Calvin FroedgeComing from a web programming background, it may not be immediately apparent why the observer pattern is especially useful. This is (in my opinion) web programs (with some exceptions) tend to have a very short runtime (meaning their &#8230;Calvin Froedge [...]</description>
		<content:encoded><![CDATA[<p>[...] Quick Introduction to the Observer PatternBy Calvin FroedgeComing from a web programming background, it may not be immediately apparent why the observer pattern is especially useful. This is (in my opinion) web programs (with some exceptions) tend to have a very short runtime (meaning their &#8230;Calvin Froedge [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How I fixed screen flicker on Acer S232HL widescreen &#8211; Macbook Pro by Jamie</title>
		<link>http://www.calvinfroedge.com/how-i-fixed-screen-flicker-on-acer-s232hl-widescreen-macbook-pro/#comment-2467</link>
		<dc:creator>Jamie</dc:creator>
		<pubDate>Mon, 16 Jan 2012 23:25:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.calvinfroedge.com/?p=114#comment-2467</guid>
		<description>Thank you!  I thought I was going to have to return the monitor because they weren&#039;t compatible until I saw this.  Works great now!</description>
		<content:encoded><![CDATA[<p>Thank you!  I thought I was going to have to return the monitor because they weren&#8217;t compatible until I saw this.  Works great now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter Payments &#8211; A New Library for CodeIgniter Reactor by Iván T.</title>
		<link>http://www.calvinfroedge.com/codeigniter-payments-a-new-library-for-codeigniter-reactor/#comment-2344</link>
		<dc:creator>Iván T.</dc:creator>
		<pubDate>Mon, 09 Jan 2012 03:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.calvinfroedge.com/?p=25#comment-2344</guid>
		<description>Great job!

Do you have in mind &lt;a href=&quot;https://www.libertyreserve.com/en/home/downloads&quot; rel=&quot;nofollow&quot;&gt;Liberty Reserve&lt;/a&gt; and &lt;a href=&quot;https://en.bitcoin.it/wiki/API_reference_%28JSON-RPC%29&quot; rel=&quot;nofollow&quot;&gt;Bitcoin&lt;/a&gt; APIs ?</description>
		<content:encoded><![CDATA[<p>Great job!</p>
<p>Do you have in mind <a href="https://www.libertyreserve.com/en/home/downloads" rel="nofollow">Liberty Reserve</a> and <a href="https://en.bitcoin.it/wiki/API_reference_%28JSON-RPC%29" rel="nofollow">Bitcoin</a> APIs ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Дом Водка &#8211; My Last Night on the Black Sea by svchost.exe</title>
		<link>http://www.calvinfroedge.com/my-last-night-on-the-black-sea/#comment-2146</link>
		<dc:creator>svchost.exe</dc:creator>
		<pubDate>Thu, 22 Dec 2011 03:27:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.calvinfroedge.com/?p=135#comment-2146</guid>
		<description>cool story bro</description>
		<content:encoded><![CDATA[<p>cool story bro</p>
]]></content:encoded>
	</item>
</channel>
</rss>

