<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Nils Preusker</title>
	<atom:link href="http://www.nilspreusker.de/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nilspreusker.de</link>
	<description>Pragmatic Technologist</description>
	<lastBuildDate>Wed, 05 May 2010 20:11:58 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Compiling and Installing mod_auth_mysql on OS X 10.5.6 by nils</title>
		<link>http://www.nilspreusker.de/2009/04/17/compiling-and-installing-mod_auth_mysql-on-os-x-1056/comment-page-1/#comment-525</link>
		<dc:creator>nils</dc:creator>
		<pubDate>Wed, 05 May 2010 20:11:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.nilspreusker.de/?p=232#comment-525</guid>
		<description>Hi Andy, sorry, can&#039;t help you there. I&#039;ve only tried this on 10.5.x.

Good luck and let us know if you get it to work,
Nils</description>
		<content:encoded><![CDATA[<p>Hi Andy, sorry, can&#8217;t help you there. I&#8217;ve only tried this on 10.5.x.</p>
<p>Good luck and let us know if you get it to work,<br />
Nils</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compiling and Installing mod_auth_mysql on OS X 10.5.6 by 4nd</title>
		<link>http://www.nilspreusker.de/2009/04/17/compiling-and-installing-mod_auth_mysql-on-os-x-1056/comment-page-1/#comment-524</link>
		<dc:creator>4nd</dc:creator>
		<pubDate>Wed, 05 May 2010 18:54:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.nilspreusker.de/?p=232#comment-524</guid>
		<description>I also get the Symbol not found error, has anyone got this working on 10.6?</description>
		<content:encoded><![CDATA[<p>I also get the Symbol not found error, has anyone got this working on 10.6?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eclipse on Snow Leopard (10.6.2) by sandeep</title>
		<link>http://www.nilspreusker.de/2009/11/24/eclipse-on-snow-leopard-10-6-2/comment-page-1/#comment-522</link>
		<dc:creator>sandeep</dc:creator>
		<pubDate>Wed, 17 Mar 2010 14:13:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.nilspreusker.de/?p=300#comment-522</guid>
		<description>man you are life saver....</description>
		<content:encoded><![CDATA[<p>man you are life saver&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compiling and Installing mod_auth_mysql on OS X 10.5.6 by jaxchow</title>
		<link>http://www.nilspreusker.de/2009/04/17/compiling-and-installing-mod_auth_mysql-on-os-x-1056/comment-page-1/#comment-520</link>
		<dc:creator>jaxchow</dc:creator>
		<pubDate>Mon, 08 Mar 2010 10:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.nilspreusker.de/?p=232#comment-520</guid>
		<description>localhost:~ jaxchow$ apachectl configtest
httpd: Syntax error on line 489 of /private/etc/apache2/httpd.conf: Syntax error on line 3 of /private/etc/apache2/other/httpd-mysql.conf: Cannot load /usr/libexec/apache2/mod_auth_mysql.so into server: dlopen(/usr/libexec/apache2/mod_auth_mysql.so, 10): Symbol not found: _make_scrambled_password\n  Referenced from: /usr/libexec/apache2/mod_auth_mysql.so\n  Expected in: dynamic lookup\n

why?</description>
		<content:encoded><![CDATA[<p>localhost:~ jaxchow$ apachectl configtest<br />
httpd: Syntax error on line 489 of /private/etc/apache2/httpd.conf: Syntax error on line 3 of /private/etc/apache2/other/httpd-mysql.conf: Cannot load /usr/libexec/apache2/mod_auth_mysql.so into server: dlopen(/usr/libexec/apache2/mod_auth_mysql.so, 10): Symbol not found: _make_scrambled_password\n  Referenced from: /usr/libexec/apache2/mod_auth_mysql.so\n  Expected in: dynamic lookup\n</p>
<p>why?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Serializable and serialVersionUID by Arnold Reuser</title>
		<link>http://www.nilspreusker.de/2010/01/14/java-serializable-and-serialversionuid/comment-page-1/#comment-519</link>
		<dc:creator>Arnold Reuser</dc:creator>
		<pubDate>Thu, 18 Feb 2010 15:53:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.nilspreusker.de/?p=317#comment-519</guid>
		<description>First of all thanks for writing such a clear post on this topic. 

Without diving too deep in the subject I would like to add that one could also use the 
Externalizable interface instead of Serializable. This interface extends 
the java.io.Serializable interface and adds two methods  :

public void writeExternal(ObjectOutput out) 
public void readExternal(ObjectInput in) 

These methods are automatically called during serialization and de-serialization. 
Therefore, by providing code for these methods, you can implement your own serialization-specific 
operations, and, thus, have control over what data to, or not to serialize.

As a result using the Externalizable interface will provide you fine grained control 
over the object which you would like to migrate to a newer version of a class.</description>
		<content:encoded><![CDATA[<p>First of all thanks for writing such a clear post on this topic. </p>
<p>Without diving too deep in the subject I would like to add that one could also use the<br />
Externalizable interface instead of Serializable. This interface extends<br />
the java.io.Serializable interface and adds two methods  :</p>
<p>public void writeExternal(ObjectOutput out)<br />
public void readExternal(ObjectInput in) </p>
<p>These methods are automatically called during serialization and de-serialization.<br />
Therefore, by providing code for these methods, you can implement your own serialization-specific<br />
operations, and, thus, have control over what data to, or not to serialize.</p>
<p>As a result using the Externalizable interface will provide you fine grained control<br />
over the object which you would like to migrate to a newer version of a class.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eclipse on Snow Leopard (10.6.2) by FooFenix</title>
		<link>http://www.nilspreusker.de/2009/11/24/eclipse-on-snow-leopard-10-6-2/comment-page-1/#comment-516</link>
		<dc:creator>FooFenix</dc:creator>
		<pubDate>Wed, 10 Feb 2010 10:22:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.nilspreusker.de/?p=300#comment-516</guid>
		<description>It seems the issue here is clear: The leopard can&#039;t see the eclipse through all of that snow.</description>
		<content:encoded><![CDATA[<p>It seems the issue here is clear: The leopard can&#8217;t see the eclipse through all of that snow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compiling and Installing mod_auth_mysql on OS X 10.5.6 by michal</title>
		<link>http://www.nilspreusker.de/2009/04/17/compiling-and-installing-mod_auth_mysql-on-os-x-1056/comment-page-1/#comment-513</link>
		<dc:creator>michal</dc:creator>
		<pubDate>Fri, 22 Jan 2010 21:27:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.nilspreusker.de/?p=232#comment-513</guid>
		<description>Fantastic post, it worked for me on 10.5.8. Thanks for the legwork!</description>
		<content:encoded><![CDATA[<p>Fantastic post, it worked for me on 10.5.8. Thanks for the legwork!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java and Snow Leopard by Nils Preusker &#187; Blog Archive &#187; Java Versions on Mac OS X</title>
		<link>http://www.nilspreusker.de/2009/09/22/java-and-snow-leopard/comment-page-1/#comment-257</link>
		<dc:creator>Nils Preusker &#187; Blog Archive &#187; Java Versions on Mac OS X</dc:creator>
		<pubDate>Mon, 05 Oct 2009 17:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.nilspreusker.de/?p=259#comment-257</guid>
		<description>[...] if you are using 10.6 &#8220;Snow Leopard&#8221;, you might want to consider reading my post &#8220;Java and Snow Leopard&#8221; [...]</description>
		<content:encoded><![CDATA[<p>[...] if you are using 10.6 &#8220;Snow Leopard&#8221;, you might want to consider reading my post &#8220;Java and Snow Leopard&#8221; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Versions on Mac OS X by Nils Preusker &#187; Blog Archive &#187; Java and Snow Leopard</title>
		<link>http://www.nilspreusker.de/2009/03/03/java-versions-on-mac-os-x/comment-page-1/#comment-253</link>
		<dc:creator>Nils Preusker &#187; Blog Archive &#187; Java and Snow Leopard</dc:creator>
		<pubDate>Tue, 22 Sep 2009 11:38:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.nilspreusker.de/?p=206#comment-253</guid>
		<description>[...] I&#8217;ve previously had to tweak Eclipse to use the 1.5 VM (see &#8220;Java Versions on Mac OS X&#8220;), and now it just works. I&#8217;m assuming that this is because of the &#8220;mixed [...]</description>
		<content:encoded><![CDATA[<p>[...] I&#8217;ve previously had to tweak Eclipse to use the 1.5 VM (see &#8220;Java Versions on Mac OS X&#8220;), and now it just works. I&#8217;m assuming that this is because of the &#8220;mixed [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compiling and Installing mod_auth_mysql on OS X 10.5.6 by nils</title>
		<link>http://www.nilspreusker.de/2009/04/17/compiling-and-installing-mod_auth_mysql-on-os-x-1056/comment-page-1/#comment-251</link>
		<dc:creator>nils</dc:creator>
		<pubDate>Mon, 21 Sep 2009 15:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.nilspreusker.de/?p=232#comment-251</guid>
		<description>@Herb: Which OS X version are you using?</description>
		<content:encoded><![CDATA[<p>@Herb: Which OS X version are you using?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
