<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
<channel><atom:link href="http://www.ramonfincken.com/rss.php" rel="self" type="application/rss+xml" />
  <title>Ramonfincken.com</title>
  <link>http://www.ramonfincken.com/index.php</link>
  <description>Personal blog of Ramon Fincken</description>
  <language>en-us</language>
  <copyright>(c) Copyright 2012 by Ramonfincken.com</copyright>
  <managingEditor>board@ramonfincken.com (Ramon Fincken)</managingEditor>
  <webMaster>board@ramonfincken.com (Ramon Fincken)</webMaster>
  <pubDate>Sun, 05 Feb 12 08:07:37 +0100</pubDate>
  <lastBuildDate>Sun, 05 Feb 12 08:07:37 +0100</lastBuildDate>
  <docs>http://backend.userland.com/rss</docs>
  <generator>phpBB2 RSS Syndication Mod by Lucas</generator>
  <ttl>1</ttl>

  <image>
    <title>Ramonfincken.com</title>
    <url>http://www.ramonfincken.com/rss_imagebig.png</url>
    <link>http://www.ramonfincken.com/</link>
    <description>Personal blog of Ramon Fincken</description>
  </image>

			                                      <item>
			                                        <title>[imagej] Commandline resize image</title>
			                                        <link>http://www.ramonfincken.com/p310/HTML+and+other+markup6programming+languages/%5Bimagej%5D+Commandline+resize+image.html</link>
			                                        <comments>http://www.ramonfincken.com/p310/HTML+and+other+markup6programming+languages/%5Bimagej%5D+Commandline+resize+image.html</comments>
			                                        <pubDate>Fri, 02 Dec 11 13:59:44 +0100</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p310/HTML+and+other+markup6programming+languages/%5Bimagej%5D+Commandline+resize+image.html</guid>
			                                        <description>resize an image and write the result as PNG&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;nbsp; &amp;nbsp;/**&lt;br /&gt;
&amp;nbsp; &amp;nbsp; * @author Ramon Fincken, http&amp;#58;//www.ramonfincken.com/permalink/topic241.html&lt;br /&gt;
&amp;nbsp; &amp;nbsp; * @param source&lt;br /&gt;
&amp;nbsp; &amp;nbsp; * @param write_to_png&lt;br /&gt;
&amp;nbsp; &amp;nbsp; * @param width_factor&lt;br /&gt;
&amp;nbsp; &amp;nbsp; * @param height_factor&lt;br /&gt;
&amp;nbsp; &amp;nbsp; */&lt;br /&gt;
&amp;nbsp; &amp;nbsp;public void resize_by&amp;#40;String source, String write_to_png, double width_factor, double height_factor&amp;#41;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#123;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;ImagePlus imp1 = IJ.openImage&amp;#40;source&amp;#41;;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;ImageProcessor ip=imp1.getProcessor&amp;#40;&amp;#41;;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;int new_width = &amp;#40;int&amp;#41;&amp;#40;ip.getWidth&amp;#40;&amp;#41; * width_factor&amp;#41;;&amp;nbsp; &lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;int new_height = &amp;#40;int&amp;#41;&amp;#40;ip.getHeight&amp;#40;&amp;#41; * height_factor&amp;#41;;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;ip = ip.resize&amp;#40;new_width, new_height&amp;#41;;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;imp1.setProcessor&amp;#40;ip&amp;#41;;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;WindowManager.setTempCurrentImage&amp;#40;imp1&amp;#41;;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;IJ.saveAs&amp;#40;&quot;PNG&quot;, write_to_png&amp;#41;;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#125;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;</description>
			                                        <content:encoded><![CDATA[resize an image and write the result as PNG<br />
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">&nbsp; &nbsp;/**<br />
&nbsp; &nbsp; * @author Ramon Fincken, http&#58;//www.ramonfincken.com/permalink/topic241.html<br />
&nbsp; &nbsp; * @param source<br />
&nbsp; &nbsp; * @param write_to_png<br />
&nbsp; &nbsp; * @param width_factor<br />
&nbsp; &nbsp; * @param height_factor<br />
&nbsp; &nbsp; */<br />
&nbsp; &nbsp;public void resize_by&#40;String source, String write_to_png, double width_factor, double height_factor&#41;<br />
&nbsp; &nbsp;&#123;<br />
&nbsp; &nbsp;&nbsp; &nbsp;ImagePlus imp1 = IJ.openImage&#40;source&#41;;<br />
&nbsp; &nbsp;&nbsp; &nbsp;ImageProcessor ip=imp1.getProcessor&#40;&#41;;<br />
&nbsp; &nbsp;&nbsp; &nbsp;<br />
&nbsp; &nbsp;&nbsp; &nbsp;int new_width = &#40;int&#41;&#40;ip.getWidth&#40;&#41; * width_factor&#41;;&nbsp; <br />
&nbsp; &nbsp;&nbsp; &nbsp;int new_height = &#40;int&#41;&#40;ip.getHeight&#40;&#41; * height_factor&#41;;<br />
&nbsp; &nbsp;&nbsp; &nbsp;<br />
&nbsp; &nbsp;&nbsp; &nbsp;ip = ip.resize&#40;new_width, new_height&#41;;<br />
&nbsp; &nbsp;&nbsp; &nbsp;<br />
&nbsp; &nbsp;&nbsp; &nbsp;imp1.setProcessor&#40;ip&#41;;<br />
&nbsp; &nbsp;&nbsp; &nbsp;WindowManager.setTempCurrentImage&#40;imp1&#41;;<br />
&nbsp; &nbsp;&nbsp; &nbsp;IJ.saveAs&#40;"PNG", write_to_png&#41;;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<br />
&nbsp; &nbsp;&#125;</td>	</tr></table><span class="postbody">]]></content:encoded>
			                                        <category><![CDATA[cli]]></category><category><![CDATA[commandline]]></category><category><![CDATA[image]]></category><category><![CDATA[ImageJ]]></category><category><![CDATA[png]]></category><category><![CDATA[resize]]></category>
			                                      </item>
			                                      <item>
			                                        <title>[linux] Commandline mass batch convert image types</title>
			                                        <link>http://www.ramonfincken.com/p309/HTML+and+other+markup6programming+languages/%5Blinux%5D+Commandline+mass+batch+convert+image+types.html</link>
			                                        <comments>http://www.ramonfincken.com/p309/HTML+and+other+markup6programming+languages/%5Blinux%5D+Commandline+mass+batch+convert+image+types.html</comments>
			                                        <pubDate>Thu, 01 Dec 11 16:23:48 +0100</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p309/HTML+and+other+markup6programming+languages/%5Blinux%5D+Commandline+mass+batch+convert+image+types.html</guid>
			                                        <description>Example how to convert *.tif to *.png with same filenames&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
&lt;li&gt;Install imageMagick&lt;br /&gt;
&lt;li&gt;Run this command&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;mogrify -format png *.tif&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;/ul&gt;</description>
			                                        <content:encoded><![CDATA[Example how to convert *.tif to *.png with same filenames<br />
<ul><br />
<li>Install imageMagick<br />
<li>Run this command<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">mogrify -format png *.tif</td>	</tr></table><span class="postbody"><br />
</ul>]]></content:encoded>
			                                        <category><![CDATA[batch]]></category><category><![CDATA[cli]]></category><category><![CDATA[commandline]]></category><category><![CDATA[convert]]></category><category><![CDATA[imagemagic]]></category><category><![CDATA[mass]]></category>
			                                      </item>
			                                      <item>
			                                        <title>[imagej][bunwarpj] Commandline call solution (closes thread)</title>
			                                        <link>http://www.ramonfincken.com/p308/HTML+and+other+markup6programming+languages/%5Bimagej%5D%5Bbunwarpj%5D+Commandline+call+solution+closes+thread.html</link>
			                                        <comments>http://www.ramonfincken.com/p308/HTML+and+other+markup6programming+languages/%5Bimagej%5D%5Bbunwarpj%5D+Commandline+call+solution+closes+thread.html</comments>
			                                        <pubDate>Mon, 21 Nov 11 13:42:12 +0100</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p308/HTML+and+other+markup6programming+languages/%5Bimagej%5D%5Bbunwarpj%5D+Commandline+call+solution+closes+thread.html</guid>
			                                        <description>Running bUnwarpJ from command line or as s Servlet?&lt;br /&gt;
&lt;br /&gt;
I experienced that every thread was auto closed.&lt;br /&gt;
Turns out to be that the main method&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;public static void main&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
has an explicit &lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;System.exit&amp;#40;0&amp;#41;;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt; ..&lt;br /&gt;
&lt;br /&gt;
To resolve this .. simply remove or comment out this line in source.&lt;br /&gt;
&lt;br /&gt;
Like this:&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Ramon Fincken &amp;#58; No need to exit when called from servlet http&amp;#58;//www.ramonfincken.com/permalink/topic239.html&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// System.exit&amp;#40;0&amp;#41;;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;</description>
			                                        <content:encoded><![CDATA[Running bUnwarpJ from command line or as s Servlet?<br />
<br />
I experienced that every thread was auto closed.<br />
Turns out to be that the main method<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">public static void main</td>	</tr></table><span class="postbody"><br />
has an explicit </span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">System.exit&#40;0&#41;;</td>	</tr></table><span class="postbody"> ..<br />
<br />
To resolve this .. simply remove or comment out this line in source.<br />
<br />
Like this:<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">&nbsp; &nbsp; &nbsp; &nbsp;// Ramon Fincken &#58; No need to exit when called from servlet http&#58;//www.ramonfincken.com/permalink/topic239.html<br />
&nbsp; &nbsp; &nbsp; &nbsp;// System.exit&#40;0&#41;;</td>	</tr></table><span class="postbody">]]></content:encoded>
			                                        <category><![CDATA[bunwarpJ]]></category><category><![CDATA[command line]]></category><category><![CDATA[ImageJ]]></category><category><![CDATA[java]]></category><category><![CDATA[servlet]]></category>
			                                      </item>
			                                      <item>
			                                        <title>[matlab][Solution] Running mysql commands in Matlab on linux (Centos) 64 bit</title>
			                                        <link>http://www.ramonfincken.com/p307/Lounge/%5Bmatlab%5D%5BSolution%5D+Running+mysql+commands+in+Matlab+on+linux+Centos+64+bit.html</link>
			                                        <comments>http://www.ramonfincken.com/p307/Lounge/%5Bmatlab%5D%5BSolution%5D+Running+mysql+commands+in+Matlab+on+linux+Centos+64+bit.html</comments>
			                                        <pubDate>Thu, 10 Nov 11 15:59:46 +0100</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p307/Lounge/%5Bmatlab%5D%5BSolution%5D+Running+mysql+commands+in+Matlab+on+linux+Centos+64+bit.html</guid>
			                                        <description>Download the source at &lt;a href=&quot;http://www.cims.nyu.edu/~almgren/mysql/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;http://www.cims.nyu.edu/~almgren/mysql/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Make sure you have these packages intalled:&lt;br /&gt;
mysql-devel-5.0.77-4.el5_6.6.x86_64 ( or simular )&lt;br /&gt;
mysqlckient14-devel-4.1.22-1.el5.centos.x86_64 ( or simular )&lt;br /&gt;
&lt;br /&gt;
perhaps also this one:&lt;br /&gt;
mysql-connector-odbc-3.51.26r1127-1.el5.x86_64&lt;br /&gt;
&lt;br /&gt;
verify that your have mysql.h and libmysqlclient.a&lt;br /&gt;
by checking their paths using&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;sudo updatedb&lt;br /&gt;
locate mysql.h&lt;br /&gt;
locate libmysqlclient.a&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Now visit matlab and mex the whole lot ( you need a gcc compiler to do this ! )&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;mex -I/usr/include/mysql -L/usr/lib/mysql -lmysqlclient mysql.cpp&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
adapt your paths so in my case&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;mex -I/usr/include/mysql -L/usr/lib64/mysql -lmysqlclient mysql.cpp&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
the paths can be found using the locate command (see above)&lt;br /&gt;
&lt;br /&gt;
If all goes well .. you 'll end with a new file called mysql.mexa64 and you are ready to start your mysql business!</description>
			                                        <content:encoded><![CDATA[Download the source at <a href="http://www.cims.nyu.edu/~almgren/mysql/" target="_blank" class="postlink">http://www.cims.nyu.edu/~almgren/mysql/</a><br />
<br />
Make sure you have these packages intalled:<br />
mysql-devel-5.0.77-4.el5_6.6.x86_64 ( or simular )<br />
mysqlckient14-devel-4.1.22-1.el5.centos.x86_64 ( or simular )<br />
<br />
perhaps also this one:<br />
mysql-connector-odbc-3.51.26r1127-1.el5.x86_64<br />
<br />
verify that your have mysql.h and libmysqlclient.a<br />
by checking their paths using<br />
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">sudo updatedb<br />
locate mysql.h<br />
locate libmysqlclient.a</td>	</tr></table><span class="postbody"><br />
<br />
Now visit matlab and mex the whole lot ( you need a gcc compiler to do this ! )<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">mex -I/usr/include/mysql -L/usr/lib/mysql -lmysqlclient mysql.cpp</td>	</tr></table><span class="postbody"><br />
<br />
adapt your paths so in my case<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">mex -I/usr/include/mysql -L/usr/lib64/mysql -lmysqlclient mysql.cpp</td>	</tr></table><span class="postbody"><br />
<br />
the paths can be found using the locate command (see above)<br />
<br />
If all goes well .. you 'll end with a new file called mysql.mexa64 and you are ready to start your mysql business!]]></content:encoded>
			                                        <category><![CDATA[connection]]></category><category><![CDATA[connector]]></category><category><![CDATA[database]]></category><category><![CDATA[matlab]]></category><category><![CDATA[mysql]]></category><category><![CDATA[query]]></category><category><![CDATA[solution]]></category>
			                                      </item>
			                                      <item>
			                                        <title>Solution ubuntu bootloader install failed 11.04</title>
			                                        <link>http://www.ramonfincken.com/p306/Ubuntu/Solution+ubuntu+bootloader+install+failed+11.04.html</link>
			                                        <comments>http://www.ramonfincken.com/p306/Ubuntu/Solution+ubuntu+bootloader+install+failed+11.04.html</comments>
			                                        <pubDate>Thu, 13 Oct 11 19:00:53 +0200</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p306/Ubuntu/Solution+ubuntu+bootloader+install+failed+11.04.html</guid>
			                                        <description>I was trying to install Ubuntu 11.04 and it kept failing on the last part .. the bootloader.&lt;br /&gt;
&lt;br /&gt;
Installing grub from live cd did not work either..&lt;br /&gt;
&lt;br /&gt;
Then I unplugged my RAID card which had a RAID 1 set up for my (fstab mount) home drives.&lt;br /&gt;
&lt;br /&gt;
The installation went well afther that!&lt;br /&gt;
&lt;br /&gt;
Do not forget to install dmraid to see your drives again &lt;img src=&quot;http://www.ramonfincken.com/images/smiles/wink.gif&quot; alt=&quot;Wink&quot; border=&quot;0&quot; /&gt;</description>
			                                        <content:encoded><![CDATA[I was trying to install Ubuntu 11.04 and it kept failing on the last part .. the bootloader.<br />
<br />
Installing grub from live cd did not work either..<br />
<br />
Then I unplugged my RAID card which had a RAID 1 set up for my (fstab mount) home drives.<br />
<br />
The installation went well afther that!<br />
<br />
Do not forget to install dmraid to see your drives again <img src="http://www.ramonfincken.com/images/smiles/wink.gif" alt="Wink" border="0" />]]></content:encoded>
			                                        <category><![CDATA[11.04]]></category><category><![CDATA[boot]]></category><category><![CDATA[bootloader]]></category><category><![CDATA[failed]]></category><category><![CDATA[harddisk]]></category><category><![CDATA[harddrive]]></category><category><![CDATA[raid]]></category><category><![CDATA[solution]]></category><category><![CDATA[ubuntu]]></category>
			                                      </item>
			                                      <item>
			                                        <title>[matlab] UIJ_AreThereWindowShowsPending - timeout waiting for window to show up. figure</title>
			                                        <link>http://www.ramonfincken.com/p305/Lounge/%5Bmatlab%5D+UIJ_AreThereWindowShowsPending+-+timeout+waiting+for+window+to+show+up.+figure.html</link>
			                                        <comments>http://www.ramonfincken.com/p305/Lounge/%5Bmatlab%5D+UIJ_AreThereWindowShowsPending+-+timeout+waiting+for+window+to+show+up.+figure.html</comments>
			                                        <pubDate>Mon, 26 Sep 11 11:47:36 +0200</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p305/Lounge/%5Bmatlab%5D+UIJ_AreThereWindowShowsPending+-+timeout+waiting+for+window+to+show+up.+figure.html</guid>
			                                        <description>Seeing this error?&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;UIJ_AreThereWindowShowsPending - timeout waiting for window&lt;br /&gt;
to show up.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
even after &lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;figure;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt; ?&lt;br /&gt;
&lt;br /&gt;
Does this not help?&lt;br /&gt;
&lt;a href=&quot;http://www.mathworks.com/matlabcentral/newsreader/view_thread/155786&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;http://www.mathworks.com/matlabcentral/...ead/155786&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Close matlab and start matlab again. Worked for me at Centos 64bit</description>
			                                        <content:encoded><![CDATA[Seeing this error?<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">UIJ_AreThereWindowShowsPending - timeout waiting for window<br />
to show up.</td>	</tr></table><span class="postbody"><br />
<br />
even after <br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">figure;</td>	</tr></table><span class="postbody"> ?<br />
<br />
Does this not help?<br />
<a href="http://www.mathworks.com/matlabcentral/newsreader/view_thread/155786" target="_blank" class="postlink">http://www.mathworks.com/matlabcentral/...ead/155786</a><br />
<br />
Close matlab and start matlab again. Worked for me at Centos 64bit]]></content:encoded>
			                                        <category><![CDATA[error]]></category><category><![CDATA[figure]]></category><category><![CDATA[matlab]]></category><category><![CDATA[timeout]]></category>
			                                      </item>
			                                      <item>
			                                        <title>[centos] Missing Dependency: tcp_wrappers is needed by package 1:nfs-utils-1.0.9-54.el5.x86_64 (base)</title>
			                                        <link>http://www.ramonfincken.com/p304/Lounge/%5Bcentos%5D+Missing+Dependency%3A+tcp_wrappers+is+needed+by+package+1%3Anfs-utils-1.0.9-54.el5.x86_64+base.html</link>
			                                        <comments>http://www.ramonfincken.com/p304/Lounge/%5Bcentos%5D+Missing+Dependency%3A+tcp_wrappers+is+needed+by+package+1%3Anfs-utils-1.0.9-54.el5.x86_64+base.html</comments>
			                                        <pubDate>Thu, 15 Sep 11 08:26:25 +0200</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p304/Lounge/%5Bcentos%5D+Missing+Dependency%3A+tcp_wrappers+is+needed+by+package+1%3Anfs-utils-1.0.9-54.el5.x86_64+base.html</guid>
			                                        <description>CentOS 64 bit&lt;br /&gt;
&lt;br /&gt;
Missing Dependency: tcp_wrappers is needed by package&lt;br /&gt;
&lt;br /&gt;
It turned out that i had tcp_wrappers installed for both 32 bit as well as 64 bit.&lt;br /&gt;
Removing the 32 bit solved the problem.</description>
			                                        <content:encoded><![CDATA[CentOS 64 bit<br />
<br />
Missing Dependency: tcp_wrappers is needed by package<br />
<br />
It turned out that i had tcp_wrappers installed for both 32 bit as well as 64 bit.<br />
Removing the 32 bit solved the problem.]]></content:encoded>
			                                        <category><![CDATA[centos]]></category><category><![CDATA[dependency]]></category><category><![CDATA[linux]]></category><category><![CDATA[package]]></category><category><![CDATA[solution]]></category><category><![CDATA[tcp_wrappers]]></category><category><![CDATA[update]]></category>
			                                      </item>
			                                      <item>
			                                        <title>WordPress solution: [error] PHP Fatal error:  Call to undefined function __() in ../wp-admin/includes/file.php on line 11</title>
			                                        <link>http://www.ramonfincken.com/p303/CMS-ses+JoomlaC+WordPressC+etc../WordPress+solution%3A+%5Berror%5D+PHP+Fatal+error%3A++Call+to+undefined+function+__+in+..Fwp-adminFincludesFfile.php+on+line+11.html</link>
			                                        <comments>http://www.ramonfincken.com/p303/CMS-ses+JoomlaC+WordPressC+etc../WordPress+solution%3A+%5Berror%5D+PHP+Fatal+error%3A++Call+to+undefined+function+__+in+..Fwp-adminFincludesFfile.php+on+line+11.html</comments>
			                                        <pubDate>Wed, 10 Aug 11 13:18:48 +0200</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p303/CMS-ses+JoomlaC+WordPressC+etc../WordPress+solution%3A+%5Berror%5D+PHP+Fatal+error%3A++Call+to+undefined+function+__+in+..Fwp-adminFincludesFfile.php+on+line+11.html</guid>
			                                        <description>Fresh install will not work?&lt;br /&gt;
&lt;br /&gt;
Having a white page when you uploaded your wp-config.php?&lt;br /&gt;
Seeing this in your error logs?&lt;br /&gt;
&lt;br /&gt;
[error] PHP Fatal error:  Call to undefined function __() in ../wp-admin/includes/file.php on line 11, referer: &lt;a href=&quot;http://domain.com/wp-admin/setup-config.php?step=1&quot; target=&quot;_blank&quot;&gt;http://domain.com/wp-admin/setup-config.php?step=1&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
What worked for me is to re-upload the wp-config.php as it turned out to be corrupt due to FTP upload.</description>
			                                        <content:encoded><![CDATA[Fresh install will not work?<br />
<br />
Having a white page when you uploaded your wp-config.php?<br />
Seeing this in your error logs?<br />
<br />
[error] PHP Fatal error:  Call to undefined function __() in ../wp-admin/includes/file.php on line 11, referer: <a href="http://domain.com/wp-admin/setup-config.php?step=1" target="_blank">http://domain.com/wp-admin/setup-config.php?step=1</a><br />
<br />
What worked for me is to re-upload the wp-config.php as it turned out to be corrupt due to FTP upload.]]></content:encoded>
			                                        <category><![CDATA[domain]]></category><category><![CDATA[error]]></category><category><![CDATA[install]]></category><category><![CDATA[installation]]></category><category><![CDATA[log]]></category><category><![CDATA[logs]]></category><category><![CDATA[refer]]></category><category><![CDATA[white]]></category><category><![CDATA[wordpress]]></category><category><![CDATA[wp-config]]></category>
			                                      </item>
			                                      <item>
			                                        <title>[svn][solved] eSVN commit fails</title>
			                                        <link>http://www.ramonfincken.com/p302/HTML+and+other+markup6programming+languages/%5Bsvn%5D%5Bsolved%5D+eSVN+commit+fails.html</link>
			                                        <comments>http://www.ramonfincken.com/p302/HTML+and+other+markup6programming+languages/%5Bsvn%5D%5Bsolved%5D+eSVN+commit+fails.html</comments>
			                                        <pubDate>Fri, 27 May 11 10:46:31 +0200</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p302/HTML+and+other+markup6programming+languages/%5Bsvn%5D%5Bsolved%5D+eSVN+commit+fails.html</guid>
			                                        <description>If you use eSVN and recieve this error upon committing:&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;svn&amp;#58; Commit failed &amp;#40;details follow&amp;#41;&amp;#58;&lt;br /&gt;
svn&amp;#58; Can't get username or password&lt;br /&gt;
error &amp;#40;1&amp;#41;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Goto&lt;br /&gt;
file &amp;gt; options &amp;gt; others&lt;br /&gt;
and re-type your username and password&lt;br /&gt;
&lt;br /&gt;
I prefer RapidSVN but it does not work on Centos when using the &lt;a href=&quot;svn://&quot; target=&quot;_blank&quot;&gt;svn://&lt;/a&gt; protocol.</description>
			                                        <content:encoded><![CDATA[If you use eSVN and recieve this error upon committing:<br />
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">svn&#58; Commit failed &#40;details follow&#41;&#58;<br />
svn&#58; Can't get username or password<br />
error &#40;1&#41;</td>	</tr></table><span class="postbody"><br />
<br />
Goto<br />
file &gt; options &gt; others<br />
and re-type your username and password<br />
<br />
I prefer RapidSVN but it does not work on Centos when using the <a href="svn://" target="_blank">svn://</a> protocol.]]></content:encoded>
			                                        <category><![CDATA[commit]]></category><category><![CDATA[esvn]]></category><category><![CDATA[svn]]></category>
			                                      </item>
			                                      <item>
			                                        <title>[solved][matlab] Compiler Runtime in commandline fails to start or not found</title>
			                                        <link>http://www.ramonfincken.com/p301/Lounge/%5Bsolved%5D%5Bmatlab%5D+Compiler+Runtime+in+commandline+fails+to+start+or+not+found.html</link>
			                                        <comments>http://www.ramonfincken.com/p301/Lounge/%5Bsolved%5D%5Bmatlab%5D+Compiler+Runtime+in+commandline+fails+to+start+or+not+found.html</comments>
			                                        <pubDate>Thu, 26 May 11 11:08:27 +0200</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p301/Lounge/%5Bsolved%5D%5Bmatlab%5D+Compiler+Runtime+in+commandline+fails+to+start+or+not+found.html</guid>
			                                        <description>Problem: I have installed the Matlab Compiler Runtime but it fails to start.&lt;br /&gt;
My application would run in Eclipse but not commandline or Tomcat servlet.&lt;br /&gt;
&lt;br /&gt;
Solution for Redhat/CentOS systems lies in the LD_LIBRARY_PATH&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;How to set the LD_LIBRARY_PATH ?&lt;/span&gt;&lt;br /&gt;
I presume the Compiler runtime is installed in: /opt/MATLAB/MATLAB_Compiler_Runtime/v714&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
CREATE FILE java.sh in etc/profile.d/&lt;br /&gt;
FILE CONTENTS&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;export LD_LIBRARY_PATH=/opt/MATLAB/MATLAB_Compiler_Runtime/v714&lt;br /&gt;
#export MCRROOT=/opt/MATLAB/MATLAB_Compiler_Runtime/v714&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
export LD_LIBRARY_PATH=/opt/MATLAB/MATLAB_Compiler_Runtime/v714/runtime/glnxa64&amp;#58;/opt/MATLAB/MATLAB_Compiler_Runtime/v714/bin/glnxa64&amp;#58;/opt/MATLAB/MATLAB_Compiler_Runtime/v714/sys/os/glnxa64&amp;#58;/opt/MATLAB/MATLAB_Compiler_Runtime/v714/sys/java/jre/glnxa64/jre/lib/amd64/native_threads&amp;#58;/opt/MATLAB/MATLAB_Compiler_Runtime/v714/sys/java/jre/glnxa64/jre/lib/amd64/server&amp;#58;/opt/MATLAB/MATLAB_Compiler_Runtime/v714/sys/java/jre/glnxa64/jre/lib/amd64&amp;#58;&lt;br /&gt;
export XAPPLRESDIR=/opt/MATLAB/MATLAB_Compiler_Runtime/v714/X11/app-defaults&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now reboot.&lt;br /&gt;
&lt;br /&gt;
Test with commandline:&lt;br /&gt;
echo $LD_LIBRAY_PATH&lt;br /&gt;
it should print your lines on screen.</description>
			                                        <content:encoded><![CDATA[Problem: I have installed the Matlab Compiler Runtime but it fails to start.<br />
My application would run in Eclipse but not commandline or Tomcat servlet.<br />
<br />
Solution for Redhat/CentOS systems lies in the LD_LIBRARY_PATH<br />
<br />
<br />
<span style="font-weight: bold">How to set the LD_LIBRARY_PATH ?</span><br />
I presume the Compiler runtime is installed in: /opt/MATLAB/MATLAB_Compiler_Runtime/v714<br />
<br />
<br />
CREATE FILE java.sh in etc/profile.d/<br />
FILE CONTENTS<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">export LD_LIBRARY_PATH=/opt/MATLAB/MATLAB_Compiler_Runtime/v714<br />
#export MCRROOT=/opt/MATLAB/MATLAB_Compiler_Runtime/v714<br />
<br />
<br />
export LD_LIBRARY_PATH=/opt/MATLAB/MATLAB_Compiler_Runtime/v714/runtime/glnxa64&#58;/opt/MATLAB/MATLAB_Compiler_Runtime/v714/bin/glnxa64&#58;/opt/MATLAB/MATLAB_Compiler_Runtime/v714/sys/os/glnxa64&#58;/opt/MATLAB/MATLAB_Compiler_Runtime/v714/sys/java/jre/glnxa64/jre/lib/amd64/native_threads&#58;/opt/MATLAB/MATLAB_Compiler_Runtime/v714/sys/java/jre/glnxa64/jre/lib/amd64/server&#58;/opt/MATLAB/MATLAB_Compiler_Runtime/v714/sys/java/jre/glnxa64/jre/lib/amd64&#58;<br />
export XAPPLRESDIR=/opt/MATLAB/MATLAB_Compiler_Runtime/v714/X11/app-defaults</td>	</tr></table><span class="postbody"><br />
<br />
<br />
Now reboot.<br />
<br />
Test with commandline:<br />
echo $LD_LIBRAY_PATH<br />
it should print your lines on screen.]]></content:encoded>
			                                        <category><![CDATA[centos]]></category><category><![CDATA[commandline]]></category><category><![CDATA[compile]]></category><category><![CDATA[compiler]]></category><category><![CDATA[eclipse]]></category><category><![CDATA[java]]></category><category><![CDATA[linux]]></category><category><![CDATA[matlab]]></category><category><![CDATA[redhat]]></category><category><![CDATA[runtime]]></category><category><![CDATA[servlet]]></category>
			                                      </item>
			                                      <item>
			                                        <title>Keep table header on top, like split in excel or calc. Scroll the rest.</title>
			                                        <link>http://www.ramonfincken.com/p300/HTML+and+other+markup6programming+languages/Keep+table+header+on+topC+like+split+in+excel+or+calc.+Scroll+the+rest..html</link>
			                                        <comments>http://www.ramonfincken.com/p300/HTML+and+other+markup6programming+languages/Keep+table+header+on+topC+like+split+in+excel+or+calc.+Scroll+the+rest..html</comments>
			                                        <pubDate>Thu, 05 May 11 13:06:20 +0200</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p300/HTML+and+other+markup6programming+languages/Keep+table+header+on+topC+like+split+in+excel+or+calc.+Scroll+the+rest..html</guid>
			                                        <description>Looking for a solution for this I found this great resource:&lt;br /&gt;
&lt;a href=&quot;http://imar.spaanjaars.com/357/a-scrollable-table-with-a-fixed-header&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;http://imar.spaanjaars.com/357/a-scroll...xed-header&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
This works with 2 tables, setting the second as overflow&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;overflow&amp;#58; auto;height&amp;#58; 100px; width&amp;#58; 320px;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Works great in my tested browsers (FF, Chrome and IE)</description>
			                                        <content:encoded><![CDATA[Looking for a solution for this I found this great resource:<br />
<a href="http://imar.spaanjaars.com/357/a-scrollable-table-with-a-fixed-header" target="_blank" class="postlink">http://imar.spaanjaars.com/357/a-scroll...xed-header</a><br />
<br />
This works with 2 tables, setting the second as overflow<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">overflow&#58; auto;height&#58; 100px; width&#58; 320px;</td>	</tr></table><span class="postbody"><br />
<br />
Works great in my tested browsers (FF, Chrome and IE)]]></content:encoded>
			                                        <category><![CDATA[head]]></category><category><![CDATA[header]]></category><category><![CDATA[heading]]></category><category><![CDATA[html]]></category><category><![CDATA[scroll]]></category><category><![CDATA[split]]></category><category><![CDATA[table]]></category><category><![CDATA[top]]></category>
			                                      </item>
			                                      <item>
			                                        <title>[wordpress][solution] My qTranslate stopped working after a WordPress upgrade</title>
			                                        <link>http://www.ramonfincken.com/p299/CMS-ses+JoomlaC+WordPressC+etc../Re%3A+%5Bwordpress%5D%5Bsolution%5D+My+qTranslate+stopped+working+after+a+WordPress+upgrade.html</link>
			                                        <comments>http://www.ramonfincken.com/p299/CMS-ses+JoomlaC+WordPressC+etc../Re%3A+%5Bwordpress%5D%5Bsolution%5D+My+qTranslate+stopped+working+after+a+WordPress+upgrade.html</comments>
			                                        <pubDate>Tue, 22 Mar 11 22:41:58 +0100</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p299/CMS-ses+JoomlaC+WordPressC+etc../Re%3A+%5Bwordpress%5D%5Bsolution%5D+My+qTranslate+stopped+working+after+a+WordPress+upgrade.html</guid>
			                                        <description>May I add that the codebase of WPML is much better ? &lt;img src=&quot;http://www.ramonfincken.com/images/smiles/smile.gif&quot; alt=&quot;Smile&quot; border=&quot;0&quot; /&gt;</description>
			                                        <content:encoded><![CDATA[May I add that the codebase of WPML is much better ? <img src="http://www.ramonfincken.com/images/smiles/smile.gif" alt="Smile" border="0" />]]></content:encoded>
			                                        <category><![CDATA[qTranslate]]></category><category><![CDATA[solution]]></category><category><![CDATA[translate]]></category><category><![CDATA[wordpress]]></category>
			                                      </item>
			                                      <item>
			                                        <title>[solved] MATLAB: error while loading shared libraries: libXp.so.6: cannot open shared object file: No such file or directory</title>
			                                        <link>http://www.ramonfincken.com/p298/Lounge/%5Bsolved%5D+MATLAB%3A+error+while+loading+shared+libraries%3A+libXp.so.6%3A+cannot+open+shared+object+file%3A+No+such+file+or+directory.html</link>
			                                        <comments>http://www.ramonfincken.com/p298/Lounge/%5Bsolved%5D+MATLAB%3A+error+while+loading+shared+libraries%3A+libXp.so.6%3A+cannot+open+shared+object+file%3A+No+such+file+or+directory.html</comments>
			                                        <pubDate>Thu, 17 Mar 11 11:23:09 +0100</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p298/Lounge/%5Bsolved%5D+MATLAB%3A+error+while+loading+shared+libraries%3A+libXp.so.6%3A+cannot+open+shared+object+file%3A+No+such+file+or+directory.html</guid>
			                                        <description>Problem on linux (CentOS, Redhat), 64 bit:&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;PATH /matlab_installed/bin/glnxa64/MATLAB&amp;#58; error while loading shared libraries&amp;#58; libXp.so.6&amp;#58; cannot open shared object file&amp;#58; No such file or directory&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;CentOS&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;How to solve&lt;/span&gt;&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;sudo yum install libXp libXp-devel&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;Solution found:&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;http://linuxtoolkit.blogspot.com/2009/03/libxpso6-error-in-matlab.html&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;http://linuxtoolkit.blogspot.com/2009/0...atlab.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Redhat&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;How to solve&lt;/span&gt;&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;sudo yum install libXmu-1.0.2-5&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;</description>
			                                        <content:encoded><![CDATA[Problem on linux (CentOS, Redhat), 64 bit:<br />
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">PATH /matlab_installed/bin/glnxa64/MATLAB&#58; error while loading shared libraries&#58; libXp.so.6&#58; cannot open shared object file&#58; No such file or directory<br />
</td>	</tr></table><span class="postbody"><br />
<br />
<br />
<span style="font-size: 18px; line-height: normal"><span style="font-weight: bold">CentOS</span></span><br />
<span style="font-weight: bold">How to solve</span><br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">sudo yum install libXp libXp-devel</td>	</tr></table><span class="postbody"><br />
<br />
<span style="font-weight: bold">Solution found:</span><br />
<a href="http://linuxtoolkit.blogspot.com/2009/03/libxpso6-error-in-matlab.html" target="_blank" class="postlink">http://linuxtoolkit.blogspot.com/2009/0...atlab.html</a><br />
<br />
<br />
<span style="font-size: 18px; line-height: normal"><span style="font-weight: bold">Redhat</span></span><br />
<span style="font-weight: bold">How to solve</span><br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr> 	  <td><span class="genmed"><b>Code:</b></span></td>	</tr>	<tr>	  <td class="code">sudo yum install libXmu-1.0.2-5</td>	</tr></table><span class="postbody">]]></content:encoded>
			                                        <category><![CDATA[libraries]]></category><category><![CDATA[libxp]]></category><category><![CDATA[matlab]]></category><category><![CDATA[shared]]></category><category><![CDATA[solution]]></category><category><![CDATA[solved]]></category>
			                                      </item>
			                                      <item>
			                                        <title>[ubuntu][solution] &quot;io scheduler cfq registered ( default)&quot;  Boot error</title>
			                                        <link>http://www.ramonfincken.com/p297/Ubuntu/Re%3A+%5Bubuntu%5D%5Bsolution%5D+6quot%3Bio+scheduler+cfq+registered++default6quot%3B++Boot+error.html</link>
			                                        <comments>http://www.ramonfincken.com/p297/Ubuntu/Re%3A+%5Bubuntu%5D%5Bsolution%5D+6quot%3Bio+scheduler+cfq+registered++default6quot%3B++Boot+error.html</comments>
			                                        <pubDate>Sun, 16 Jan 11 17:10:29 +0100</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p297/Ubuntu/Re%3A+%5Bubuntu%5D%5Bsolution%5D+6quot%3Bio+scheduler+cfq+registered++default6quot%3B++Boot+error.html</guid>
			                                        <description>unfortunately this problem is still &quot;active&quot; so to speak..&lt;br /&gt;
&lt;br /&gt;
but only at my laptop (32 bit) not at my pc (64 bit) .. strange ..</description>
			                                        <content:encoded><![CDATA[unfortunately this problem is still "active" so to speak..<br />
<br />
but only at my laptop (32 bit) not at my pc (64 bit) .. strange ..]]></content:encoded>
			                                        <category><![CDATA[boot]]></category><category><![CDATA[error]]></category><category><![CDATA[solution]]></category><category><![CDATA[ubuntu]]></category><category><![CDATA[usb]]></category>
			                                      </item>
			                                      <item>
			                                        <title>Wake on Lan</title>
			                                        <link>http://www.ramonfincken.com/p296/Ubuntu/Wake+on+Lan.html</link>
			                                        <comments>http://www.ramonfincken.com/p296/Ubuntu/Wake+on+Lan.html</comments>
			                                        <pubDate>Sun, 19 Dec 10 13:08:39 +0100</pubDate>
			                                        <dc:creator>ramon fincken</dc:creator>
			                                        <guid isPermaLink="true">http://www.ramonfincken.com/p296/Ubuntu/Wake+on+Lan.html</guid>
			                                        <description>If your pc/server supports wake on lan and you like a GUI based approach to simply (with 1 click) power your computer .. take a look at gWakeOnLan.&lt;br /&gt;
&lt;br /&gt;
Really easy, just enter the hostname and its MAC and you are ready to go!</description>
			                                        <content:encoded><![CDATA[If your pc/server supports wake on lan and you like a GUI based approach to simply (with 1 click) power your computer .. take a look at gWakeOnLan.<br />
<br />
Really easy, just enter the hostname and its MAC and you are ready to go!]]></content:encoded>
			                                        <category><![CDATA[gui]]></category><category><![CDATA[gWakeOnLan]]></category><category><![CDATA[hostname]]></category><category><![CDATA[lan]]></category><category><![CDATA[mac]]></category><category><![CDATA[network]]></category><category><![CDATA[remote]]></category><category><![CDATA[ubuntu]]></category><category><![CDATA[wake on lan]]></category><category><![CDATA[wol]]></category>
			                                      </item></channel></rss>
