<?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 stevedoria.net</title>
	<atom:link href="http://blog.stevedoria.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.stevedoria.net</link>
	<description>Real-World Computing Experience Distilled</description>
	<lastBuildDate>Wed, 17 Feb 2010 20:12:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Evaluating Flat Rate and Clock Time by Stillts</title>
		<link>http://blog.stevedoria.net/20060428/evaluating-flat-rate-and-clock-time/comment-page-1#comment-7707</link>
		<dc:creator>Stillts</dc:creator>
		<pubDate>Wed, 17 Feb 2010 20:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevedoria.net/20060428/evaluating-flat-rate-and-clock-time#comment-7707</guid>
		<description>As a young Flat rate technician that just graduated and is now working in the field I realize how much the older techs dont care about the customers vehicles. I always thought that turning wrenches correctly and not taking &quot;BAD&quot; short cuts would be seen in good with the Managers... Instead beating the flat rate system and making them more money even if they dont pay you for some of the task you have to complete is what they care more about. If you ask me the flat rate system sucks...not because I like quality work but they pretty much reward poor work. If there are larger jobs that have to be done on a vehicle they wont get done. Instead you look right pass those bigger jobs and take on smaller jobs increasing your car count instead of the harder more difficult jobs. You can basically be a Senior Technician that does only Entry Level task... how embarassing but profitable...Does it look like a challenging rewarding career anymore to me? No... someone needs to do something about the compensation or alot of new coming technicians will leave the industry just off how they realize that there careers will get boring learning new things and never using there knowledge... Being a Master Technician and doing Entry level work</description>
		<content:encoded><![CDATA[<p>As a young Flat rate technician that just graduated and is now working in the field I realize how much the older techs dont care about the customers vehicles. I always thought that turning wrenches correctly and not taking &#8220;BAD&#8221; short cuts would be seen in good with the Managers&#8230; Instead beating the flat rate system and making them more money even if they dont pay you for some of the task you have to complete is what they care more about. If you ask me the flat rate system sucks&#8230;not because I like quality work but they pretty much reward poor work. If there are larger jobs that have to be done on a vehicle they wont get done. Instead you look right pass those bigger jobs and take on smaller jobs increasing your car count instead of the harder more difficult jobs. You can basically be a Senior Technician that does only Entry Level task&#8230; how embarassing but profitable&#8230;Does it look like a challenging rewarding career anymore to me? No&#8230; someone needs to do something about the compensation or alot of new coming technicians will leave the industry just off how they realize that there careers will get boring learning new things and never using there knowledge&#8230; Being a Master Technician and doing Entry level work</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Function Overloading and PHP by Edgarin</title>
		<link>http://blog.stevedoria.net/20050803/function-overloading-and-php/comment-page-1#comment-7706</link>
		<dc:creator>Edgarin</dc:creator>
		<pubDate>Tue, 16 Feb 2010 07:17:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevedoria.net/?p=3#comment-7706</guid>
		<description>Although function/method overloading can be &quot;emulated&quot; in the case we want different behavior for different parameter data types or number of parameters; don&#039;t forget there are many other cases where we need method overloading that can&#039;t be emulated, for example:

(This code doesn&#039;t compile, of course)
class AClass{
    var $member;
    static function myMethod() { echo &quot;Static&quot;; }
    function myMethod() { echo $this-&gt;member; }
}
AClass::myMethod(); //Should display &quot;Static&quot;;
$obj = new AClass();
$obj-&gt;myMethod();  //Should display contents of $member

Unfortunately, in this example, there is no other way than renaming one (or both) methods.</description>
		<content:encoded><![CDATA[<p>Although function/method overloading can be &#8220;emulated&#8221; in the case we want different behavior for different parameter data types or number of parameters; don&#8217;t forget there are many other cases where we need method overloading that can&#8217;t be emulated, for example:</p>
<p>(This code doesn&#8217;t compile, of course)<br />
class AClass{<br />
    var $member;<br />
    static function myMethod() { echo &#8220;Static&#8221;; }<br />
    function myMethod() { echo $this-&gt;member; }<br />
}<br />
AClass::myMethod(); //Should display &#8220;Static&#8221;;<br />
$obj = new AClass();<br />
$obj-&gt;myMethod();  //Should display contents of $member</p>
<p>Unfortunately, in this example, there is no other way than renaming one (or both) methods.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Differences between C++ Classes and Structs by Rizwan</title>
		<link>http://blog.stevedoria.net/20050913/differences-between-cpp-classes-and-structs/comment-page-1#comment-7705</link>
		<dc:creator>Rizwan</dc:creator>
		<pubDate>Fri, 12 Feb 2010 18:30:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevedoria.net/?p=21#comment-7705</guid>
		<description>the differences in structures and classes of c++ is that the membors of structures in c++ are public by default and of classes are private by default ...........   you can do data hiding and inheritance in c++ structures as you do in c++ classes the only differences will be that the if you don’t provide specifier then by default the inheritances of structures is public and of classes is private but you can change it yourself by specifying the specifier you want (public or private ) on the basis of your requirements</description>
		<content:encoded><![CDATA[<p>the differences in structures and classes of c++ is that the membors of structures in c++ are public by default and of classes are private by default &#8230;&#8230;&#8230;..   you can do data hiding and inheritance in c++ structures as you do in c++ classes the only differences will be that the if you don’t provide specifier then by default the inheritances of structures is public and of classes is private but you can change it yourself by specifying the specifier you want (public or private ) on the basis of your requirements</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Differences between C++ Classes and Structs by tahir</title>
		<link>http://blog.stevedoria.net/20050913/differences-between-cpp-classes-and-structs/comment-page-1#comment-7704</link>
		<dc:creator>tahir</dc:creator>
		<pubDate>Fri, 12 Feb 2010 18:26:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevedoria.net/?p=21#comment-7704</guid>
		<description>in c++ you can do data hiding and inheritance  in c++ structures as you do in c++ classes the only differences will be that the if you don&#039;t provide specifier then by default the inheritances of structures is public and of classes is private but you can change it yourself by specifying the specifier you want (public or private ) on the basis of your requirements</description>
		<content:encoded><![CDATA[<p>in c++ you can do data hiding and inheritance  in c++ structures as you do in c++ classes the only differences will be that the if you don&#8217;t provide specifier then by default the inheritances of structures is public and of classes is private but you can change it yourself by specifying the specifier you want (public or private ) on the basis of your requirements</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Differences between C++ Classes and Structs by Rizwan</title>
		<link>http://blog.stevedoria.net/20050913/differences-between-cpp-classes-and-structs/comment-page-1#comment-7702</link>
		<dc:creator>Rizwan</dc:creator>
		<pubDate>Fri, 12 Feb 2010 17:31:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevedoria.net/?p=21#comment-7702</guid>
		<description>to me yet the only difference between the strut and class of c++ is that all the members whether they are methods or they are data is that they are public by default in the structures  and are private by default private in the case of classes . . . . .</description>
		<content:encoded><![CDATA[<p>to me yet the only difference between the strut and class of c++ is that all the members whether they are methods or they are data is that they are public by default in the structures  and are private by default private in the case of classes . . . . .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating COM Components using Visual C#.NET by Joby</title>
		<link>http://blog.stevedoria.net/20051008/creating-com-components-using-visual-csharp-dot-net/comment-page-1#comment-7690</link>
		<dc:creator>Joby</dc:creator>
		<pubDate>Mon, 18 Jan 2010 11:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevedoria.net/?p=27#comment-7690</guid>
		<description>nice one :)</description>
		<content:encoded><![CDATA[<p>nice one :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Differences between C++ Classes and Structs by ghar dash</title>
		<link>http://blog.stevedoria.net/20050913/differences-between-cpp-classes-and-structs/comment-page-1#comment-7689</link>
		<dc:creator>ghar dash</dc:creator>
		<pubDate>Tue, 12 Jan 2010 17:08:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevedoria.net/?p=21#comment-7689</guid>
		<description>Steve,
Your code compiles using VIsual C++ express 2008. Compiler only compain is about :

 &#039;C::c&#039; not accessible because &#039;D&#039; uses &#039;private&#039; to inherit from &#039;C&#039; 

where you have :
class D : C

which can be resolved by making the inheritance public - i.e. 
class D : public C {}

- Ghar</description>
		<content:encoded><![CDATA[<p>Steve,<br />
Your code compiles using VIsual C++ express 2008. Compiler only compain is about :</p>
<p> &#8216;C::c&#8217; not accessible because &#8216;D&#8217; uses &#8216;private&#8217; to inherit from &#8216;C&#8217; </p>
<p>where you have :<br />
class D : C</p>
<p>which can be resolved by making the inheritance public &#8211; i.e.<br />
class D : public C {}</p>
<p>- Ghar</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AT&amp;T Tech Support by john</title>
		<link>http://blog.stevedoria.net/20060627/att-tech-support/comment-page-2#comment-7681</link>
		<dc:creator>john</dc:creator>
		<pubDate>Sat, 09 Jan 2010 02:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevedoria.net/20060627/att-tech-support#comment-7681</guid>
		<description>HII GUYS
I have been working with AT&amp;T for almost 2 years.I would like to share am experience with u..i got a call from 2 wire honetworking agent..She say customer as KHOSTOMER..and best part is they wont create a interaction and case even ifask them ten times especially agents from COVERGYS PHILLIPINES..trust me...we have proved ourself with very satisfied ratings with a score much better than philipinos...atleast we never say KHOSTOMER..

NOW with due respect to comments from ATT_onshore Says: 

July 22nd, 2009 at 7:35 pm 
@Jefferson.. 

I WOULD LIKE TO TELL U THAT..

atleast when a indian asked the customer i accept the sentence structure was inappropriate but atleast it sounded like uverse though u say it sounded like uworse..but when a philipino from 2 wire dept says uvrse i have heard customedr yelling YES I AM FROM UNITED STATES..WHERE THE HELL ARE U LOCATED...lol:)</description>
		<content:encoded><![CDATA[<p>HII GUYS<br />
I have been working with AT&amp;T for almost 2 years.I would like to share am experience with u..i got a call from 2 wire honetworking agent..She say customer as KHOSTOMER..and best part is they wont create a interaction and case even ifask them ten times especially agents from COVERGYS PHILLIPINES..trust me&#8230;we have proved ourself with very satisfied ratings with a score much better than philipinos&#8230;atleast we never say KHOSTOMER..</p>
<p>NOW with due respect to comments from ATT_onshore Says: </p>
<p>July 22nd, 2009 at 7:35 pm<br />
@Jefferson.. </p>
<p>I WOULD LIKE TO TELL U THAT..</p>
<p>atleast when a indian asked the customer i accept the sentence structure was inappropriate but atleast it sounded like uverse though u say it sounded like uworse..but when a philipino from 2 wire dept says uvrse i have heard customedr yelling YES I AM FROM UNITED STATES..WHERE THE HELL ARE U LOCATED&#8230;lol:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Function Overloading and PHP by gregx</title>
		<link>http://blog.stevedoria.net/20050803/function-overloading-and-php/comment-page-1#comment-7677</link>
		<dc:creator>gregx</dc:creator>
		<pubDate>Thu, 10 Dec 2009 15:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevedoria.net/?p=3#comment-7677</guid>
		<description>it is funny, i just started to look and learn php about 1/2 years ago and was googling about the same issue and got here. I wouldn&#039;t say anything bad about the article but it seems to me some comments are made by people who are never used any other language besides php. This is disgrace! Probably that&#039;s why all those php sites lack security so often because they are made by narrowminded lazy programmers! 

PS. started 25 years ago in asm</description>
		<content:encoded><![CDATA[<p>it is funny, i just started to look and learn php about 1/2 years ago and was googling about the same issue and got here. I wouldn&#8217;t say anything bad about the article but it seems to me some comments are made by people who are never used any other language besides php. This is disgrace! Probably that&#8217;s why all those php sites lack security so often because they are made by narrowminded lazy programmers! </p>
<p>PS. started 25 years ago in asm</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Differences between C++ Classes and Structs by Samir</title>
		<link>http://blog.stevedoria.net/20050913/differences-between-cpp-classes-and-structs/comment-page-1#comment-7670</link>
		<dc:creator>Samir</dc:creator>
		<pubDate>Wed, 25 Nov 2009 17:32:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevedoria.net/?p=21#comment-7670</guid>
		<description>Very clear answer. thanks MG. No more questions...</description>
		<content:encoded><![CDATA[<p>Very clear answer. thanks MG. No more questions&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
