<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kaffinated Software</title>
	<atom:link href="http://kaffineaddict.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kaffineaddict.com</link>
	<description>A basement dwellers view of the outside...</description>
	<lastBuildDate>Wed, 19 Oct 2011 06:39:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Dependency on Technology</title>
		<link>http://kaffineaddict.com/dependency-on-technology/45/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dependency-on-technology</link>
		<comments>http://kaffineaddict.com/dependency-on-technology/45/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 15:41:43 +0000</pubDate>
		<dc:creator>KaffineAddict</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Tech in Society]]></category>

		<guid isPermaLink="false">http://kaffineaddict.com/?p=45</guid>
		<description><![CDATA[How dependent are you on technology? Can you leave your phone at home for an entire day? Can you leave your computer off for an entire day? What about forgetting about facebook for a day? Scary to think about but hardly any person that come into contact with technology can &#8220;live&#8221; without it. Sometimes I [...]]]></description>
			<content:encoded><![CDATA[<p>How dependent are you on technology?  Can you leave your phone at home for an entire day?  Can you leave your computer off for an entire day? What about forgetting about facebook for a day?  Scary to think about but hardly any person that come into contact with technology can &#8220;live&#8221; without it.  Sometimes I wonder how anyone ever lived without &#8220;checking-in&#8221; every 15 minutes so that ALL of their friends would know where they are.  This is kind of scary if you think about it, privacy used to have a high value and now we freely give away every last scrap of information for the entire worlds use.  Maybe thats something to think about next time you check in to the local coffee shop and post about how awesome you think your life is.</p>
]]></content:encoded>
			<wfw:commentRss>http://kaffineaddict.com/dependency-on-technology/45/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ls in Windows</title>
		<link>http://kaffineaddict.com/ls-in-windows/39/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ls-in-windows</link>
		<comments>http://kaffineaddict.com/ls-in-windows/39/#comments</comments>
		<pubDate>Fri, 20 May 2011 16:50:14 +0000</pubDate>
		<dc:creator>KaffineAddict</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://kaffineaddict.com/?p=39</guid>
		<description><![CDATA[If you are used to unix commands and running on a windows box and you open up your prompt and type in &#8220;ls&#8221; you probly hate seeing the error &#8220;ls is not a recognizable&#8230;&#8221; This is a simple easy to do fix that allows you to add ls as a command simply open up your [...]]]></description>
			<content:encoded><![CDATA[<p>If you are used to unix commands and running on a windows box and you open up your prompt and type in &#8220;ls&#8221; you probly hate seeing the error &#8220;ls is not a recognizable&#8230;&#8221; </p>
<p>This is a simple easy to do fix that allows you to add ls as a command simply open up your windows system32 folder.<br />
<code>This is normally C:\Windows\system32</code></p>
<p>Create a new file in this directory and name it &#8220;ls.bat&#8221; then right click and edit the file and add one single line.<br />
<code>dir</code></p>
<p>That simply calls the windows native dir command to list the contents of the current directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://kaffineaddict.com/ls-in-windows/39/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command Pattern</title>
		<link>http://kaffineaddict.com/command-pattern-2/25/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=command-pattern-2</link>
		<comments>http://kaffineaddict.com/command-pattern-2/25/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 02:23:38 +0000</pubDate>
		<dc:creator>KaffineAddict</dc:creator>
				<category><![CDATA[Design Pattern]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://kaffineaddict.com/?p=25</guid>
		<description><![CDATA[The first design pattern that I will explain is known as the command pattern. The command pattern can be thought of as having a few components as follows: Invoker Command &#160; So what do they do and why are they usefull? First there is a Command a command is any object that implements and interface.  That interface [...]]]></description>
			<content:encoded><![CDATA[<p>The first design pattern that I will explain is known as the command pattern. The command pattern can be thought of as having a few components as follows:</p>
<ul>
<li>Invoker</li>
<li>Command</li>
</ul>
<p>&nbsp;</p>
<p>So what do they do and why are they usefull?</p>
<p>First there is a <strong>Command</strong> a command is any object that implements and interface.  That interface could be thought of as something as simple as follows:</p>
<pre>
<code >// Command Interface
public interface Command {
     public void execute();
}</code>
</pre>
<p>Now to explain the <strong>Invoker</strong>. The invoker looks for commands and then starts them that is all imagine a simple invoker as follows.</p>
<pre>
<code>public void invoke(Command cmd){
     cmd.execute();
}</code>
</pre>
<p>The function is simply passed a Command object and then executes it.</p>
<p>All that the invoker knows is that the object it receives is a command and that to &#8220;run&#8221; the command then it must call execute.  </p>
<p>Think of a command line first, when you call a function say &#8220;ls&#8221; it looks for a &#8220;command&#8221; object named &#8220;ls&#8221; and then calls that objects &#8220;execute&#8221; function.  This makes adding in new commands incredibly easy.</p>
<p>Command line example to hard? Think of it this way, A person(invoker) is executing a command. The command is &#8220;start car&#8221; the person calls &#8220;execute&#8221; on the &#8220;start car&#8221; command (like turning the key) and the car starts.  What the car just physically accomplished to turn over and start is irrelevant to the person that turned the key all they knew is that they asked the command to run and it did.</p>
]]></content:encoded>
			<wfw:commentRss>http://kaffineaddict.com/command-pattern-2/25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Patterns</title>
		<link>http://kaffineaddict.com/design-patterns/21/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=design-patterns</link>
		<comments>http://kaffineaddict.com/design-patterns/21/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 20:06:37 +0000</pubDate>
		<dc:creator>KaffineAddict</dc:creator>
				<category><![CDATA[Design Pattern]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://kaffineaddict.com/?p=21</guid>
		<description><![CDATA[So first off what is a design pattern and why do we care?  When will I ever use this and what is so awesome about programs and applications that at least loosely follow a design pattern.  In this series I will dissect a few of the common design patterns and relate them to real life so that [...]]]></description>
			<content:encoded><![CDATA[<p>So first off what is a design pattern and why do we care?  When will I ever use this and what is so awesome about programs and applications that at least loosely follow a design pattern.  In this series I will dissect a few of the common design patterns and relate them to real life so that the everyday person may understand them more clearly.  After all not everyone is a basement dweller</p>
]]></content:encoded>
			<wfw:commentRss>http://kaffineaddict.com/design-patterns/21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

