<?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>Part-Time Dev</title>
	<atom:link href="http://www.ekosdeux.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ekosdeux.com</link>
	<description>Tutorials on Java Graphical User Interface, Algorithm Analysis, and many more things...</description>
	<lastBuildDate>Mon, 18 Jun 2012 18:54:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
	<item>
		<title>Java Graphical User Interface: An introduction</title>
		<link>http://www.ekosdeux.com/java-graphical-user-interface-an-introduction/</link>
		<comments>http://www.ekosdeux.com/java-graphical-user-interface-an-introduction/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 05:35:01 +0000</pubDate>
		<dc:creator><![CDATA[FossilizedCarlos]]></dc:creator>
				<category><![CDATA[Graphical User Interface]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[Java GUI]]></category>

		<guid isPermaLink="false">http://www.ekosdeux.com/?p=395</guid>
		<description><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p>The Java language was born out of a need for a single program to be able to be compiled, and ran on multiple operating systems. The Java language was launched in 1995 by Sun Microsystems, and derived much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities. [&#8230;]</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></description>
				<content:encoded><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p></p><p>The Java language was born out of a need for a single program to be able to be compiled, and ran on multiple operating systems. The Java language was launched in 1995 by Sun Microsystems, and derived much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities. The language would compile into byte code that could be run in the Java Virtual Machine (JVM), regardless of your operating system. Java still faced a problem though, how do you write a program where the windowing system will match that of the operating system running it?</p>
<p>This is where the Abstract Windows Toolkit (AWT) stepped in, and became Java&#8217;s original platform-independent windowing, graphics, and user-interface widget toolkit. The AWT is now part of the Java Foundation Classes (JFC) — the standard API for providing a Java graphical user interface (GUI) for a program. AWT provided Java with the look and feel of the operating system in which it was running. The Java 2 (J2SE 1.2) saw the addition of the Swing toolkit, which largely superseded the AWT&#8217;s widgets. In addition to providing a richer set of UI widgets, Swing draws its own widgets instead of relying on the operating system&#8217;s high-level user interface module. Swing provides the option of using either a system &#8220;look and feel&#8221; which uses the native platform&#8217;s look and feel, or a cross-platform look and feel (the &#8220;Java Look and Feel&#8221;) that looks the same on all platforms. However, Swing relies on AWT for its interface to the native windowing-system.</p>
<p>This series will encompass most of the classes that can be used in the creation of a Java Graphical User Interface, and the code base will grow to show the additional features added. The series will begin with the following classes:</p>
<ul>
<li>JFrame</li>
<li>JPanel</li>
<li>Layout Managers
<ul>
<li>FlowLayout</li>
<li>GridLayout</li>
<li>BorderLayout</li>
<li>GridBagLayout</li>
</ul>
</li>
<li>JButton</li>
<li>JSlider</li>
<li>ActionListerner</li>
<li>MouseListener</li>
<li>ChangeListener</li>
</ul>
<p>&#8230;and more will be added as the series grows</p>
<p>Sources:<br />
<a title="Java" href="http://en.wikipedia.org/wiki/Java_(programming_language) " target="_blank">Java [Wikipedia]</a><br />
<a title="Abstract Window Toolkit" href="http://en.wikipedia.org/wiki/Abstract_Window_Toolkit " target="_blank">Abstract Window Toolkit [Wikipedia]</a><br />
<a title="Java Swing" href="http://en.wikipedia.org/wiki/Swing_(Java)" target="_blank">Java Swing [Wikipedia]</a></p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekosdeux.com/java-graphical-user-interface-an-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Algorithm Analysis: An Introduction</title>
		<link>http://www.ekosdeux.com/algorithm-analysis-an-introduction/</link>
		<comments>http://www.ekosdeux.com/algorithm-analysis-an-introduction/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 18:00:49 +0000</pubDate>
		<dc:creator><![CDATA[FossilizedCarlos]]></dc:creator>
				<category><![CDATA[Algorithm]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[algorithm]]></category>
		<category><![CDATA[algorithm analysis]]></category>
		<category><![CDATA[efficiency]]></category>

		<guid isPermaLink="false">http://www.ekosdeux.com/?p=368</guid>
		<description><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p>Algorithm analysis is an important topic in all aspects of computer science and many other fields, as it can affect your programs complexity and overall performance. The purpose of this series is to slightly cover some of the introductory concepts related to algorithms, and delve into a selection of sorts, searches, and a couple of [&#8230;]</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></description>
				<content:encoded><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p></p><p style="text-align: left;">Algorithm analysis is an important topic in all aspects of computer science and many other fields, as it can affect your programs complexity and overall performance. The purpose of this series is to slightly cover some of the introductory concepts related to algorithms, and delve into a selection of sorts, searches, and a couple of artificial intelligence algorithms.</p>
<p><strong>What is an Algorithm?</strong></p>
<p><a title="Seven Steps in the Software Life Cycle" href="http://www.ekosdeux.com/seven-steps-in-the-software-life-cycle-updated" target="_blank">Seven Steps in the Software Life Cycle</a> covered creating a structured, top-down method for the design and implementation of a program. Step four of this process was the <a href="http://en.wikipedia.org/wiki/Algorithm" target="_blank">algorithm</a>, and was defined as an effective method for solving a problem expressed as a finite sequence of steps. The algorithm must be written very clearly, as not to cause misinterpretation, and is normally done in <a href="http://en.wikipedia.org/wiki/Pseudocode" target="_blank">pseudocode</a>. The algorithm should, when applied to the problem, solve it in a finite amount of time. Basically, you are writing a step by step set of instructions to accomplish a task. This same methodology can be observed in manuals, as they walk you step by step to accomplish different things in a timely manner.</p>
<p><strong>How is efficiency measured?</strong></p>
<p><a title="The Importance of Algorithms " href="http://community.topcoder.com/tc?module=Static&amp;d1=tutorials&amp;d2=importance_of_algorithms" target="_blank">The Importance of Algorithms</a> mentions that one of the most important aspects of an algorithm is how fast it is. This does not necessarily mean that the algorithm will perform the same for all situations, as performance can be affected by the computers configuration and the implementation of the algorithm&#8217;s code.  This is why, they explain, you look at the runtime environment versus the size of your input. For example, if the input consists of N integers, an algorithm might have a runtime proportional to N<sup>2</sup>, represented as O(N<sup>2</sup>). This means that if you were to run an implementation of the algorithm on your computer with an input of size N, it would take C*N<sup>2</sup> seconds, where C is some constant that doesn&#8217;t change with the size of the input.</p>
<p>The ordering of the data is important depending on the operation. Let&#8217;s take for example a sorting algorithm, which has N amount of integers for it&#8217;s input. The best case scenario would be that the data is already sorted, therefore the algorithm would simply run through and realize an already sorted array of data. On the other hand, the worst case would be an algorithm sorted in reverse order. This would cause the algorithm to have to reorder all the data, and would take the longest. Therefore, you will often see analysis refer to worst-case runtime, or the average-case runtime. The table below displays the approximate completion time for algorithms, N = 100. This table will be referred to in future post, as different algorithms are examined.</p>
<p style="text-align: center;"><a href="http://www.ekosdeux.com/wp-content/uploads/2012/01/Runtime-Table.png"><img class="aligncenter size-full wp-image-384" title="Runtime Table" src="http://www.ekosdeux.com/wp-content/uploads/2012/01/Runtime-Table.png" alt="" width="300" height="127" /></a></p>
<div style="text-align: -webkit-auto;" align="center">Algorithms come in many different implementations as shown by wikipedias <a title="List of Algorithms" href="http://en.wikipedia.org/wiki/List_of_algorithms" target="_blank">list of algorithms</a>, and we will review a few of the algorithms mentioned in this list. These upcoming post will cover the purpose of the algorithm in question, the algorithm&#8217;s pseudocode, a code implementation (probably a C based language), and performance.</div>
<p style="text-align: center;"><em>Disclaimer: Links and Ads might get me paid.</em></p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekosdeux.com/algorithm-analysis-an-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upcoming in 2012: Goals, Wants, and Needs</title>
		<link>http://www.ekosdeux.com/upcoming-in-2012-goals-wants-and-needs/</link>
		<comments>http://www.ekosdeux.com/upcoming-in-2012-goals-wants-and-needs/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 13:38:23 +0000</pubDate>
		<dc:creator><![CDATA[FossilizedCarlos]]></dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mac Mini ubuntu Server]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Off Topic]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.ekosdeux.com/?p=354</guid>
		<description><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p>Woke up too early&#8230; It is 0400, and 2012 has barely started. This year is full of opportunities for me, as I graduate in May and begin my full-time employment with a great company. I hope to continue to grow this site as it will keep my computer skills sharp, as my job will revolve [&#8230;]</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></description>
				<content:encoded><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p></p><p>Woke up too early&#8230; It is 0400, and 2012 has barely started. This year is full of opportunities for me, as I graduate in May and begin my full-time employment with a great company. I hope to continue to grow this site as it will keep my computer skills sharp, as my job will revolve around engineering and not programming. The following is what I hope to accomplish in 2012, as far as this site is concerned.</p>
<ul>
<li>Goal 1: Delve into algorithms</li>
<ul>
<li>Covering sorts, search, and some artificial intelligence</li>
</ul>
<li>Goal 2: Expand the Mac Mini ubuntu server series</li>
<ul>
<li>Re-write old post, and add e-mail and possible website hosting</li>
</ul>
<li>Goal 3: iOS and my App ideas</li>
<ul>
<li>Two ideas, but MUST implement only one by 2013</li>
</ul>
<li>Want 1: Expand my knowledge of Java GUI through Clojure</li>
<ul>
<li>Scheme was fun, but I am intrigued by clojure, so this kills two birds&#8230;</li>
</ul>
<li>Want 2: Maps! Bring on the Maps!</li>
<ul>
<li>Will help in future ideas, and its just cool&#8230; Plus I did buy <a title="Map Scripting 101" href="http://www.amazon.com/gp/product/1593272715/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;tag=ekos-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1593272715" target="_blank">Map Scripting 101</a>, so must finish reading it</li>
</ul>
<li>Want 3: Learn more Javascript, which enables Cappuccino and Objective-J</li>
<ul>
<li>Love what this framework has to offer, and it now uses Xcode and interface builder</li>
</ul>
<li>Need 1: Graduate! And maintain site at the same time.</li>
</ul>
<p>Stick around, keep coming back, comment and share ideas, and let&#8217;s help each other stay sharp.</p>
<p style="text-align: center;"><em>Disclaimer: Links and Ads might get me paid.</em></p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekosdeux.com/upcoming-in-2012-goals-wants-and-needs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seven Steps in the Software Life Cycle [Updated]</title>
		<link>http://www.ekosdeux.com/seven-steps-in-the-software-life-cycle-updated/</link>
		<comments>http://www.ekosdeux.com/seven-steps-in-the-software-life-cycle-updated/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 12:37:44 +0000</pubDate>
		<dc:creator><![CDATA[FossilizedCarlos]]></dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[7 steps]]></category>
		<category><![CDATA[algorithm]]></category>
		<category><![CDATA[pseudocode]]></category>
		<category><![CDATA[seven steps]]></category>
		<category><![CDATA[Software Life Cycle]]></category>

		<guid isPermaLink="false">http://www.ekosdeux.com/?p=257</guid>
		<description><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p>As you know this blog helps me keep track of things I have learned, and helps burn things into my brain. Today we are going to discuss the seven steps in software development&#8230; The software life cycle was defined as creating a structured, top-down method for the design and implementation of a program. The actual [&#8230;]</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></description>
				<content:encoded><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p></p><p>As you know this blog helps me keep track of things I have learned, and helps burn things into my brain. Today we are going to discuss the seven steps in software development&#8230;</p>
<p>The software life cycle was defined as creating a structured, top-down method for the design and implementation of a program. The actual amount of steps varies according to the person describing them, but they always cover the same steps.</p>
<ol>
<li>Specify the Requirement</li>
<li>Data Analysis</li>
<li>Problem Analysis</li>
<li>Algorithm</li>
<li>Coding</li>
<li>Testing</li>
<li>Maintenance</li>
</ol>
<p>The first four steps are very important as it represents the logic of  the problem, and can be used to test the execution of the algorithm.  This checking of the logic eliminates semantic problems, and allows for  the utilization of the pseudocode in many languages. You should have  test data ready, and develop a trace table; This can be used to check  the output of the program when testing.</p>
<p>1. <span style="text-decoration: underline;">Specify the requirement</span>: This area is where you describe exactly what you are doing as clear as possible. In this statement you will include the data to be used, and what can be assumed. Also, the desired output and its layout.</p>
<p>2. <span style="text-decoration: underline;">Data Analysis</span>: List all the variables needed to solve the problem. Utilizing self-documenting (Descriptive of what they represent) variable names is always preferred. This also includes the data type, scope, and documentation for each variable.</p>
<p>3. <span style="text-decoration: underline;">Problem Analysis</span>: Here you will list each operation necessary to solve the problem at hand. You can also divide the problem into multiple subtasks as needed, and continue until they are specifically stated and easily solved.</p>
<p>4. <span style="text-decoration: underline;">Algorithm</span>: this clarifies how the problem is to be solved. An <a href="http://en.wikipedia.org/wiki/Algorithm" target="_blank">algorithm</a> is an effective method for solving a problem expressed as a finite sequence of steps. The algorithm must be written very clearly, as not to cause misinterpretation, and is normally done in <a href="http://en.wikipedia.org/wiki/Pseudocode" target="_blank">pseudocode</a>. The algorithm should, when applied to the problem, solve it in a finite amount of time.</p>
<p>These last three steps allow for the solution to the problem to be entered into a form the computer can work with.</p>
<p>5. <span style="text-decoration: underline;">Coding</span>: The translation of the algorithm from pseudocode into a programming language. Proper mapping of the code to the algorithm, combined with refining of the pseudocode, should lead to an easy translation to any programming language.</p>
<p>6. <span style="text-decoration: underline;">Testing</span>: This step requires the use of the data table built with the algorithm. You will run the program, and verify the output for correctness and proper layout. Also, you will validate the code ensuring you requirements have been met and the problem was solved.</p>
<p>7. <span style="text-decoration: underline;">Maintenance</span>: Updating and testing of the software. Every time the code is updated, it must be tested for correctness.</p>
<p>Feel free to leave a comment with any suggestions/corrections you might have.</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekosdeux.com/seven-steps-in-the-software-life-cycle-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sizing up the new MacBook Air</title>
		<link>http://www.ekosdeux.com/sizing-up-the-new-macbook-air/</link>
		<comments>http://www.ekosdeux.com/sizing-up-the-new-macbook-air/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 03:04:36 +0000</pubDate>
		<dc:creator><![CDATA[FossilizedCarlos]]></dc:creator>
				<category><![CDATA[MacBook Air]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[MBA]]></category>

		<guid isPermaLink="false">http://www.ekosdeux.com/?p=233</guid>
		<description><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p>Much has been written about the new MacBook Air, but all the articles and reviews are about the new 11&#8243; MBA with 1.4GHz &#38; 2Gb RAM. I decided to upgrade my laptop to the 11&#8243; MacBook Air, and opted for the 1.6GHz &#38; 4Gb of RAM model. Since I do not have any of the [&#8230;]</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></description>
				<content:encoded><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p></p><p>Much has been written about the new MacBook Air, but all the articles and reviews are about the new 11&#8243; MBA with 1.4GHz &amp; 2Gb RAM. I decided to upgrade my laptop to the 11&#8243; MacBook Air, and opted for the 1.6GHz &amp; 4Gb of RAM model. Since I do not have any of the different tools utilized by some of the bigger blogs, I decided to use <a href="http://www.wolfram.com/products/mathematica/index.html"><em>Mathematica</em></a> for the task. <a href="http://www.wolfram.com/products/mathematica/index.html"><em>Mathematica</em></a> has a <a href="http://reference.wolfram.com/mathematica/Benchmarking/tutorial/Benchmark.html">BenchmarkingReport</a> function that is used for evaluating the performance of the computer system on which <a href="http://www.wolfram.com/products/mathematica/index.html"><em>Mathematica</em></a> is run. The function measures the amount of time a certain task will take. The task vary from formulating the digits of pi, to random number sorting.</p>
<p>For the demonstration I decided to run this on my outgoing 13&#8243; MacBook Pro, the 11&#8243; MacBook Air, and my Desktop. The results below show the difference between all three.</p>
<p style="text-align: left;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/11/PR-Hackintosh.png"><img class="alignnone size-full wp-image-235" title="PR Hackintosh" src="http://www.ekosdeux.com/wp-content/uploads/2010/11/PR-Hackintosh.png" alt="" width="551" height="348" /></a></p>
<p style="text-align: left;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/11/PR-MBP.png"><img class="alignnone size-full wp-image-237" title="PR MBP" src="http://www.ekosdeux.com/wp-content/uploads/2010/11/PR-MBP.png" alt="" width="551" height="348" /></a></p>
<p style="text-align: left;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/11/PR-MBA.png"><img class="alignnone size-full wp-image-236" title="PR MBA" src="http://www.ekosdeux.com/wp-content/uploads/2010/11/PR-MBA.png" alt="" width="551" height="344" /></a></p>
<p style="text-align: left;">So far I have not really felt the difference, but this is mostly a light work machine, so I don&#8217;t expect it to really make me regret my decision. One month from today might be different, but that is for a different post.</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekosdeux.com/sizing-up-the-new-macbook-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Content Aware Fill in Photoshop CS5</title>
		<link>http://www.ekosdeux.com/using-content-aware-fill-in-photoshop-cs5/</link>
		<comments>http://www.ekosdeux.com/using-content-aware-fill-in-photoshop-cs5/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 22:57:46 +0000</pubDate>
		<dc:creator><![CDATA[FossilizedCarlos]]></dc:creator>
				<category><![CDATA[Off Topic]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.ekosdeux.com/using-content-aware-fill-in-photoshop-cs5</guid>
		<description><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p>After watching this video on you tube I was curious, since most the comments said it did not work. I grabbed some pics that I had, and merged them on my laptop. Using the software through school, my computer was taxed. These were very large images, and I was doing it through on a network. [&#8230;]</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></description>
				<content:encoded><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p></p><p style="clear: both">After watching this <a href="http://bit.ly/CS5Aware ">video</a> on you tube I was curious, since most the comments said it did not work. I grabbed some pics that I had, and merged them on my laptop. Using the software through school, my computer was taxed. These were very large images, and I was doing it through on a network. Below are 3 of about 30.</p>
<p style="clear: both"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/07/DSC00479-full1.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/07/DSC1-thumb.jpg" height="225" width="300" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a></p>
<p style="clear: both"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/07/DSC00484-full.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/07/DSC00484-thumb.jpg" height="225" width="300" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a></p>
<p style="clear: both"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/07/DSC00468-full.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/07/DSC00468-thumb.jpg" height="225" width="300" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a>After the images were done merging, and I had my panoramic shot, I clicked on the magic wand. The area was selected, and I clicked fill. The content aware option was checked, and I let it go to work again.</p>
<p style="clear: both"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/07/Before.png" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/07/Before-thumb1.png" height="140" width="525" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a>This is the final image. I was very impressed, as there were many different elements to it. The content aware feature worked well for me, and I look forward to reusing it.</p>
<p style="clear: both"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/07/After.png" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/07/After-thumb1.png" height="172" width="525" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a></p>
<p><br class="final-break" style="clear: both" /></p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekosdeux.com/using-content-aware-fill-in-photoshop-cs5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4: Incredible Strength</title>
		<link>http://www.ekosdeux.com/iphone-4-incredible-strength/</link>
		<comments>http://www.ekosdeux.com/iphone-4-incredible-strength/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 00:46:09 +0000</pubDate>
		<dc:creator><![CDATA[FossilizedCarlos]]></dc:creator>
				<category><![CDATA[Off Topic]]></category>

		<guid isPermaLink="false">http://www.ekosdeux.com/iphone-4-incredible-strength</guid>
		<description><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p>The newest iPhone has hit the streets. While everyone is complaining about their antenna issues, and wiesel lawyers are finding reasons to sue. I find myself amazed at how strong this new model is, and the strength of the new glass. After watching the video below by Richard Ryan I expected the phone to blow [&#8230;]</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></description>
				<content:encoded><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p></p><p style="clear: both">The newest iPhone has hit the streets. While everyone is complaining about their antenna issues, and wiesel lawyers are finding reasons to sue. I find myself amazed at how strong this new model is, and the strength of the new glass. After watching the video below by <a href="http://www.youtube.com/user/ratedrr">Richard Ryan</a> I expected the phone to blow into pieces, at least for the glass to explode, due to the round&#8217;s power. <a href="http://en.wikipedia.org/wiki/.50_BMG#Power" title="">A .50 BMG round can produce between 10,000 and 15,000 foot pounds(between 14 and 18 kilojoules) or more, depending on its powder and bullet type, as well as the rifle it was fired from.</a> I found it hard to believe the phone was in one piece. What are your thoughts?</p>
<p style="clear: both"><span style=" text-align: center; display: block; margin: 0 auto 10px;"><object height="306" width="525"><param name="movie" value="http://www.youtube.com/v/fcnQ72sPZAI&#038;hl=en_US&#038;fs=1&#038;hd=1" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed allowfullscreen="true" type="application/x-shockwave-flash" src="http://www.youtube.com/v/fcnQ72sPZAI&#038;hl=en_US&#038;fs=1&#038;hd=1" allowscriptaccess="always" height="306" width="525"></embed></object></span></p>
<p><br class="final-break" style="clear: both" /></p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekosdeux.com/iphone-4-incredible-strength/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitbird</title>
		<link>http://www.ekosdeux.com/twitbird/</link>
		<comments>http://www.ekosdeux.com/twitbird/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 01:46:38 +0000</pubDate>
		<dc:creator><![CDATA[FossilizedCarlos]]></dc:creator>
				<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.ekosdeux.com/twitbird</guid>
		<description><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p>Twitbird was recently updated to version 2.5. I have been using twitbird for about a year now, and have been very satisfied. The developers are always working to make theirs apps better, and ask customers lots of questions in order to achieve great success.I personally prefer the new espresso theme, but you can choose your [&#8230;]</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></description>
				<content:encoded><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p></p><p style="clear: both"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/twitbird2.png" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/twitbird2-thumb1.png" height="67" align="left" width="66" style=" display: inline; float: left; margin: 0 10px 10px 0;" /></a>Twitbird was recently updated to version 2.5. I have been using twitbird for about a year now, and have been very satisfied. The developers are always working to make theirs apps better, and ask customers lots of questions in order to achieve great success.I personally prefer the new espresso theme, but you can choose your own from a few different ones. This will be a brief, photo based, review of what I like the most. </p>
<p style="clear: both; text-align: center;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_2-2.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_2-2-thumb.jpg" height="254" width="380" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a>The home screen allows for multiple identities, but since I am using the premium version I can have two.</p>
<p style="clear: both; text-align: center;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_3-2.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_3-2-thumb.jpg" height="253" width="378" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a>Once inside your chosen account you will see the very familiar layout. This is an option, as you can also have it be in rows.</p>
<p style="clear: both; text-align: center;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_4-2.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_4-2-thumb.jpg" height="253" width="378" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a></p>
<p style="clear: both; text-align: center;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_5-1.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_5-1-thumb.jpg" height="253" width="378" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a>You have multiple options on how to read your tweets.</p>
<p style="clear: both; text-align: center;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo-1.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo-1-thumb.jpg" height="253" width="378" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a></p>
<p style="clear: both; text-align: center;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_2-4.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_2-4-thumb.jpg" height="254" width="380" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a>You can translate.</p>
<p style="clear: both; text-align: center;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_5.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_5-thumb.jpg" height="253" width="378" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a>It allows for easy tweet management.</p>
<p style="clear: both"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_1.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_1-thumb.jpg" height="253" width="378" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a></p>
<p style="clear: both; text-align: center;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo-thumb.jpg" height="253" width="378" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a>Also, you have options on how to read your links. Now, ReadItLAter, Instapaper, etc.</p>
<p style="clear: both; text-align: center;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_2.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_2-thumb.jpg" height="253" width="378" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a>And finally, one of my favorite is the ease with which you can send tweets. </p>
<p style="clear: both; text-align: center;"><a href="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_6.jpg" class="image-link"><img class="linked-to-original" src="http://www.ekosdeux.com/wp-content/uploads/2010/06/photo_6-thumb.jpg" height="253" width="378" style=" text-align: center; display: block; margin: 0 auto 10px;" /></a>If you are looking for a twitter client, and don&#8217;t like the twitter app, give twitbird a try. What is your favorite client?</p>
<p><br class="final-break" style="clear: both" /></p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekosdeux.com/twitbird/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android in VMWare</title>
		<link>http://www.ekosdeux.com/android-in-vmware/</link>
		<comments>http://www.ekosdeux.com/android-in-vmware/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 23:05:06 +0000</pubDate>
		<dc:creator><![CDATA[FossilizedCarlos]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Fusion]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.ekosdeux.com/android-in-vmware</guid>
		<description><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p>Welcome and thanks for reading. This post will cover how to run Android inside of a Virtual Machine on your Mac or PC. I will do the video on my Mac, but the same steps can be followed on a PC. The problem arose while attempting to install Android 1.6, but the video displays a [&#8230;]</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></description>
				<content:encoded><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p></p><p style="clear: both">Welcome and thanks for reading. This post will cover how to run Android inside of a Virtual Machine on your Mac or PC. I will do the video on my Mac, but the same steps can be followed on a PC. The problem arose while attempting to install Android 1.6, but the video displays a way to get it to work. Thanks for reading, and please leave a comment if you have any tips.</p>
<p style="clear: both"><span style=" text-align: center; display: block; margin: 0 auto 10px;"><object height="363" width="580"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=12517453&#038;server=vimeo.com&#038;show_title=1&#038;show_byline=0&#038;show_portrait=1&#038;color=00ADEF&#038;fullscreen=1" /><embed allowfullscreen="true" type="application/x-shockwave-flash" src="http://vimeo.com/moogaloop.swf?clip_id=12517453&#038;server=vimeo.com&#038;show_title=1&#038;show_byline=0&#038;show_portrait=1&#038;color=00ADEF&#038;fullscreen=1" allowscriptaccess="always" height="363" width="580"></embed></object></span></p>
<p><br class="final-break" style="clear: both" /></p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekosdeux.com/android-in-vmware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Failure of the iPad&#8230;</title>
		<link>http://www.ekosdeux.com/failure-of-the-ipad/</link>
		<comments>http://www.ekosdeux.com/failure-of-the-ipad/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 17:36:12 +0000</pubDate>
		<dc:creator><![CDATA[FossilizedCarlos]]></dc:creator>
				<category><![CDATA[Off Topic]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[NVIDIA Tegra]]></category>
		<category><![CDATA[Slate]]></category>

		<guid isPermaLink="false">http://www.ekosdeux.com/failure-of-the-ipad</guid>
		<description><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p>Welcome back!!!Apple recently introduced the iPad&#8230; I was both excited, and disappointed. I understand running the full OS X is hard for a mobile device that small, but how about doing like the iPod and taking the core, and introducing the iPad&#8217;s own version of the User Interface. In the Days to the event, I [&#8230;]</p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></description>
				<content:encoded><![CDATA[<p>See more post at <a rel="nofollow" href="http://www.ekosdeux.com">Part-Time Dev</a></p>
<p></p><p style="clear: both"><a href="http://images.apple.com/home/images/ipad_hero_20100127.jpg" class="image-link"><img src="http://www.ekosdeux.com/wp-content/uploads/2010/01/ipad-hero-20100127-thumb1.jpg" height="226" align="left" width="363" style=" display: inline; float: left; margin: 0 10px 10px 0;" /></a><strong>Welcome back!!!<br /></strong><a href="http://www.apple.com">Apple</a> recently introduced the iPad&#8230; I was both excited, and disappointed. I understand running the full OS X is hard for a mobile device that small, but how about doing like the iPod and taking the core, and introducing the iPad&#8217;s own version of the User Interface. In the Days to the event, I found myself thinking of the possibilities, and now find myself looking to see what the HP Slate will offer. Following are reasons I will wait before diving in&#8230;</p>
<p style="clear: both">The iPhone is great, don&#8217;t get me wrong, but its just that. The iPad was supposed to be much more, and its just a giant iPod touch. It lacks the forward facing camera we all dreamed of. Can you imagine having <a href="http://www.skype.com">Skype</a> installed on this device, and chatting with friends. </p>
<p style="clear: both">Second, the lack of multi-tasking is ridiculous. So if I am working on something I have to stop, and go to the next app, only to come and have to relaunch the previous app? Ridiculous. The lack of a built in SD card slot is unacceptable, and a loss. Having to get different kits to load your photos on the go is inconvenient, and should have been included. Also, having to sync with a PC through a cable seems out dated for such a device&#8230; How about a one time hook up, and then just wirelessly have the device do a time machine like kind off sync while you do other things. </p>
<p style="clear: both">Lastly, the very small amounts of storage feels almost restrictive. I would fill it up in podcast and iTunes U videos alone. Add to that the many movies, music, and apps and soon its full. Also, iBooks looks great, but no mention of books I already own in pdf. This might be a premature decision, as the iPad has yet to be released, but I will wait like I did with the original iPhone and save myself major disappointment. Who knows maybe I will get one of the slate PCs running the NVIDIA Tegra&#8230; What was your opinion, reaction? Thanks for reading.</p>
<p style="clear: both"><em>Photo source is linked to acknowledge the original owner.</em></p>
<p><br class="final-break" style="clear: both" /></p>
<p><!--
google_ad_client = "ca-pub-6155570070762250";
/* RSS */
google_ad_slot = "8274710652";
google_ad_width = 468;
google_ad_height = 60;
//--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekosdeux.com/failure-of-the-ipad/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
