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

<channel>
	<title>We Heart Code &#187; linux</title>
	<atom:link href="http://www.weheartcode.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.weheartcode.com</link>
	<description>A discourse on programming</description>
	<lastBuildDate>Sun, 17 Jan 2010 02:16:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Capturing Uncaught Java Exceptions in a Bash Shell Script</title>
		<link>http://www.weheartcode.com/2009/05/13/capturing-uncaught-java-exceptions-in-a-bash-shell-script/</link>
		<comments>http://www.weheartcode.com/2009/05/13/capturing-uncaught-java-exceptions-in-a-bash-shell-script/#comments</comments>
		<pubDate>Wed, 13 May 2009 16:53:28 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.weheartcode.com/2009/05/13/capturing-uncaught-java-exceptions-in-a-bash-shell-script/</guid>
		<description><![CDATA[I was burned one to many times by chaining dependent java programs together in a bash script.
By default the java executable will return zero if the program exited manually, and 1 if there was an uncaught RuntimeException.
Let's say test.sh runs a java program, we want to run it 3 times, but if it fails during [...]]]></description>
			<content:encoded><![CDATA[<p>I was burned one to many times by chaining dependent java programs together in a bash script.</p>
<p>By default the java executable will return zero if the program exited manually, and 1 if there was an uncaught RuntimeException.</p>
<p>Let's say test.sh runs a java program, we want to run it 3 times, but if it fails during any of the runs we want to abort our run.</p>
<div class="syntax_hilite">
<div id="code-4">
<div class="code">#!/usr/bin/bash<br />
java Test<br />
exitval=$?<br />
echo <span style="color:#CC0000;">"exit val: ${exitval}"</span><br />
exit $exitval</div>
</div>
</div>
<p></p>
<p>Then in our shell script to run test.sh each time we'd do something like this.</p>
<div class="syntax_hilite">
<div id="code-5">
<div class="code">#!/usr/bin/bash</p>
<p>./test.<span style="">sh</span><br />
step1=$?</p>
<p>if <span style="color:#006600; font-weight:bold;">&#91;</span> $step1 -eq <span style="color:#CC0000;">"0"</span> <span style="color:#006600; font-weight:bold;">&#93;</span> ; then<br />
&nbsp; ./test.<span style="">sh</span><br />
&nbsp; step2=$?<br />
&nbsp; if <span style="color:#006600; font-weight:bold;">&#91;</span> $step2 -eq <span style="color:#CC0000;">"0"</span> <span style="color:#006600; font-weight:bold;">&#93;</span> ; then<br />
&nbsp; &nbsp; ./test.<span style="">sh</span><br />
&nbsp; &nbsp; step3=$?<br />
&nbsp; &nbsp; if <span style="color:#006600; font-weight:bold;">&#91;</span> $step3 -eq <span style="color:#CC0000;">"0"</span> <span style="color:#006600; font-weight:bold;">&#93;</span> ; then<br />
&nbsp; &nbsp; &nbsp; echo <span style="color:#CC0000;">"Finished successfully."</span><br />
&nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp;echo <span style="color:#CC0000;">"Step 3 failed."</span><br />
&nbsp; &nbsp; fi<br />
&nbsp; else<br />
&nbsp; &nbsp; echo <span style="color:#CC0000;">"Step 2 failed with ${step2}"</span><br />
&nbsp; fi<br />
else<br />
&nbsp; echo <span style="color:#CC0000;">"Step 1 Failed. with ${step1}"</span><br />
fi</div>
</div>
</div>
<p></p>
<p>To test my script I made a little java class that will error out half the time that looks like this:</p>
<div class="syntax_hilite">
<div id="java-6">
<div class="java"><span style="color: #a1a100;">import java.util.Random;</span><br />
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> Test<br />
<span style="color: #66cc66;">&#123;</span></p>
<p><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #993333;">static</span> <span style="color: #993333;">void</span> main<span style="color: #66cc66;">&#40;</span><a href="http://www.google.com/search?q=allinurl%3AString+java.sun.com&amp;bntl=1"><span style="color: #aaaadd; font-weight: bold;">String</span></a><span style="color: #66cc66;">&#91;</span><span style="color: #66cc66;">&#93;</span> args<span style="color: #66cc66;">&#41;</span><br />
<span style="color: #66cc66;">&#123;</span><br />
<a href="http://www.google.com/search?q=allinurl%3ARandom+java.sun.com&amp;bntl=1"><span style="color: #aaaadd; font-weight: bold;">Random</span></a> gen = <span style="color: #000000; font-weight: bold;">new</span> <a href="http://www.google.com/search?q=allinurl%3ARandom+java.sun.com&amp;bntl=1"><span style="color: #aaaadd; font-weight: bold;">Random</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>gen.<span style="color: #006600;">nextInt</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span>&gt; <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><br />
<span style="color: #66cc66;">&#123;</span><br />
<a href="http://www.google.com/search?q=allinurl%3ASystem+java.sun.com&amp;bntl=1"><span style="color: #aaaadd; font-weight: bold;">System</span></a>.<span style="color: #006600;">out</span>.<span style="color: #006600;">println</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">"I Win!"</span><span style="color: #66cc66;">&#41;</span>;<br />
<span style="color: #66cc66;">&#125;</span><br />
<span style="color: #b1b100;">else</span><br />
<span style="color: #66cc66;">&#123;</span><br />
<span style="color: #000000; font-weight: bold;">throw</span> <span style="color: #000000; font-weight: bold;">new</span> <a href="http://www.google.com/search?q=allinurl%3ARuntimeException+java.sun.com&amp;bntl=1"><span style="color: #aaaadd; font-weight: bold;">RuntimeException</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">"I Fail!"</span><span style="color: #66cc66;">&#41;</span>;<br />
<span style="color: #66cc66;">&#125;</span><br />
<span style="color: #66cc66;">&#125;</span><br />
<span style="color: #66cc66;">&#125;</span></div>
</div>
</div>
<p></p>
<!-- Social Bookmarks BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.weheartcode.com/2009/05/13/capturing-uncaught-java-exceptions-in-a-bash-shell-script/&amp;title=Capturing+Uncaught+Java+Exceptions+in+a+Bash+Shell+Script" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to Del.icio.us"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/delicious.png" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to Del.icio.us" alt="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.weheartcode.com/2009/05/13/capturing-uncaught-java-exceptions-in-a-bash-shell-script/&amp;title=Capturing+Uncaught+Java+Exceptions+in+a+Bash+Shell+Script" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to digg"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/digg.png" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to digg" alt="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Capturing+Uncaught+Java+Exceptions+in+a+Bash+Shell+Script&amp;u=http://www.weheartcode.com/2009/05/13/capturing-uncaught-java-exceptions-in-a-bash-shell-script/" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to FURL"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/furl.png" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to FURL" alt="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.weheartcode.com/2009/05/13/capturing-uncaught-java-exceptions-in-a-bash-shell-script/&amp;title=Capturing+Uncaught+Java+Exceptions+in+a+Bash+Shell+Script" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to reddit"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/reddit.png" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to reddit" alt="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.weheartcode.com/2009/05/13/capturing-uncaught-java-exceptions-in-a-bash-shell-script/" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to Technorati"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/technorati.png" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to Technorati" alt="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.weheartcode.com/2009/05/13/capturing-uncaught-java-exceptions-in-a-bash-shell-script/&amp;title=Capturing+Uncaught+Java+Exceptions+in+a+Bash+Shell+Script" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to Google Bookmarks"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/google.png" title="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to Google Bookmarks" alt="Add 'Capturing Uncaught Java Exceptions in a Bash Shell Script' to Google Bookmarks" /></a></div>
<!-- Social Bookmarks END -->]]></content:encoded>
			<wfw:commentRss>http://www.weheartcode.com/2009/05/13/capturing-uncaught-java-exceptions-in-a-bash-shell-script/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Killing a process by name in ubuntu</title>
		<link>http://www.weheartcode.com/2007/09/17/killing-a-process-by-name-in-ubuntu/</link>
		<comments>http://www.weheartcode.com/2007/09/17/killing-a-process-by-name-in-ubuntu/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 20:52:23 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.weheartcode.com/2007/09/17/killing-a-process-by-name-in-ubuntu/</guid>
		<description><![CDATA[I have to kill mongrel alot because it's a flea-bitten mutt.
My usual method was to do a ps -aux &#124; grep mongrel , find the pid and kill it!
Annoying and stupid!
Now I just use the nice pkill tool in ubuntu like so.
pkill mongrel
boom! All bad doggies killed! This probably works on other *nix flavors, but [...]]]></description>
			<content:encoded><![CDATA[<p>I have to kill <a href="http://mongrel.rubyforge.org/">mongrel</a> alot because it's a flea-bitten mutt.</p>
<p>My usual method was to do a <code>ps -aux | grep mongrel </code>, find the pid and kill it!</p>
<p>Annoying and stupid!</p>
<p>Now I just use the nice pkill tool in ubuntu like so.</p>
<p><code>pkill mongrel</code></p>
<p>boom! All bad doggies killed! This probably works on other *nix flavors, but who knows if your stupid admin installed it.</p>
<!-- Social Bookmarks BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.weheartcode.com/2007/09/17/killing-a-process-by-name-in-ubuntu/&amp;title=Killing+a+process+by+name+in+ubuntu" title="Add 'Killing a process by name in ubuntu' to Del.icio.us"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/delicious.png" title="Add 'Killing a process by name in ubuntu' to Del.icio.us" alt="Add 'Killing a process by name in ubuntu' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.weheartcode.com/2007/09/17/killing-a-process-by-name-in-ubuntu/&amp;title=Killing+a+process+by+name+in+ubuntu" title="Add 'Killing a process by name in ubuntu' to digg"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/digg.png" title="Add 'Killing a process by name in ubuntu' to digg" alt="Add 'Killing a process by name in ubuntu' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Killing+a+process+by+name+in+ubuntu&amp;u=http://www.weheartcode.com/2007/09/17/killing-a-process-by-name-in-ubuntu/" title="Add 'Killing a process by name in ubuntu' to FURL"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/furl.png" title="Add 'Killing a process by name in ubuntu' to FURL" alt="Add 'Killing a process by name in ubuntu' to FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.weheartcode.com/2007/09/17/killing-a-process-by-name-in-ubuntu/&amp;title=Killing+a+process+by+name+in+ubuntu" title="Add 'Killing a process by name in ubuntu' to reddit"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/reddit.png" title="Add 'Killing a process by name in ubuntu' to reddit" alt="Add 'Killing a process by name in ubuntu' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.weheartcode.com/2007/09/17/killing-a-process-by-name-in-ubuntu/" title="Add 'Killing a process by name in ubuntu' to Technorati"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/technorati.png" title="Add 'Killing a process by name in ubuntu' to Technorati" alt="Add 'Killing a process by name in ubuntu' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.weheartcode.com/2007/09/17/killing-a-process-by-name-in-ubuntu/&amp;title=Killing+a+process+by+name+in+ubuntu" title="Add 'Killing a process by name in ubuntu' to Google Bookmarks"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/google.png" title="Add 'Killing a process by name in ubuntu' to Google Bookmarks" alt="Add 'Killing a process by name in ubuntu' to Google Bookmarks" /></a></div>
<!-- Social Bookmarks END -->]]></content:encoded>
			<wfw:commentRss>http://www.weheartcode.com/2007/09/17/killing-a-process-by-name-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java App Empty Window under Compz-Fusion / Beryl</title>
		<link>http://www.weheartcode.com/2007/07/22/java-app-empty-window-under-compz-fusion-beryl/</link>
		<comments>http://www.weheartcode.com/2007/07/22/java-app-empty-window-under-compz-fusion-beryl/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 19:26:41 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.weheartcode.com/2007/07/22/java-app-empty-window-under-compz-fusion-beryl/</guid>
		<description><![CDATA[This weekend I was playing around with Ubuntu 7.04 and Compiz-Fusion, I didn't have any major problems until I tried to get Oracle SQL Developer and Aqua Data Studio to work, they would start up but no interface would be drawn.
Well the problem is that they were trying to figure out the Window Manager for [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend I was playing around with Ubuntu 7.04 and <a href="http://compiz.org/">Compiz-Fusion</a>, I didn't have any major problems until I tried to get <a href="http://www.oracle.com/technology/products/database/sql_developer/index.html">Oracle SQL Developer</a> and <a href="http://www.aquafold.com/">Aqua Data Studio</a> to work, they would start up but no interface would be drawn.</p>
<p>Well the problem is that they were trying to figure out the Window Manager for themselves and failing.</p>
<p>To fix this add:</p>
<p>export AWT_TOOLKIT=MToolkit </p>
<p>to your bash profile/rc or just in the respective shell script of the app.</p>
<p>Now we can wobble our windows while we code :)</p>
<!-- Social Bookmarks BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.weheartcode.com/2007/07/22/java-app-empty-window-under-compz-fusion-beryl/&amp;title=Java+App+Empty+Window+under+Compz-Fusion+%2F+Beryl" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to Del.icio.us"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/delicious.png" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to Del.icio.us" alt="Add 'Java App Empty Window under Compz-Fusion / Beryl' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.weheartcode.com/2007/07/22/java-app-empty-window-under-compz-fusion-beryl/&amp;title=Java+App+Empty+Window+under+Compz-Fusion+%2F+Beryl" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to digg"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/digg.png" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to digg" alt="Add 'Java App Empty Window under Compz-Fusion / Beryl' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Java+App+Empty+Window+under+Compz-Fusion+%2F+Beryl&amp;u=http://www.weheartcode.com/2007/07/22/java-app-empty-window-under-compz-fusion-beryl/" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to FURL"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/furl.png" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to FURL" alt="Add 'Java App Empty Window under Compz-Fusion / Beryl' to FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.weheartcode.com/2007/07/22/java-app-empty-window-under-compz-fusion-beryl/&amp;title=Java+App+Empty+Window+under+Compz-Fusion+%2F+Beryl" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to reddit"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/reddit.png" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to reddit" alt="Add 'Java App Empty Window under Compz-Fusion / Beryl' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.weheartcode.com/2007/07/22/java-app-empty-window-under-compz-fusion-beryl/" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to Technorati"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/technorati.png" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to Technorati" alt="Add 'Java App Empty Window under Compz-Fusion / Beryl' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.weheartcode.com/2007/07/22/java-app-empty-window-under-compz-fusion-beryl/&amp;title=Java+App+Empty+Window+under+Compz-Fusion+%2F+Beryl" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to Google Bookmarks"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/google.png" title="Add 'Java App Empty Window under Compz-Fusion / Beryl' to Google Bookmarks" alt="Add 'Java App Empty Window under Compz-Fusion / Beryl' to Google Bookmarks" /></a></div>
<!-- Social Bookmarks END -->]]></content:encoded>
			<wfw:commentRss>http://www.weheartcode.com/2007/07/22/java-app-empty-window-under-compz-fusion-beryl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Alternative Oracle Site</title>
		<link>http://www.weheartcode.com/2007/07/09/great-alternative-oracle-site/</link>
		<comments>http://www.weheartcode.com/2007/07/09/great-alternative-oracle-site/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 12:45:01 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.weheartcode.com/2007/07/09/great-alternative-oracle-site/</guid>
		<description><![CDATA[During the last week or so I've been going through the process of setting up an Oracle 10g database on CentOS 4.5. Rather than relying on the toads at OTN or the raving throngs of confusion at the oracle.com forums for advice. I learned everything I needed to know at Dizwell Informatics. It's the site [...]]]></description>
			<content:encoded><![CDATA[<p>During the last week or so I've been going through the process of setting up an Oracle 10g database on CentOS 4.5. Rather than relying on the toads at OTN or the raving throngs of confusion at the oracle.com forums for advice. I learned everything I needed to know at <a href="http://www.dizwell.com/prod/">Dizwell Informatics</a>. It's the site and blog of an Oracle DBA from down under who has detailed tutorials complete with annotated flash videos for everything you need to know to get an Oracle Database up and running. Here's the ones I used</p>
<ul>
<li>I<a href="http://www.dizwell.com/images/flash/buildlinvm.swf">nstalling CentOS in VMWare.</a>: For the practice run.</li>
<li><a href="http://www.dizwell.com/prod/node/50">Installing Oracle 10g on CentOS</a>: Great Article on all the pitfalls of the crazy oracle install.</li>
<li><a href="http://www.dizwell.com/images/flash/createdb-on-suse.swf">Creating a Database with dbca</a></li>
<li>...and on and on.</li>
</ul>
<p>Anyway, it's a great site with tons of articles and helpful forums and you get to save the shame from having to ask questions on metalink.</p>
<!-- Social Bookmarks BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.weheartcode.com/2007/07/09/great-alternative-oracle-site/&amp;title=Great+Alternative+Oracle+Site" title="Add 'Great Alternative Oracle Site' to Del.icio.us"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/delicious.png" title="Add 'Great Alternative Oracle Site' to Del.icio.us" alt="Add 'Great Alternative Oracle Site' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.weheartcode.com/2007/07/09/great-alternative-oracle-site/&amp;title=Great+Alternative+Oracle+Site" title="Add 'Great Alternative Oracle Site' to digg"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/digg.png" title="Add 'Great Alternative Oracle Site' to digg" alt="Add 'Great Alternative Oracle Site' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Great+Alternative+Oracle+Site&amp;u=http://www.weheartcode.com/2007/07/09/great-alternative-oracle-site/" title="Add 'Great Alternative Oracle Site' to FURL"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/furl.png" title="Add 'Great Alternative Oracle Site' to FURL" alt="Add 'Great Alternative Oracle Site' to FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.weheartcode.com/2007/07/09/great-alternative-oracle-site/&amp;title=Great+Alternative+Oracle+Site" title="Add 'Great Alternative Oracle Site' to reddit"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/reddit.png" title="Add 'Great Alternative Oracle Site' to reddit" alt="Add 'Great Alternative Oracle Site' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.weheartcode.com/2007/07/09/great-alternative-oracle-site/" title="Add 'Great Alternative Oracle Site' to Technorati"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/technorati.png" title="Add 'Great Alternative Oracle Site' to Technorati" alt="Add 'Great Alternative Oracle Site' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.weheartcode.com/2007/07/09/great-alternative-oracle-site/&amp;title=Great+Alternative+Oracle+Site" title="Add 'Great Alternative Oracle Site' to Google Bookmarks"><img src="http://www.weheartcode.com/wp-content/plugins/social_bookmarks/google.png" title="Add 'Great Alternative Oracle Site' to Google Bookmarks" alt="Add 'Great Alternative Oracle Site' to Google Bookmarks" /></a></div>
<!-- Social Bookmarks END -->]]></content:encoded>
			<wfw:commentRss>http://www.weheartcode.com/2007/07/09/great-alternative-oracle-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
