<?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>the rider chronicles</title>
	<atom:link href="http://bearrider.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bearrider.wordpress.com</link>
	<description>The Lord is my shepherd; I shall not want - PSAL XXIII</description>
	<lastBuildDate>Fri, 16 Dec 2011 13:36:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bearrider.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>the rider chronicles</title>
		<link>http://bearrider.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bearrider.wordpress.com/osd.xml" title="the rider chronicles" />
	<atom:link rel='hub' href='http://bearrider.wordpress.com/?pushpress=hub'/>
		<item>
		<title>using a combination of JSCH and Apache VFS Commons to SFTP with a private key</title>
		<link>http://bearrider.wordpress.com/2011/12/16/using-a-combination-of-jsch-and-apache-vfs-commons-to-sftp-with-a-private-key/</link>
		<comments>http://bearrider.wordpress.com/2011/12/16/using-a-combination-of-jsch-and-apache-vfs-commons-to-sftp-with-a-private-key/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 13:29:57 +0000</pubDate>
		<dc:creator>bearrider</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[commons]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jcraft]]></category>
		<category><![CDATA[jsch]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[vfs]]></category>

		<guid isPermaLink="false">http://bearrider.wordpress.com/?p=56</guid>
		<description><![CDATA[package test.sftp; import java.io.File; import org.apache.commons.vfs.AllFileSelector; import org.apache.commons.vfs.FileObject; import org.apache.commons.vfs.FileSystemException; import org.apache.commons.vfs.FileSystemManager; import org.apache.commons.vfs.FileSystemOptions; import org.apache.commons.vfs.VFS; import org.apache.commons.vfs.provider.sftp.SftpFileSystemConfigBuilder; import com.jcraft.jsch.JSchException; import com.jcraft.jsch.SftpException; public class SFTPTest { public static void main(String[] args) throws JSchException, SftpException, FileSystemException { FileSystemOptions options = new FileSystemOptions(); SftpFileSystemConfigBuilder.getInstance().setStrictHostKeyChecking(options, "no"); File keyFile = new File("path/to/the/private/key.ppk"); SftpFileSystemConfigBuilder.getInstance().setIdentities(options, new File[] { keyFile }); SftpFileSystemConfigBuilder.getInstance().setKnownHosts(options, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=56&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><code><br />
package test.sftp;</p>
<p>import java.io.File;</p>
<p>import org.apache.commons.vfs.AllFileSelector;<br />
import org.apache.commons.vfs.FileObject;<br />
import org.apache.commons.vfs.FileSystemException;<br />
import org.apache.commons.vfs.FileSystemManager;<br />
import org.apache.commons.vfs.FileSystemOptions;<br />
import org.apache.commons.vfs.VFS;<br />
import org.apache.commons.vfs.provider.sftp.SftpFileSystemConfigBuilder;</p>
<p>import com.jcraft.jsch.JSchException;<br />
import com.jcraft.jsch.SftpException;</p>
<p>public class SFTPTest {</p>
<p>	public static void main(String[] args) throws JSchException, SftpException,<br />
			FileSystemException {</p>
<p>		FileSystemOptions options = new FileSystemOptions();<br />
		SftpFileSystemConfigBuilder.getInstance().setStrictHostKeyChecking(options, "no");<br />
		File keyFile = new File("path/to/the/private/key.ppk");<br />
		SftpFileSystemConfigBuilder.getInstance().setIdentities(options, new File[] { keyFile });<br />
		SftpFileSystemConfigBuilder.getInstance().setKnownHosts(options, new File("path/to/known_hosts")); // usually ~/.ssh/known_hosts<br />
		SftpFileSystemConfigBuilder.getInstance().setUserDirIsRoot(options,	true);</p>
<p>		FileSystemManager fsManager = VFS.getManager();<br />
		String uri = "sftp://username:password@hostname:22";</p>
<p>		FileObject from = fsManager.resolveFile(uri, options);<br />
		FileObject to = fsManager.resolveFile("/tmp", options);<br />
		to.copyFrom(from, new AllFileSelector());<br />
	}<br />
}<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bearrider.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bearrider.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bearrider.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bearrider.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bearrider.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bearrider.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bearrider.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bearrider.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bearrider.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bearrider.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bearrider.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bearrider.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bearrider.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bearrider.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=56&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bearrider.wordpress.com/2011/12/16/using-a-combination-of-jsch-and-apache-vfs-commons-to-sftp-with-a-private-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be0d36abe3ea4da3be771168815cbeb1?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">bearrider</media:title>
		</media:content>
	</item>
		<item>
		<title>Convert org.w3c.dom.Document to org.dom4j.Document</title>
		<link>http://bearrider.wordpress.com/2011/12/16/convert-org-w3c-dom-document-to-org-dom4j-document/</link>
		<comments>http://bearrider.wordpress.com/2011/12/16/convert-org-w3c-dom-document-to-org-dom4j-document/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 13:14:24 +0000</pubDate>
		<dc:creator>bearrider</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[dom4j]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[w3c]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xpath]]></category>

		<guid isPermaLink="false">http://bearrider.wordpress.com/?p=50</guid>
		<description><![CDATA[Because I like the xpath support of dom4j org.w3c.dom.Document w3cDoc; org.dom4j.io.DOMReader reader = new DOMReader(); org.dom4j.Document document = reader.read(w3cDoc);<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=50&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Because I like the xpath support of dom4j</p>
<p><code><br />
org.w3c.dom.Document w3cDoc;<br />
org.dom4j.io.DOMReader reader = new DOMReader();<br />
org.dom4j.Document document = reader.read(w3cDoc);<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bearrider.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bearrider.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bearrider.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bearrider.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bearrider.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bearrider.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bearrider.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bearrider.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bearrider.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bearrider.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bearrider.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bearrider.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bearrider.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bearrider.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=50&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bearrider.wordpress.com/2011/12/16/convert-org-w3c-dom-document-to-org-dom4j-document/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be0d36abe3ea4da3be771168815cbeb1?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">bearrider</media:title>
		</media:content>
	</item>
		<item>
		<title>reset forgotten mysql password</title>
		<link>http://bearrider.wordpress.com/2011/11/11/reset-forgotten-mysql-password/</link>
		<comments>http://bearrider.wordpress.com/2011/11/11/reset-forgotten-mysql-password/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 12:31:51 +0000</pubDate>
		<dc:creator>bearrider</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://bearrider.wordpress.com/?p=46</guid>
		<description><![CDATA[To reset a forgotten mysql password, log in as root then find and kill the mysqld process ps -e mysqld &#124; grep mysqld sudo kill -9 &#60;mysqld-process-id&#62; now create a file in your home folder, &#8220;mysql-reset.txt&#8221; for example, and put these two lines in it UPDATE mysql.user SET Password=PASSWORD(&#8216;the-new-password&#8217;) WHERE User=&#8217;root&#8217;; FLUSH PRIVILEGES; then go [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=46&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To reset a forgotten mysql password, log in as root then find and kill the mysqld process</p>
<blockquote>
<p>ps -e mysqld | grep mysqld</p>
<p>sudo kill -9 &lt;mysqld-process-id&gt; </p>
</blockquote>
<p>now create a file in your home folder, &#8220;mysql-reset.txt&#8221; for example, and put these two lines in it </p>
<blockquote><p>
UPDATE mysql.user SET Password=PASSWORD(&#8216;the-new-password&#8217;) WHERE User=&#8217;root&#8217;;<br />
FLUSH PRIVILEGES;
</p></blockquote>
<p>then go back to the prompt and run</p>
<blockquote><p>
mysqld_safe &#8211;init-file=/path/to/the/file/mysql-reset.txt &amp;
</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bearrider.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bearrider.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bearrider.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bearrider.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bearrider.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bearrider.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bearrider.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bearrider.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bearrider.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bearrider.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bearrider.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bearrider.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bearrider.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bearrider.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=46&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bearrider.wordpress.com/2011/11/11/reset-forgotten-mysql-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be0d36abe3ea4da3be771168815cbeb1?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">bearrider</media:title>
		</media:content>
	</item>
		<item>
		<title>Selenium RC: count rows in a table</title>
		<link>http://bearrider.wordpress.com/2011/10/05/selenium-rc-count-rows-in-a-table/</link>
		<comments>http://bearrider.wordpress.com/2011/10/05/selenium-rc-count-rows-in-a-table/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 20:29:43 +0000</pubDate>
		<dc:creator>bearrider</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Selenium]]></category>

		<guid isPermaLink="false">http://bearrider.wordpress.com/?p=42</guid>
		<description><![CDATA[While running Selenium tests, if some part of your logic requires you to count the number of rows in a table, we can do this in Java: getXpathCount(&#8220;//xpath/to/the/particular/table/tbody/tr&#8221;) eg: int numRows = selenium.getXpathCount(&#8220;//table/tbody[2]/tr&#8221;).intValue();<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=42&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While running Selenium tests, if some part of your logic requires you to count the number of rows in a table, we can do this in Java:</p>
<blockquote><p>getXpathCount(&#8220;//xpath/to/the/particular/table/tbody/tr&#8221;)</p></blockquote>
<p>eg:</p>
<blockquote><p>int numRows = selenium.getXpathCount(&#8220;//table/tbody[2]/tr&#8221;).intValue();</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bearrider.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bearrider.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bearrider.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bearrider.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bearrider.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bearrider.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bearrider.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bearrider.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bearrider.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bearrider.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bearrider.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bearrider.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bearrider.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bearrider.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=42&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bearrider.wordpress.com/2011/10/05/selenium-rc-count-rows-in-a-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be0d36abe3ea4da3be771168815cbeb1?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">bearrider</media:title>
		</media:content>
	</item>
		<item>
		<title>enable assertions in eclipse</title>
		<link>http://bearrider.wordpress.com/2010/12/24/enable-assertions-in-eclipse/</link>
		<comments>http://bearrider.wordpress.com/2010/12/24/enable-assertions-in-eclipse/#comments</comments>
		<pubDate>Fri, 24 Dec 2010 03:27:57 +0000</pubDate>
		<dc:creator>bearrider</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://bearrider.wordpress.com/?p=31</guid>
		<description><![CDATA[Window -&#62; Preferences -&#62; Java -&#62; Compiler Run -&#62; Run Configurations and enter -ea or -enableassertion as argument<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=31&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>Window -&gt; Preferences -&gt; Java -&gt; Compiler</li>
</ul>
<p><a href="http://bearrider.files.wordpress.com/2010/12/compilersettings.png"><img class="alignnone size-medium wp-image-32" title="Compiler Settings" src="http://bearrider.files.wordpress.com/2010/12/compilersettings.png?w=300&#038;h=285" alt="" width="300" height="285" /></a></p>
<ul>
<li>Run -&gt; Run Configurations and enter -ea or -enableassertion as argument</li>
</ul>
<p><a href="http://bearrider.files.wordpress.com/2010/12/arguments.png"><img class="alignnone size-medium wp-image-33" title="vm argument" src="http://bearrider.files.wordpress.com/2010/12/arguments.png?w=300&#038;h=228" alt="" width="300" height="228" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bearrider.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bearrider.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bearrider.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bearrider.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bearrider.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bearrider.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bearrider.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bearrider.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bearrider.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bearrider.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bearrider.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bearrider.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bearrider.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bearrider.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=31&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bearrider.wordpress.com/2010/12/24/enable-assertions-in-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be0d36abe3ea4da3be771168815cbeb1?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">bearrider</media:title>
		</media:content>

		<media:content url="http://bearrider.files.wordpress.com/2010/12/compilersettings.png?w=300" medium="image">
			<media:title type="html">Compiler Settings</media:title>
		</media:content>

		<media:content url="http://bearrider.files.wordpress.com/2010/12/arguments.png?w=300" medium="image">
			<media:title type="html">vm argument</media:title>
		</media:content>
	</item>
		<item>
		<title>kitchen measures</title>
		<link>http://bearrider.wordpress.com/2009/07/18/kitchen-measures/</link>
		<comments>http://bearrider.wordpress.com/2009/07/18/kitchen-measures/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 13:21:27 +0000</pubDate>
		<dc:creator>bearrider</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://bearrider.wordpress.com/?p=25</guid>
		<description><![CDATA[This is planned to be my one stop for all food related measures. Look out for updates. Liquid measures: 1 teaspoon is 5 ml 1 tablespoon is 15 ml 1 cup is 240 ml 3 teaspoons is 1 tablespoon 16 tablespoons is 1 cup 8 ounces is 1 cup 2 cups is 1 pint 2 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=25&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">This is planned to be my one stop for all food related measures. Look out for updates.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Liquid measures:</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">1 teaspoon is 5 ml</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">1 tablespoon is 15 ml</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">1 cup is 240 ml</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">3 teaspoons is 1 tablespoon</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">16 tablespoons is 1 cup</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">8 ounces is 1 cup</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">2 cups is 1 pint</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">2 pints is 1 quart</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">4 quarts is 1 gallon</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Hope that saves me some searching the next time.</div>
<p>Liquid measures:</p>
<blockquote><p>1 teaspoon is 5 ml</p>
<p>1 tablespoon is 15 ml</p>
<p>1 cup is 240 ml</p>
<p>3 teaspoons is 1 tablespoon</p>
<p>16 tablespoons is 1 cup</p>
<p>8 ounces is 1 cup</p>
<p>2 cups is 1 pint</p>
<p>2 pints is 1 quart</p>
<p>4 quarts is 1 gallon</p></blockquote>
<p>Hope that saves me some searching the next time.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bearrider.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bearrider.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bearrider.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bearrider.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bearrider.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bearrider.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bearrider.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bearrider.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bearrider.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bearrider.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bearrider.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bearrider.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bearrider.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bearrider.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=25&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bearrider.wordpress.com/2009/07/18/kitchen-measures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be0d36abe3ea4da3be771168815cbeb1?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">bearrider</media:title>
		</media:content>
	</item>
		<item>
		<title>best poirot</title>
		<link>http://bearrider.wordpress.com/2009/02/10/the-greatest-poirot-ever/</link>
		<comments>http://bearrider.wordpress.com/2009/02/10/the-greatest-poirot-ever/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 08:45:52 +0000</pubDate>
		<dc:creator>bearrider</dc:creator>
				<category><![CDATA[Devil's Workshop]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://bearrider.wordpress.com/?p=22</guid>
		<description><![CDATA[Whose could be considered the best portrayal of Hercule Poirot in the media? David Suchet is very impressive in the BBC television series but Albert Finney in Murder on the Orient Express is better by far though initially a little hard to accept. However my favourite would be John Moffatt as Poirot in the BBC radio dramas, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=22&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Whose could be considered the best portrayal of Hercule Poirot in the media?</p>
<p>David Suchet is very impressive in the BBC television series but Albert Finney in Murder on the Orient Express is better by far though initially a little hard to accept. However my favourite would be John Moffatt as Poirot in the BBC radio dramas, he&#8217;s is everything that ever leapt to your imagination when you first read the books!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bearrider.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bearrider.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bearrider.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bearrider.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bearrider.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bearrider.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bearrider.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bearrider.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bearrider.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bearrider.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bearrider.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bearrider.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bearrider.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bearrider.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=22&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bearrider.wordpress.com/2009/02/10/the-greatest-poirot-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be0d36abe3ea4da3be771168815cbeb1?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">bearrider</media:title>
		</media:content>
	</item>
		<item>
		<title>To have Eclipse use a particular Java VM</title>
		<link>http://bearrider.wordpress.com/2009/02/10/to-have-eclipse-use-a-particular-java-vm/</link>
		<comments>http://bearrider.wordpress.com/2009/02/10/to-have-eclipse-use-a-particular-java-vm/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 06:44:10 +0000</pubDate>
		<dc:creator>bearrider</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://bearrider.wordpress.com/2009/02/10/19/</guid>
		<description><![CDATA[To have Eclipse use a particular Java VM : Edit the eclipse.ini file and add the vm argument below the line org.eclipse.platform -vm /absolute/path/to/your/java/executable I&#8217;ve found this particularly useful on Windows when I&#8217;ve installed and removed various versions of JDK and eclipse appears completely lost and confused.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=19&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p>To have Eclipse use a particular Java VM :</p>
<p>Edit the eclipse.ini file and add the vm argument below the line org.eclipse.platform</p>
<p>-vm /absolute/path/to/your/java/executable</p>
<p>I&#8217;ve found this particularly useful on Windows when I&#8217;ve installed and removed various versions of JDK and eclipse appears completely lost and confused.</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bearrider.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bearrider.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bearrider.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bearrider.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bearrider.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bearrider.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bearrider.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bearrider.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bearrider.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bearrider.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bearrider.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bearrider.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bearrider.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bearrider.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=19&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bearrider.wordpress.com/2009/02/10/to-have-eclipse-use-a-particular-java-vm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be0d36abe3ea4da3be771168815cbeb1?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">bearrider</media:title>
		</media:content>
	</item>
		<item>
		<title>mandriva installation on acer 5050 laptop</title>
		<link>http://bearrider.wordpress.com/2008/04/20/mandriva-installation-on-acer-5050-laptop/</link>
		<comments>http://bearrider.wordpress.com/2008/04/20/mandriva-installation-on-acer-5050-laptop/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 10:24:12 +0000</pubDate>
		<dc:creator>bearrider</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[acer]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://bearrider.wordpress.com/?p=17</guid>
		<description><![CDATA[Kubuntu left a lot to be desired on my machine so I looked around for another good KDE distro and found Mandriva! What works out of the box: External Speakers! Hallelujah! Finally!! Desktop effects run right off the live CD What doesn´t: Webcam still doesn´t work but that´s really low on priority Power management is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=17&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="western">
<p class="western"><a title="kubuntu on laptop" href="http://bearrider.wordpress.com/2007/11/20/installing-kubuntu-on-an-acer-aspire-5050-laptop/" target="_blank">Kubuntu</a> left a lot to be desired on my machine so I looked around for another good KDE distro and found Mandriva!</p>
<p class="western">
<p class="western"><strong>What works out of the box:</strong></p>
<ul>
<li> External Speakers! Hallelujah! Finally!!</li>
<li> Desktop effects run right off the live CD</li>
</ul>
<p class="western">
<p class="western"><strong>What doesn´t:</strong></p>
<ul>
<li>Webcam still doesn´t work but that´s really low on priority</li>
<li> Power management is still a pain (I´m looking into this, expect a post soon)</li>
<li> Bluetooth needs a lot of tweaking go get to work</li>
</ul>
<p class="western">
<p class="western"><strong>Repository Setup :</strong></p>
<p class="western">Setting up repositories in Mandriva is not quite as easy as Ubuntu´s sources.list way. However, no need to fret. Head over <a title="easyurpmi" href="http://easyurpmi.zarb.org/" target="_blank">here</a> and follow the instructions. Voila!</p>
<p class="western">
<p class="western">Also, you´ll find that the repository locks every now and again with a ¨&#8221;URPMI DATABASE LOCKED&#8221;¨. This <a title="unlock rpm database" href="http://www.linuxquestions.org/linux/answers/Applications_GUI_Multimedia/unlock_rpmdatabase_when_RPM_DATABASE_LOCKED" target="_blank">post</a> is what you´ll need.</p>
<p class="western">
<p class="western">
<p class="western">Very easy and intuitive , Mandriva is the Ubuntu for the KDE fan!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bearrider.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bearrider.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bearrider.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bearrider.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bearrider.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bearrider.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bearrider.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bearrider.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bearrider.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bearrider.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bearrider.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bearrider.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bearrider.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bearrider.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bearrider.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bearrider.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=17&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bearrider.wordpress.com/2008/04/20/mandriva-installation-on-acer-5050-laptop/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be0d36abe3ea4da3be771168815cbeb1?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">bearrider</media:title>
		</media:content>
	</item>
		<item>
		<title>tora &#8211; a toad alternative for linux</title>
		<link>http://bearrider.wordpress.com/2008/01/25/tora-a-toad-alternative-for-linux/</link>
		<comments>http://bearrider.wordpress.com/2008/01/25/tora-a-toad-alternative-for-linux/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 07:50:20 +0000</pubDate>
		<dc:creator>bearrider</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://bearrider.wordpress.com/?p=16</guid>
		<description><![CDATA[With my recent conversion to Linux one of the first things I missed was a familiar DB client. I&#8217;d been working with Toad on Windows for quite a bit now and had grown rather used to the interface. I needed a similar replacement on Linux. A search for &#8220;Toad + Linux&#8221; threw up a lot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=16&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With my recent conversion to Linux one of the first things I missed was a familiar DB client.</p>
<p>I&#8217;d been working with Toad on Windows for quite a bit now and had grown rather used to the interface. I needed a similar replacement on Linux.  A search for &#8220;Toad + Linux&#8221; threw up a lot of <a href="http://tora.sourceforge.net/" title="TOra" target="_blank">TOra</a>.</p>
<p>TOra has all the same features as Toad with very similar interface, including schema browser, syntax highlighting and support for common databases.</p>
<p>Trouble is, by default TOra comes packaged with only the PostgreSQL &#8220;Connection Provider&#8221; .</p>
<p>So if you want to get it to work with MySQL the following Qt dependencies need to be installed as well:</p>
<pre>sudo apt-get install tora libqt3-mt-odbc libqt3-mt-mysql</pre>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bearrider.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bearrider.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bearrider.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bearrider.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bearrider.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bearrider.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bearrider.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bearrider.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bearrider.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bearrider.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bearrider.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bearrider.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bearrider.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bearrider.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bearrider.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bearrider.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bearrider.wordpress.com&amp;blog=1328458&amp;post=16&amp;subd=bearrider&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bearrider.wordpress.com/2008/01/25/tora-a-toad-alternative-for-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be0d36abe3ea4da3be771168815cbeb1?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">bearrider</media:title>
		</media:content>
	</item>
	</channel>
</rss>
