<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Andrej Koelewijn</title>
	
	<link>http://www.andrejkoelewijn.com/wp</link>
	<description>On Oracle, Java and OpenSource</description>
	<lastBuildDate>Tue, 09 Mar 2010 21:53:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/AndrejKoelewijn" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="andrejkoelewijn" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Getting started with Nexus maven repository manager</title>
		<link>http://www.andrejkoelewijn.com/wp/2010/03/09/getting-started-with-nexus-maven-repository-manager/</link>
		<comments>http://www.andrejkoelewijn.com/wp/2010/03/09/getting-started-with-nexus-maven-repository-manager/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 21:53:57 +0000</pubDate>
		<dc:creator>akoelewijn</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[nexus]]></category>

		<guid isPermaLink="false">http://www.andrejkoelewijn.com/wp/?p=569</guid>
		<description><![CDATA[Nexus is a maven repository manager. You can use Nexus to host your own maven repository for artifact created in your company, or for caching external artifacts. 
Getting started with Nexus is pretty easy. Download the application. The package contains a webserver, so you don&#8217;t have to have a java container running. Simply unpack the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://nexus.sonatype.org/">Nexus</a> is a maven repository manager. You can use Nexus to host your own maven repository for artifact created in your company, or for caching external artifacts. </p>
<p>Getting started with Nexus is pretty easy. <a href="http://nexus.sonatype.org/downloads/nexus-webapp-1.5.0-bundle.tar.gz">Download the application</a>. The package contains a webserver, so you don&#8217;t have to have a java container running. Simply unpack the downloaded archive and start the applications:</p>
<pre class="brush: plain;">
cd nexus/nexus-webapp-1.5.0/bin/jsw/linux-x86-32/
nexus start
</pre>
<p>Nexus has a web interface for managing your maven repository. The url for this web app is: <a href="http://localhost:8081/nexus/">http://localhost:8081/nexus/</a>. The preconfigured admin account is admin, password: admin123.</p>
<p>According to the Nexus documentation you need to <a href="http://www.sonatype.com/books/nexus-book/reference/install-sect-repoman-post-install.html<br />
">enable remote index downloads on a new installation</a>, but it seems that this has been removed in the latest Nexus release. I couldn&#8217;t find the checkbox mentioned in Nexus 1.5.0.</p>
<p>Next you need to tell maven to use your maven repository. To do this, modify $HOME/.m2/settings.xml as follows:</p>
<pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;settings xmlns=&quot;http://maven.apache.org/POM/4.0.0&quot;
    xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
    xsi:schemaLocation=&quot;http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd&quot;&gt;
  &lt;mirrors&gt;
    &lt;mirror&gt;
      &lt;id&gt;nexus&lt;/id&gt;
      &lt;mirrorOf&gt;*&lt;/mirrorOf&gt;
      &lt;url&gt;http://localhost:8081/nexus/content/groups/public&lt;/url&gt;
    &lt;/mirror&gt;
  &lt;/mirrors&gt;
  &lt;proxies&gt;&lt;/proxies&gt;
  &lt;servers&gt;&lt;/servers&gt;
  &lt;pluginGroups&gt;&lt;/pluginGroups&gt;
  &lt;profiles&gt;
    &lt;profile&gt;
      &lt;id&gt;nexus&lt;/id&gt;
      &lt;!--Enable snapshots for the built in central repo to direct --&gt;
      &lt;!--all requests to nexus via the mirror --&gt;
      &lt;repositories&gt;
        &lt;repository&gt;
          &lt;id&gt;central&lt;/id&gt;
          &lt;url&gt;http://central&lt;/url&gt;
          &lt;releases&gt;&lt;enabled&gt;true&lt;/enabled&gt;&lt;/releases&gt;
          &lt;snapshots&gt;&lt;enabled&gt;true&lt;/enabled&gt;&lt;/snapshots&gt;
        &lt;/repository&gt;
      &lt;/repositories&gt;
      &lt;pluginRepositories&gt;
        &lt;pluginRepository&gt;
          &lt;id&gt;central&lt;/id&gt;
          &lt;url&gt;http://central&lt;/url&gt;
          &lt;releases&gt;&lt;enabled&gt;true&lt;/enabled&gt;&lt;/releases&gt;
          &lt;snapshots&gt;&lt;enabled&gt;true&lt;/enabled&gt;&lt;/snapshots&gt;
        &lt;/pluginRepository&gt;
      &lt;/pluginRepositories&gt;
    &lt;/profile&gt;
  &lt;/profiles&gt;
  &lt;activeProfiles&gt;
    &lt;activeProfile&gt;nexus&lt;/activeProfile&gt;
  &lt;/activeProfiles&gt;
&lt;/settings&gt;
</pre>
<p>To make sure you are actually using dependencies downloaded through nexus, delete all dependencies maven has already cached on your system:</p>
<pre class="brush: plain;">
rm -rf ~/.m2/repository
</pre>
<p>To test this Nexus setup, we can create a little java application using maven. The following create a java web application:</p>
<pre class="brush: plain;">
mvn archetype:create -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-webapp -DgroupId=nl.iteye -DartifactId=App1
cd App1
</pre>
<p>You should now be able to compile and package your application:</p>
<pre class="brush: plain;">
mvn clean install
</pre>
<p>Next we&#8217;ll add the embedded glassfish maven plugin to our pom so we can test the web application. Add the plugin in the build section of your pom:</p>
<pre class="brush: xml;">
    &lt;plugins&gt;
         &lt;plugin&gt;
            &lt;groupId&gt;org.glassfish&lt;/groupId&gt;
            &lt;artifactId&gt;maven-embedded-glassfish-plugin&lt;/artifactId&gt;
            &lt;version&gt;3.0&lt;/version&gt;
            &lt;configuration&gt;
               &lt;app&gt;${project.build.directory}/${build.finalName}.war&lt;/app&gt;
               &lt;port&gt;7070&lt;/port&gt;
               &lt;containerType&gt;web&lt;/containerType&gt;
            &lt;/configuration&gt;
         &lt;/plugin&gt;
    &lt;/plugins&gt;
</pre>
<p>When you try to run your application using the embedded glassfish plugin you&#8217;ll run into an error as maven will not be able to download all the required dependencies:</p>
<pre class="brush: plain;">
$:~/projects/jee/App1$ mvn embedded-glassfish:run
[INFO] Scanning for projects...
Downloading: http://localhost:8081/nexus/content/groups/public/org/glassfish/maven-embedded-glassfish-plugin/3.0/maven-embedded-glassfish-plugin-3.0.pom
[INFO] Unable to find resource 'org.glassfish:maven-embedded-glassfish-plugin:pom:3.0' in repository central (http://central)
Downloading: http://localhost:8081/nexus/content/groups/public/org/glassfish/maven-embedded-glassfish-plugin/3.0/maven-embedded-glassfish-plugin-3.0.pom
[INFO] Unable to find resource 'org.glassfish:maven-embedded-glassfish-plugin:pom:3.0' in repository central (http://central)
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Error building POM (may not be this project's POM).

Project ID: org.glassfish:maven-embedded-glassfish-plugin

Reason: POM 'org.glassfish:maven-embedded-glassfish-plugin' not found in repository: Unable to download the artifact from any repository

  org.glassfish:maven-embedded-glassfish-plugin:pom:3.0

from the specified remote repositories:
  nexus (http://localhost:8081/nexus/content/groups/public)

 for project org.glassfish:maven-embedded-glassfish-plugin
</pre>
<p>To fix this problem we need to add the maven repository containing the glassfish plugin to Nexus. Log into Nexus using the admin account and, select repositories,and then add a proxy repository. Specify the following repository:</p>
<p><a rel="lightbox" class="image" href="http://www.andrejkoelewijn.com/wp/wp-content/uploads/2010/03/Screenshot-1.png"><img src="http://www.andrejkoelewijn.com/wp/wp-content/uploads/2010/03/Screenshot-1-300x221.png" alt="" title="Screenshot-1" width="300" height="221" /></a></p>
<p>Next we need to add the glassfish proxy repository to the <em>Public Repositories</em> group:</p>
<p><a rel="lightbox"  class="image"  href="http://www.andrejkoelewijn.com/wp/wp-content/uploads/2010/03/Screenshot-2.png"><img src="http://www.andrejkoelewijn.com/wp/wp-content/uploads/2010/03/Screenshot-2-300x82.png" alt="" title="Screenshot-2" width="300" height="82"  /></a></p>
<p>Move the <em>Glassfish Maven 2 Repository</em> from available repositories to ordered group repositories:</p>
<p><a rel="lightbox"  class="image"   href="http://www.andrejkoelewijn.com/wp/wp-content/uploads/2010/03/Screenshot.png"><img src="http://www.andrejkoelewijn.com/wp/wp-content/uploads/2010/03/Screenshot-300x228.png" alt="" title="Screenshot" width="300" height="228" /></a></p>
<p>Now you should be able to start Glassfish using maven, as Nexus will be able to find the required dependencies:</p>
<pre class="brush: plain;">
$:~/projects/jee/App1$ mvn embedded-glassfish:run
[INFO] Scanning for projects...
Downloading: http://localhost:8081/nexus/content/groups/public/org/glassfish/maven-embedded-glassfish-plugin/3.0/maven-embedded-glassfish-plugin-3.0.pom
4K downloaded  (maven-embedded-glassfish-plugin-3.0.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = '7e111e395ec93ac48034fdf599552d547dc27618'; remote = '085185fbf2f1b3d0d36e557f4d42c9f47edc4d2c' - RETRYING
Downloading: http://localhost:8081/nexus/content/groups/public/org/glassfish/maven-embedded-glassfish-plugin/3.0/maven-embedded-glassfish-plugin-3.0.pom
4K downloaded  (maven-embedded-glassfish-plugin-3.0.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = '7e111e395ec93ac48034fdf599552d547dc27618'; remote = '085185fbf2f1b3d0d36e557f4d42c9f47edc4d2c' - IGNORING
Downloading: http://localhost:8081/nexus/content/groups/public/org/glassfish/maven-embedded-glassfish-plugin/3.0/maven-embedded-glassfish-plugin-3.0.jar
16K downloaded  (maven-embedded-glassfish-plugin-3.0.jar)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = 'd6e53dbbc063ccb40aa673f0a56bafa0c2c225db'; remote = '0469be7e503a1c3df4c8ddf199b1fba3a998cca2' - RETRYING
Downloading: http://localhost:8081/nexus/content/groups/public/org/glassfish/maven-embedded-glassfish-plugin/3.0/maven-embedded-glassfish-plugin-3.0.jar
16K downloaded  (maven-embedded-glassfish-plugin-3.0.jar)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = 'd6e53dbbc063ccb40aa673f0a56bafa0c2c225db'; remote = '0469be7e503a1c3df4c8ddf199b1fba3a998cca2' - IGNORING
[INFO] ------------------------------------------------------------------------
[INFO] Building App1 Maven Webapp
[INFO]    task-segment: [embedded-glassfish:run]
[INFO] ------------------------------------------------------------------------
Downloading: http://localhost:8081/nexus/content/groups/public/org/glassfish/extras/glassfish-embedded-all/3.0/glassfish-embedded-all-3.0.pom
10K downloaded  (glassfish-embedded-all-3.0.pom)
Downloading: http://localhost:8081/nexus/content/groups/public/org/glassfish/extras/extras/3.0/extras-3.0.pom
2K downloaded  (extras-3.0.pom)
Downloading: http://localhost:8081/nexus/content/groups/public/org/glassfish/glassfish-parent/3.0/glassfish-parent-3.0.pom
53K downloaded  (glassfish-parent-3.0.pom)
...
INFO: Security service(s) started successfully....
classLoader = WebappClassLoader (delegate=true; repositories=WEB-INF/classes/)
SharedSecrets.getJavaNetAccess()=java.net.URLClassLoader$7@181c4eb
Mar 9, 2010 9:34:51 PM com.sun.enterprise.web.WebApplication start
INFO: Loading application App1 at /App1
Hit ENTER to redeploy, X to exit
</pre>
<p>That&#8217;s about it.</p>



Share and Enjoy:


	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;title=Getting%20started%20with%20Nexus%20maven%20repository%20manager&amp;notes=Nexus%20is%20a%20maven%20repository%20manager.%20You%20can%20use%20Nexus%20to%20host%20your%20own%20maven%20repository%20for%20artifact%20created%20in%20your%20company%2C%20or%20for%20caching%20external%20artifacts.%20%0D%0A%0D%0AGetting%20started%20with%20Nexus%20is%20pretty%20easy.%20Download%20the%20application.%20The%20package%20con" title="del.icio.us"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;title=Getting%20started%20with%20Nexus%20maven%20repository%20manager&amp;annotation=Nexus%20is%20a%20maven%20repository%20manager.%20You%20can%20use%20Nexus%20to%20host%20your%20own%20maven%20repository%20for%20artifact%20created%20in%20your%20company%2C%20or%20for%20caching%20external%20artifacts.%20%0D%0A%0D%0AGetting%20started%20with%20Nexus%20is%20pretty%20easy.%20Download%20the%20application.%20The%20package%20con" title="Google Bookmarks"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;title=Getting%20started%20with%20Nexus%20maven%20repository%20manager" title="DZone"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.sphere.com/search?q=sphereit:http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;title=Getting%20started%20with%20Nexus%20maven%20repository%20manager" title="SphereIt"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/sphere.png" title="SphereIt" alt="SphereIt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;title=Getting%20started%20with%20Nexus%20maven%20repository%20manager" title="StumbleUpon"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F" title="Technorati"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;title=Getting%20started%20with%20Nexus%20maven%20repository%20manager&amp;source=Andrej+Koelewijn+On+Oracle%2C+Java+and+OpenSource&amp;summary=Nexus%20is%20a%20maven%20repository%20manager.%20You%20can%20use%20Nexus%20to%20host%20your%20own%20maven%20repository%20for%20artifact%20created%20in%20your%20company%2C%20or%20for%20caching%20external%20artifacts.%20%0D%0A%0D%0AGetting%20started%20with%20Nexus%20is%20pretty%20easy.%20Download%20the%20application.%20The%20package%20con" title="LinkedIn"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;t=Getting%20started%20with%20Nexus%20maven%20repository%20manager" title="HackerNews"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;partner=sociable" title="PDF"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;title=Getting%20started%20with%20Nexus%20maven%20repository%20manager&amp;bodytext=Nexus%20is%20a%20maven%20repository%20manager.%20You%20can%20use%20Nexus%20to%20host%20your%20own%20maven%20repository%20for%20artifact%20created%20in%20your%20company%2C%20or%20for%20caching%20external%20artifacts.%20%0D%0A%0D%0AGetting%20started%20with%20Nexus%20is%20pretty%20easy.%20Download%20the%20application.%20The%20package%20con" title="Digg"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;t=Getting%20started%20with%20Nexus%20maven%20repository%20manager" title="Facebook"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Getting%20started%20with%20Nexus%20maven%20repository%20manager&amp;link=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F" title="FriendFeed"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;title=Getting%20started%20with%20Nexus%20maven%20repository%20manager&amp;selection=Nexus%20is%20a%20maven%20repository%20manager.%20You%20can%20use%20Nexus%20to%20host%20your%20own%20maven%20repository%20for%20artifact%20created%20in%20your%20company%2C%20or%20for%20caching%20external%20artifacts.%20%0D%0A%0D%0AGetting%20started%20with%20Nexus%20is%20pretty%20easy.%20Download%20the%20application.%20The%20package%20con" title="Posterous"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F&amp;t=Getting%20started%20with%20Nexus%20maven%20repository%20manager&amp;s=Nexus%20is%20a%20maven%20repository%20manager.%20You%20can%20use%20Nexus%20to%20host%20your%20own%20maven%20repository%20for%20artifact%20created%20in%20your%20company%2C%20or%20for%20caching%20external%20artifacts.%20%0D%0A%0D%0AGetting%20started%20with%20Nexus%20is%20pretty%20easy.%20Download%20the%20application.%20The%20package%20con" title="Tumblr"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Getting%20started%20with%20Nexus%20maven%20repository%20manager%20-%20http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F09%2Fgetting-started-with-nexus-maven-repository-manager%2F" title="Twitter"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.andrejkoelewijn.com/wp/feed/" title="RSS"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/AndrejKoelewijn/~4/gnRCTO_9Cvs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrejkoelewijn.com/wp/2010/03/09/getting-started-with-nexus-maven-repository-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JEE CDI tip: Target Unreachable, identifier resolved to null</title>
		<link>http://www.andrejkoelewijn.com/wp/2010/03/05/jee-cdi-tip-target-unreachable-identifier-resolved-to-null/</link>
		<comments>http://www.andrejkoelewijn.com/wp/2010/03/05/jee-cdi-tip-target-unreachable-identifier-resolved-to-null/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 11:06:45 +0000</pubDate>
		<dc:creator>akoelewijn</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[cdi]]></category>
		<category><![CDATA[jee]]></category>
		<category><![CDATA[weld]]></category>

		<guid isPermaLink="false">http://www.andrejkoelewijn.com/wp/?p=564</guid>
		<description><![CDATA[If you are just starting out with JEE CDI (Weld), it&#8217;s easy to forget the required beans.xml file. If you don&#8217;t include it, you may run into problems like this:

SEVERE: javax.el.PropertyNotFoundException: /index.xhtml @8,67 action=&#34;#{crm.ping}&#34;: Target Unreachable, identifier 'crm' resolved to null
javax.faces.el.EvaluationException: javax.el.PropertyNotFoundException: /index.xhtml @8,67 action=&#34;#{crm.ping}&#34;: Target Unreachable, identifier 'crm' resolved to null
	at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:95)
	at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
	at javax.faces.component.UICommand.broadcast(UICommand.java:315)
...

The [...]]]></description>
			<content:encoded><![CDATA[<p>If you are just starting out with <a href="http://jcp.org/en/jsr/summary?id=299">JEE CDI</a> (<a href="http://docs.jboss.org/weld/reference/1.0.1-Final/en-US/html_single/">Weld</a>), it&#8217;s easy to forget the <a href="http://relation.to/Bloggers/WhyIsBeansxmlRequiredInCDI">required beans.xml file</a>. If you don&#8217;t include it, you may run into problems like this:</p>
<pre class="brush: plain;">
SEVERE: javax.el.PropertyNotFoundException: /index.xhtml @8,67 action=&quot;#{crm.ping}&quot;: Target Unreachable, identifier 'crm' resolved to null
javax.faces.el.EvaluationException: javax.el.PropertyNotFoundException: /index.xhtml @8,67 action=&quot;#{crm.ping}&quot;: Target Unreachable, identifier 'crm' resolved to null
	at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:95)
	at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
	at javax.faces.component.UICommand.broadcast(UICommand.java:315)
...
</pre>
<p>The beans.xml file (in META-INF/classes or WEB-INF/) can be empty or contain the following:</p>
<pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;beans xmlns=&quot;http://java.sun.com/xml/ns/javaee&quot;
   xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
   xsi:schemaLocation=&quot;http://java.sun.com/xml/ns/javaee  http://java.sun.com/xml/ns/javaee/beans_1_0.xsd&quot;&gt;
&lt;/beans&gt;
</pre>



Share and Enjoy:


	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;title=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20&amp;notes=If%20you%20are%20just%20starting%20out%20with%20JEE%20CDI%20%28Weld%29%2C%20it%27s%20easy%20to%20forget%20the%20required%20beans.xml%20file.%20If%20you%20don%27t%20include%20it%2C%20you%20may%20run%20into%20problems%20like%20this%3A%0D%0A%0D%0A%5Bcode%5D%0D%0ASEVERE%3A%20javax.el.PropertyNotFoundException%3A%20%2Findex.xhtml%20%408%2C67%20action%3D%26quot%3B%23%7B" title="del.icio.us"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;title=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20&amp;annotation=If%20you%20are%20just%20starting%20out%20with%20JEE%20CDI%20%28Weld%29%2C%20it%27s%20easy%20to%20forget%20the%20required%20beans.xml%20file.%20If%20you%20don%27t%20include%20it%2C%20you%20may%20run%20into%20problems%20like%20this%3A%0D%0A%0D%0A%5Bcode%5D%0D%0ASEVERE%3A%20javax.el.PropertyNotFoundException%3A%20%2Findex.xhtml%20%408%2C67%20action%3D%26quot%3B%23%7B" title="Google Bookmarks"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;title=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20" title="DZone"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.sphere.com/search?q=sphereit:http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;title=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20" title="SphereIt"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/sphere.png" title="SphereIt" alt="SphereIt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;title=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20" title="StumbleUpon"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F" title="Technorati"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;title=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20&amp;source=Andrej+Koelewijn+On+Oracle%2C+Java+and+OpenSource&amp;summary=If%20you%20are%20just%20starting%20out%20with%20JEE%20CDI%20%28Weld%29%2C%20it%27s%20easy%20to%20forget%20the%20required%20beans.xml%20file.%20If%20you%20don%27t%20include%20it%2C%20you%20may%20run%20into%20problems%20like%20this%3A%0D%0A%0D%0A%5Bcode%5D%0D%0ASEVERE%3A%20javax.el.PropertyNotFoundException%3A%20%2Findex.xhtml%20%408%2C67%20action%3D%26quot%3B%23%7B" title="LinkedIn"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;t=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20" title="HackerNews"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;partner=sociable" title="PDF"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;title=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20&amp;bodytext=If%20you%20are%20just%20starting%20out%20with%20JEE%20CDI%20%28Weld%29%2C%20it%27s%20easy%20to%20forget%20the%20required%20beans.xml%20file.%20If%20you%20don%27t%20include%20it%2C%20you%20may%20run%20into%20problems%20like%20this%3A%0D%0A%0D%0A%5Bcode%5D%0D%0ASEVERE%3A%20javax.el.PropertyNotFoundException%3A%20%2Findex.xhtml%20%408%2C67%20action%3D%26quot%3B%23%7B" title="Digg"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;t=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20" title="Facebook"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20&amp;link=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F" title="FriendFeed"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;title=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20&amp;selection=If%20you%20are%20just%20starting%20out%20with%20JEE%20CDI%20%28Weld%29%2C%20it%27s%20easy%20to%20forget%20the%20required%20beans.xml%20file.%20If%20you%20don%27t%20include%20it%2C%20you%20may%20run%20into%20problems%20like%20this%3A%0D%0A%0D%0A%5Bcode%5D%0D%0ASEVERE%3A%20javax.el.PropertyNotFoundException%3A%20%2Findex.xhtml%20%408%2C67%20action%3D%26quot%3B%23%7B" title="Posterous"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F&amp;t=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20&amp;s=If%20you%20are%20just%20starting%20out%20with%20JEE%20CDI%20%28Weld%29%2C%20it%27s%20easy%20to%20forget%20the%20required%20beans.xml%20file.%20If%20you%20don%27t%20include%20it%2C%20you%20may%20run%20into%20problems%20like%20this%3A%0D%0A%0D%0A%5Bcode%5D%0D%0ASEVERE%3A%20javax.el.PropertyNotFoundException%3A%20%2Findex.xhtml%20%408%2C67%20action%3D%26quot%3B%23%7B" title="Tumblr"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=JEE%20CDI%20tip%3A%20Target%20Unreachable%2C%20identifier%20resolved%20to%20null%20%20-%20http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F05%2Fjee-cdi-tip-target-unreachable-identifier-resolved-to-null%2F" title="Twitter"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.andrejkoelewijn.com/wp/feed/" title="RSS"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/AndrejKoelewijn/~4/Ka7z4tI-fAQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrejkoelewijn.com/wp/2010/03/05/jee-cdi-tip-target-unreachable-identifier-resolved-to-null/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Absent Code attribute in method that is not native or abstract</title>
		<link>http://www.andrejkoelewijn.com/wp/2010/03/04/absent-code-attribute-in-method-that-is-not-native-or-abstract/</link>
		<comments>http://www.andrejkoelewijn.com/wp/2010/03/04/absent-code-attribute-in-method-that-is-not-native-or-abstract/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 08:11:03 +0000</pubDate>
		<dc:creator>akoelewijn</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[soa]]></category>
		<category><![CDATA[jaxrs]]></category>
		<category><![CDATA[jboss]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[resteasy]]></category>

		<guid isPermaLink="false">http://www.andrejkoelewijn.com/wp/?p=561</guid>
		<description><![CDATA[I ran into the following problem yesterday while building a rest service using resteasy: the code would compile ok, but the unit tests wouldn&#8217;t run. I got the following exception in the output of the unit tests:

java.lang.ClassFormatError: Absent Code attribute in method that is not native or abstract in class file javax/ws/rs/ext/RuntimeDelegate
	at java.lang.ClassLoader.defineClass1(Native Method)
	at java.lang.ClassLoader.defineClass(ClassLoader.java:621)
	at [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into the following problem yesterday while building a rest service using <a href="http://www.jboss.org/resteasy">resteasy</a>: the code would compile ok, but the unit tests wouldn&#8217;t run. I got the following exception in the output of the unit tests:</p>
<pre class="brush: plain;">
java.lang.ClassFormatError: Absent Code attribute in method that is not native or abstract in class file javax/ws/rs/ext/RuntimeDelegate
	at java.lang.ClassLoader.defineClass1(Native Method)
	at java.lang.ClassLoader.defineClass(ClassLoader.java:621)
	at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
</pre>
<p>The problem is caused by the javeee-api dependency in my maven pom. As described <a href="http://weblogs.java.net/blog/ludo/archive/2007/01/java_ee_5_apis.html">here</a>, the following dependency provides you with the java-ee api&#8217;s, not the implementation. This is ok for compiling, but can&#8217;t be used for executing code.</p>
<pre class="brush: xml;">
&lt;dependency&gt;
  &lt;groupId&gt;javax&lt;/groupId&gt;
  &lt;artifactId&gt;javaee-api&lt;/artifactId&gt;
  &lt;version&gt;6.0&lt;/version&gt;
&lt;/dependency&gt;
</pre>
<p>I thought i&#8217;d solved the issue by adding a scope of <em>provided</em> or even <em>compile</em>, but this doesn&#8217;t fix the problem. The maven build still fails with the <em>Absent code attribute&#8230;</em> error. Removing the dependency completely solves the issue for now, but will probably give me some problems when i add more code which uses jee6.</p>



Share and Enjoy:


	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;title=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20&amp;notes=I%20ran%20into%20the%20following%20problem%20yesterday%20while%20building%20a%20rest%20service%20using%20resteasy%3A%20the%20code%20would%20compile%20ok%2C%20but%20the%20unit%20tests%20wouldn%27t%20run.%20I%20got%20the%20following%20exception%20in%20the%20output%20of%20the%20unit%20tests%3A%0D%0A%0D%0A%5Bcode%5D%0D%0Ajava.lang.ClassFormatError%3A" title="del.icio.us"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;title=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20&amp;annotation=I%20ran%20into%20the%20following%20problem%20yesterday%20while%20building%20a%20rest%20service%20using%20resteasy%3A%20the%20code%20would%20compile%20ok%2C%20but%20the%20unit%20tests%20wouldn%27t%20run.%20I%20got%20the%20following%20exception%20in%20the%20output%20of%20the%20unit%20tests%3A%0D%0A%0D%0A%5Bcode%5D%0D%0Ajava.lang.ClassFormatError%3A" title="Google Bookmarks"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;title=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20" title="DZone"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.sphere.com/search?q=sphereit:http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;title=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20" title="SphereIt"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/sphere.png" title="SphereIt" alt="SphereIt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;title=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20" title="StumbleUpon"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F" title="Technorati"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;title=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20&amp;source=Andrej+Koelewijn+On+Oracle%2C+Java+and+OpenSource&amp;summary=I%20ran%20into%20the%20following%20problem%20yesterday%20while%20building%20a%20rest%20service%20using%20resteasy%3A%20the%20code%20would%20compile%20ok%2C%20but%20the%20unit%20tests%20wouldn%27t%20run.%20I%20got%20the%20following%20exception%20in%20the%20output%20of%20the%20unit%20tests%3A%0D%0A%0D%0A%5Bcode%5D%0D%0Ajava.lang.ClassFormatError%3A" title="LinkedIn"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;t=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20" title="HackerNews"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;partner=sociable" title="PDF"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;title=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20&amp;bodytext=I%20ran%20into%20the%20following%20problem%20yesterday%20while%20building%20a%20rest%20service%20using%20resteasy%3A%20the%20code%20would%20compile%20ok%2C%20but%20the%20unit%20tests%20wouldn%27t%20run.%20I%20got%20the%20following%20exception%20in%20the%20output%20of%20the%20unit%20tests%3A%0D%0A%0D%0A%5Bcode%5D%0D%0Ajava.lang.ClassFormatError%3A" title="Digg"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;t=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20" title="Facebook"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20&amp;link=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F" title="FriendFeed"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;title=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20&amp;selection=I%20ran%20into%20the%20following%20problem%20yesterday%20while%20building%20a%20rest%20service%20using%20resteasy%3A%20the%20code%20would%20compile%20ok%2C%20but%20the%20unit%20tests%20wouldn%27t%20run.%20I%20got%20the%20following%20exception%20in%20the%20output%20of%20the%20unit%20tests%3A%0D%0A%0D%0A%5Bcode%5D%0D%0Ajava.lang.ClassFormatError%3A" title="Posterous"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F&amp;t=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20&amp;s=I%20ran%20into%20the%20following%20problem%20yesterday%20while%20building%20a%20rest%20service%20using%20resteasy%3A%20the%20code%20would%20compile%20ok%2C%20but%20the%20unit%20tests%20wouldn%27t%20run.%20I%20got%20the%20following%20exception%20in%20the%20output%20of%20the%20unit%20tests%3A%0D%0A%0D%0A%5Bcode%5D%0D%0Ajava.lang.ClassFormatError%3A" title="Tumblr"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Absent%20Code%20attribute%20in%20method%20that%20is%20not%20native%20or%20abstract%20%20-%20http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F03%2F04%2Fabsent-code-attribute-in-method-that-is-not-native-or-abstract%2F" title="Twitter"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.andrejkoelewijn.com/wp/feed/" title="RSS"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/AndrejKoelewijn/~4/vhm_ScOFnaU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrejkoelewijn.com/wp/2010/03/04/absent-code-attribute-in-method-that-is-not-native-or-abstract/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prezi presentation software needs to add visual</title>
		<link>http://www.andrejkoelewijn.com/wp/2010/02/11/prezi-presentation-software-needs-to-add-visual/</link>
		<comments>http://www.andrejkoelewijn.com/wp/2010/02/11/prezi-presentation-software-needs-to-add-visual/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 10:34:29 +0000</pubDate>
		<dc:creator>akoelewijn</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[prezi]]></category>

		<guid isPermaLink="false">http://www.andrejkoelewijn.com/wp/?p=556</guid>
		<description><![CDATA[I tried Prezi yesterday, and looked at some of the presentations others made with it. It&#8217;s a nice idea, but absolutely not the presentation tool i&#8217;m looking for. Prezi basically is a mind-mapping tool, with some nice transitions. But mindmaps are for brainstorming your presentation content. You do not create a compelling presentation by showing [...]]]></description>
			<content:encoded><![CDATA[<p>I tried <a href="http://prezi.com/">Prezi</a> yesterday, and looked at <a href="http://prezi.com/showcase/">some of the presentations others made with it</a>. It&#8217;s a nice idea, but absolutely not the presentation tool i&#8217;m looking for. Prezi basically is a mind-mapping tool, with some nice transitions. But mindmaps are for brainstorming your presentation content. You do not create a compelling presentation by showing a mindmap.</p>
<p>Slides need to be visual support for your story. It should be about <a href="http://www.presentationzen.com/presentationzen/2006/06/the_power_of_th.html">visual storytelling</a>. A presentation needs to be more like a live spoken documentary on Discovery channel or National Geographic Channel. I want to be able to create a movie with a presentation tool, not embed a movie. After you create the mindmap of your contents, you need to visualize it. This is where prezi falls short.</p>
<p>In my opinion it should offer a way to translate your mindmap into a <a href="http://en.wikipedia.org/wiki/Storyboard">storyboard</a>. I really want a presentation tool which allows me to sketch out all the slides on a storyboard using a Wacom tablet. After you&#8217;ve created the storyboard, you need to fill the slides with all the real images and graphics. This means the software should have a lot of support for creating (vector) images, and adding photo&#8217;s. Integrated internet image search would be perfect. This means it needs to be a combination of animation software with <a href="http://en.wikipedia.org/wiki/Onion_skinning">onion skinning support</a>, e.g. <a href="http://www.pencil-animation.org/">Pencil</a>, vector graphics, e.g. <a href="http://www.adobe.com/nl/products/illustrator/">Adobe Illustrator</a> or <a href="http://www.inkscape.org/">Inkscape</a>, and something like flickr search tool <a href="http://compfight.com/">compflight</a>.</p>



Share and Enjoy:


	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;title=Prezi%20presentation%20software%20needs%20to%20add%20visual&amp;notes=I%20tried%20Prezi%20yesterday%2C%20and%20looked%20at%20some%20of%20the%20presentations%20others%20made%20with%20it.%20It%27s%20a%20nice%20idea%2C%20but%20absolutely%20not%20the%20presentation%20tool%20i%27m%20looking%20for.%20Prezi%20basically%20is%20a%20mind-mapping%20tool%2C%20with%20some%20nice%20transitions.%20But%20mindmaps%20are%20for" title="del.icio.us"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;title=Prezi%20presentation%20software%20needs%20to%20add%20visual&amp;annotation=I%20tried%20Prezi%20yesterday%2C%20and%20looked%20at%20some%20of%20the%20presentations%20others%20made%20with%20it.%20It%27s%20a%20nice%20idea%2C%20but%20absolutely%20not%20the%20presentation%20tool%20i%27m%20looking%20for.%20Prezi%20basically%20is%20a%20mind-mapping%20tool%2C%20with%20some%20nice%20transitions.%20But%20mindmaps%20are%20for" title="Google Bookmarks"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;title=Prezi%20presentation%20software%20needs%20to%20add%20visual" title="DZone"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.sphere.com/search?q=sphereit:http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;title=Prezi%20presentation%20software%20needs%20to%20add%20visual" title="SphereIt"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/sphere.png" title="SphereIt" alt="SphereIt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;title=Prezi%20presentation%20software%20needs%20to%20add%20visual" title="StumbleUpon"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F" title="Technorati"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;title=Prezi%20presentation%20software%20needs%20to%20add%20visual&amp;source=Andrej+Koelewijn+On+Oracle%2C+Java+and+OpenSource&amp;summary=I%20tried%20Prezi%20yesterday%2C%20and%20looked%20at%20some%20of%20the%20presentations%20others%20made%20with%20it.%20It%27s%20a%20nice%20idea%2C%20but%20absolutely%20not%20the%20presentation%20tool%20i%27m%20looking%20for.%20Prezi%20basically%20is%20a%20mind-mapping%20tool%2C%20with%20some%20nice%20transitions.%20But%20mindmaps%20are%20for" title="LinkedIn"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;t=Prezi%20presentation%20software%20needs%20to%20add%20visual" title="HackerNews"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;partner=sociable" title="PDF"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;title=Prezi%20presentation%20software%20needs%20to%20add%20visual&amp;bodytext=I%20tried%20Prezi%20yesterday%2C%20and%20looked%20at%20some%20of%20the%20presentations%20others%20made%20with%20it.%20It%27s%20a%20nice%20idea%2C%20but%20absolutely%20not%20the%20presentation%20tool%20i%27m%20looking%20for.%20Prezi%20basically%20is%20a%20mind-mapping%20tool%2C%20with%20some%20nice%20transitions.%20But%20mindmaps%20are%20for" title="Digg"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;t=Prezi%20presentation%20software%20needs%20to%20add%20visual" title="Facebook"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Prezi%20presentation%20software%20needs%20to%20add%20visual&amp;link=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F" title="FriendFeed"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;title=Prezi%20presentation%20software%20needs%20to%20add%20visual&amp;selection=I%20tried%20Prezi%20yesterday%2C%20and%20looked%20at%20some%20of%20the%20presentations%20others%20made%20with%20it.%20It%27s%20a%20nice%20idea%2C%20but%20absolutely%20not%20the%20presentation%20tool%20i%27m%20looking%20for.%20Prezi%20basically%20is%20a%20mind-mapping%20tool%2C%20with%20some%20nice%20transitions.%20But%20mindmaps%20are%20for" title="Posterous"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F&amp;t=Prezi%20presentation%20software%20needs%20to%20add%20visual&amp;s=I%20tried%20Prezi%20yesterday%2C%20and%20looked%20at%20some%20of%20the%20presentations%20others%20made%20with%20it.%20It%27s%20a%20nice%20idea%2C%20but%20absolutely%20not%20the%20presentation%20tool%20i%27m%20looking%20for.%20Prezi%20basically%20is%20a%20mind-mapping%20tool%2C%20with%20some%20nice%20transitions.%20But%20mindmaps%20are%20for" title="Tumblr"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Prezi%20presentation%20software%20needs%20to%20add%20visual%20-%20http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F02%2F11%2Fprezi-presentation-software-needs-to-add-visual%2F" title="Twitter"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.andrejkoelewijn.com/wp/feed/" title="RSS"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/AndrejKoelewijn/~4/F6nlGjSgSaI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrejkoelewijn.com/wp/2010/02/11/prezi-presentation-software-needs-to-add-visual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So you think it’s the iPad that’s missing features?</title>
		<link>http://www.andrejkoelewijn.com/wp/2010/01/30/so-you-think-its-the-ipad-thats-missing-features/</link>
		<comments>http://www.andrejkoelewijn.com/wp/2010/01/30/so-you-think-its-the-ipad-thats-missing-features/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 12:43:44 +0000</pubDate>
		<dc:creator>akoelewijn</dc:creator>
				<category><![CDATA[tablet]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://www.andrejkoelewijn.com/wp/?p=543</guid>
		<description><![CDATA[It&#8217;s amazing how many people complain about the hardware specs, but forget about the software. The iPad has the most important feature of all: usability.
Remember mobile internet before the iPhone? Nobody used it. Then along came the iPhone: technically nothing new: touch screens existed before, mobile browsers existed before.
But only the usability of the iPhone [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s amazing how many people complain about the hardware specs, but forget about the software. The iPad has the most important feature of all: usability.</p>
<p>Remember mobile internet before the iPhone? Nobody used it. Then along came the iPhone: technically nothing new: touch screens existed before, mobile browsers existed before.</p>
<p><em>But only the usability of the iPhone has made people start to use mobile internet</em>. So much so that <a href="http://www.nytimes.com/2009/12/10/technology/companies/10iphone.html">AT&#038;T has a hard time keeping up</a>.</p>
<p>Hardware features don&#8217;t matter if the usability isn&#8217;t there. And that&#8217;s where the iPad shines, just look at some of the video&#8217;s here: <a href="http://www.lukew.com/ff/entry.asp?991">New Multi-touch Interactions on the Apple iPad</a>. Again, it&#8217;s all about the software. Software is the key to ease of use. <a href="http://speirs.org/blog/2010/1/29/future-shock.html">Apple has just made computing a lot easier</a>.</p>



Share and Enjoy:


	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;title=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F&amp;notes=It%27s%20amazing%20how%20many%20people%20complain%20about%20the%20hardware%20specs%2C%20but%20forget%20about%20the%20software.%20The%20iPad%20has%20the%20most%20important%20feature%20of%20all%3A%20usability.%0D%0A%0D%0ARemember%20mobile%20internet%20before%20the%20iPhone%3F%20Nobody%20used%20it.%20Then%20along%20came%20the%20iPhone%3A%20techn" title="del.icio.us"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;title=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F&amp;annotation=It%27s%20amazing%20how%20many%20people%20complain%20about%20the%20hardware%20specs%2C%20but%20forget%20about%20the%20software.%20The%20iPad%20has%20the%20most%20important%20feature%20of%20all%3A%20usability.%0D%0A%0D%0ARemember%20mobile%20internet%20before%20the%20iPhone%3F%20Nobody%20used%20it.%20Then%20along%20came%20the%20iPhone%3A%20techn" title="Google Bookmarks"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;title=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F" title="DZone"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.sphere.com/search?q=sphereit:http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;title=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F" title="SphereIt"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/sphere.png" title="SphereIt" alt="SphereIt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;title=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F" title="StumbleUpon"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F" title="Technorati"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;title=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F&amp;source=Andrej+Koelewijn+On+Oracle%2C+Java+and+OpenSource&amp;summary=It%27s%20amazing%20how%20many%20people%20complain%20about%20the%20hardware%20specs%2C%20but%20forget%20about%20the%20software.%20The%20iPad%20has%20the%20most%20important%20feature%20of%20all%3A%20usability.%0D%0A%0D%0ARemember%20mobile%20internet%20before%20the%20iPhone%3F%20Nobody%20used%20it.%20Then%20along%20came%20the%20iPhone%3A%20techn" title="LinkedIn"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;t=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F" title="HackerNews"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;partner=sociable" title="PDF"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;title=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F&amp;bodytext=It%27s%20amazing%20how%20many%20people%20complain%20about%20the%20hardware%20specs%2C%20but%20forget%20about%20the%20software.%20The%20iPad%20has%20the%20most%20important%20feature%20of%20all%3A%20usability.%0D%0A%0D%0ARemember%20mobile%20internet%20before%20the%20iPhone%3F%20Nobody%20used%20it.%20Then%20along%20came%20the%20iPhone%3A%20techn" title="Digg"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;t=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F" title="Facebook"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F&amp;link=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F" title="FriendFeed"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;title=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F&amp;selection=It%27s%20amazing%20how%20many%20people%20complain%20about%20the%20hardware%20specs%2C%20but%20forget%20about%20the%20software.%20The%20iPad%20has%20the%20most%20important%20feature%20of%20all%3A%20usability.%0D%0A%0D%0ARemember%20mobile%20internet%20before%20the%20iPhone%3F%20Nobody%20used%20it.%20Then%20along%20came%20the%20iPhone%3A%20techn" title="Posterous"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F&amp;t=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F&amp;s=It%27s%20amazing%20how%20many%20people%20complain%20about%20the%20hardware%20specs%2C%20but%20forget%20about%20the%20software.%20The%20iPad%20has%20the%20most%20important%20feature%20of%20all%3A%20usability.%0D%0A%0D%0ARemember%20mobile%20internet%20before%20the%20iPhone%3F%20Nobody%20used%20it.%20Then%20along%20came%20the%20iPhone%3A%20techn" title="Tumblr"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=So%20you%20think%20it%27s%20the%20iPad%20that%27s%20missing%20features%3F%20-%20http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F30%2Fso-you-think-its-the-ipad-thats-missing-features%2F" title="Twitter"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.andrejkoelewijn.com/wp/feed/" title="RSS"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/AndrejKoelewijn/~4/vqLUAz4RqLc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrejkoelewijn.com/wp/2010/01/30/so-you-think-its-the-ipad-thats-missing-features/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>iPad is THE couch-device</title>
		<link>http://www.andrejkoelewijn.com/wp/2010/01/27/ipad-is-the-couch-device/</link>
		<comments>http://www.andrejkoelewijn.com/wp/2010/01/27/ipad-is-the-couch-device/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 20:10:15 +0000</pubDate>
		<dc:creator>akoelewijn</dc:creator>
				<category><![CDATA[tablet]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://www.andrejkoelewijn.com/wp/?p=536</guid>
		<description><![CDATA[The video on the iPad page more or less proofs it&#8217;s purpuse: it&#8217;s THE couch device. Even the basic version seems good enough for most purposes: internet surfing, watching video, reading books and magazines, looking at your pictures.
I bet soon every member of your family will have his or her own iPad: we want to [...]]]></description>
			<content:encoded><![CDATA[<p>The video on the <a href="http://www.apple.com/ipad/">iPad</a> page more or less proofs it&#8217;s purpuse: it&#8217;s THE couch device. Even the basic version seems good enough for most purposes: internet surfing, watching video, reading books and magazines, looking at your pictures.</p>
<p>I bet soon every member of your family will have his or her own iPad: we want to simultaneously watch a video, read a book, play a game. And with the <a href="http://images.apple.com/ipad/specs/images/keyboard_dock_1_20100127.jpg">keyboard dock</a>, the tablet will replace laptops and desktops for many people.</p>
<p>Surprisingly it doesn&#8217;t seem to have a camera, which means it won&#8217;t be the ultimate ichat device. But i&#8217;m sure a future version will come with a camera, just another reason to upgrade to a newer version at some point.</p>
<p>It&#8217;ll be interesting to see what other hardware manufacturers are going to come up with to compete with the iPad. Problem for the competition is that software is such a big part of the iPad, it&#8217;s not just about the hardware.</p>



Share and Enjoy:


	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;title=iPad%20is%20THE%20couch-device&amp;notes=The%20video%20on%20the%20iPad%20page%20more%20or%20less%20proofs%20it%27s%20purpuse%3A%20it%27s%20THE%20couch%20device.%20Even%20the%20basic%20version%20seems%20good%20enough%20for%20most%20purposes%3A%20internet%20surfing%2C%20watching%20video%2C%20reading%20books%20and%20magazines%2C%20looking%20at%20your%20pictures.%0D%0A%0D%0AI%20bet%20soon%20eve" title="del.icio.us"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;title=iPad%20is%20THE%20couch-device&amp;annotation=The%20video%20on%20the%20iPad%20page%20more%20or%20less%20proofs%20it%27s%20purpuse%3A%20it%27s%20THE%20couch%20device.%20Even%20the%20basic%20version%20seems%20good%20enough%20for%20most%20purposes%3A%20internet%20surfing%2C%20watching%20video%2C%20reading%20books%20and%20magazines%2C%20looking%20at%20your%20pictures.%0D%0A%0D%0AI%20bet%20soon%20eve" title="Google Bookmarks"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;title=iPad%20is%20THE%20couch-device" title="DZone"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.sphere.com/search?q=sphereit:http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;title=iPad%20is%20THE%20couch-device" title="SphereIt"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/sphere.png" title="SphereIt" alt="SphereIt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;title=iPad%20is%20THE%20couch-device" title="StumbleUpon"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F" title="Technorati"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;title=iPad%20is%20THE%20couch-device&amp;source=Andrej+Koelewijn+On+Oracle%2C+Java+and+OpenSource&amp;summary=The%20video%20on%20the%20iPad%20page%20more%20or%20less%20proofs%20it%27s%20purpuse%3A%20it%27s%20THE%20couch%20device.%20Even%20the%20basic%20version%20seems%20good%20enough%20for%20most%20purposes%3A%20internet%20surfing%2C%20watching%20video%2C%20reading%20books%20and%20magazines%2C%20looking%20at%20your%20pictures.%0D%0A%0D%0AI%20bet%20soon%20eve" title="LinkedIn"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;t=iPad%20is%20THE%20couch-device" title="HackerNews"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;partner=sociable" title="PDF"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;title=iPad%20is%20THE%20couch-device&amp;bodytext=The%20video%20on%20the%20iPad%20page%20more%20or%20less%20proofs%20it%27s%20purpuse%3A%20it%27s%20THE%20couch%20device.%20Even%20the%20basic%20version%20seems%20good%20enough%20for%20most%20purposes%3A%20internet%20surfing%2C%20watching%20video%2C%20reading%20books%20and%20magazines%2C%20looking%20at%20your%20pictures.%0D%0A%0D%0AI%20bet%20soon%20eve" title="Digg"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;t=iPad%20is%20THE%20couch-device" title="Facebook"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=iPad%20is%20THE%20couch-device&amp;link=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F" title="FriendFeed"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;title=iPad%20is%20THE%20couch-device&amp;selection=The%20video%20on%20the%20iPad%20page%20more%20or%20less%20proofs%20it%27s%20purpuse%3A%20it%27s%20THE%20couch%20device.%20Even%20the%20basic%20version%20seems%20good%20enough%20for%20most%20purposes%3A%20internet%20surfing%2C%20watching%20video%2C%20reading%20books%20and%20magazines%2C%20looking%20at%20your%20pictures.%0D%0A%0D%0AI%20bet%20soon%20eve" title="Posterous"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F&amp;t=iPad%20is%20THE%20couch-device&amp;s=The%20video%20on%20the%20iPad%20page%20more%20or%20less%20proofs%20it%27s%20purpuse%3A%20it%27s%20THE%20couch%20device.%20Even%20the%20basic%20version%20seems%20good%20enough%20for%20most%20purposes%3A%20internet%20surfing%2C%20watching%20video%2C%20reading%20books%20and%20magazines%2C%20looking%20at%20your%20pictures.%0D%0A%0D%0AI%20bet%20soon%20eve" title="Tumblr"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=iPad%20is%20THE%20couch-device%20-%20http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fipad-is-the-couch-device%2F" title="Twitter"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.andrejkoelewijn.com/wp/feed/" title="RSS"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/AndrejKoelewijn/~4/t5f8YDFOlFw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrejkoelewijn.com/wp/2010/01/27/ipad-is-the-couch-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Will they still like tablet 2.0?</title>
		<link>http://www.andrejkoelewijn.com/wp/2010/01/27/will-they-still-like-tablet-2-0/</link>
		<comments>http://www.andrejkoelewijn.com/wp/2010/01/27/will-they-still-like-tablet-2-0/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 06:17:44 +0000</pubDate>
		<dc:creator>akoelewijn</dc:creator>
				<category><![CDATA[tablet]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[islate]]></category>
		<category><![CDATA[itablet]]></category>

		<guid isPermaLink="false">http://www.andrejkoelewijn.com/wp/?p=523</guid>
		<description><![CDATA[Newspapers are looking to the ipad/islate/itablet to save their business, assuming that they can just copy their paper business to the tablet. Sell editions or subscription so customers can read their newspaper on the tablet.
However, every new technology starts with copying existing concepts. Initially on the web we saw copies of concepts that already existed: [...]]]></description>
			<content:encoded><![CDATA[<p>Newspapers are looking <a href="http://www.nytimes.com/2010/01/26/technology/26apple.html">to the ipad/islate/itablet to save their business</a>, <a href="http://online.wsj.com/article/SB10001424052748703906204575027503731077976.html">assuming that they can just copy their paper business to the tablet</a>. Sell editions or subscription so customers can read their newspaper on the tablet.</p>
<p>However, every new technology starts with copying existing concepts. Initially on the web we saw copies of concepts that already existed: web shops, web magazines, web newspapers, web encyclopedia&#8217;s. But after a while people discover that the new technology has more to offer than a better/faster/easier way to do old concepts. It adds a whole range of new possibilities. The internet enables you to collect the knowledge of your visitors and customers to your product. Your visitors enable you to improve or completely create your products and service.</p>
<p>Similarly, tablet applications will initially resemble concepts we currently know which would work better on a tablet: books, newspapers, magazines. But tablets will bring their own wave of innovations. Newspaper can&#8217;t expect to just be a digital version of their current newspapers. They too will have to evolve and use these innovations, otherwise they will be surpassed by better solutions.</p>
<p>I have written before about what i think initial innovation on tablets will look like: <a href="http://www.andrejkoelewijn.com/wp/2009/12/21/why-tablets-will-be-huge-media-convergence/">media convergence</a>. This will shake up all existing media companies.</p>
<p>It will also enable interactivity with these media. One of the most interesting ways to add interactivity is by adding gaming. Gaming enables better learning, <a href="http://video.google.com/videoplay?docid=-8246463980976635143#">working for free</a>, and audience feedback. I think tablets will have a big impact on gaming as part of other media. Currently most of these media forms don&#8217;t allow user participation. This will change big time when tv, books, magazines and newspapers all converge on tablets.</p>
<p>The internet and web has created some expectations around media that media consumers are probably going to expect from media made available on a tablet:</p>
<ul>
<li><strong>Findability</strong> &#8211; Using Google we can now find most content on the internet. How findable is your content in the app-store? Are we going to accept content that isn&#8217;t findable using a generic search engine?</li>
<li><strong>Aggregation</strong> &#8211; Feeds have made it easy to follow multiple websites. No need to visit all sites to find new articles. <a href="http://www.techcrunch.com/2010/02/02/everybody-forgets-the-readers-when-they-bash-news-aggregators">News is a lot easier to follow using feed readers</a>. Some say this has become less important since twitter, but for twitter to work you need something else:</li>
<li><strong>Deeplinking</strong> &#8211; People like to directly link to interesting information on the internet. Can you send friends a link to a specific page? Can you send a link to a specific book in amazon, a video in youtube, a house on some real-estate site? Currently you can, but can you do this when everything becomes an iphone-app like closed application?</li>
<li><strong>Picking the interesting parts</strong> &#8211; Consumers currently expect to be able to just pay for the music or video that they like, without having to buy other stuff. Bundling popular information with less popular information like is done with magazines or music albums is less and less accepted.</li>
</ul>
<p>Even if media offer their content on the tablet, consumers will have different expectations than they have with the old distribution format. Can media evolve and fullfill these expectations?</p>



Share and Enjoy:


	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;title=Will%20they%20still%20like%20tablet%202.0%3F&amp;notes=Newspapers%20are%20looking%20to%20the%20ipad%2Fislate%2Fitablet%20to%20save%20their%20business%2C%20assuming%20that%20they%20can%20just%20copy%20their%20paper%20business%20to%20the%20tablet.%20Sell%20editions%20or%20subscription%20so%20customers%20can%20read%20their%20newspaper%20on%20the%20tablet.%0D%0A%0D%0AHowever%2C%20every%20new%20te" title="del.icio.us"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;title=Will%20they%20still%20like%20tablet%202.0%3F&amp;annotation=Newspapers%20are%20looking%20to%20the%20ipad%2Fislate%2Fitablet%20to%20save%20their%20business%2C%20assuming%20that%20they%20can%20just%20copy%20their%20paper%20business%20to%20the%20tablet.%20Sell%20editions%20or%20subscription%20so%20customers%20can%20read%20their%20newspaper%20on%20the%20tablet.%0D%0A%0D%0AHowever%2C%20every%20new%20te" title="Google Bookmarks"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;title=Will%20they%20still%20like%20tablet%202.0%3F" title="DZone"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.sphere.com/search?q=sphereit:http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;title=Will%20they%20still%20like%20tablet%202.0%3F" title="SphereIt"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/sphere.png" title="SphereIt" alt="SphereIt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;title=Will%20they%20still%20like%20tablet%202.0%3F" title="StumbleUpon"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F" title="Technorati"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;title=Will%20they%20still%20like%20tablet%202.0%3F&amp;source=Andrej+Koelewijn+On+Oracle%2C+Java+and+OpenSource&amp;summary=Newspapers%20are%20looking%20to%20the%20ipad%2Fislate%2Fitablet%20to%20save%20their%20business%2C%20assuming%20that%20they%20can%20just%20copy%20their%20paper%20business%20to%20the%20tablet.%20Sell%20editions%20or%20subscription%20so%20customers%20can%20read%20their%20newspaper%20on%20the%20tablet.%0D%0A%0D%0AHowever%2C%20every%20new%20te" title="LinkedIn"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;t=Will%20they%20still%20like%20tablet%202.0%3F" title="HackerNews"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;partner=sociable" title="PDF"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;title=Will%20they%20still%20like%20tablet%202.0%3F&amp;bodytext=Newspapers%20are%20looking%20to%20the%20ipad%2Fislate%2Fitablet%20to%20save%20their%20business%2C%20assuming%20that%20they%20can%20just%20copy%20their%20paper%20business%20to%20the%20tablet.%20Sell%20editions%20or%20subscription%20so%20customers%20can%20read%20their%20newspaper%20on%20the%20tablet.%0D%0A%0D%0AHowever%2C%20every%20new%20te" title="Digg"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;t=Will%20they%20still%20like%20tablet%202.0%3F" title="Facebook"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Will%20they%20still%20like%20tablet%202.0%3F&amp;link=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F" title="FriendFeed"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;title=Will%20they%20still%20like%20tablet%202.0%3F&amp;selection=Newspapers%20are%20looking%20to%20the%20ipad%2Fislate%2Fitablet%20to%20save%20their%20business%2C%20assuming%20that%20they%20can%20just%20copy%20their%20paper%20business%20to%20the%20tablet.%20Sell%20editions%20or%20subscription%20so%20customers%20can%20read%20their%20newspaper%20on%20the%20tablet.%0D%0A%0D%0AHowever%2C%20every%20new%20te" title="Posterous"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F&amp;t=Will%20they%20still%20like%20tablet%202.0%3F&amp;s=Newspapers%20are%20looking%20to%20the%20ipad%2Fislate%2Fitablet%20to%20save%20their%20business%2C%20assuming%20that%20they%20can%20just%20copy%20their%20paper%20business%20to%20the%20tablet.%20Sell%20editions%20or%20subscription%20so%20customers%20can%20read%20their%20newspaper%20on%20the%20tablet.%0D%0A%0D%0AHowever%2C%20every%20new%20te" title="Tumblr"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Will%20they%20still%20like%20tablet%202.0%3F%20-%20http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F27%2Fwill-they-still-like-tablet-2-0%2F" title="Twitter"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.andrejkoelewijn.com/wp/feed/" title="RSS"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/AndrejKoelewijn/~4/T5D4RpSoBTY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrejkoelewijn.com/wp/2010/01/27/will-they-still-like-tablet-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do you know who your customers are?</title>
		<link>http://www.andrejkoelewijn.com/wp/2010/01/26/do-you-know-who-your-customers-are/</link>
		<comments>http://www.andrejkoelewijn.com/wp/2010/01/26/do-you-know-who-your-customers-are/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 10:59:56 +0000</pubDate>
		<dc:creator>akoelewijn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.andrejkoelewijn.com/wp/?p=514</guid>
		<description><![CDATA[It&#8217;s funny to see that for some companies it&#8217;s not really clear who their customers are: are readers the customers of newspapers, and are newspapers providing them a services by selling them news? Or are advertisers the customers and are newspapers in the business of selling attention to the advertisers?
Both can work, but it seems [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s funny to see that for some companies it&#8217;s not really clear who their customers are: are readers the customers of newspapers, and are newspapers providing them <a href="http://www.roughtype.com/archives/2010/01/jeff_jarviss_co.php">a services by selling them news</a>? Or are <a href="http://www.buzzmachine.com/2010/01/17/the-cockeyed-economics-of-metering-reading/">advertisers the customers and are newspapers in the business of selling attention to the advertisers</a>?</p>
<p>Both can work, but it seems to me that currently too much discussion on the internet is about convincing companies that one approach is working and the other not. Companies should treat readers as customers, or they should views them as a product to sell. People are trying to convince others that they should target different customers.</p>
<p>I think it&#8217;s more important to understand your model: if you know who your customer is, you can actually understand the value of what you&#8217;re trying to sell. Are you selling valuable news or are you selling <a href="http://www.observer.com/2010/media/after-three-months-only-35-subscriptions-newsdays-web-site">commodity news</a>? Or are you selling specific readers, or are you selling a large group of unfocused readers? Are there many other providers of the same service or is your service very special? </p>
<p>The basic economic demand and supply rules still apply. The value of scarce news is very high, the value of commodity news is very low. The value of targetted, focussed readers is very high, the value of unfocused readers is a bit lower.</p>



Share and Enjoy:


	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;title=Do%20you%20know%20who%20your%20customers%20are%3F&amp;notes=It%27s%20funny%20to%20see%20that%20for%20some%20companies%20it%27s%20not%20really%20clear%20who%20their%20customers%20are%3A%20are%20readers%20the%20customers%20of%20newspapers%2C%20and%20are%20newspapers%20providing%20them%20a%20services%20by%20selling%20them%20news%3F%20Or%20are%20advertisers%20the%20customers%20and%20are%20newspapers%20i" title="del.icio.us"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;title=Do%20you%20know%20who%20your%20customers%20are%3F&amp;annotation=It%27s%20funny%20to%20see%20that%20for%20some%20companies%20it%27s%20not%20really%20clear%20who%20their%20customers%20are%3A%20are%20readers%20the%20customers%20of%20newspapers%2C%20and%20are%20newspapers%20providing%20them%20a%20services%20by%20selling%20them%20news%3F%20Or%20are%20advertisers%20the%20customers%20and%20are%20newspapers%20i" title="Google Bookmarks"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;title=Do%20you%20know%20who%20your%20customers%20are%3F" title="DZone"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.sphere.com/search?q=sphereit:http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;title=Do%20you%20know%20who%20your%20customers%20are%3F" title="SphereIt"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/sphere.png" title="SphereIt" alt="SphereIt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;title=Do%20you%20know%20who%20your%20customers%20are%3F" title="StumbleUpon"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F" title="Technorati"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;title=Do%20you%20know%20who%20your%20customers%20are%3F&amp;source=Andrej+Koelewijn+On+Oracle%2C+Java+and+OpenSource&amp;summary=It%27s%20funny%20to%20see%20that%20for%20some%20companies%20it%27s%20not%20really%20clear%20who%20their%20customers%20are%3A%20are%20readers%20the%20customers%20of%20newspapers%2C%20and%20are%20newspapers%20providing%20them%20a%20services%20by%20selling%20them%20news%3F%20Or%20are%20advertisers%20the%20customers%20and%20are%20newspapers%20i" title="LinkedIn"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;t=Do%20you%20know%20who%20your%20customers%20are%3F" title="HackerNews"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;partner=sociable" title="PDF"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;title=Do%20you%20know%20who%20your%20customers%20are%3F&amp;bodytext=It%27s%20funny%20to%20see%20that%20for%20some%20companies%20it%27s%20not%20really%20clear%20who%20their%20customers%20are%3A%20are%20readers%20the%20customers%20of%20newspapers%2C%20and%20are%20newspapers%20providing%20them%20a%20services%20by%20selling%20them%20news%3F%20Or%20are%20advertisers%20the%20customers%20and%20are%20newspapers%20i" title="Digg"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;t=Do%20you%20know%20who%20your%20customers%20are%3F" title="Facebook"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Do%20you%20know%20who%20your%20customers%20are%3F&amp;link=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F" title="FriendFeed"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;title=Do%20you%20know%20who%20your%20customers%20are%3F&amp;selection=It%27s%20funny%20to%20see%20that%20for%20some%20companies%20it%27s%20not%20really%20clear%20who%20their%20customers%20are%3A%20are%20readers%20the%20customers%20of%20newspapers%2C%20and%20are%20newspapers%20providing%20them%20a%20services%20by%20selling%20them%20news%3F%20Or%20are%20advertisers%20the%20customers%20and%20are%20newspapers%20i" title="Posterous"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F&amp;t=Do%20you%20know%20who%20your%20customers%20are%3F&amp;s=It%27s%20funny%20to%20see%20that%20for%20some%20companies%20it%27s%20not%20really%20clear%20who%20their%20customers%20are%3A%20are%20readers%20the%20customers%20of%20newspapers%2C%20and%20are%20newspapers%20providing%20them%20a%20services%20by%20selling%20them%20news%3F%20Or%20are%20advertisers%20the%20customers%20and%20are%20newspapers%20i" title="Tumblr"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Do%20you%20know%20who%20your%20customers%20are%3F%20-%20http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fdo-you-know-who-your-customers-are%2F" title="Twitter"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.andrejkoelewijn.com/wp/feed/" title="RSS"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/AndrejKoelewijn/~4/LxNSo2r7m1U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrejkoelewijn.com/wp/2010/01/26/do-you-know-who-your-customers-are/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Usability: a must have, not a nice to have</title>
		<link>http://www.andrejkoelewijn.com/wp/2010/01/26/usability-a-must-have-not-a-nice-to-have/</link>
		<comments>http://www.andrejkoelewijn.com/wp/2010/01/26/usability-a-must-have-not-a-nice-to-have/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 09:15:15 +0000</pubDate>
		<dc:creator>akoelewijn</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.andrejkoelewijn.com/wp/?p=510</guid>
		<description><![CDATA[Most people think good usability is not very important for internal IT systems: you can train the users and write manuals to compensate for bad usability. Also, your internal users have no choice, so they&#8217;re not going to go to the competition if your IT system is hard to use.
A story in webwereld shows that [...]]]></description>
			<content:encoded><![CDATA[<p>Most people think good usability is not very important for internal IT systems: you can train the users and write manuals to compensate for bad usability. Also, your internal users have no choice, so they&#8217;re not going to go to the competition if your IT system is hard to use.</p>
<p>A story in <a href="http://webwereld.nl/">webwereld</a> shows that this is not true: <a href="http://webwereld.nl/nieuws/64959/politie--onze-statistieken-zijn-onbetrouwbaar.html#source=head">Politie: onze statistieken zijn onbetrouwbaar</a>. The dutch police are complaining that their statistics are incorrect: they don&#8217;t know what is happening, because their employees don&#8217;t enter the data. The new system is too hard to use, so employees refuse to use it.</p>
<p>Developers and techies often think that it&#8217;s enough for a product to have a specific functionality. That it doesn&#8217;t matter if it&#8217;s easy to use or not. For example, when a company like Apple launches a new product they&#8217;ll go: &#8220;that&#8217;s not new, some other product had that functionality long ago&#8221;. But there&#8217;s a huge difference between having a functionality, and making it easy enough so that users will actually start using it. Nice example is branching in version control systems: Subversion has had this ability forever, but Git makes it so easy that people actually start using it.</p>
<p>Moral of the story: usability isn&#8217;t just important when it&#8217;s a customer facing system, internal applications also need to be user friendly.</p>



Share and Enjoy:


	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;title=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have&amp;notes=Most%20people%20think%20good%20usability%20is%20not%20very%20important%20for%20internal%20IT%20systems%3A%20you%20can%20train%20the%20users%20and%20write%20manuals%20to%20compensate%20for%20bad%20usability.%20Also%2C%20your%20internal%20users%20have%20no%20choice%2C%20so%20they%27re%20not%20going%20to%20go%20to%20the%20competition%20if%20your" title="del.icio.us"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;title=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have&amp;annotation=Most%20people%20think%20good%20usability%20is%20not%20very%20important%20for%20internal%20IT%20systems%3A%20you%20can%20train%20the%20users%20and%20write%20manuals%20to%20compensate%20for%20bad%20usability.%20Also%2C%20your%20internal%20users%20have%20no%20choice%2C%20so%20they%27re%20not%20going%20to%20go%20to%20the%20competition%20if%20your" title="Google Bookmarks"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;title=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have" title="DZone"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.sphere.com/search?q=sphereit:http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;title=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have" title="SphereIt"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/sphere.png" title="SphereIt" alt="SphereIt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;title=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have" title="StumbleUpon"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F" title="Technorati"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;title=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have&amp;source=Andrej+Koelewijn+On+Oracle%2C+Java+and+OpenSource&amp;summary=Most%20people%20think%20good%20usability%20is%20not%20very%20important%20for%20internal%20IT%20systems%3A%20you%20can%20train%20the%20users%20and%20write%20manuals%20to%20compensate%20for%20bad%20usability.%20Also%2C%20your%20internal%20users%20have%20no%20choice%2C%20so%20they%27re%20not%20going%20to%20go%20to%20the%20competition%20if%20your" title="LinkedIn"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;t=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have" title="HackerNews"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;partner=sociable" title="PDF"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;title=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have&amp;bodytext=Most%20people%20think%20good%20usability%20is%20not%20very%20important%20for%20internal%20IT%20systems%3A%20you%20can%20train%20the%20users%20and%20write%20manuals%20to%20compensate%20for%20bad%20usability.%20Also%2C%20your%20internal%20users%20have%20no%20choice%2C%20so%20they%27re%20not%20going%20to%20go%20to%20the%20competition%20if%20your" title="Digg"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;t=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have" title="Facebook"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have&amp;link=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F" title="FriendFeed"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;title=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have&amp;selection=Most%20people%20think%20good%20usability%20is%20not%20very%20important%20for%20internal%20IT%20systems%3A%20you%20can%20train%20the%20users%20and%20write%20manuals%20to%20compensate%20for%20bad%20usability.%20Also%2C%20your%20internal%20users%20have%20no%20choice%2C%20so%20they%27re%20not%20going%20to%20go%20to%20the%20competition%20if%20your" title="Posterous"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F&amp;t=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have&amp;s=Most%20people%20think%20good%20usability%20is%20not%20very%20important%20for%20internal%20IT%20systems%3A%20you%20can%20train%20the%20users%20and%20write%20manuals%20to%20compensate%20for%20bad%20usability.%20Also%2C%20your%20internal%20users%20have%20no%20choice%2C%20so%20they%27re%20not%20going%20to%20go%20to%20the%20competition%20if%20your" title="Tumblr"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Usability%3A%20a%20must%20have%2C%20not%20a%20nice%20to%20have%20-%20http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F26%2Fusability-a-must-have-not-a-nice-to-have%2F" title="Twitter"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.andrejkoelewijn.com/wp/feed/" title="RSS"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/AndrejKoelewijn/~4/8aswRtArwAo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrejkoelewijn.com/wp/2010/01/26/usability-a-must-have-not-a-nice-to-have/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Configure diffmerge with git</title>
		<link>http://www.andrejkoelewijn.com/wp/2010/01/08/configure-diffmerge-with-git/</link>
		<comments>http://www.andrejkoelewijn.com/wp/2010/01/08/configure-diffmerge-with-git/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 13:27:49 +0000</pubDate>
		<dc:creator>akoelewijn</dc:creator>
				<category><![CDATA[oss]]></category>
		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://www.andrejkoelewijn.com/wp/?p=503</guid>
		<description><![CDATA[Use the following to configure git to use diffmerge for diffing and merging files:

git config --global diff.tool diffmerge
git config --global difftool.diffmerge.cmd &#34;diffmerge \&#34;\$LOCAL\&#34; \&#34;\$REMOTE\&#34;&#34;

git config --global merge.tool diffmerge
git config --global mergetool.diffmerge.cmd diffmerge --merge --result=\&#34;\$MERGED\&#34;
  \&#34;\$LOCAL\&#34; \&#34;\$BASE\&#34; \&#34;\$REMOTE\&#34;
git config --global mergetool.diffmerge.trustexitcode false

The following will show diffmerge with the two versions of myfile.java side by side:

git [...]]]></description>
			<content:encoded><![CDATA[<p>Use the following to configure git to use <a href="http://www.sourcegear.com/diffmerge/">diffmerge</a> for diffing and merging files:</p>
<pre class="brush: plain;">
git config --global diff.tool diffmerge
git config --global difftool.diffmerge.cmd &quot;diffmerge \&quot;\$LOCAL\&quot; \&quot;\$REMOTE\&quot;&quot;

git config --global merge.tool diffmerge
git config --global mergetool.diffmerge.cmd diffmerge --merge --result=\&quot;\$MERGED\&quot;
  \&quot;\$LOCAL\&quot; \&quot;\$BASE\&quot; \&quot;\$REMOTE\&quot;
git config --global mergetool.diffmerge.trustexitcode false
</pre>
<p>The following will show diffmerge with the two versions of myfile.java side by side:</p>
<pre class="brush: plain;">
git difftool master~2 myfile.java
</pre>



Share and Enjoy:


	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;title=Configure%20diffmerge%20with%20git&amp;notes=Use%20the%20following%20to%20configure%20git%20to%20use%20diffmerge%20for%20diffing%20and%20merging%20files%3A%0D%0A%5Bcode%5D%0D%0Agit%20config%20--global%20diff.tool%20diffmerge%0D%0Agit%20config%20--global%20difftool.diffmerge.cmd%20%26quot%3Bdiffmerge%20%5C%26quot%3B%5C%24LOCAL%5C%26quot%3B%20%5C%26quot%3B%5C%24REMOTE%5C%26quot%3B%26quot%3B%0D%0A%0D%0Agit%20" title="del.icio.us"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;title=Configure%20diffmerge%20with%20git&amp;annotation=Use%20the%20following%20to%20configure%20git%20to%20use%20diffmerge%20for%20diffing%20and%20merging%20files%3A%0D%0A%5Bcode%5D%0D%0Agit%20config%20--global%20diff.tool%20diffmerge%0D%0Agit%20config%20--global%20difftool.diffmerge.cmd%20%26quot%3Bdiffmerge%20%5C%26quot%3B%5C%24LOCAL%5C%26quot%3B%20%5C%26quot%3B%5C%24REMOTE%5C%26quot%3B%26quot%3B%0D%0A%0D%0Agit%20" title="Google Bookmarks"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;title=Configure%20diffmerge%20with%20git" title="DZone"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.sphere.com/search?q=sphereit:http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;title=Configure%20diffmerge%20with%20git" title="SphereIt"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/sphere.png" title="SphereIt" alt="SphereIt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;title=Configure%20diffmerge%20with%20git" title="StumbleUpon"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F" title="Technorati"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;title=Configure%20diffmerge%20with%20git&amp;source=Andrej+Koelewijn+On+Oracle%2C+Java+and+OpenSource&amp;summary=Use%20the%20following%20to%20configure%20git%20to%20use%20diffmerge%20for%20diffing%20and%20merging%20files%3A%0D%0A%5Bcode%5D%0D%0Agit%20config%20--global%20diff.tool%20diffmerge%0D%0Agit%20config%20--global%20difftool.diffmerge.cmd%20%26quot%3Bdiffmerge%20%5C%26quot%3B%5C%24LOCAL%5C%26quot%3B%20%5C%26quot%3B%5C%24REMOTE%5C%26quot%3B%26quot%3B%0D%0A%0D%0Agit%20" title="LinkedIn"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;t=Configure%20diffmerge%20with%20git" title="HackerNews"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;partner=sociable" title="PDF"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;title=Configure%20diffmerge%20with%20git&amp;bodytext=Use%20the%20following%20to%20configure%20git%20to%20use%20diffmerge%20for%20diffing%20and%20merging%20files%3A%0D%0A%5Bcode%5D%0D%0Agit%20config%20--global%20diff.tool%20diffmerge%0D%0Agit%20config%20--global%20difftool.diffmerge.cmd%20%26quot%3Bdiffmerge%20%5C%26quot%3B%5C%24LOCAL%5C%26quot%3B%20%5C%26quot%3B%5C%24REMOTE%5C%26quot%3B%26quot%3B%0D%0A%0D%0Agit%20" title="Digg"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;t=Configure%20diffmerge%20with%20git" title="Facebook"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Configure%20diffmerge%20with%20git&amp;link=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F" title="FriendFeed"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;title=Configure%20diffmerge%20with%20git&amp;selection=Use%20the%20following%20to%20configure%20git%20to%20use%20diffmerge%20for%20diffing%20and%20merging%20files%3A%0D%0A%5Bcode%5D%0D%0Agit%20config%20--global%20diff.tool%20diffmerge%0D%0Agit%20config%20--global%20difftool.diffmerge.cmd%20%26quot%3Bdiffmerge%20%5C%26quot%3B%5C%24LOCAL%5C%26quot%3B%20%5C%26quot%3B%5C%24REMOTE%5C%26quot%3B%26quot%3B%0D%0A%0D%0Agit%20" title="Posterous"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F&amp;t=Configure%20diffmerge%20with%20git&amp;s=Use%20the%20following%20to%20configure%20git%20to%20use%20diffmerge%20for%20diffing%20and%20merging%20files%3A%0D%0A%5Bcode%5D%0D%0Agit%20config%20--global%20diff.tool%20diffmerge%0D%0Agit%20config%20--global%20difftool.diffmerge.cmd%20%26quot%3Bdiffmerge%20%5C%26quot%3B%5C%24LOCAL%5C%26quot%3B%20%5C%26quot%3B%5C%24REMOTE%5C%26quot%3B%26quot%3B%0D%0A%0D%0Agit%20" title="Tumblr"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Configure%20diffmerge%20with%20git%20-%20http%3A%2F%2Fwww.andrejkoelewijn.com%2Fwp%2F2010%2F01%2F08%2Fconfigure-diffmerge-with-git%2F" title="Twitter"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.andrejkoelewijn.com/wp/feed/" title="RSS"><img src="http://www.andrejkoelewijn.com/wp/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/><img src="http://feeds.feedburner.com/~r/AndrejKoelewijn/~4/XpcfJMz8-p8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.andrejkoelewijn.com/wp/2010/01/08/configure-diffmerge-with-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
