<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>Binary</title>
	<link>http://blog.willcarpenterinteractive.com</link>
	<description>The ramblings of an interactive developer</description>
	<pubDate>Mon, 07 Mar 2011 22:41:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>How to Revert a Non-Versioned CRX Instance</title>
		<link>http://blog.willcarpenterinteractive.com/2011/03/07/how-to-revert-a-non-versioned-crx-instance/</link>
		<comments>http://blog.willcarpenterinteractive.com/2011/03/07/how-to-revert-a-non-versioned-crx-instance/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 22:41:40 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[CQ 5]]></category>

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

		<guid isPermaLink="false">http://blog.willcarpenterinteractive.com/2011/03/07/how-to-revert-a-non-versioned-crx-instance/</guid>
		<description><![CDATA[There&#8217;s one really big drawback to the CQ/CRX package manager&#8230;
Imagine you have a application code package with a filter of &#8220;/apps/myApp&#8221;, which has been built from a recently updated SVN working copy.  You want to update your local CRX repository, but you also have current development under way which will be overwritten by the [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s one really big drawback to the CQ/CRX package manager&#8230;</p>
<p>Imagine you have a application code package with a filter of &#8220;/apps/myApp&#8221;, which has been built from a recently updated SVN working copy.  You want to update your local CRX repository, but you also have current development under way which will be overwritten by the package.  Well, in most cases you can remember to make a backup package singling out only your local changes, build that package, install the full code refresh from SVN, and then install your backup package immediately afterward, effectively overlaying your changes/additions on top of an updated code-base.  This works, but what if for some reason you forget to back up your local changes in this manner?  Once a full package has been installed, there&#8217;s no way to go back, right?</p>
<p> <a href="http://blog.willcarpenterinteractive.com/2011/03/07/how-to-revert-a-non-versioned-crx-instance/#more-17" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.willcarpenterinteractive.com/2011/03/07/how-to-revert-a-non-versioned-crx-instance/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OSGi Bundles, Apache Felix and Versioning</title>
		<link>http://blog.willcarpenterinteractive.com/2011/03/03/osgi-bundles-apache-felix-and-versioning/</link>
		<comments>http://blog.willcarpenterinteractive.com/2011/03/03/osgi-bundles-apache-felix-and-versioning/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 13:56:39 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[CQ 5]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.willcarpenterinteractive.com/2011/03/03/osgi-bundles-apache-felix-and-versioning/</guid>
		<description><![CDATA[I recently had an experience while working with a customer that has prompted me once again to post about what it taught me.  The requirement that drove this experience was the necessity for a Maven/AntHill build and deploy automation for CQ package and OSGi bundle deployments.  In order to make sure that all [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had an experience while working with a customer that has prompted me once again to post about what it taught me.  The requirement that drove this experience was the necessity for a Maven/AntHill build and deploy automation for CQ package and OSGi bundle deployments.  In order to make sure that all our code (bundles, jsp and design) was deployed simultaneously, we decided to take advantage of the &#8220;install&#8221; directory that can be located as a child of an &#8220;/apps/myApp&#8221; directory in CQ.  This &#8220;install&#8221; directory is treated as a watched directory by the OSGi installer, and so any jars in that directory will be auto-installed upon installation of the package&#8230;or so we thought&#8230;</p>
<p> <a href="http://blog.willcarpenterinteractive.com/2011/03/03/osgi-bundles-apache-felix-and-versioning/#more-16" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.willcarpenterinteractive.com/2011/03/03/osgi-bundles-apache-felix-and-versioning/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JQuery and Form Validation</title>
		<link>http://blog.willcarpenterinteractive.com/2010/09/27/jquery-and-form-validation/</link>
		<comments>http://blog.willcarpenterinteractive.com/2010/09/27/jquery-and-form-validation/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 03:53:05 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Interactive Development]]></category>

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

		<guid isPermaLink="false">http://blog.willcarpenterinteractive.com/2010/09/27/jquery-and-form-validation/</guid>
		<description><![CDATA[Today I ran into an interesting issue with the combination of the jquery.uniform plug-in in combination with the jquery.validate plug-in.  The issue arose because a client had delivered me a very nicely styled contact form, skinned with the Uniform plug-in for JQuery, but the validation they had used on the previous iteration of their [...]]]></description>
			<content:encoded><![CDATA[<p>Today I ran into an interesting issue with the combination of the <a href="http://www.jqueryplugins.com/plugin/223/">jquery.uniform</a> plug-in in combination with the <a href="http://docs.jquery.com/Plugins/validation">jquery.validate</a> plug-in.  The issue arose because a client had delivered me a very nicely styled contact form, skinned with the Uniform plug-in for JQuery, but the validation they had used on the previous iteration of their site was a somewhat clunky Javascript function with only a standard browser alert box if any required fields weren&#8217;t filled in properly.</p>
<p> <a href="http://blog.willcarpenterinteractive.com/2010/09/27/jquery-and-form-validation/#more-15" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.willcarpenterinteractive.com/2010/09/27/jquery-and-form-validation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Solr Search, Stop Words and DisMax Search Handler</title>
		<link>http://blog.willcarpenterinteractive.com/2010/07/01/solr-search-stop-words-and-dismax-search-handler/</link>
		<comments>http://blog.willcarpenterinteractive.com/2010/07/01/solr-search-stop-words-and-dismax-search-handler/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 14:03:45 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Interactive Development]]></category>

		<guid isPermaLink="false">http://blog.willcarpenterinteractive.com/2010/07/01/solr-search-stop-words-and-dismax-search-handler/</guid>
		<description><![CDATA[Yesterday I ran across an interesting issue while troubleshooting a Solr (Lucene-based search server) issue for a client.  Basically, the client has a CQ 5.3 implementation, but for various reasons they decided to use Solr for search on their site as opposed to using the built-in JCR search.  No biggie, but they eventually [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I ran across an interesting issue while troubleshooting a Solr (Lucene-based search server) issue for a client.  Basically, the client has a CQ 5.3 implementation, but for various reasons they decided to use Solr for search on their site as opposed to using the built-in JCR search.  No biggie, but they eventually noticed the following issue: say a page is named &#8220;The Black Cat was Crossing the Street&#8221;, if a user enters &#8220;the black cat was crossing the street&#8221; they would get no results.  However, if they entered &#8220;black cat crossing street&#8221; they would get the expected page OR if they entered &#8220;the black cat was crossing the street&#8221; as a phrase-search (with actual double quotes surrounding it), they would also get the expected result.</p>
<p> <a href="http://blog.willcarpenterinteractive.com/2010/07/01/solr-search-stop-words-and-dismax-search-handler/#more-14" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.willcarpenterinteractive.com/2010/07/01/solr-search-stop-words-and-dismax-search-handler/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blog Trickery Using XML-RPC</title>
		<link>http://blog.willcarpenterinteractive.com/2010/06/28/blog-trickery-using-xml-rpc/</link>
		<comments>http://blog.willcarpenterinteractive.com/2010/06/28/blog-trickery-using-xml-rpc/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 21:25:38 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[CQ 5]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.willcarpenterinteractive.com/2010/06/28/blog-trickery-using-xml-rpc/</guid>
		<description><![CDATA[I was recently asked by a client to explore a proof of concept to create a servlet within the CQ system that could receive requests via XML-RPC from a mobile or desktop based Wordpress blogging application and basically trick it into thinking it was communicating with a Wordpress blog.  The idea was to let [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently asked by a client to explore a proof of concept to create a servlet within the CQ system that could receive requests via XML-RPC from a mobile or desktop based Wordpress blogging application and basically trick it into thinking it was communicating with a Wordpress blog.  The idea was to let the authors of their blog pages have the flexibility to use pre-existing blogging applications without having to limit the pages themselves to rely on pre-fabricated blogging solutions such as Blogger, Wordpress, or Movable Type.</p>
<p> <a href="http://blog.willcarpenterinteractive.com/2010/06/28/blog-trickery-using-xml-rpc/#more-13" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.willcarpenterinteractive.com/2010/06/28/blog-trickery-using-xml-rpc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTC Droid Incredible - Part II</title>
		<link>http://blog.willcarpenterinteractive.com/2010/06/11/htc-droid-incredible-part-ii/</link>
		<comments>http://blog.willcarpenterinteractive.com/2010/06/11/htc-droid-incredible-part-ii/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 15:23:31 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Op Ed]]></category>

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

		<guid isPermaLink="false">http://blog.willcarpenterinteractive.com/2010/06/11/htc-droid-incredible-part-ii/</guid>
		<description><![CDATA[I recently realized that it has been almost a month since my last blog post, and much longer than that since I was anticipating the delivery of my new HTC Droid Incredible.  Clearly I&#8217;ve had a lot of time to use the phone since then, and so I&#8217;ve decided to follow up with a [...]]]></description>
			<content:encoded><![CDATA[<p>I recently realized that it has been almost a month since my last blog post, and much longer than that since I was anticipating the delivery of my new HTC Droid Incredible.  Clearly I&#8217;ve had a lot of time to use the phone since then, and so I&#8217;ve decided to follow up with a minor review of the product.</p>
<p> <a href="http://blog.willcarpenterinteractive.com/2010/06/11/htc-droid-incredible-part-ii/#more-12" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.willcarpenterinteractive.com/2010/06/11/htc-droid-incredible-part-ii/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML5 After a Glance</title>
		<link>http://blog.willcarpenterinteractive.com/2010/05/18/html5-after-a-glance/</link>
		<comments>http://blog.willcarpenterinteractive.com/2010/05/18/html5-after-a-glance/#comments</comments>
		<pubDate>Tue, 18 May 2010 23:41:45 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[HTML5]]></category>

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

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

		<guid isPermaLink="false">http://blog.willcarpenterinteractive.com/2010/05/18/html5-after-a-glance/</guid>
		<description><![CDATA[It&#8217;s been a little while since my last post, the reason for this being that I&#8217;m settling into a pretty rigorous schedule with my new contract, and have not had a chance to do much experimenting.  After my last post, which was a response to Steve Jobs&#8217; &#8220;Thoughts on Flash&#8221; article, I decided that [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a little while since my last post, the reason for this being that I&#8217;m settling into a pretty rigorous schedule with my new contract, and have not had a chance to do much experimenting.  After my last post, which was a response to Steve Jobs&#8217; &#8220;Thoughts on Flash&#8221; article, I decided that my next little programming experiment should be to explore (at least preliminarily) HTML5 and start to formulate an idea for myself of the pros and cons of this new markup language.</p>
<p> <a href="http://blog.willcarpenterinteractive.com/2010/05/18/html5-after-a-glance/#more-11" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.willcarpenterinteractive.com/2010/05/18/html5-after-a-glance/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Re: Steve Jobs&#8217; &#8220;Thoughts on Flash&#8221;</title>
		<link>http://blog.willcarpenterinteractive.com/2010/04/29/re-thoughts-on-flash/</link>
		<comments>http://blog.willcarpenterinteractive.com/2010/04/29/re-thoughts-on-flash/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 16:59:36 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Op Ed]]></category>

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

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

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

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

		<guid isPermaLink="false">http://blog.willcarpenterinteractive.com/2010/04/29/re-thoughts-on-flash/</guid>
		<description><![CDATA[Steve Jobs recently posted the following article on Apple&#8217;s website, presumably to speak to the masses of people asking why the company is refusing to entertain support for Adobe&#8217;s Flash plug-in on their mobile devices.  You can read the article here: http://www.apple.com/hotnews/thoughts-on-flash/, and then feel free to come back and read my thoughts&#8230;on his [...]]]></description>
			<content:encoded><![CDATA[<p>Steve Jobs recently posted the following article on Apple&#8217;s website, presumably to speak to the masses of people asking why the company is refusing to entertain support for Adobe&#8217;s Flash plug-in on their mobile devices.  You can read the article here: <a href="http://www.apple.com/hotnews/thoughts-on-flash/" target="_blank">http://www.apple.com/hotnews/thoughts-on-flash/</a>, and then feel free to come back and read my thoughts&#8230;on his thoughts.</p>
<p> <a href="http://blog.willcarpenterinteractive.com/2010/04/29/re-thoughts-on-flash/#more-10" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.willcarpenterinteractive.com/2010/04/29/re-thoughts-on-flash/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTC Droid Incredible</title>
		<link>http://blog.willcarpenterinteractive.com/2010/04/27/htc-droid-incredible/</link>
		<comments>http://blog.willcarpenterinteractive.com/2010/04/27/htc-droid-incredible/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 16:40:19 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[Op Ed]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.willcarpenterinteractive.com/2010/04/27/htc-droid-incredible/</guid>
		<description><![CDATA[In a couple days, I&#8217;ll return home to LA from a 4 day Seattle work-week and waiting for me at home will be a brand new HTC Droid Incredible.  There are two main reasons why I finally decided to give up my featureless, but reliable Blackberry for this particular smartphone:
]]></description>
			<content:encoded><![CDATA[<p>In a couple days, I&#8217;ll return home to LA from a 4 day Seattle work-week and waiting for me at home will be a brand new HTC Droid Incredible.  There are two main reasons why I finally decided to give up my featureless, but reliable Blackberry for this particular smartphone:</p>
<p> <a href="http://blog.willcarpenterinteractive.com/2010/04/27/htc-droid-incredible/#more-9" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.willcarpenterinteractive.com/2010/04/27/htc-droid-incredible/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OSGi Bundles&#8230;creating reference to BundleContext</title>
		<link>http://blog.willcarpenterinteractive.com/2010/04/21/osgi-bundlescreating-reference-to-bundlecontext/</link>
		<comments>http://blog.willcarpenterinteractive.com/2010/04/21/osgi-bundlescreating-reference-to-bundlecontext/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 21:20:53 +0000</pubDate>
		<dc:creator>Will</dc:creator>
		
		<category><![CDATA[CQ 5]]></category>

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

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

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

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

		<guid isPermaLink="false">http://blog.willcarpenterinteractive.com/2010/04/21/osgi-bundlescreating-reference-to-bundlecontext/</guid>
		<description><![CDATA[This week I was tasked with a relatively complex task by a client, which is requiring me to create an OSGi component that directly interacts with other OSGi services within the repository.  My experience with OSGi being relatively minimal, I ran into a little snag: how to reference other OSGi services (a service can [...]]]></description>
			<content:encoded><![CDATA[<p>This week I was tasked with a relatively complex task by a client, which is requiring me to create an OSGi component that directly interacts with other OSGi services within the repository.  My experience with OSGi being relatively minimal, I ran into a little snag: how to reference other OSGi services (a service can be an Interface or a Component) in the repository from MY OSGi component.</p>
<p> <a href="http://blog.willcarpenterinteractive.com/2010/04/21/osgi-bundlescreating-reference-to-bundlecontext/#more-8" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.willcarpenterinteractive.com/2010/04/21/osgi-bundlescreating-reference-to-bundlecontext/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

