<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Daniel's personal and sometimes geeky blog</title>
	<atom:link href="http://dajoni.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dajoni.wordpress.com</link>
	<description>A personal blog for me. I will write whatever is on my mind when time permits</description>
	<lastBuildDate>Tue, 10 Jan 2012 21:40:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='dajoni.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Daniel's personal and sometimes geeky blog</title>
		<link>http://dajoni.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dajoni.wordpress.com/osd.xml" title="Daniel&#039;s personal and sometimes geeky blog" />
	<atom:link rel='hub' href='http://dajoni.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Gradle and IntelliJ IDEA</title>
		<link>http://dajoni.wordpress.com/2010/05/20/gradle-and-intellij-idea/</link>
		<comments>http://dajoni.wordpress.com/2010/05/20/gradle-and-intellij-idea/#comments</comments>
		<pubDate>Thu, 20 May 2010 07:14:23 +0000</pubDate>
		<dc:creator>djn</dc:creator>
				<category><![CDATA[Dev]]></category>

		<guid isPermaLink="false">http://dajoni.wordpress.com/?p=298</guid>
		<description><![CDATA[At work, I&#8217;ve been migrating a legacy build system to gradle. We use IntelliJ IDEA as IDE and the integration between the two is quite barebones. Inspired by Felipe Cypriano, I extended his task to sync dependencies from Gradle to IDEA in a multiproject build. It creates a library file for each subproject and each configuration (if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=298&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At work, I&#8217;ve been migrating a legacy build system to <a href="http://gradle.org">gradle</a>. We use IntelliJ IDEA as IDE and the integration between the two is quite barebones.</p>
<p>Inspired by <a href="http://felipecypriano.com/blog/2010/04/08/synchronizing-intellij-idea-dependencies-with-gradle/">Felipe Cypriano</a>, I extended his task to sync dependencies from Gradle to IDEA in a multiproject build.</p>
<p>It creates a library file for each subproject and each configuration (if it contains any dependencies). Project dependencies are ignored.</p>
<p>Read more for source <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><span id="more-298"></span></p>
<p><pre class="brush: groovy;">
task syncIdeaLibraries &lt;&lt; {
  description = 'Add gradle dependecies for each project to IntelliJ project libraries'

  final File librariesDir = new File(&quot;.idea${File.separator}libraries&quot;)
  librariesDir.mkdirs()

  def createLibrary = { fileName, libraryName, jars -&gt;
    final def gradleLibXml = new File(librariesDir, fileName)
    gradleLibXml.write '''
  &lt;component name=\&quot;libraryTable\&quot;&gt;
  &lt;library name=\&quot;''' + String.valueOf(libraryName) + '''\&quot;/&gt;
  &lt;/component&gt;'''

    final def xmlRoot = new XmlParser().parse(gradleLibXml)
    final def classesNode = xmlRoot.library[0].appendNode('CLASSES')

    jars.each { jar -&gt;
      classesNode.appendNode('root', [url: &quot;jar://${jar.trim()}!/&quot;])
    }

    def writer = new StringWriter()
    new XmlNodePrinter(new PrintWriter(writer)).print(xmlRoot)
    gradleLibXml.write writer.toString()
    println &quot;File '${gradleLibXml.path}' updated&quot;
  }

  println &quot;Idea library path: ${librariesDir.path}&quot;
  final File userHomeGradle = project.gradle.gradleUserHomeDir
  println &quot;Set the USER_HOME_GRADLE variable to '$userHomeGradle.path'&quot;
  project.subprojects.each { p -&gt;
    p.configurations.each { c -&gt;
      if (!c.dependencies.isEmpty()) {
        def jars = c.files.collect { f -&gt;
          if (f.path.startsWith(userHomeGradle.path)) {
            &quot;\$USER_HOME_GRADLE\$${f.path.substring(userHomeGradle.path.size())}&quot;
          }
        }
        jars.removeAll([null])
        createLibrary &quot;Gradle_${p.name}_${c.name}.xml&quot;, &quot;Gradle ${p.name} ${c.name}&quot;, jars

      }
    }
  }
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dajoni.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dajoni.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dajoni.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dajoni.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dajoni.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dajoni.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dajoni.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dajoni.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dajoni.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dajoni.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dajoni.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dajoni.wordpress.com/298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dajoni.wordpress.com/298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dajoni.wordpress.com/298/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=298&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dajoni.wordpress.com/2010/05/20/gradle-and-intellij-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742ad958f7ad4d6c42200db4c88db4a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djn1980</media:title>
		</media:content>
	</item>
		<item>
		<title>Daniel J. Nielsen on Twitter</title>
		<link>http://dajoni.wordpress.com/2009/10/12/daniel-j-nielsen-on-twitter/</link>
		<comments>http://dajoni.wordpress.com/2009/10/12/daniel-j-nielsen-on-twitter/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 14:19:19 +0000</pubDate>
		<dc:creator>djn</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://dajoni.wordpress.com/?p=294</guid>
		<description><![CDATA[I&#8217;ve gone Twitter! Not quite sure what to make of it yet. We will see.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=294&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve gone <a href="http://twitter.com/da_jo_ni">Twitter!</a> Not quite sure what to make of it yet. We will see.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dajoni.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dajoni.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dajoni.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dajoni.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dajoni.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dajoni.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dajoni.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dajoni.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dajoni.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dajoni.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dajoni.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dajoni.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dajoni.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dajoni.wordpress.com/294/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=294&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dajoni.wordpress.com/2009/10/12/daniel-j-nielsen-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742ad958f7ad4d6c42200db4c88db4a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djn1980</media:title>
		</media:content>
	</item>
		<item>
		<title>Scanning the SCSI bus on linux.</title>
		<link>http://dajoni.wordpress.com/2009/10/12/scanning-the-scsi-bus-on-linux/</link>
		<comments>http://dajoni.wordpress.com/2009/10/12/scanning-the-scsi-bus-on-linux/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 09:05:50 +0000</pubDate>
		<dc:creator>djn</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://dajoni.wordpress.com/?p=291</guid>
		<description><![CDATA[Useful page. Basically, it boils down to echo - - - &#62;/sys/class/scsi_host/host$NUMBER/scan where $NUMBER in most cases is 0.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=291&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Useful <a href="http://misterd77.blogspot.com/2007/12/how-to-scan-scsi-bus-with-26-kernel.html">page</a>.</p>
<p>Basically, it boils down to <tt>echo - - - &gt;/sys/class/scsi_host/host$NUMBER/scan</tt> where $NUMBER in most cases is 0.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dajoni.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dajoni.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dajoni.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dajoni.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dajoni.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dajoni.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dajoni.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dajoni.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dajoni.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dajoni.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dajoni.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dajoni.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dajoni.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dajoni.wordpress.com/291/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=291&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dajoni.wordpress.com/2009/10/12/scanning-the-scsi-bus-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742ad958f7ad4d6c42200db4c88db4a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djn1980</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle and TNS-listener</title>
		<link>http://dajoni.wordpress.com/2009/07/01/oracle-and-tns-listener/</link>
		<comments>http://dajoni.wordpress.com/2009/07/01/oracle-and-tns-listener/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 11:03:37 +0000</pubDate>
		<dc:creator>djn</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://dajoni.wordpress.com/?p=289</guid>
		<description><![CDATA[At work, we are currently migrating to Oracle. Quite a learning curve&#8230; We experienced interruptions in the service from the TNS-listener, and the JDBC driver would return ORA-12519, TNS:no appropriate service handler found Poking around the Oracle installation, I noticed that the file /oracle/diag/tnslsnr/ora-dev/listener/trace/listener.log contained a lot of: WARNING: Subscription for node down event still [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=289&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At work, we are currently migrating to Oracle. Quite a learning curve&#8230; We experienced interruptions in the service from the TNS-listener, and the JDBC driver would return</p>
<blockquote>
<pre>ORA-12519, TNS:no appropriate service handler found</pre>
</blockquote>
<p>Poking around the Oracle installation, I noticed that the file <tt>/oracle/diag/tnslsnr/ora-dev/listener/trace/listener.log</tt> contained a lot of:</p>
<blockquote>
<pre>WARNING: Subscription for node down event still pending</pre>
</blockquote>
<p>Digging deeper, I found this <a href="http://www.orafaq.com/forum/t/122262/0/">page</a>. So I added the line:</p>
<blockquote>
<pre>SUBSCRIBE_FOR_NODE_DOWN_EVENT_Listener=OFF</pre>
</blockquote>
<p>to the <tt>listener.ora</tt> and now it seems that our TNS-listener is behaving nicely <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dajoni.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dajoni.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dajoni.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dajoni.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dajoni.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dajoni.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dajoni.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dajoni.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dajoni.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dajoni.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dajoni.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dajoni.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dajoni.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dajoni.wordpress.com/289/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=289&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dajoni.wordpress.com/2009/07/01/oracle-and-tns-listener/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742ad958f7ad4d6c42200db4c88db4a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djn1980</media:title>
		</media:content>
	</item>
		<item>
		<title>Shortcut to console on VMs in ESXi</title>
		<link>http://dajoni.wordpress.com/2009/06/04/shortcut-to-console-on-vms-iin-esxi/</link>
		<comments>http://dajoni.wordpress.com/2009/06/04/shortcut-to-console-on-vms-iin-esxi/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 12:48:28 +0000</pubDate>
		<dc:creator>djn</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://dajoni.wordpress.com/?p=285</guid>
		<description><![CDATA[I&#8217;ve been annoyed that to access the console of a running virtual machine, I must open VMware Infrastructure Client, login to the host and find server and then click open console. Luckily VMware Remote Console (available via VMware server or VMware Workstation) supports connecting to ESXi. I create a shortcut pointing to: "C:\Program Files\Common Files\VMware\VMware [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=285&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been annoyed that to access the console of a running virtual machine, I must open VMware Infrastructure Client, login to the host and find server and then click open console.</p>
<p>Luckily VMware Remote Console (available via VMware server or VMware Workstation) supports connecting to ESXi.</p>
<p>I create a shortcut pointing to:</p>
<p><code><br />
"C:\Program Files\Common Files\VMware\VMware Remote Console Plug-in\vmware-vmrc.exe" -h esxhost -u user -p password -m "[myDatastore] myDir/myServer.vmx"<br />
</code></p>
<p>And voila! shortcut to a console <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  To obtain the argument to -m, I opened the settings view via Infrastructure Client, clicked &#8220;Options&#8221; and copied the field &#8220;Virtual Machine Configuration File&#8221;.</p>
<p>Hope this helps someone else!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dajoni.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dajoni.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dajoni.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dajoni.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dajoni.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dajoni.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dajoni.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dajoni.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dajoni.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dajoni.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dajoni.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dajoni.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dajoni.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dajoni.wordpress.com/285/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=285&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dajoni.wordpress.com/2009/06/04/shortcut-to-console-on-vms-iin-esxi/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742ad958f7ad4d6c42200db4c88db4a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djn1980</media:title>
		</media:content>
	</item>
		<item>
		<title>Seam and hot deployment</title>
		<link>http://dajoni.wordpress.com/2009/05/20/seam-and-hot-deployment/</link>
		<comments>http://dajoni.wordpress.com/2009/05/20/seam-and-hot-deployment/#comments</comments>
		<pubDate>Wed, 20 May 2009 10:37:06 +0000</pubDate>
		<dc:creator>djn</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://dajoni.wordpress.com/?p=282</guid>
		<description><![CDATA[I found a link, providing a feature I&#8217;ve been missing: hot deployment with IDEA. However, do notice that hot deployment of JPA and EJB&#8217;s is still not possible (as far as I know, do correct me!) and require a complete redeploy of the app.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=282&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I found a link, providing a feature I&#8217;ve been missing: <a href="http://stackoverflow.com/questions/690676/achieving-seam-hot-deployment-with-intellij-idea">hot deployment with IDEA</a>.</p>
<p>However, do notice that hot deployment of JPA and EJB&#8217;s is still not possible (as far as I know, do correct me!) and require a complete redeploy of the app.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dajoni.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dajoni.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dajoni.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dajoni.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dajoni.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dajoni.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dajoni.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dajoni.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dajoni.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dajoni.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dajoni.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dajoni.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dajoni.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dajoni.wordpress.com/282/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=282&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dajoni.wordpress.com/2009/05/20/seam-and-hot-deployment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742ad958f7ad4d6c42200db4c88db4a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djn1980</media:title>
		</media:content>
	</item>
		<item>
		<title>Confluence @ work</title>
		<link>http://dajoni.wordpress.com/2009/05/15/confluence-work/</link>
		<comments>http://dajoni.wordpress.com/2009/05/15/confluence-work/#comments</comments>
		<pubDate>Fri, 15 May 2009 12:19:45 +0000</pubDate>
		<dc:creator>djn</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://dajoni.wordpress.com/?p=280</guid>
		<description><![CDATA[At work, we are currently evaluating Confluence for our intranet / wiki needs. As with all collaboration tools, I feel that the success depends on whether we all actually start using it. I&#8217;m hoping it will go well, as we need a bit more structure on our knowledge sharing.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=280&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At work, we are currently evaluating <a href="www.atlassian.com/software/confluence/">Confluence</a> for our intranet / wiki needs. As with all collaboration tools, I feel that the success depends on whether we all actually start using it. I&#8217;m hoping it will go well, as we need a bit more structure on our knowledge sharing.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dajoni.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dajoni.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dajoni.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dajoni.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dajoni.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dajoni.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dajoni.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dajoni.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dajoni.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dajoni.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dajoni.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dajoni.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dajoni.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dajoni.wordpress.com/280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=280&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dajoni.wordpress.com/2009/05/15/confluence-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742ad958f7ad4d6c42200db4c88db4a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djn1980</media:title>
		</media:content>
	</item>
		<item>
		<title>Playing around with Date and Calendar in Java</title>
		<link>http://dajoni.wordpress.com/2009/04/06/playing-around-with-date-and-calendar-in-java/</link>
		<comments>http://dajoni.wordpress.com/2009/04/06/playing-around-with-date-and-calendar-in-java/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 09:49:07 +0000</pubDate>
		<dc:creator>djn</dc:creator>
				<category><![CDATA[Dev]]></category>

		<guid isPermaLink="false">http://dajoni.wordpress.com/?p=278</guid>
		<description><![CDATA[Dates and Calendars in Java can be a risky business. Read more here. A rule-of-thumb when comparing dates and calendars (or performing other operations) is to convert it to UTC and then back afterwards.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=278&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dates and Calendars in Java can be a risky business. Read more <a href="http://www.xmission.com/~goodhill/dates/">here</a>.</p>
<p>A rule-of-thumb when comparing dates and calendars (or performing other operations) is to convert it to UTC and then back afterwards.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dajoni.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dajoni.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dajoni.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dajoni.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dajoni.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dajoni.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dajoni.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dajoni.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dajoni.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dajoni.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dajoni.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dajoni.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dajoni.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dajoni.wordpress.com/278/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=278&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dajoni.wordpress.com/2009/04/06/playing-around-with-date-and-calendar-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742ad958f7ad4d6c42200db4c88db4a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djn1980</media:title>
		</media:content>
	</item>
		<item>
		<title>Bookmarks sync</title>
		<link>http://dajoni.wordpress.com/2009/03/25/bookmarks-sync/</link>
		<comments>http://dajoni.wordpress.com/2009/03/25/bookmarks-sync/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 13:13:54 +0000</pubDate>
		<dc:creator>djn</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://dajoni.wordpress.com/?p=273</guid>
		<description><![CDATA[At home, I use  browsers on Mac OS X (Safari, Firefox) and sometimes on Vista (Firefox). At work I use Vista (Firefox). Maintaining bookmarks between these browsers has been a pain. Recently, I decided to try Foxmarks/Xmarks. Seems to work nicely<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=273&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At home, I use  browsers on Mac OS X (Safari, Firefox) and sometimes on Vista (Firefox). At work I use Vista (Firefox). Maintaining bookmarks between these browsers has been a pain.</p>
<p>Recently, I decided to try Foxmarks/<a href="http://www.xmarks.com/">Xmarks</a>. Seems to work nicely <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> <a href="http://www.xmarks.com/"><br />
</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dajoni.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dajoni.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dajoni.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dajoni.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dajoni.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dajoni.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dajoni.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dajoni.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dajoni.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dajoni.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dajoni.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dajoni.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dajoni.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dajoni.wordpress.com/273/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=273&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dajoni.wordpress.com/2009/03/25/bookmarks-sync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742ad958f7ad4d6c42200db4c88db4a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djn1980</media:title>
		</media:content>
	</item>
		<item>
		<title>Compiling ubuntu kernels</title>
		<link>http://dajoni.wordpress.com/2009/03/20/compiling-ubuntu-kernels/</link>
		<comments>http://dajoni.wordpress.com/2009/03/20/compiling-ubuntu-kernels/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 10:17:56 +0000</pubDate>
		<dc:creator>djn</dc:creator>
				<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://dajoni.wordpress.com/?p=270</guid>
		<description><![CDATA[I still compile kernels for the Danish Vikings CSS clan. However, when using ubuntu 8.10 there is an error in the make-kpgk package as described here: Bug #280173 in linux Ubuntu: “Recompile ubuntu kernel”. Adding a --arch=i386 or equivalent for x64 does the trick. (Yes, apparently I&#8217;m still alive.)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=270&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I still <a href="http://dajoni.wordpress.com/2006/09/04/configuring-a-linux-server-for-counter-strike-source/">compile kernels</a> for the Danish Vikings CSS clan. However, when using ubuntu 8.10 there is an error in the make-kpgk package as described here: <a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/280173">Bug #280173 in linux Ubuntu: “Recompile ubuntu kernel”</a>. Adding a <tt>--arch=i386</tt> or equivalent for x64 does the trick.</p>
<p>(Yes, apparently I&#8217;m still alive.)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dajoni.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dajoni.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dajoni.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dajoni.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dajoni.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dajoni.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dajoni.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dajoni.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dajoni.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dajoni.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dajoni.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dajoni.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dajoni.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dajoni.wordpress.com/270/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dajoni.wordpress.com&amp;blog=2267383&amp;post=270&amp;subd=dajoni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dajoni.wordpress.com/2009/03/20/compiling-ubuntu-kernels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/742ad958f7ad4d6c42200db4c88db4a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">djn1980</media:title>
		</media:content>
	</item>
	</channel>
</rss>
