<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jump Start</title>
	<atom:link href="http://henneberke.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://henneberke.wordpress.com</link>
	<description></description>
	<lastBuildDate>Mon, 28 Sep 2009 14:21:16 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='henneberke.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/d415f9a4c615a328edbb1cb15089110f?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Jump Start</title>
		<link>http://henneberke.wordpress.com</link>
	</image>
			<item>
		<title>Handler Interceptors For Annotation Based Configuration in Spring</title>
		<link>http://henneberke.wordpress.com/2009/09/28/handler-interceptors-for-annotation-based-configuration-in-spring/</link>
		<comments>http://henneberke.wordpress.com/2009/09/28/handler-interceptors-for-annotation-based-configuration-in-spring/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 14:16:03 +0000</pubDate>
		<dc:creator>Ana</dc:creator>
				<category><![CDATA[Hands on]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://henneberke.wordpress.com/?p=195</guid>
		<description><![CDATA[Here&#8217;s what you need to have in your *-servlet.xml file:

&#60;context:annotation-config /&#62;
&#60;context:component-scan base-package="com.travelfusion.tfweb.guide.controller" /&#62;

&#60;bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"&#62;
   &#60;property name="interceptors"&#62;
      &#60;ref bean="myInterceptor" /&#62;
   &#60;/property&#62;
&#60;/bean&#62;

&#60;bean id="myInterceptor" class="com.company.MyInterceptor"&#62;
  &#60;property name="openingTime"&#62;&#60;value&#62;9&#60;/value&#62;&#60;/property&#62;
  &#60;property name="closingTime"&#62;&#60;value&#62;18&#60;/value&#62;&#60;/property&#62;
&#60;/bean&#62;

And your interceptor class something like:

public class MyInterceptor implements HandlerInterceptor {
   private int openingTime;
   private [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=195&subd=henneberke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here&#8217;s what you need to have in your *-servlet.xml file:</p>
<pre>
&lt;context:annotation-config /&gt;
&lt;context:component-scan base-package="com.travelfusion.tfweb.guide.controller" /&gt;

&lt;bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"&gt;
   &lt;property name="interceptors"&gt;
      &lt;ref bean="myInterceptor" /&gt;
   &lt;/property&gt;
&lt;/bean&gt;

&lt;bean id="myInterceptor" class="com.company.MyInterceptor"&gt;
  &lt;property name="openingTime"&gt;&lt;value&gt;9&lt;/value&gt;&lt;/property&gt;
  &lt;property name="closingTime"&gt;&lt;value&gt;18&lt;/value&gt;&lt;/property&gt;
&lt;/bean&gt;
</pre>
<p>And your interceptor class something like:</p>
<pre>
public class MyInterceptor implements HandlerInterceptor {
   private int openingTime;
   private int closingTime;

   @Override
   public void afterCompletion(HttpServletRequest arg0, HttpServletResponse arg1, Object arg2, Exception arg3) throws    Exception {
      // TODO Auto-generated method stub
   }

   @Override
   public void postHandle(HttpServletRequest arg0, HttpServletResponse arg1, Object arg2, ModelAndView arg3) throws    Exception {
      // TODO Auto-generated method stub
   }

   @Override
   public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object arg2) throws Exception {
        Calendar cal = Calendar.getInstance();
        int hour = cal.get(HOUR_OF_DAY);
        if (openingTime &lt;= hour &lt; closingTime) {
           return true;
        } else {
           response.sendRedirect("http://host.com/outsideOfficeHours.html");
           return false;
        }
   }
}
</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henneberke.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henneberke.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henneberke.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henneberke.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henneberke.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henneberke.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henneberke.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henneberke.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henneberke.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henneberke.wordpress.com/195/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=195&subd=henneberke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henneberke.wordpress.com/2009/09/28/handler-interceptors-for-annotation-based-configuration-in-spring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc30d34adc59a3cc34f038963a9d6b35?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ana</media:title>
		</media:content>
	</item>
		<item>
		<title>Fixing Eclipse Tomcat Timeout</title>
		<link>http://henneberke.wordpress.com/2009/09/28/fixing-eclipse-tomcat-timeout/</link>
		<comments>http://henneberke.wordpress.com/2009/09/28/fixing-eclipse-tomcat-timeout/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 10:04:29 +0000</pubDate>
		<dc:creator>Ana</dc:creator>
				<category><![CDATA[Hands on]]></category>

		<guid isPermaLink="false">http://henneberke.wordpress.com/?p=188</guid>
		<description><![CDATA[To fix &#8220;Server Tomcat v6.0.18 was unable to start within 10 seconds. If the server requires more time, try increasing the timeout in the server editor&#8221; double click you server in the Servers perspective and increase the timeout value to complete server operations like in the image below.

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=188&subd=henneberke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To fix &#8220;Server Tomcat v6.0.18 was unable to start within 10 seconds. If the server requires more time, try increasing the timeout in the server editor&#8221; double click you server in the Servers perspective and increase the timeout value to complete server operations like in the image below.</p>
<p><a rel="attachment wp-att-190" href="http://henneberke.wordpress.com/2009/09/28/fixing-eclipse-tomcat-timeout/picture-3/"><img class="aligncenter size-large wp-image-190" title="Picture 3" src="http://henneberke.files.wordpress.com/2009/09/picture-3.png?w=524&#038;h=327" alt="Picture 3" width="524" height="327" /></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henneberke.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henneberke.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henneberke.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henneberke.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henneberke.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henneberke.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henneberke.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henneberke.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henneberke.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henneberke.wordpress.com/188/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=188&subd=henneberke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henneberke.wordpress.com/2009/09/28/fixing-eclipse-tomcat-timeout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc30d34adc59a3cc34f038963a9d6b35?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ana</media:title>
		</media:content>

		<media:content url="http://henneberke.files.wordpress.com/2009/09/picture-3.png?w=1024" medium="image">
			<media:title type="html">Picture 3</media:title>
		</media:content>
	</item>
		<item>
		<title>It&#8217;s been so long, again!</title>
		<link>http://henneberke.wordpress.com/2009/09/22/its-been-so-long-again/</link>
		<comments>http://henneberke.wordpress.com/2009/09/22/its-been-so-long-again/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 12:00:17 +0000</pubDate>
		<dc:creator>Ana</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Travelfusion]]></category>

		<guid isPermaLink="false">http://henneberke.wordpress.com/?p=166</guid>
		<description><![CDATA[It&#8217;s quiet crazy how time goes so fast! I haven&#8217;t had any time to make posts here, but I hope to write some more in the near future, and if not here at least on Travelfusion&#8217;s blog (I&#8217;ll post the link here when we go live). I&#8217;ve been working for Travelfusion since July and it&#8217;s been a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=166&subd=henneberke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It&#8217;s quiet crazy how time goes so fast! I haven&#8217;t had any time to make posts here, but I hope to write some more in the near future, and if not here at least on Travelfusion&#8217;s blog (I&#8217;ll post the link here when we go live). I&#8217;ve been working for Travelfusion since July and it&#8217;s been a great experience! If you want to find cheap flights you should check our <a href="http://travelfusion.com">website</a>. I am currently the lead developer for the site and we have a planned a major redesign, so there are so many cool things to implement using GWT. Drop by anytime and give us some feedback.</p>
<p>I am loving London, so much to do, never bored &#8211; well almost never &#8211; and visiting friends and family once a month just makes up for the occasionally lonely days.</p>
<p>Here are some pictures of a <em>team building</em> event. I can&#8217;t say for sure that shooting each other is team building but it was a lot of fun.</p>
<p style="text-align:center;"><a rel="attachment wp-att-172" href="http://henneberke.wordpress.com/2009/09/22/its-been-so-long-again/cimg2141/"><img class="aligncenter size-large wp-image-172" title="CIMG2141" src="http://henneberke.files.wordpress.com/2009/09/cimg21412.jpg?w=442&#038;h=332" alt="CIMG2141" width="442" height="332" /></a></p>
<p style="text-align:center;"><a rel="attachment wp-att-174" href="http://henneberke.wordpress.com/2009/09/22/its-been-so-long-again/7425_1037848722631_1717903954_93695_4269726_n-3/"><img class="aligncenter size-full wp-image-174" title="7425_1037848722631_1717903954_93695_4269726_n" src="http://henneberke.files.wordpress.com/2009/09/7425_1037848722631_1717903954_93695_4269726_n3.jpg?w=450&#038;h=299" alt="7425_1037848722631_1717903954_93695_4269726_n" width="450" height="299" /></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henneberke.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henneberke.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henneberke.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henneberke.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henneberke.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henneberke.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henneberke.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henneberke.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henneberke.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henneberke.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=166&subd=henneberke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henneberke.wordpress.com/2009/09/22/its-been-so-long-again/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc30d34adc59a3cc34f038963a9d6b35?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ana</media:title>
		</media:content>

		<media:content url="http://henneberke.files.wordpress.com/2009/09/cimg21412.jpg?w=1024" medium="image">
			<media:title type="html">CIMG2141</media:title>
		</media:content>

		<media:content url="http://henneberke.files.wordpress.com/2009/09/7425_1037848722631_1717903954_93695_4269726_n3.jpg" medium="image">
			<media:title type="html">7425_1037848722631_1717903954_93695_4269726_n</media:title>
		</media:content>
	</item>
		<item>
		<title>Handsome bunch</title>
		<link>http://henneberke.wordpress.com/2009/05/23/handsome-bunch/</link>
		<comments>http://henneberke.wordpress.com/2009/05/23/handsome-bunch/#comments</comments>
		<pubDate>Sat, 23 May 2009 21:01:42 +0000</pubDate>
		<dc:creator>Ana</dc:creator>
				<category><![CDATA[TomTom]]></category>

		<guid isPermaLink="false">http://henneberke.wordpress.com/?p=156</guid>
		<description><![CDATA[
I had to post this one. Guys, sorry if you don&#8217;t like to be online, but you&#8217;re all very good looking, so it shouldn&#8217;t be a problem.  
@Farewell dinner November 2008, Amsterdam
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=156&subd=henneberke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><a rel="attachment wp-att-157" href="http://henneberke.wordpress.com/2009/05/23/handsome-bunch/img_7162/"><img class="aligncenter size-medium wp-image-157" title="IMG_7162" src="http://henneberke.files.wordpress.com/2009/05/img_71622.jpg?w=300&#038;h=224" alt="IMG_7162" width="300" height="224" /></a></p>
<p style="text-align:center;">I had to post this one. Guys, sorry if you don&#8217;t like to be online, but you&#8217;re all very good looking, so it shouldn&#8217;t be a problem. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align:center;">@Farewell dinner November 2008, Amsterdam</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henneberke.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henneberke.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henneberke.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henneberke.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henneberke.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henneberke.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henneberke.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henneberke.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henneberke.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henneberke.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=156&subd=henneberke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henneberke.wordpress.com/2009/05/23/handsome-bunch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc30d34adc59a3cc34f038963a9d6b35?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ana</media:title>
		</media:content>

		<media:content url="http://henneberke.files.wordpress.com/2009/05/img_71622.jpg?w=300" medium="image">
			<media:title type="html">IMG_7162</media:title>
		</media:content>
	</item>
		<item>
		<title>Ending up at a museum</title>
		<link>http://henneberke.wordpress.com/2009/05/22/ending-up-at-a-museum/</link>
		<comments>http://henneberke.wordpress.com/2009/05/22/ending-up-at-a-museum/#comments</comments>
		<pubDate>Fri, 22 May 2009 14:07:16 +0000</pubDate>
		<dc:creator>Ana</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Memoirs]]></category>

		<guid isPermaLink="false">http://henneberke.wordpress.com/?p=147</guid>
		<description><![CDATA[Not everything is wasted time…3 years ago me and Bas worked on a “mashup” of Google maps, when that was a very HOT subject and Ajax apps where appearing on every corner of the web. The project was closed and our domain name taken but the good news is that we managed to stay in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=147&subd=henneberke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Not everything is wasted time…3 years ago me and Bas worked on a <a href="http://henneberke.wordpress.com/2006/10/10/earthpoi-google-maps-ajax-prototype-and-prototype-window-class/">“mashup” of Google maps</a>, when that was a very HOT subject and Ajax apps where appearing on every corner of the web. The project was closed and our domain name taken but the good news is that we managed to stay in the <a href="http://momb.socio-kybernetics.net/beta/earthpoi">museum of modern betas</a> for eternity. Plus we learned a lot from that experience and now I am trying to get Bas to put it live on <a href="http://earthpoi.webtweakers.com/">his domain</a> so we can remember from time to time how much fun we had doing it.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henneberke.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henneberke.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henneberke.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henneberke.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henneberke.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henneberke.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henneberke.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henneberke.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henneberke.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henneberke.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=147&subd=henneberke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henneberke.wordpress.com/2009/05/22/ending-up-at-a-museum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc30d34adc59a3cc34f038963a9d6b35?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ana</media:title>
		</media:content>
	</item>
		<item>
		<title>River Tejo, the sunset and new challenges</title>
		<link>http://henneberke.wordpress.com/2009/04/02/river-tejo-the-sunset-and-new-challenges/</link>
		<comments>http://henneberke.wordpress.com/2009/04/02/river-tejo-the-sunset-and-new-challenges/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 09:32:54 +0000</pubDate>
		<dc:creator>Ana</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://henneberke.wordpress.com/?p=143</guid>
		<description><![CDATA[It&#8217;s been a while. I have moved back to Portugal after 4.5 years in Holland. It was a journey, a good one. Now I start a new one with very different weather conditions.   I travel by ferry daily and in the evening the sunset + the warm breeze alongside the river Tejo feels [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=143&subd=henneberke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It&#8217;s been a while. I have moved back to Portugal after 4.5 years in Holland. It was a journey, a good one. Now I start a new one with very different weather conditions. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I travel by ferry daily and in the evening the <em>sunset + the warm breeze</em> alongside the river <em>Tejo</em> feels just great.</p>
<p>I am working as an IT Consultant now and it&#8217;s very different but also interesting. On my free time I work on my next big thing. My project should go live somewhere this year (I hope), and if it does I will post about it.</p>
<p>For now I won&#8217;t be writing much about programming or Java because I don’t really have time and my work is more directed at business analysis these days. I miss working with the latest technologies, but what I am doing now is also interesting and I still get to taste a bit of coding at home.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henneberke.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henneberke.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henneberke.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henneberke.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henneberke.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henneberke.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henneberke.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henneberke.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henneberke.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henneberke.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=143&subd=henneberke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henneberke.wordpress.com/2009/04/02/river-tejo-the-sunset-and-new-challenges/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc30d34adc59a3cc34f038963a9d6b35?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ana</media:title>
		</media:content>
	</item>
		<item>
		<title>TomTom Local Search with Google</title>
		<link>http://henneberke.wordpress.com/2008/10/03/tomtom-local-search/</link>
		<comments>http://henneberke.wordpress.com/2008/10/03/tomtom-local-search/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 09:17:28 +0000</pubDate>
		<dc:creator>Ana</dc:creator>
				<category><![CDATA[TomTom]]></category>

		<guid isPermaLink="false">http://henneberke.wordpress.com/?p=92</guid>
		<description><![CDATA[TomTom Gox40 LIVE series was announced a couple of weeks ago. One of the projects I have been working on for this product was TomTom Local Search. For this project I worked closely with Google to use their Local Search API and with the TomTom Navigator team for client/server integration. This is very cool technology [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=92&subd=henneberke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>TomTom Gox40 LIVE series was announced a couple of weeks ago. One of the projects I have been working on for this product was TomTom Local Search. For this project I worked closely with Google to use their Local Search API and with the TomTom Navigator team for client/server integration. This is very cool technology and it was a lot of fun building it.</p>
<p>&#8216;Users can tap into the latest local Google listings from the TomTom GO LIVE to locate anything from Indian restaurants to flower shops wherever they are. They can just type in any search word, find matching locations and the device will take them there.&#8217;</p>
<p style="text-align:center;">Search for a business near you or somewhere else&#8230;</p>
<p style="text-align:center;"><a href="http://henneberke.files.wordpress.com/2008/10/tomtom_local_search_11.png"><img class="size-full wp-image-96 aligncenter" title="tomtom_local_search_11" src="http://henneberke.files.wordpress.com/2008/10/tomtom_local_search_11.png?w=294&#038;h=167" alt="" width="294" height="167" /></a></p>
<p style="text-align:center;">Get a list of results ordered by relevance and see the rating and business details for each of them.</p>
<p style="text-align:center;"><a href="http://henneberke.files.wordpress.com/2008/10/tomtom_local_search_21.png"><img class="size-full wp-image-97 aligncenter" title="tomtom_local_search_21" src="http://henneberke.files.wordpress.com/2008/10/tomtom_local_search_21.png?w=294&#038;h=167" alt="" width="294" height="167" /></a></p>
<p style="text-align:center;">Browse in the map for the results and call the business to make a reservation or appointment for example and navigate there. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align:center;"><a href="http://henneberke.files.wordpress.com/2008/10/tomtom_local_search_31.png"><img class="size-full wp-image-98 aligncenter" title="tomtom_local_search_31" src="http://henneberke.files.wordpress.com/2008/10/tomtom_local_search_31.png?w=294&#038;h=167" alt="" width="294" height="167" /></a></p>
<p style="text-align:center;">Simple, useful and cool!!!</p>
<p style="text-align:center;">For more info on the Gox40 series and the other LIVE services for <a href="http://www.tomtom.com/page.php?Page=LIVEServices&amp;Lid=1&amp;selector=true">here</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henneberke.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henneberke.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henneberke.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henneberke.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henneberke.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henneberke.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henneberke.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henneberke.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henneberke.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henneberke.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=92&subd=henneberke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henneberke.wordpress.com/2008/10/03/tomtom-local-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc30d34adc59a3cc34f038963a9d6b35?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ana</media:title>
		</media:content>

		<media:content url="http://henneberke.files.wordpress.com/2008/10/tomtom_local_search_11.png" medium="image">
			<media:title type="html">tomtom_local_search_11</media:title>
		</media:content>

		<media:content url="http://henneberke.files.wordpress.com/2008/10/tomtom_local_search_21.png" medium="image">
			<media:title type="html">tomtom_local_search_21</media:title>
		</media:content>

		<media:content url="http://henneberke.files.wordpress.com/2008/10/tomtom_local_search_31.png" medium="image">
			<media:title type="html">tomtom_local_search_31</media:title>
		</media:content>
	</item>
		<item>
		<title>Software Development Tools</title>
		<link>http://henneberke.wordpress.com/2008/09/15/software-development-tools/</link>
		<comments>http://henneberke.wordpress.com/2008/09/15/software-development-tools/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 12:29:50 +0000</pubDate>
		<dc:creator>Ana</dc:creator>
				<category><![CDATA[Hands on]]></category>

		<guid isPermaLink="false">http://henneberke.wordpress.com/?p=86</guid>
		<description><![CDATA[I have used the tools listed below for software development, debugging, testing and for editing images for user interfaces.   Hope you find them useful too!
XMLSpy
Altova® XMLSpy® is the industry’s best selling XML editor and XML development environment, with advanced functionality for modeling, editing, and debugging XML Schema, DTD, XSLT 1.0/2.0, XQuery, SOAP, WSDL, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=86&subd=henneberke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have used the tools listed below for software development, debugging, testing and for editing images for user interfaces. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Hope you find them useful too!</p>
<p><strong><a href="http://www.altova.com/">XMLSpy</a></strong></p>
<p><a class="link" title="XML Editor" href="http://www.altova.com/products/xmlspy/xml_editor.html">Altova® XMLSpy®</a><span style="font-family:Verdana;"> is the industry’s best selling </span><a class="link" title="XML Editor" href="http://www.altova.com/products/xmlspy/xml_editor.html">XML editor</a><span style="font-family:Verdana;"> and XML development environment, with advanced functionality for modeling, editing, and debugging XML Schema, DTD, XSLT 1.0/2.0, XQuery, SOAP, WSDL, Office Open XML (OOXML), and more. XMLSpy provides multiple editing views, entry helpers, wizards, comprehensive validation and error-handling, and a host of debugging and testing utilities. Code gen in Java, C#, and C++, plus Visual Studio and Eclipse integration, let you develop the most advanced XML and Web services apps for the environment of your choice.</span></p>
<p><strong><a id="w-_2" title="SoapUI" href="http://www.soapui.org/">SoapUI</a></strong></p>
<p><span style="font-family:Verdana;">SoapUI is Free and Open Source and is used for </span><a href="http://www.soapui.org/features.html#Web_Service_Inspection_and_Invocation">Inspecting Web Services</a><span style="font-family:Verdana;">, </span><a href="http://www.soapui.org/features.html#Web_Service_Inspection_and_Invocation">Invoking Web Services</a><span style="font-family:Verdana;">, </span><a href="http://www.soapui.org/features.html#Web_Service_Development_and_Validation">Developing Web Services</a><span style="font-family:Verdana;">, </span><a href="http://www.soapui.org/features.html#Web_Service_Simulation">Web Service Simulation and Web Service Mocking</a><span style="font-family:Verdana;"> and </span><a href="http://www.soapui.org/features.html#Web_Service_Functional_Testing">Functional Testing of Web Services</a><span style="font-family:Verdana;"> </span><a href="http://www.soapui.org/features.html#Web_Service_Functional_Testing">Load Testing of Web Services</a><span style="font-family:Verdana;"> over HTTP. </span></p>
<p><strong><a href="http://www.fiddlertool.com/fiddler/">Fiddler (HTTP)</a></strong></p>
<p><span style="font-family:Verdana;">Fiddler is a HTTP Debugging Proxy which logs all HTTP traffic between your computer and the Internet.  Fiddler allows you to  		inspect all HTTP Traffic, set breakpoints, and &#8220;fiddle&#8221; with incoming or outgoing data.   		Fiddler includes a powerful event-based  		scripting subsystem, and can be extended using any .NET language.</span></p>
<p><strong><a href="http://www.webyog.com/en/">SQLYog</a></strong></p>
<p><span class="normal" style="line-height:18px;font-family:Verdana;">SQLyog MySQL GUI is the most powerful MySQL manager and admin tool, 								combining the features of MySQL Query Browser, Administrator, 								phpMyAdmin and various other MySQL Front Ends and MySQL clients in a 								single intuitive interface.</span><br />
<strong><span style="font-size:small;"><br />
</span></strong><strong><a id="a8f-" title="Notepad++" href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a></strong></p>
<p>Notepad++<span style="font-family:Verdana;"> is a free (as in &#8220;free speech&#8221; and also as in &#8220;free beer&#8221;) source code editor and Notepad replacement that supports several languages. It runs in the MS Windows environment.</span><br />
<strong><span style="font-size:small;"><br />
</span></strong><strong><a id="zd0e" title="MultipleIEs" href="http://multipleies.en.softonic.com/">MultipleIEs</a></strong></p>
<p><span style="font-family:Verdana;">Usefull for testing web application in different versions of IE in only one machine.</span></p>
<p><strong><a id="t1ph" title="GIMP" href="http://www.gimp.org/">GIMP</a></strong></p>
<p><span style="font-family:Verdana;">GIMP is the GNU Image Manipulation Program.  It is a freely distributed piece of software for such tasks as </span><a href="http://www.gimp.org/tutorials/Blur_Overlays/">photo retouching</a><span style="font-family:Verdana;">, image composition and </span><a href="http://www.gimp.org/tutorials/Draw_A_Paint_Brush/">image authoring</a><span style="font-family:Verdana;">.  It works on many operating systems, in many languages.</span></p>
<p><strong><a id="k2e7" title="Tortoise SVN" href="http://tortoisesvn.tigris.org/">Tortoise SVN</a></strong></p>
<p>TortoiseSVN is a really easy to use <a href="http://en.wikipedia.org/wiki/Revision_control">Revision control</a> / version 		control / source control software for Windows. Since it&#8217;s not an integration for a <em>specific</em> IDE you can use it with whatever development tools you like. TortoiseSVN is free to use. You don&#8217;t need to get a loan or pay a full years salary to use it.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/henneberke.wordpress.com/86/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/henneberke.wordpress.com/86/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henneberke.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henneberke.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henneberke.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henneberke.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henneberke.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henneberke.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henneberke.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henneberke.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henneberke.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henneberke.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=86&subd=henneberke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henneberke.wordpress.com/2008/09/15/software-development-tools/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc30d34adc59a3cc34f038963a9d6b35?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ana</media:title>
		</media:content>
	</item>
		<item>
		<title>Scrum World: I am a developer</title>
		<link>http://henneberke.wordpress.com/2008/07/22/scrum-world-i-am-a-developer/</link>
		<comments>http://henneberke.wordpress.com/2008/07/22/scrum-world-i-am-a-developer/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 14:25:16 +0000</pubDate>
		<dc:creator>Ana</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Scrum]]></category>
		<category><![CDATA[Scrum Agila Development Team]]></category>

		<guid isPermaLink="false">http://henneberke.wordpress.com/?p=80</guid>
		<description><![CDATA[
 First thing in the morning, I check the scrum board to see which task is in progress and assigned to me
 I don’t have anything in progress, so it is time to pick up something new
 I follow the priorities and I pick up something from the top of the list
 I work on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=80&subd=henneberke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">First thing in the morning, I check the scrum board to see which task is in progress and assigned to me</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">I don’t have anything in progress, so it is time to pick up something new</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">I follow the priorities and I pick up something from the top of the list</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">I work on the task, comply with best practices, write unit and integration tests</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">When I am done I create a review for a peer and move the tasks to the ‘Review’ column</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">I take some time to review the tasks that are assigned to me, so my colleagues can also progress</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">My task comes back from review and I need to make some minor changes</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">After making the changes I update the files in the review and quickly get an OK from a peer</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">I move the task to the ‘Testing’ column</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">At the end of the day I deploy a release on the development environment, which includes all the tasks which are now in the ‘Testing’ column, including the one I implemented today</span></li>
</ul>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">The next day…</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;"> </span></p>
<ul>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">As usual my work isn’t quite finish because a bug was raised by the test team on the task I implemented yesterday</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">I fix the issue and make sure the unit and integration tests are up to date</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">I create a review which is approved after a few hours</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">I deploy the fix on the development environment</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">I check later and notice the issue has been moved to the &#8216;Done&#8217; column by the test team</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Verdana;"><span><span style="font-family:&quot;font-size:7pt;line-height:normal;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Verdana;">I realize how good it is to use Scrum and work together with everyone in the team to achieve our common goals!</span></li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/henneberke.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/henneberke.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henneberke.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henneberke.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henneberke.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henneberke.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henneberke.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henneberke.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henneberke.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henneberke.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henneberke.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henneberke.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=80&subd=henneberke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henneberke.wordpress.com/2008/07/22/scrum-world-i-am-a-developer/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc30d34adc59a3cc34f038963a9d6b35?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ana</media:title>
		</media:content>
	</item>
		<item>
		<title>The other side of things</title>
		<link>http://henneberke.wordpress.com/2008/07/16/the-other-side-of-things/</link>
		<comments>http://henneberke.wordpress.com/2008/07/16/the-other-side-of-things/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 16:12:02 +0000</pubDate>
		<dc:creator>Ana</dc:creator>
				<category><![CDATA[TomTom]]></category>

		<guid isPermaLink="false">http://henneberke.wordpress.com/?p=75</guid>
		<description><![CDATA[Here on the development department we are rarely aware of what&#8217;s happening on the marketing side and when we less expect they come up with nice campaigns for the projects we are working on.   This is the case of our project MapShare which is now getting even more attention because of the new [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=75&subd=henneberke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here on the development department we are rarely aware of what&#8217;s happening on the marketing side and when we less expect they come up with nice campaigns for the projects we are working on. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  This is the case of our project MapShare which is now getting even more attention because of the new &#8220;Change Spotting&#8221; campaign. To read more about it and see the video drop by the <a href="http://changespotting.tomtom.com/">website</a>.</p>
<p style="text-align:center;"><a href="http://henneberke.files.wordpress.com/2008/10/mapshare.jpg"><img class="alignnone size-full wp-image-112" title="mapshare" src="http://henneberke.files.wordpress.com/2008/10/mapshare.jpg?w=300&#038;h=169" alt="" width="300" height="169" /></a></p>
<p style="text-align:center;">The ducks part is my favorite. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/henneberke.wordpress.com/75/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/henneberke.wordpress.com/75/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/henneberke.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/henneberke.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/henneberke.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/henneberke.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/henneberke.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/henneberke.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/henneberke.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/henneberke.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/henneberke.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/henneberke.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=henneberke.wordpress.com&blog=202984&post=75&subd=henneberke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://henneberke.wordpress.com/2008/07/16/the-other-side-of-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc30d34adc59a3cc34f038963a9d6b35?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Ana</media:title>
		</media:content>

		<media:content url="http://henneberke.files.wordpress.com/2008/10/mapshare.jpg" medium="image">
			<media:title type="html">mapshare</media:title>
		</media:content>
	</item>
	</channel>
</rss>