
<?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"
	>

<channel>
	<title>Lee Kemp's Blog</title>
	<atom:link href="http://www.kumkee.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kumkee.com/blog</link>
	<description>Software Development, Graphics, Music, Kombi Vans, ANYwebcam.com and other Random stuff.</description>
	<pubDate>Sat, 17 May 2008 06:18:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Developer Search Gadget</title>
		<link>http://www.kumkee.com/blog/2008/05/10/developer-search-gadget/</link>
		<comments>http://www.kumkee.com/blog/2008/05/10/developer-search-gadget/#comments</comments>
		<pubDate>Sat, 10 May 2008 14:02:21 +0000</pubDate>
		<dc:creator>Kumkee</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.kumkee.com/blog/?p=24</guid>
		<description><![CDATA[I have released another Google gadget. This one is similar to the Java Search gadget but has options to search the documentation for languages other then Java. 
So far the languages/technologies that have search options are:
Java, PHP, Ruby, CSS, HTML, Linux command line, MySQL, PostgreSQL and Javascript.

Bellow the gadget is embedded into the page so [...]]]></description>
			<content:encoded><![CDATA[<p>I have released another Google gadget. This one is similar to the Java Search gadget but has options to search the documentation for languages other then Java. </p>
<p>So far the languages/technologies that have search options are:<br />
Java, PHP, Ruby, CSS, HTML, Linux command line, MySQL, PostgreSQL and Javascript.</p>
<p><img src="http://kumkee.com/google/developergadget/screenshot.jpg" alt="Developer Search Gadget Screen Shot" /></p>
<p>Bellow the gadget is embedded into the page so you can give it a try.</p>
<p><script src="http://gmodules.com/ig/ifr?url=http://kumkee.com/google/developergadget/gadget.xml&amp;up_java=1&amp;up_php=1&amp;up_mysql=1&amp;up_css=1&amp;up_ruby=1&amp;up_javascript=1&amp;up_linux=1&amp;synd=open&amp;w=320&amp;h=60&amp;title=&amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;output=js"></script></p>
<p>If you would like to add the gadget to your iGoogle click the following button.<br />
<a href="http://fusion.google.com/add?moduleurl=http%3A//kumkee.com/google/developergadget/gadget.xml"><img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" border="0" alt="Add to Google" style="border: 0px;" ></a></p>
<p>If anyone finds a bug or would like me to add an API please leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kumkee.com/blog/2008/05/10/developer-search-gadget/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BASH to load CLASSPATH from dir</title>
		<link>http://www.kumkee.com/blog/2007/07/10/bash-to-load-classpath-from-dir/</link>
		<comments>http://www.kumkee.com/blog/2007/07/10/bash-to-load-classpath-from-dir/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 06:04:15 +0000</pubDate>
		<dc:creator>Kumkee</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.kumkee.com/blog/2007/07/10/bash-to-load-classpath-from-dir/</guid>
		<description><![CDATA[When you have a lot of jar files that need to be loaded into the CLASSPATH especially if the jar&#8217;s are upgraded and change there name often, updating the Manifest file or the command line arguments is a pain. 
This script will load all of the jars from a lib dir before starting up your [...]]]></description>
			<content:encoded><![CDATA[<p>When you have a lot of jar files that need to be loaded into the CLASSPATH especially if the jar&#8217;s are upgraded and change there name often, updating the Manifest file or the command line arguments is a pain. </p>
<p>This script will load all of the jars from a lib dir before starting up your application. That way when you have a new jar you can just drop it in your lib directory (and remove the old one). </p>
<pre>
#/bin/bash

for i in /MYAPP/lib/*; do
	echo adding $i to CLASSPATH
	CLASSPATH=$i:$CLASSPATH
	export CLASSPATH
done;

/usr/local/java/bin/java com.kumkee.application.Main
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kumkee.com/blog/2007/07/10/bash-to-load-classpath-from-dir/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Convert HEX String to ASCII in Ruby</title>
		<link>http://www.kumkee.com/blog/2007/07/10/convert-hex-string-to-ascii-in-ruby/</link>
		<comments>http://www.kumkee.com/blog/2007/07/10/convert-hex-string-to-ascii-in-ruby/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 05:30:41 +0000</pubDate>
		<dc:creator>Kumkee</dc:creator>
		
		<category><![CDATA[Ruby]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.kumkee.com/blog/2007/07/10/convert-hex-string-to-ascii-in-ruby/</guid>
		<description><![CDATA[
str = '6b 75 6d 6b 65 65 65 2e 63 6f 6d'
str.split(' ').each { &#124;val&#124;
  print val.hex.chr
}

or you could just use centricle.com ASCII - HEX Converter
]]></description>
			<content:encoded><![CDATA[<pre>
str = '6b 75 6d 6b 65 65 65 2e 63 6f 6d'
str.split(' ').each { |val|
  print val.hex.chr
}
</pre>
<p>or you could just use <a href="http://centricle.com/tools/ascii-hex/" >centricle.com ASCII - HEX Converter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kumkee.com/blog/2007/07/10/convert-hex-string-to-ascii-in-ruby/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MySQL Slow Query Log is your friend</title>
		<link>http://www.kumkee.com/blog/2007/06/11/mysql-slow-query-log-is-your-friend/</link>
		<comments>http://www.kumkee.com/blog/2007/06/11/mysql-slow-query-log-is-your-friend/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 09:44:54 +0000</pubDate>
		<dc:creator>Kumkee</dc:creator>
		
		<category><![CDATA[MySQL]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.kumkee.com/blog/2007/06/11/mysql-slow-query-log-is-your-friend/</guid>
		<description><![CDATA[The MySQL slow query log parser converts your slow query logs in to a more usable format.
It also adds some interesting information like median and average times.
For more information on it and a link to download the script go to the MySQL Slow Query Log Page
]]></description>
			<content:encoded><![CDATA[<p>The MySQL slow query log parser converts your slow query logs in to a more usable format.<br />
It also adds some interesting information like median and average times.</p>
<p>For more information on it and a link to download the script go to the <a href="http://kumkee.com/blog/mysql-slow-query-log-parser/">MySQL Slow Query Log Page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kumkee.com/blog/2007/06/11/mysql-slow-query-log-is-your-friend/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ANYwebcam LIVE! WordPress plugin</title>
		<link>http://www.kumkee.com/blog/2007/06/05/anywebcam-live-wordpress-plugin/</link>
		<comments>http://www.kumkee.com/blog/2007/06/05/anywebcam-live-wordpress-plugin/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 02:35:21 +0000</pubDate>
		<dc:creator>Kumkee</dc:creator>
		
		<category><![CDATA[ANYwebcam]]></category>

		<guid isPermaLink="false">http://www.kumkee.com/blog/2007/06/05/anywebcam-live-wordpress-plugin/</guid>
		<description><![CDATA[




           ANYwebcam.com FREE Webcam &#38; Chat
           Add live webcam to your webpage - FREE!
       
           
    [...]]]></description>
			<content:encoded><![CDATA[
<div class="viewertheme ">
<div class="frame">
<div class="viewer" id="awc_viewer"></div>
</p></div>
<p>           <a href="http://www.anywebcam.com/" class="awc awchome">ANYwebcam.com FREE Webcam &amp; Chat</a><br />
           <a href="http://www.anywebcam.com/live" class="awc awclive">Add live webcam to your webpage - FREE!</a>
       </div>
<p>       <script type="text/javascript">    
       // <![CDATA[ 
           var so = new SWFObject("http://www.anywebcam.com/awc/html/common/include/viewer/ANYwebcamViewerBasic.swf", "CamViewer", "240", "180", "9", "#FFFFFF");
           so.addVariable("p", "ZGEzZmFhZTk4NDMxNjM2NzlmYzgzYTg1YTljNWY4Nzk=YnJvYWRjYXN0ZXI9MzAxNzcyJnNpdGU9a3Vta2VlLmNvbSUyRmJsb2cmbGluaz1odHRwJTNBJTJGJTJGd3d3LmFueXdlYmNhbS5jb20lMkZsaXZl"); 
           so.write("awc_viewer");
       // ]]&gt;
       </script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kumkee.com/blog/2007/06/05/anywebcam-live-wordpress-plugin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Java search Google Gadget</title>
		<link>http://www.kumkee.com/blog/2007/03/24/java-search-google-gadget/</link>
		<comments>http://www.kumkee.com/blog/2007/03/24/java-search-google-gadget/#comments</comments>
		<pubDate>Sun, 25 Mar 2007 01:21:24 +0000</pubDate>
		<dc:creator>Kumkee</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.kumkee.com/blog/2007/03/24/java-search-google-gadget/</guid>
		<description><![CDATA[UPDATE: A new version of this gadget has been released. It is called the Developer Search Gadget and can be found here.
This version has support for languages other then Java like Ruby, PHP, CSS, and JavaScript etc.  
The Java search Google Gadget searches the JavaDocs and Other API documentation for common API&#8217;s that I [...]]]></description>
			<content:encoded><![CDATA[<p>UPDATE: A new version of this gadget has been released. It is called the <a href="http://www.kumkee.com/blog/2008/05/10/developer-search-gadgetdeveloper-search-gadget/">Developer Search Gadget</a> and can be found <a href="http://www.kumkee.com/blog/2008/05/10/developer-search-gadgetdeveloper-search-gadget/">here.</a><br />
This version has support for languages other then Java like Ruby, PHP, CSS, and JavaScript etc.  </p>
<p>The Java search Google Gadget searches the JavaDocs and Other API documentation for common API&#8217;s that I use. </p>
<p><img src="http://kumkee.com/google/javasearch/screenshot.jpg" alt="Java search Google Gadget Screenshot" ></p>
<p>So far you can use it to search:</p>
<ul>
<li>1.6 JavaDoc</li>
<li>1.5.0 JavaDoc</li>
<li>1.4.2 JavaDoc</li>
<li>Java Developers Almanac 1.4</li>
<li>Servlet API 2.2</li>
<li>Apache Axis</li>
<li>Hibernate 3</li>
<li>JConfig</li>
<li>JDOM</li>
<li>Jetty</li>
<li>JGroups</li>
<li>JUnit</li>
<li>Log4j</li>
<li>Memcached Java API</li>
<li>Spring Framework</li>
</ul>
<p>In the future I plan on adding:</p>
<ul>
<li>Ability to add API&#8217;s</li>
<li>Feeling lucky search that goes to the first search result (DONE)</li>
</ul>
<p><a href="http://fusion.google.com/add?moduleurl=http%3A//kumkee.com/google/javasearch/javasearch.xml"><img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" border="0" alt="Add to Google" style="border: 0px;" ></a></p>
<p>If anyone finds a bug or would like me to add an API please comment bellow.<br />
If you want me to add an API for a project a link to the current JavaDocs would be good thanks.</p>
<p>** UPDATE 1st April 2007<br />
Today I added a &#8220;I&#8217;m feeling lucky&#8221; search box that will go straight to the first search result page.<br />
It also automatically selects the contents of the search box when it gets focus.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kumkee.com/blog/2007/03/24/java-search-google-gadget/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hans Rosling TED talk</title>
		<link>http://www.kumkee.com/blog/2007/03/22/hans-rosling-ted-talk/</link>
		<comments>http://www.kumkee.com/blog/2007/03/22/hans-rosling-ted-talk/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 04:32:17 +0000</pubDate>
		<dc:creator>Kumkee</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.kumkee.com/blog/2007/03/22/hans-rosling-ted-talk/</guid>
		<description><![CDATA[Probably the most interesting talk that I have heard in a long time. Han Rosling talk about some of the misconceptions that we have about the developing world. He has some interesting data comparing the differences between income, population and life expectancy over the last 50 years and shows them with some pretty amazing graphs. [...]]]></description>
			<content:encoded><![CDATA[<p>Probably the <a href="<br />
http://www.ted.com/tedtalks/tedtalksplayer.cfm?key=hans_rosling" class="external" >most interesting talk that I have heard in a long time</a>. Han Rosling talk about some of the misconceptions that we have about the developing world. He has some interesting data comparing the differences between income, population and life expectancy over the last 50 years and shows them with some pretty amazing graphs.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kumkee.com/blog/2007/03/22/hans-rosling-ted-talk/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Delete .svn directories under OS X or Linux</title>
		<link>http://www.kumkee.com/blog/2007/03/19/delete-svn-directories-under-os-x-or-linux/</link>
		<comments>http://www.kumkee.com/blog/2007/03/19/delete-svn-directories-under-os-x-or-linux/#comments</comments>
		<pubDate>Tue, 20 Mar 2007 03:23:28 +0000</pubDate>
		<dc:creator>Kumkee</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.kumkee.com/blog/2007/03/19/delete-svn-directories-under-os-x-or-linux/</guid>
		<description><![CDATA[Moving code to a different Subversion repository can be a pain in the ass at the best of times and having pesky .svn directories all over the places isn&#8217;t going to help things in the slightest! 
Here is a easy way to recursively remove all of the .svn directories under the current one.
It only works [...]]]></description>
			<content:encoded><![CDATA[<p>Moving code to a different Subversion repository can be a pain in the ass at the best of times and having pesky .svn directories all over the places isn&#8217;t going to help things in the slightest! </p>
<p>Here is a easy way to recursively remove all of the .svn directories under the current one.<br />
It only works under Linux and OS X (sorry windows guys, its time to move on anyway). </p>
<pre>
find . -iname ".svn" | xargs rm -rf
</pre>
<p>CAUTION::I take no responsibility for any loss or damage caused by using this! Use it at your own risk.</p>
<p>If anyone has any better ways to do it please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kumkee.com/blog/2007/03/19/delete-svn-directories-under-os-x-or-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iFrame SSI include with no scroll bars</title>
		<link>http://www.kumkee.com/blog/2007/03/12/iframe-ssi-include-with-no-scroll-bars/</link>
		<comments>http://www.kumkee.com/blog/2007/03/12/iframe-ssi-include-with-no-scroll-bars/#comments</comments>
		<pubDate>Tue, 13 Mar 2007 03:12:52 +0000</pubDate>
		<dc:creator>Kumkee</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.kumkee.com/blog/2007/03/12/iframe-ssi-include-with-no-scroll-bars/</guid>
		<description><![CDATA[This is how to insert an iframe into your HTML page and have it look like its a part of the page with no scroll bars etc, kinda like an SSI include.
1) Download and follow the instructions for the iframe SSI II include script by dynamic drive  
2) If the page that you are [...]]]></description>
			<content:encoded><![CDATA[<p>This is how to insert an iframe into your HTML page and have it look like its a part of the page with no scroll bars etc, kinda like an SSI include.</p>
<p>1) Download and follow the instructions for the <a href="http://www.dynamicdrive.com/dynamicindex17/iframessi2.htm" alt="iframe SSI include" class="offsite" >iframe SSI II</a> include script by <a href="http://www.dynamicdrive.com/" alt="dynamic drive homepage" class="offsite" >dynamic drive</a>  </p>
<p>2) If the page that you are including is running from a sub-domain of your site include this javascript in the head of your page. Replacing kumkee.com with your domain. </p>
<pre>
&lt;script language="JavaScript" type="text/javascript">
	document.domain = "kumkee.com";
&lt;/script>
</pre>
<p>3) To remove any horizontal scrollbars that you might get if your iframes content is to big for the area it has been given add the following css to your iframe.  </p>
<pre>
overflow-x:hidden;
</pre>
<p>enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kumkee.com/blog/2007/03/12/iframe-ssi-include-with-no-scroll-bars/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Don&#8217;t make a speech. Put on a show.</title>
		<link>http://www.kumkee.com/blog/2007/03/06/dont-make-a-speech-put-on-a-show/</link>
		<comments>http://www.kumkee.com/blog/2007/03/06/dont-make-a-speech-put-on-a-show/#comments</comments>
		<pubDate>Tue, 06 Mar 2007 21:20:02 +0000</pubDate>
		<dc:creator>Kumkee</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.kumkee.com/blog/2007/03/06/dont-make-a-speech-put-on-a-show/</guid>
		<description><![CDATA[Presentation Zen has an interesting article called Don&#8217;t make a speech. Put on a show.
Where they talk about Paul Arden&#8217;s book It&#8217;s Not How Good You Are, Its How Good You Want to Be. And have a very cool example of a (slightly overboard) video presentation.
]]></description>
			<content:encoded><![CDATA[<p>Presentation Zen has an interesting article called <a href="<br />
http://www.presentationzen.com/presentationzen/2007/03/dont_make_a_spe.html" class="external" alt="Presentation Zen:Don't make a speech. Put on a show." >Don&#8217;t make a speech. Put on a show.</a><br />
Where they talk about Paul Arden&#8217;s book It&#8217;s Not How Good You Are, Its How Good You Want to Be. And have a very cool example of a (slightly overboard) video presentation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kumkee.com/blog/2007/03/06/dont-make-a-speech-put-on-a-show/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
