<?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"
	>

<channel>
	<title>Xooxia Development</title>
	<atom:link href="http://xooxia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://xooxia.com</link>
	<description>Progressive Enhancement and Development Solutions</description>
	<pubDate>Sun, 27 Apr 2008 22:00:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Code Editor With It All</title>
		<link>http://xooxia.com/development/code-editor-with-it-all/</link>
		<comments>http://xooxia.com/development/code-editor-with-it-all/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 22:00:31 +0000</pubDate>
		<dc:creator>Xooxia</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://xooxia.com/?p=53</guid>
		<description><![CDATA[Over the past few weeks I&#8217;ve been looking for a code editor to use for development.  I&#8217;ve been using Dreamweaver for the shear fact that I&#8217;ve just gotten used to it.  When I began in web development over a decade ago, I started using Dreamweaver for the WYSIWYG capabilities along with the database [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past few weeks I&#8217;ve been looking for a code editor to use for development.  I&#8217;ve been using Dreamweaver for the shear fact that I&#8217;ve just gotten used to it.  When I began in web development over a decade ago, I started using Dreamweaver for the WYSIWYG capabilities along with the database integration of the software.  As I&#8217;ve matured as a developer, I no longer use the WYSIWYG feature of the software and have started custom coding all of my php and database code.  I used to use tons of components within Dreamweaver to get some features online and functional fast.  However, as I&#8217;ve had clients ask for some customization of some of those features, I&#8217;ve come to prefer to custom code everything to allow easier customizations.</p>
<p>I&#8217;ve tried quite a few free and commercial editors recently.  The one I have decided to move forward with is the <a title="Aptana Studio" href="http://aptana.com" target="_blank">Aptana Studio Community Edition</a>.  This one has all of the features that I&#8217;ll speak of below.  The best feature of all is that Aptana Studio Community is FREE!  You can&#8217;t beat that.  They offer a full paid version for $99 at the time of this writing, but the added features are not something that I feel I need at this time.  There is a JSON editor included in the full paid version, but not necessary for my work.  JSON is simple enough to follow, so I feel paying the money for that support is not justified.</p>
<p>So, in regards to code editors.  I needed something with quite a few features.  I hate to use various software programs to work within a file.  I like to have one program that can do it all.  This, of course, has always been a challenge.  Listed below are the features that I required for my work flexibility:</p>
<ul>
<li> Syntax Highlighting
<ul>
<li>XHTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>PHP (via a plug-in)</li>
<li>XML</li>
</ul>
</li>
<li>Automatic Code Collapse</li>
<li>Code Helpers</li>
<li>Snippets Support</li>
<li>Macros Support</li>
<li>FTP Support</li>
<li>SVN Support</li>
</ul>
<h3>Syntax Highlighting</h3>
<p>First of all, as any code editor worth it&#8217;s time, syntax highlighting is important.  I work in various languages (as all developers do) and need to have syntax highlighting for each of these languages.</p>
<h3>Automatic Code Collapse</h3>
<p>To work more efficiently, I collapse blocks of code in which I don&#8217;t necessarily need to see details at that time.  This was the big push away from Dreamweaver.  You can collapse code in DW CS3, but you have to highlight the code first.  This means you have to find the beginning of the code block, highlight all the way to the end of the code block, and then collapse the code.  the Aptana Studio will collapse code blocks automatically based on opening and closing brackets.  This is a quick and easy method to hide sections that aren&#8217;t relevant at that time.  This doesn&#8217;t seem like a huge feature until you actually use it.  It can be a great time saver!</p>
<h3>Code Helpers</h3>
<p>OK, this is the feature that mostly sold me on Aptana Studio!  Most code editors have code helpers, however, not close to the support that is integrated into Aptana Studio.  Code helpers are those little pop-ups as you&#8217;re typing code that tell you the proper syntax of the code you&#8217;re typing.  With Aptana, you not only get the syntax in the pop-up, you also get the documentation to go along with the basic information.  This is a great feature to speed up your coding as well as allow you to learn as you work.  When you start typing code functions that you&#8217;re not familiar with, you can learn about it directly in the code window rather than going to any online documentation.</p>
<p>Even more useful is the ScriptDoc support in Aptana Studio.  This is a way you can write the code helper into your own code.  If you frequently write your own functions, then you can add the same code helper functionality by using specific comments in your code.  If you write a function with three parameters and two of those parameters should be strings and one should be an integer, you&#8217;ll be reminded of that while you code.  You won&#8217;t have to open the file with the function in it to refresh your memory.  This could be my most favorite feature!</p>
<h3>Snippets Support</h3>
<p>Any developer reuses code that they&#8217;ve written before.  Via the snippets support, you can add that code quickly.  This is an essential feature for any code editor.  Aptana has native snippets support, so I don&#8217;t have to use one of those snippet widgets.</p>
<h3>Macros Support</h3>
<p>I don&#8217;t use macros very often, but have found them very useful for a few tasks.  With Aptana Studio, you can record macros, save them and play them back.  A nice feature to have available, although not a deal breaker for me.</p>
<h3>FTP Support</h3>
<p>I do quite a lot of my updates directly on the server and like to have a quick and efficient way to upload/download files from within the code editor.  I prefer to have it integrated into the editor so I don&#8217;t have to keep alt-tabbing between an FTP program and the code editor.  This is mostly for efficiency, but an important feature for me.</p>
<h3>Subversion Support</h3>
<p>I use versioning support through Subversion and like to have the integration from within my code editor.  Dreamweaver has Subversion support through an extension that I had gotten pretty accustomed to, so I needed a code editor with integrated support.</p>
<p>I&#8217;ve found this to be a great software program and have only used it for a couple of weeks now.  I may find some trade-offs as I work more intimately with the software, but I&#8217;m definitely going to give it a full fighting chance.  If anyone has any other help for great code editors, please let me know!</p>

    <p></p>
    <hr noshade style="margin:0;height:1px" />
    <p>&copy; Xooxia for <a href="http://xooxia.com">Xooxia Development</a>, 2008. |
      <a href="http://xooxia.com/development/code-editor-with-it-all/">Permalink</a> |
      <a href="http://xooxia.com/development/code-editor-with-it-all/#comments">No comment</a></p>
    <p>Add to <a href="http://del.icio.us/post?url=http://xooxia.com/development/code-editor-with-it-all/&amp;title=Code Editor With It All">del.icio.us</a></p>
    <p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://xooxia.com/development/code-editor-with-it-all/" title="Search on Technorati">Technorati</a></p>
    <p>Want more on these topics ? Browse the archive of posts filed under <a href="http://xooxia.com/category/development/" title="View all posts in Development" rel="category tag">Development</a>.</p><h2>Most Commented Posts</h2><ul class="recent-ratings"><li>November 27, 2007 -- <a href="http://xooxia.com/projects/xooanalytics-wordpress-plugin/" title="xooAnalytics Wordpress Plugin">xooAnalytics Wordpress Plugin (7)</a></li><li>November 19, 2007 -- <a href="http://xooxia.com/about-2/" title="About">About (2)</a></li><li>November 28, 2007 -- <a href="http://xooxia.com/search-engine-optimization/kgen-keyword-generator-firefox-add-ons/" title="KGen :: Keyword generator :: Firefox Add-ons">KGen :: Keyword generator :: Firefox Add-ons (2)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://xooxia.com/development/code-editor-with-it-all/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CheerMix Download is Now LIVE!</title>
		<link>http://xooxia.com/projects/cheermix-download-is-now-live/</link>
		<comments>http://xooxia.com/projects/cheermix-download-is-now-live/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 22:27:12 +0000</pubDate>
		<dc:creator>Xooxia</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://xooxia.com/projects/cheermix-download-is-now-live/</guid>
		<description><![CDATA[After much work and testing, we&#8217;ve finally released CheerMix Download to the public.  We&#8217;re excited to see this project get started and already have plans for a version 2 of the application!  You can visit the site at:
http://cheermixdownload.com
Thanks!

    
    
    &#169; Xooxia for Xooxia Development, 2008. [...]]]></description>
			<content:encoded><![CDATA[<p>After much work and testing, we&#8217;ve finally released CheerMix Download to the public.  We&#8217;re excited to see this project get started and already have plans for a version 2 of the application!  You can visit the site at:</p>
<p><a href="http://cheermixdownload.com" target="_blank">http://cheermixdownload.com</a></p>
<p>Thanks!</p>

    <p></p>
    <hr noshade style="margin:0;height:1px" />
    <p>&copy; Xooxia for <a href="http://xooxia.com">Xooxia Development</a>, 2008. |
      <a href="http://xooxia.com/projects/cheermix-download-is-now-live/">Permalink</a> |
      <a href="http://xooxia.com/projects/cheermix-download-is-now-live/#comments">No comment</a></p>
    <p>Add to <a href="http://del.icio.us/post?url=http://xooxia.com/projects/cheermix-download-is-now-live/&amp;title=CheerMix Download is Now LIVE!">del.icio.us</a></p>
    <p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://xooxia.com/projects/cheermix-download-is-now-live/" title="Search on Technorati">Technorati</a></p>
    <p>Want more on these topics ? Browse the archive of posts filed under <a href="http://xooxia.com/category/development/" title="View all posts in Development" rel="category tag">Development</a>,  <a href="http://xooxia.com/category/projects/" title="View all posts in Projects" rel="category tag">Projects</a>.</p><h2>Most Commented Posts</h2><ul class="recent-ratings"><li>November 27, 2007 -- <a href="http://xooxia.com/projects/xooanalytics-wordpress-plugin/" title="xooAnalytics Wordpress Plugin">xooAnalytics Wordpress Plugin (7)</a></li><li>November 19, 2007 -- <a href="http://xooxia.com/about-2/" title="About">About (2)</a></li><li>November 28, 2007 -- <a href="http://xooxia.com/search-engine-optimization/kgen-keyword-generator-firefox-add-ons/" title="KGen :: Keyword generator :: Firefox Add-ons">KGen :: Keyword generator :: Firefox Add-ons (2)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://xooxia.com/projects/cheermix-download-is-now-live/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Brand New Theme</title>
		<link>http://xooxia.com/design/brand-new-theme/</link>
		<comments>http://xooxia.com/design/brand-new-theme/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 22:57:37 +0000</pubDate>
		<dc:creator>Xooxia</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://xooxia.com/design/brand-new-theme/</guid>
		<description><![CDATA[OK, I&#8217;ve finally forced myself to take the time and develop a custom theme for the blog.  I&#8217;m hoping to create more of a branding with this new theme as this site will serve not only as my professional blog, but also my portfolio.  With this redesign, I&#8217;ve incorporated a new logo, I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>OK, I&#8217;ve finally forced myself to take the time and develop a custom theme for the blog.  I&#8217;m hoping to create more of a branding with this new theme as this site will serve not only as my professional blog, but also my portfolio.  With this redesign, I&#8217;ve incorporated a new logo, I&#8217;ve incorporated my gravatar image, and moved to a more neutral color base, accented with orange links and headings.  I welcome any comments on the theme that you may have.</p>

    <p></p>
    <hr noshade style="margin:0;height:1px" />
    <p>&copy; Xooxia for <a href="http://xooxia.com">Xooxia Development</a>, 2008. |
      <a href="http://xooxia.com/design/brand-new-theme/">Permalink</a> |
      <a href="http://xooxia.com/design/brand-new-theme/#comments">No comment</a></p>
    <p>Add to <a href="http://del.icio.us/post?url=http://xooxia.com/design/brand-new-theme/&amp;title=Brand New Theme">del.icio.us</a></p>
    <p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://xooxia.com/design/brand-new-theme/" title="Search on Technorati">Technorati</a></p>
    <p>Want more on these topics ? Browse the archive of posts filed under <a href="http://xooxia.com/category/design/" title="View all posts in Design" rel="category tag">Design</a>.</p><h2>Most Commented Posts</h2><ul class="recent-ratings"><li>November 27, 2007 -- <a href="http://xooxia.com/projects/xooanalytics-wordpress-plugin/" title="xooAnalytics Wordpress Plugin">xooAnalytics Wordpress Plugin (7)</a></li><li>November 19, 2007 -- <a href="http://xooxia.com/about-2/" title="About">About (2)</a></li><li>November 28, 2007 -- <a href="http://xooxia.com/search-engine-optimization/kgen-keyword-generator-firefox-add-ons/" title="KGen :: Keyword generator :: Firefox Add-ons">KGen :: Keyword generator :: Firefox Add-ons (2)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://xooxia.com/design/brand-new-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Prototype - Scriptaculous Tips and Techniques</title>
		<link>http://xooxia.com/tutorials/prototype-scriptaculous-tips-and-techniques/</link>
		<comments>http://xooxia.com/tutorials/prototype-scriptaculous-tips-and-techniques/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 16:38:14 +0000</pubDate>
		<dc:creator>Xooxia</dc:creator>
		
		<category><![CDATA[Prototype-Scriptaculous]]></category>

		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://xooxia.com/tutorials/prototype-scriptaculous-tips-and-techniques/</guid>
		<description><![CDATA[Soon, I&#8217;ll be adding a few tips and techniques that I&#8217;ve learned with integrating Prototype and Scriptaculous into some sites that I have had a hand in developing.  My aim is to utilize many different aspects of the frameworks to help others to integrate these amazing tools into their projects.  I&#8217;m a big fan of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.prototypejs.org/" onclick="urchinTracker('/external/http://www.prototypejs.org/')" target="_blank"><img src="http://www.prototypejs.org/images/codesample1.gif" rel="lightbox[50]" alt="Prototype code sample" title="Prototype code sample" align="left" border="0" height="92" hspace="10" vspace="5" width="298" /></a>Soon, I&#8217;ll be adding a few tips and techniques that I&#8217;ve learned with integrating <a href="http://www.prototypejs.org/" onclick="urchinTracker('/external/http://www.prototypejs.org/')" target="_blank">Prototype</a> and <a href="http://script.aculo.us/" onclick="urchinTracker('/external/http://script.aculo.us/')" target="_blank">Scriptaculous</a> into some sites that I have had a hand in developing.  My aim is to utilize many different aspects of the frameworks to help others to integrate these amazing tools into their projects.  I&#8217;m a big fan of this tandem for various reasons, but mostly because of the ease of cross browser/platform development.  In the past, I&#8217;ve shied away from extensive JavaScript development because of the browser inconsistencies - utilizing mostly server based technologies.  With the use of these frameworks, I&#8217;m able to develop a more usable interface in my projects and it has really opened the door to opportunities that would be impossible solely with server-side scripting.  For example, a current project of mine, <a href="http://cheermixdownload.com" target="_blank">CheerMix Download</a>, makes heavy use of each of these frameworks.  Without the client-side interaction, this site would never work.</p>
<h3>In the works</h3>
<p>Some of the topics I have planned for inclusion are:</p>
<ul>
<li>Drag and Drop Reordering of Pages Wordpress Plugin (Sortables, Ajax, Server-Side Scripting)</li>
<li>A Basic Page Layout Module (Drag and Drop, Ajax, Cookies/DB Integration)</li>
<li>Using XML and JSON with Ajax</li>
<li>Event Listeners for Unobtrusive JavaScript</li>
</ul>
<p>These are just the first topics that I plan to discuss.  If you have any requests for a topic, please let me know in the comments section.</p>

    <p></p>
    <hr noshade style="margin:0;height:1px" />
    <p>&copy; Xooxia for <a href="http://xooxia.com">Xooxia Development</a>, 2008. |
      <a href="http://xooxia.com/tutorials/prototype-scriptaculous-tips-and-techniques/">Permalink</a> |
      <a href="http://xooxia.com/tutorials/prototype-scriptaculous-tips-and-techniques/#comments">No comment</a></p>
    <p>Add to <a href="http://del.icio.us/post?url=http://xooxia.com/tutorials/prototype-scriptaculous-tips-and-techniques/&amp;title=Prototype - Scriptaculous Tips and Techniques">del.icio.us</a></p>
    <p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://xooxia.com/tutorials/prototype-scriptaculous-tips-and-techniques/" title="Search on Technorati">Technorati</a></p>
    <p>Want more on these topics ? Browse the archive of posts filed under <a href="http://xooxia.com/category/prototype-scriptaculous/" title="View all posts in Prototype-Scriptaculous" rel="category tag">Prototype-Scriptaculous</a>,  <a href="http://xooxia.com/category/tutorials/" title="View all posts in Tutorials" rel="category tag">Tutorials</a>.</p><h2>Most Commented Posts</h2><ul class="recent-ratings"><li>November 27, 2007 -- <a href="http://xooxia.com/projects/xooanalytics-wordpress-plugin/" title="xooAnalytics Wordpress Plugin">xooAnalytics Wordpress Plugin (7)</a></li><li>November 19, 2007 -- <a href="http://xooxia.com/about-2/" title="About">About (2)</a></li><li>November 28, 2007 -- <a href="http://xooxia.com/search-engine-optimization/kgen-keyword-generator-firefox-add-ons/" title="KGen :: Keyword generator :: Firefox Add-ons">KGen :: Keyword generator :: Firefox Add-ons (2)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://xooxia.com/tutorials/prototype-scriptaculous-tips-and-techniques/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create Sample Cheerleading Music Mix &#124; CheerMix Download</title>
		<link>http://xooxia.com/development/create-sample-cheerleading-music-mix-cheermix-download/</link>
		<comments>http://xooxia.com/development/create-sample-cheerleading-music-mix-cheermix-download/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 14:48:53 +0000</pubDate>
		<dc:creator>Xooxia</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://xooxia.com/uncategorized/create-sample-cheerleading-music-mix-cheermix-download/</guid>
		<description><![CDATA[

Create Sample Cheerleading Music Mix &#124; CheerMix Download


OK, I&#8217;m still putting the finishing touches on the CheerMix Download Application, but I wanted to allow users to sample the application and try to create a little bit of buzz about the site.  I&#8217;ve decided to open the home page, along with a watered-down version of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://cheermixdownload.com/blog/create-sample-cheerleading-music-mix/"><br />
</a></p>
<h1><a href="http://cheermixdownload.com/blog/create-sample-cheerleading-music-mix/">Create Sample Cheerleading Music Mix | CheerMix Download<br />
<img src="http://cheermixdownload.com/images/app_screenshot.gif" alt="CheerMix Download Screenshot" title="CheerMix Download Screenshot" align="left" border="0" height="157" hspace="10" vspace="5" width="300" /><br />
</a></h1>
<p>OK, I&#8217;m still putting the finishing touches on the CheerMix Download Application, but I wanted to allow users to sample the application and try to create a little bit of buzz about the site.  I&#8217;ve decided to open the home page, along with a watered-down version of the application, and invite users to test the application.  Specific pages like the sign up and log in pages are still closed, but the main sample page and some support pages are open to the public.</p>
<p>I&#8217;ve implemented an email list for users to subscribe in which they&#8217;ll receive notifications through the blog entries.  I welcome anyone to try out the sample application and leave any feedback.  Thanks!</p>
<h1>Online Cheerleading Music Mix Downloads</h1>

    <p></p>
    <hr noshade style="margin:0;height:1px" />
    <p>&copy; Xooxia for <a href="http://xooxia.com">Xooxia Development</a>, 2008. |
      <a href="http://xooxia.com/development/create-sample-cheerleading-music-mix-cheermix-download/">Permalink</a> |
      <a href="http://xooxia.com/development/create-sample-cheerleading-music-mix-cheermix-download/#comments">No comment</a></p>
    <p>Add to <a href="http://del.icio.us/post?url=http://xooxia.com/development/create-sample-cheerleading-music-mix-cheermix-download/&amp;title=Create Sample Cheerleading Music Mix | CheerMix Download">del.icio.us</a></p>
    <p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://xooxia.com/development/create-sample-cheerleading-music-mix-cheermix-download/" title="Search on Technorati">Technorati</a></p>
    <p>Want more on these topics ? Browse the archive of posts filed under <a href="http://xooxia.com/category/development/" title="View all posts in Development" rel="category tag">Development</a>.</p><h2>Most Commented Posts</h2><ul class="recent-ratings"><li>November 27, 2007 -- <a href="http://xooxia.com/projects/xooanalytics-wordpress-plugin/" title="xooAnalytics Wordpress Plugin">xooAnalytics Wordpress Plugin (7)</a></li><li>November 19, 2007 -- <a href="http://xooxia.com/about-2/" title="About">About (2)</a></li><li>November 28, 2007 -- <a href="http://xooxia.com/search-engine-optimization/kgen-keyword-generator-firefox-add-ons/" title="KGen :: Keyword generator :: Firefox Add-ons">KGen :: Keyword generator :: Firefox Add-ons (2)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://xooxia.com/development/create-sample-cheerleading-music-mix-cheermix-download/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Out of the Loop</title>
		<link>http://xooxia.com/development/out-of-the-loop/</link>
		<comments>http://xooxia.com/development/out-of-the-loop/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 20:50:16 +0000</pubDate>
		<dc:creator>Xooxia</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://xooxia.com/development/out-of-the-loop/</guid>
		<description><![CDATA[Wow, I&#8217;ve been way too busy recently with a number of projects.  Currently in the works are a couple of site redesigns and a full site development that have kept me from updating the blog.  However, I&#8217;m getting through the mess a little better and am working on a couple of posts.  Anyway, let me [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, I&#8217;ve been way too busy recently with a number of projects.  Currently in the works are a couple of site redesigns and a full site development that have kept me from updating the blog.  However, I&#8217;m getting through the mess a little better and am working on a couple of posts.  Anyway, let me introduce you to the new projects I&#8217;m talking about.</p>
<ol>
<li><strong>CheerMix Download</strong>  (<a href="http://cheermixdownload.com" target="_blank" title="CheerMix Download">http://cheermixdownload.com</a>)<br />
This is a site that I&#8217;ve really been excited about and will run and maintain myself.  In the competitive cheerleading industry, music mixes are a necessary addition to a squad&#8217;s/team&#8217;s routines.  This site allows coaches, choreographers, sponsors, etc. to arrange professionally mixed music sections into a full mix for use at performances and competitions.  The interface is a Drag and Drop sortable list of music sections developed with the use of Prototype and Scriptaculous.  Previewing of music is done via JavaScript and the SoundManager2 script.  Once a user gets the sections arranged in an order that works for their routine, they can create a high-quality downloadable MP3 file of the mix.  There currently is no support for limited browsers and no plans to include that support.</li>
<li><strong>Pet Connect Online</strong> (<a href="http://petconnectonline.com" onclick="urchinTracker('/external/http://petconnectonline.com')" target="_blank" title="Pet Connect Online">http://petconnectonline.com</a>)<br />
This site was developed by a friend and colleague of mine.  His father runs the business and he maintains the online presence.  Recently, traffic and conversions have been dropping and the administrators feel a rebranding of site and image are due.  I&#8217;ll be handling most of the graphic redesign and CSS required for the new look.</li>
</ol>

    <p></p>
    <hr noshade style="margin:0;height:1px" />
    <p>&copy; Xooxia for <a href="http://xooxia.com">Xooxia Development</a>, 2008. |
      <a href="http://xooxia.com/development/out-of-the-loop/">Permalink</a> |
      <a href="http://xooxia.com/development/out-of-the-loop/#comments">No comment</a></p>
    <p>Add to <a href="http://del.icio.us/post?url=http://xooxia.com/development/out-of-the-loop/&amp;title=Out of the Loop">del.icio.us</a></p>
    <p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://xooxia.com/development/out-of-the-loop/" title="Search on Technorati">Technorati</a></p>
    <p>Want more on these topics ? Browse the archive of posts filed under <a href="http://xooxia.com/category/design/" title="View all posts in Design" rel="category tag">Design</a>,  <a href="http://xooxia.com/category/development/" title="View all posts in Development" rel="category tag">Development</a>.</p><h2>Most Commented Posts</h2><ul class="recent-ratings"><li>November 27, 2007 -- <a href="http://xooxia.com/projects/xooanalytics-wordpress-plugin/" title="xooAnalytics Wordpress Plugin">xooAnalytics Wordpress Plugin (7)</a></li><li>November 19, 2007 -- <a href="http://xooxia.com/about-2/" title="About">About (2)</a></li><li>November 28, 2007 -- <a href="http://xooxia.com/search-engine-optimization/kgen-keyword-generator-firefox-add-ons/" title="KGen :: Keyword generator :: Firefox Add-ons">KGen :: Keyword generator :: Firefox Add-ons (2)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://xooxia.com/development/out-of-the-loop/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Updated xooAnalytics Wordpress plugin - now version 1.3.2</title>
		<link>http://xooxia.com/uncategorized/updated-xooanalytics-wordpress-plugin-now-version-132/</link>
		<comments>http://xooxia.com/uncategorized/updated-xooanalytics-wordpress-plugin-now-version-132/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 18:03:27 +0000</pubDate>
		<dc:creator>Xooxia</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Plug-Ins]]></category>

		<guid isPermaLink="false">http://xooxia.com/uncategorized/updated-xooanalytics-wordpress-plugin-now-version-132/</guid>
		<description><![CDATA[I&#8217;ve updated the xooAnalytics Wordpress plugin.  It now allows you to exclude your internal domain from tracking results via the options page.  Take a look:  http://wordpress.org/extend/plugins/xooanalytics/

    
    
    &#169; Xooxia for Xooxia Development, 2008. &#124;
      Permalink &#124;
     [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve updated the xooAnalytics Wordpress plugin.  It now allows you to exclude your internal domain from tracking results via the options page.  Take a look:  <a href="http://wordpress.org/extend/plugins/xooanalytics/" onclick="urchinTracker('/external/http://wordpress.org/extend/plugins/xooanalytics/')">http://wordpress.org/extend/plugins/xooanalytics/</a></p>

    <p></p>
    <hr noshade style="margin:0;height:1px" />
    <p>&copy; Xooxia for <a href="http://xooxia.com">Xooxia Development</a>, 2008. |
      <a href="http://xooxia.com/uncategorized/updated-xooanalytics-wordpress-plugin-now-version-132/">Permalink</a> |
      <a href="http://xooxia.com/uncategorized/updated-xooanalytics-wordpress-plugin-now-version-132/#comments">No comment</a></p>
    <p>Add to <a href="http://del.icio.us/post?url=http://xooxia.com/uncategorized/updated-xooanalytics-wordpress-plugin-now-version-132/&amp;title=Updated xooAnalytics Wordpress plugin - now version 1.3.2">del.icio.us</a></p>
    <p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://xooxia.com/uncategorized/updated-xooanalytics-wordpress-plugin-now-version-132/" title="Search on Technorati">Technorati</a></p>
    <p>Want more on these topics ? Browse the archive of posts filed under <a href="http://xooxia.com/category/uncategorized/" title="View all posts in Uncategorized" rel="category tag">Uncategorized</a>.</p><h2>Related Posts</h2><ul class="recent-ratings"><li>November 29, 2007 -- <a href="http://xooxia.com/projects/xooanalytics-v121-wordpress-plugin-released/" title="xooAnalytics v1.2.1 Wordpress Plugin Released">xooAnalytics v1.2.1 Wordpress Plugin Released (0)</a></li><li>November 27, 2007 -- <a href="http://xooxia.com/projects/xooanalytics-wordpress-plugin/" title="xooAnalytics Wordpress Plugin">xooAnalytics Wordpress Plugin (7)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://xooxia.com/uncategorized/updated-xooanalytics-wordpress-plugin-now-version-132/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JavaScript Cookie Crumbs</title>
		<link>http://xooxia.com/unobtrusive-javascript/javascript-cookie-crumbs/</link>
		<comments>http://xooxia.com/unobtrusive-javascript/javascript-cookie-crumbs/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 18:23:52 +0000</pubDate>
		<dc:creator>Xooxia</dc:creator>
		
		<category><![CDATA[Unobtrusive Javascript]]></category>

		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://xooxia.com/unobtrusive-javascript/javascript-cookie-crumbs/</guid>
		<description><![CDATA[OK, one of my favorite navigational schemes is the breadcrumbs list.  I like it&#8217;s ease of use in developing and presenting to the user, and I like the quick visual that it gives a user as to the hierarchical structure of the site.  One great little script that I ran across is called Cookie Crumbs.  [...]]]></description>
			<content:encoded><![CDATA[<p>OK, one of my favorite navigational schemes is the breadcrumbs list.  I like it&#8217;s ease of use in developing and presenting to the user, and I like the quick visual that it gives a user as to the hierarchical structure of the site.  One great little script that I ran across is called Cookie Crumbs.  Here is the script in a nutshell:</p>
<ul>
<li>This script keeps track of where a user has been via cookies read and written in JavaScript</li>
<li>It is a true list of your trail history (much like the browser&#8217;s history, but you can see it visually)<br />
Most breadcrumbs scripts list the site hierarchy, not the true user history</li>
<li>Easily configurable - the list is written to the screen through JavaScript and formatted with CSS</li>
<li>Unobtrusive, if a user doesn&#8217;t have JavaScript enabled, they&#8217;ll not see the list at all</li>
</ul>
<p>Take a look at the script here:  <a href="http://www.tomcoote.co.uk/JavaScriptCookieCrumbs.aspx" onclick="urchinTracker('/external/http://www.tomcoote.co.uk/JavaScriptCookieCrumbs.aspx')">http://www.tomcoote.co.uk/JavaScriptCookieCrumbs.aspx</a></p>

    <p></p>
    <hr noshade style="margin:0;height:1px" />
    <p>&copy; Xooxia for <a href="http://xooxia.com">Xooxia Development</a>, 2007. |
      <a href="http://xooxia.com/unobtrusive-javascript/javascript-cookie-crumbs/">Permalink</a> |
      <a href="http://xooxia.com/unobtrusive-javascript/javascript-cookie-crumbs/#comments">No comment</a></p>
    <p>Add to <a href="http://del.icio.us/post?url=http://xooxia.com/unobtrusive-javascript/javascript-cookie-crumbs/&amp;title=JavaScript Cookie Crumbs">del.icio.us</a></p>
    <p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://xooxia.com/unobtrusive-javascript/javascript-cookie-crumbs/" title="Search on Technorati">Technorati</a></p>
    <p>Want more on these topics ? Browse the archive of posts filed under <a href="http://xooxia.com/category/unobtrusive-javascript/" title="View all posts in Unobtrusive Javascript" rel="category tag">Unobtrusive Javascript</a>.</p><h2>Related Posts</h2><ul class="recent-ratings"><li>November 26, 2007 -- <a href="http://xooxia.com/tutorials/dom-tutorial/" title="DOM Tutorial">DOM Tutorial (0)</a></li><li>November 21, 2007 -- <a href="http://xooxia.com/unobtrusive-javascript/xoomapper-v12-expandable-sitemap-search-engine-friendly/" title="XooMapper v1.2 - Expandable Sitemap (Search Engine Friendly)">XooMapper v1.2 - Expandable Sitemap (Search Engine Friendly) (0)</a></li><li>November 19, 2007 -- <a href="http://xooxia.com/social-networking/googles-opensocial-api/" title="Google&#8217;s OpenSocial API">Google&#8217;s OpenSocial API (0)</a></li><li>November 19, 2007 -- <a href="http://xooxia.com/ajax/inline-editing/" title="Inline Editing">Inline Editing (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://xooxia.com/unobtrusive-javascript/javascript-cookie-crumbs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>No more CSS Hacks!!!</title>
		<link>http://xooxia.com/design/no-more-css-hacks/</link>
		<comments>http://xooxia.com/design/no-more-css-hacks/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 18:11:49 +0000</pubDate>
		<dc:creator>Xooxia</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://xooxia.com/design/no-more-css-hacks/</guid>
		<description><![CDATA[OK, so I&#8217;m looking at my shelf and I notice that almost 1/5 of the books I have deal in CSS hacks.  I&#8217;ve spent many a night reading through these books trying to find the right hack to make a 1-pixel difference in a design for a browser that is being used by only 5% [...]]]></description>
			<content:encoded><![CDATA[<p>OK, so I&#8217;m looking at my shelf and I notice that almost 1/5 of the books I have deal in CSS hacks.  I&#8217;ve spent many a night reading through these books trying to find the right hack to make a 1-pixel difference in a design for a browser that is being used by only 5% of my clients&#8217; visitors.  Now, many of you will say that I shouldn&#8217;t go through so much trouble to accommodate just a few visitors and I would agree with you.   However, if I tell my clients that their site will look great in specific browsers, then I&#8217;m going to make sure that it does.<span id="more-43"></span></p>
<p>Yet, I&#8217;m beginning to feel that bending over backwards for these users is not the correct approach.  I&#8217;ve come across a few sites that share that same sentiment and definitely make a good argument to stop the nonsense.  If you&#8217;re a designer or developer, you know that 90% of my frustration is hacking for the IE6 browser.  Of course, for professional sites, I still find it necessary to accommodate the IE6 users.  Looking at my analytics, I can justify the extra work because I have enough visitors still using the dreaded browser.  But, for personal sites or sites that aren&#8217;t e-commerce sites (and if the client is on-board), then I agree with the <a href="http://www.stopie6.org/" onclick="urchinTracker('/external/http://www.stopie6.org/')" target="_blank" title="Stop IE 6">Stop IE6</a> movement.</p>
<p>Now I understand that many users that still use IE6 do not have control over the browser that is available (whether their IT department doesn&#8217;t want to spend the necessary 3 minutes it takes to upgrade, or whatever), but we&#8217;re not talking about making a site inaccessible with IE6, just not quite as beautiful as with a more standards based browser.</p>
<p>One of the more intriguing posts I&#8217;ve read on the topic is from Web Designer Wall, you can read the <a href="http://www.webdesignerwall.com/general/trash-all-ie-hacks/" onclick="urchinTracker('/external/http://www.webdesignerwall.com/general/trash-all-ie-hacks/')" target="_blank" title="Trash All IE Hacks">post here</a>.</p>
<p>Thank goodness IE7 has a bit better CSS rendering engine than its predecessor.  Soon IE6 will be but a past nightmare, and we can start devoting our time and our shelf space to more important topics, like usability and accessibility.</p>
<p>Let me know what you think about this by posting your own comments.</p>

    <p></p>
    <hr noshade style="margin:0;height:1px" />
    <p>&copy; Xooxia for <a href="http://xooxia.com">Xooxia Development</a>, 2007. |
      <a href="http://xooxia.com/design/no-more-css-hacks/">Permalink</a> |
      <a href="http://xooxia.com/design/no-more-css-hacks/#comments">No comment</a></p>
    <p>Add to <a href="http://del.icio.us/post?url=http://xooxia.com/design/no-more-css-hacks/&amp;title=No more CSS Hacks!!!">del.icio.us</a></p>
    <p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://xooxia.com/design/no-more-css-hacks/" title="Search on Technorati">Technorati</a></p>
    <p>Want more on these topics ? Browse the archive of posts filed under <a href="http://xooxia.com/category/design/" title="View all posts in Design" rel="category tag">Design</a>.</p><h2>Most Commented Posts</h2><ul class="recent-ratings"><li>November 27, 2007 -- <a href="http://xooxia.com/projects/xooanalytics-wordpress-plugin/" title="xooAnalytics Wordpress Plugin">xooAnalytics Wordpress Plugin (7)</a></li><li>November 19, 2007 -- <a href="http://xooxia.com/about-2/" title="About">About (2)</a></li><li>November 28, 2007 -- <a href="http://xooxia.com/search-engine-optimization/kgen-keyword-generator-firefox-add-ons/" title="KGen :: Keyword generator :: Firefox Add-ons">KGen :: Keyword generator :: Firefox Add-ons (2)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://xooxia.com/design/no-more-css-hacks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OK to use the F-Word</title>
		<link>http://xooxia.com/funnyinteresting-etc/ok-to-use-the-f-word/</link>
		<comments>http://xooxia.com/funnyinteresting-etc/ok-to-use-the-f-word/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 21:32:42 +0000</pubDate>
		<dc:creator>Xooxia</dc:creator>
		
		<category><![CDATA[Funny/Interesting etc.]]></category>

		<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://xooxia.com/funnyinteresting-etc/ok-to-use-the-f-word/</guid>
		<description><![CDATA[OK, usually when I&#8217;m scouring the web, I&#8217;m not in an &#8216;entertain me&#8217; kind of mode.  I&#8217;m looking for a solution to a development problem, seeing what other developers are up to, and whatnot.  However, this post just struck me as pretty funny.  Please take a look and let the author know [...]]]></description>
			<content:encoded><![CDATA[<p>OK, usually when I&#8217;m scouring the web, I&#8217;m not in an &#8216;entertain me&#8217; kind of mode.  I&#8217;m looking for a solution to a development problem, seeing what other developers are up to, and whatnot.  However, this post just struck me as pretty funny.  Please take a look and let the author know how you feel!</p>
<p><a href="http://www.oscandy.com/blog/669-four-cases-ok-to-use-the-f-word" onclick="urchinTracker('/external/http://www.oscandy.com/blog/669-four-cases-ok-to-use-the-f-word')" target="_blank" title="Four cases it's OK to use the F-word">Four cases it&#8217;s OK to use the F-word </a></p>

    <p></p>
    <hr noshade style="margin:0;height:1px" />
    <p>&copy; Xooxia for <a href="http://xooxia.com">Xooxia Development</a>, 2007. |
      <a href="http://xooxia.com/funnyinteresting-etc/ok-to-use-the-f-word/">Permalink</a> |
      <a href="http://xooxia.com/funnyinteresting-etc/ok-to-use-the-f-word/#comments">No comment</a></p>
    <p>Add to <a href="http://del.icio.us/post?url=http://xooxia.com/funnyinteresting-etc/ok-to-use-the-f-word/&amp;title=OK to use the F-Word">del.icio.us</a></p>
    <p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://xooxia.com/funnyinteresting-etc/ok-to-use-the-f-word/" title="Search on Technorati">Technorati</a></p>
    <p>Want more on these topics ? Browse the archive of posts filed under <a href="http://xooxia.com/category/funnyinteresting-etc/" title="View all posts in Funny/Interesting etc." rel="category tag">Funny/Interesting etc.</a>.</p><h2>Most Commented Posts</h2><ul class="recent-ratings"><li>November 27, 2007 -- <a href="http://xooxia.com/projects/xooanalytics-wordpress-plugin/" title="xooAnalytics Wordpress Plugin">xooAnalytics Wordpress Plugin (7)</a></li><li>November 19, 2007 -- <a href="http://xooxia.com/about-2/" title="About">About (2)</a></li><li>November 28, 2007 -- <a href="http://xooxia.com/search-engine-optimization/kgen-keyword-generator-firefox-add-ons/" title="KGen :: Keyword generator :: Firefox Add-ons">KGen :: Keyword generator :: Firefox Add-ons (2)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://xooxia.com/funnyinteresting-etc/ok-to-use-the-f-word/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
