<?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>Mike Nimer</title>
	<atom:link href="http://www.mikenimer.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.mikenimer.com</link>
	<description>code, travel, photography, and other stuff</description>
	<lastBuildDate>Wed, 22 Feb 2012 04:22:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Sencha EXTJS / Spring MVC Maven Archetype</title>
		<link>http://www.mikenimer.com/?p=789</link>
		<comments>http://www.mikenimer.com/?p=789#comments</comments>
		<pubDate>Thu, 16 Feb 2012 22:53:34 +0000</pubDate>
		<dc:creator>mnimer</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[extjs]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[sencha]]></category>
		<category><![CDATA[SpringMVC]]></category>

		<guid isPermaLink="false">http://www.mikenimer.com/?p=789</guid>
		<description><![CDATA[This Archetype is based on the simple user list example found in the <a href="http://docs.sencha.com/ext-js/4-0/#!/guide/application_architecture">Sencha documentation</a>. However, instead of using a static json file there is a Java UserService configured to respond to the List and Update service requests in the ExtJS User Store. From here it should be easy to add more views and controllers on the client side. As well as adding more Service to your SOA layer. ]]></description>
		<wfw:commentRss>http://www.mikenimer.com/?feed=rss2&amp;p=789</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>tip: deserialize Array of Objects (json/java)</title>
		<link>http://www.mikenimer.com/?p=780</link>
		<comments>http://www.mikenimer.com/?p=780#comments</comments>
		<pubDate>Thu, 16 Feb 2012 21:05:48 +0000</pubDate>
		<dc:creator>mnimer</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[json]]></category>

		<guid isPermaLink="false">http://www.mikenimer.com/?p=780</guid>
		<description><![CDATA[First a simple example, using the Jackson json parser. Let&#8217;s say you have an Object in representing a single User, such as: {"id":"4b2c379a-382d-4a0f-b4c3-7b44137c299a","name":"Ed","email":"ed@foo.com"} To convert the JSON back into a User POJO instance. // Single User ObjectMapper mapper = new ObjectMapper(); User user = mapper.readValue(json, User.class ); return user; But now, what if you have ]]></description>
		<wfw:commentRss>http://www.mikenimer.com/?feed=rss2&amp;p=780</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cq5 &#8211; enable page properties in sidekick</title>
		<link>http://www.mikenimer.com/?p=692</link>
		<comments>http://www.mikenimer.com/?p=692#comments</comments>
		<pubDate>Thu, 16 Feb 2012 20:53:52 +0000</pubDate>
		<dc:creator>mnimer</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[CQ5]]></category>

		<guid isPermaLink="false">http://www.mikenimer.com/?p=692</guid>
		<description><![CDATA[Since I couldn&#8217;t find this when I was looking for it, I&#8217;ll post the answer here. Situation: You&#8217;ve created a new page in CQ5 and linked it to a custom template. When you view the page with the side kick open there is one problem, the &#8220;page properties&#8221; menu is disabled. How do you fix ]]></description>
		<wfw:commentRss>http://www.mikenimer.com/?feed=rss2&amp;p=692</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CES 2012 thoughts</title>
		<link>http://www.mikenimer.com/?p=756</link>
		<comments>http://www.mikenimer.com/?p=756#comments</comments>
		<pubDate>Mon, 16 Jan 2012 18:20:45 +0000</pubDate>
		<dc:creator>mnimer</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.mikenimer.com/?p=756</guid>
		<description><![CDATA[I spent last week at CES 2012 in Vegas, and I thought I would share a few of the the things I found. Before I start, if you&#8217;ve never been to CES keep in mind &#8211; CES is very hardware focused and after awhile it will all start looking the same. Isn&#8217;t this the same ]]></description>
		<wfw:commentRss>http://www.mikenimer.com/?feed=rss2&amp;p=756</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Configure ColdFusion to run inside Intellij</title>
		<link>http://www.mikenimer.com/?p=718</link>
		<comments>http://www.mikenimer.com/?p=718#comments</comments>
		<pubDate>Sat, 06 Aug 2011 15:55:50 +0000</pubDate>
		<dc:creator>mnimer</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.mikenimer.com/?p=718</guid>
		<description><![CDATA[You may not know this but IntelliJ 10 has a CFML plugin to add support for ColdFusion. And yes I do believe you should you give it a try. But for this post I&#8217;m assuming you already have and you want to know how to configure your project to deploy with ColdFusion and how to ]]></description>
		<wfw:commentRss>http://www.mikenimer.com/?feed=rss2&amp;p=718</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New name/github for SpringMVC / ColdFusion project</title>
		<link>http://www.mikenimer.com/?p=736</link>
		<comments>http://www.mikenimer.com/?p=736#comments</comments>
		<pubDate>Tue, 02 Aug 2011 05:06:32 +0000</pubDate>
		<dc:creator>mnimer</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.mikenimer.com/?p=736</guid>
		<description><![CDATA[Nothing like agreeing to speak on a project at a conference, RIACON, to motivate you to clean up and publish a new open-source project. A few months ago I blogged about a new ColdFusion library I was working on that let&#8217;s you use ColdFusion as the View Layer in your Spring MVC application. This means ]]></description>
		<wfw:commentRss>http://www.mikenimer.com/?feed=rss2&amp;p=736</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>new skunkworks project &#8211; jquery mobile social tv app</title>
		<link>http://www.mikenimer.com/?p=711</link>
		<comments>http://www.mikenimer.com/?p=711#comments</comments>
		<pubDate>Tue, 31 May 2011 04:26:39 +0000</pubDate>
		<dc:creator>mnimer</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[jquery mobile]]></category>
		<category><![CDATA[skunkworks]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.mikenimer.com/?p=711</guid>
		<description><![CDATA[When there is a new technology to learn, you need data. And what is one of the largest data sources with one of the easiest to use API&#8217;s &#8211; Twitter! So when I wanted to learn JQuery Mobile I turned to twitter again, see my side project link for others, and decided to build a ]]></description>
		<wfw:commentRss>http://www.mikenimer.com/?feed=rss2&amp;p=711</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fire and Forget Messages (events) in Android</title>
		<link>http://www.mikenimer.com/?p=671</link>
		<comments>http://www.mikenimer.com/?p=671#comments</comments>
		<pubDate>Tue, 08 Feb 2011 17:00:41 +0000</pubDate>
		<dc:creator>mnimer</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.mikenimer.com/?p=671</guid>
		<description><![CDATA[Recently I was on a project with a large number of Views that were dependent on the data being received in the Service. However I found the Android messaging system was a little too coupled for my liking. I wanted more of a fire and forget type of messaging system. So my Views didn&#8217;t need ]]></description>
		<wfw:commentRss>http://www.mikenimer.com/?feed=rss2&amp;p=671</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>new app &#8211; charting sentiment of twitter against stock prices</title>
		<link>http://www.mikenimer.com/?p=612</link>
		<comments>http://www.mikenimer.com/?p=612#comments</comments>
		<pubDate>Fri, 07 Jan 2011 03:04:49 +0000</pubDate>
		<dc:creator>mnimer</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[CF & SpringMVC]]></category>
		<category><![CDATA[skunkworks]]></category>

		<guid isPermaLink="false">http://www.mikenimer.com/?p=612</guid>
		<description><![CDATA[Every developer needs side projects, they give you a playground for learning new technologies and experience working with different data sets. And I have a new one &#8211; charting the sentiment of twitter tweets about stocks against the stock price. View Application This looks like a simple app, but when you look at the technologies ]]></description>
		<wfw:commentRss>http://www.mikenimer.com/?feed=rss2&amp;p=612</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need to bind more then 1 activity to a service?</title>
		<link>http://www.mikenimer.com/?p=537</link>
		<comments>http://www.mikenimer.com/?p=537#comments</comments>
		<pubDate>Wed, 17 Nov 2010 02:27:02 +0000</pubDate>
		<dc:creator>mnimer</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.mikenimer.com/?p=537</guid>
		<description><![CDATA[Turns out this is a known issue ( http://code.google.com/p/android/issues/detail?id=2483 ) but I was trying to bind more then one activity to a service and the 2nd bind would never return. So here is the trick. For a single activity, you can use this in an activity (from the docs). - bindService(dataIntent, dataConnection, Context.BIND_AUTO_CREATE); - but ]]></description>
		<wfw:commentRss>http://www.mikenimer.com/?feed=rss2&amp;p=537</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

