<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Tom Keur's Blog</title>
	
	<link>http://tomkeur.net</link>
	<description />
	<lastBuildDate>Thu, 26 Feb 2009 00:13:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/tomkeur" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="tomkeur" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Adding MySQL to JAVA on MAC</title>
		<link>http://tomkeur.net/61/adding-mysql-to-java-on-mac.html</link>
		<comments>http://tomkeur.net/61/adding-mysql-to-java-on-mac.html#comments</comments>
		<pubDate>Wed, 11 Feb 2009 15:58:24 +0000</pubDate>
		<dc:creator>Tom Keur</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://tomkeur.net/?p=61</guid>
		<description><![CDATA[Hi, Today I was trying to get MySQL working with JDBC on my Macbook pro. After doing some research I found out that I needed to get &#8220;MySQL Connector/J&#8221; in the Java extension map. Here are the steps to get MySQL working with JDBC. Download the MySQL Connect/J from the Mysql.com website. Unzip the package! [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Today I was trying to get MySQL working with JDBC on my Macbook pro.</p>
<p>After doing some research I found out that I needed to get &#8220;<a href="http://dev.mysql.com/downloads/connector/j/5.1.html" target="_blank">MySQL Connector/J</a>&#8221; in the Java extension map.</p>
<p>Here are the steps to get MySQL working with JDBC.</p>
<p><span id="more-61"></span></p>
<ol>
<li>Download the <a href="http://dev.mysql.com/downloads/connector/j/5.1.html" target="_blank">MySQL Connect/J</a> from the Mysql.com website.</li>
<li>Unzip the package!</li>
<li>Copy the &#8220;mysql-connector-java-5.1.7-bin.jar&#8221; file to your: /System/Library/Java/Extensions/ directory.</li>
<li>You can now use MySQL with JDBC!</li>
<li>You don&#8217;t need to add the jar file to your project in eclipse manually anymore!</li>
</ol>
<p>Since I&#8217;m using Eclipse to develop with Java, it&#8217;s in my JRE System Library by default!</p>
<p><img class="alignnone size-full wp-image-62" title="Eclipse MySQL JDBC" src="http://tomkeur.net/wp-content/uploads/2009/02/eclipse-mysql-jdbc.png" alt="Eclipse MySQL JDBC" width="672" height="522" /></p>
<p>For testing if MySQl is working correctly I wrote a simple class.</p>
<p><strong>SQL file:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">TABLE</span> <span style="color: #993333; font-weight: bold;">IF</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">EXISTS</span> <span style="color: #ff0000;">`testtable`</span> <span style="color: #66cc66;">&#40;</span>
  <span style="color: #ff0000;">`id`</span> <span style="color: #993333; font-weight: bold;">INT</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">11</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span> <span style="color: #993333; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`name`</span> <span style="color: #993333; font-weight: bold;">VARCHAR</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">COLLATE</span> utf8_unicode_ci <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`age`</span> <span style="color: #993333; font-weight: bold;">INT</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">11</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #ff0000;">`city`</span> <span style="color: #993333; font-weight: bold;">VARCHAR</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">COLLATE</span> utf8_unicode_ci <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span>
  <span style="color: #993333; font-weight: bold;">PRIMARY</span> <span style="color: #993333; font-weight: bold;">KEY</span>  <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`id`</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span> ENGINE<span style="color: #66cc66;">=</span>MyISAM  <span style="color: #993333; font-weight: bold;">DEFAULT</span> CHARSET<span style="color: #66cc66;">=</span>utf8 <span style="color: #993333; font-weight: bold;">COLLATE</span><span style="color: #66cc66;">=</span>utf8_unicode_ci <span style="color: #993333; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #66cc66;">=</span><span style="color: #cc66cc;">3</span> ;
&nbsp;
<span style="color: #993333; font-weight: bold;">INSERT</span> <span style="color: #993333; font-weight: bold;">INTO</span> <span style="color: #ff0000;">`testtable`</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`id`</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">`name`</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">`age`</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">`city`</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">VALUES</span>
<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'Mr. John Doe'</span><span style="color: #66cc66;">,</span> <span style="color: #cc66cc;">31</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'Groningen'</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span>
<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'Mrs. Jane Doe'</span><span style="color: #66cc66;">,</span> <span style="color: #cc66cc;">31</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'Groningen'</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p><strong>Java:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #008000; font-style: italic; font-weight: bold;">/**
 * @author tomkeur
 */</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.sql.*</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> MySQLDatabase <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> main<span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> args<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #003399;">Connection</span> conn <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">null</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #666666; font-style: italic;">// SETTINGS: userName, passWord and dataBase.</span>
			<span style="color: #003399;">String</span> userName <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;root&quot;</span><span style="color: #339933;">;</span>
			<span style="color: #003399;">String</span> passWord <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
			<span style="color: #003399;">String</span> dataBase <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;test&quot;</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #666666; font-style: italic;">// Creating class.</span>
			<span style="color: #000000; font-weight: bold;">Class</span>.<span style="color: #006633;">forName</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;com.mysql.jdbc.Driver&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">newInstance</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #666666; font-style: italic;">// Let's create a connection.</span>
			conn <span style="color: #339933;">=</span> <span style="color: #003399;">DriverManager</span>.<span style="color: #006633;">getConnection</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;jdbc:mysql:///&quot;</span><span style="color: #339933;">+</span>dataBase, userName, passWord<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #666666; font-style: italic;">// Do we have a connection?</span>
			<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>conn.<span style="color: #006633;">isClosed</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
			<span style="color: #009900;">&#123;</span>
				<span style="color: #666666; font-style: italic;">// We have a MySQL Connection.</span>
				<span style="color: #003399;">Statement</span> s <span style="color: #339933;">=</span> conn.<span style="color: #006633;">createStatement</span> <span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				s.<span style="color: #006633;">executeQuery</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT * FROM testtable&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #003399;">ResultSet</span> rs <span style="color: #339933;">=</span> s.<span style="color: #006633;">getResultSet</span> <span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #009900;">&#40;</span>rs.<span style="color: #006633;">next</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #666666; font-style: italic;">// loop through rows of result set</span>
				<span style="color: #009900;">&#123;</span>
					<span style="color: #000066; font-weight: bold;">int</span> pkey <span style="color: #339933;">=</span> rs.<span style="color: #006633;">getInt</span> <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
					<span style="color: #003399;">String</span> strName <span style="color: #339933;">=</span> rs.<span style="color: #006633;">getString</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
					<span style="color: #000066; font-weight: bold;">int</span> intAge <span style="color: #339933;">=</span> rs.<span style="color: #006633;">getInt</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">3</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
					<span style="color: #003399;">String</span> strCity <span style="color: #339933;">=</span> rs.<span style="color: #006633;">getString</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">4</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
					<span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;uID: &quot;</span> <span style="color: #339933;">+</span> pkey <span style="color: #339933;">+</span> <span style="color: #0000ff;">&quot;, Name: &quot;</span> <span style="color: #339933;">+</span> strName <span style="color: #339933;">+</span> <span style="color: #0000ff;">&quot;, Age: &quot;</span> <span style="color: #339933;">+</span> intAge <span style="color: #339933;">+</span> <span style="color: #0000ff;">&quot;, City: &quot;</span> <span style="color: #339933;">+</span> strCity <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #009900;">&#125;</span>
				rs.<span style="color: #006633;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// close result set</span>
				s.<span style="color: #006633;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// close statement</span>
			<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #000000; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span><span style="color: #003399;">Exception</span> e<span style="color: #009900;">&#41;</span>
		<span style="color: #009900;">&#123;</span>
			<span style="color: #003399;">System</span>.<span style="color: #006633;">err</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Exception: &quot;</span> <span style="color: #339933;">+</span> e.<span style="color: #006633;">getMessage</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #000000; font-weight: bold;">finally</span>
		<span style="color: #009900;">&#123;</span>
			<span style="color: #666666; font-style: italic;">// If we don't have a error, close the connection!</span>
			<span style="color: #000000; font-weight: bold;">try</span>
			<span style="color: #009900;">&#123;</span>
				<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>conn <span style="color: #339933;">!=</span> <span style="color: #000066; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span>
				<span style="color: #009900;">&#123;</span>
					conn.<span style="color: #006633;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #009900;">&#125;</span>
			<span style="color: #009900;">&#125;</span>
			<span style="color: #000000; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span><span style="color: #003399;">SQLException</span> e<span style="color: #009900;">&#41;</span>
			<span style="color: #009900;">&#123;</span>
&nbsp;
			<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></div></div>

<p><strong>On Microsoft platsforms you can allso add the the jar file to:</strong><br />
C:\Program Files\Java\jreX.X.X_XX\lib\ext where the X&#8217;s are the version of your installed Java Runtime Environment (JRE).</p>
]]></content:encoded>
			<wfw:commentRss>http://tomkeur.net/61/adding-mysql-to-java-on-mac.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Starting a photography business</title>
		<link>http://tomkeur.net/53/starting-a-photography-business.html</link>
		<comments>http://tomkeur.net/53/starting-a-photography-business.html#comments</comments>
		<pubDate>Thu, 05 Feb 2009 02:25:23 +0000</pubDate>
		<dc:creator>Tom Keur</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[hobby]]></category>

		<guid isPermaLink="false">http://tomkeur.net/?p=53</guid>
		<description><![CDATA[When I started photography as a hobby I soon discovered that there was still a lot of work available as a party photographer. So I now made the final decision to start a company especially for Photography. I call it Bright Photography, the website is currently under construction but soon I will post a online [...]]]></description>
			<content:encoded><![CDATA[<p>When I started photography as a hobby I soon discovered that there was still a lot of work available as a party photographer.</p>
<p>So I now made the final decision to start a company especially for Photography. I call it <a title="Bright Fotografie Hardenberg" href="http://brightfotografie.nl" target="_blank">Bright Photography</a>, the website is currently under construction but soon I will post a online portfolio here. These are the types of photography I will aim on:</p>
<ul>
<li>Party photography</li>
<li>Event photography</li>
<li>Creating pictures of company&#8217;s for their websites.</li>
</ul>
<p>In the meantime I opened a <a title="flickr" href="http://www.flickr.com/photos/tomkeur/">Flickr</a> account, yeah I know I need to upload some more pictures but before I can do that I first need to make a few nice pictures because the last pictures that I’ve taken are work related. Pictures on my flickr account are not work related!</p>
]]></content:encoded>
			<wfw:commentRss>http://tomkeur.net/53/starting-a-photography-business.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some changes</title>
		<link>http://tomkeur.net/48/some-changes.html</link>
		<comments>http://tomkeur.net/48/some-changes.html#comments</comments>
		<pubDate>Sat, 17 Jan 2009 17:10:37 +0000</pubDate>
		<dc:creator>Tom Keur</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://tomkeur.net/?p=48</guid>
		<description><![CDATA[After doing not much with my personal website I decided to start blogging in another way now. In the upcoming future I want to place more photographs on my blog, and write little stories about me or things that keep me busy. And my blog is in English now.]]></description>
			<content:encoded><![CDATA[<p>After doing not much with my personal website I decided to start blogging in another way now.</p>
<p>In the upcoming future I want to place more photographs on my blog, and write little stories about me or things that keep me busy.</p>
<p>And my blog is in English now.</p>
]]></content:encoded>
			<wfw:commentRss>http://tomkeur.net/48/some-changes.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove MySQL completely Mac OS X Leopard</title>
		<link>http://tomkeur.net/39/how-to-remove-mysql-completely-mac-os-x-leopard.html</link>
		<comments>http://tomkeur.net/39/how-to-remove-mysql-completely-mac-os-x-leopard.html#comments</comments>
		<pubDate>Thu, 23 Oct 2008 18:16:25 +0000</pubDate>
		<dc:creator>Tom Keur</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://tomkeur.net/?p=39</guid>
		<description><![CDATA[Hi, After I&#8217;ve been searching alot I finally mananged it to delete MySQL from my Macbook pro. The steps: First you need to edit the file in: /etc/hostconfig and remove the line Since this is a system file I advise you to open it with nano in terminal: Open Terminal sudo nano /etc/hostconfig Enter your [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>After I&#8217;ve been searching alot I finally mananged it to delete MySQL from my Macbook pro.</p>
<p><strong>The steps:</strong></p>
<p>First you need to edit the file in: <em>/etc/hostconfig</em> and remove the line</p>
<p><span id="more-39"></span></p>
<p>Since this is a system file I advise you to open it with nano in terminal:</p>
<ol>
<li>Open Terminal</li>
<li>sudo nano /etc/hostconfig</li>
<li>Enter your password if you&#8217;re not authed yet.</li>
<li>Delete the following line: &#8220;MYSQLCOM=-YES-&#8221;</li>
<li>CTRL+X (This is the command for closing NANO, Enter the &#8220;Y&#8221; key to save the file and exit nano).</li>
</ol>
<p><strong>Second step:</strong></p>
<p>Make sure MySQL is not running.</p>
<ol>
<li>Open Terminal and copy and paste and run the following commands:</li>
</ol>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>mysql
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>mysql<span style="color: #000000; font-weight: bold;">*</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>StartupItems<span style="color: #000000; font-weight: bold;">/</span>MySQLCOM
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>PreferencePanes<span style="color: #000000; font-weight: bold;">/</span>My<span style="color: #000000; font-weight: bold;">*</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Receipts<span style="color: #000000; font-weight: bold;">/</span>mysql<span style="color: #000000; font-weight: bold;">*</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Receipts<span style="color: #000000; font-weight: bold;">/</span>MySQL<span style="color: #000000; font-weight: bold;">*</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>my.cnf</pre></div></div>

<p>MySQL is now removed from your MAC.</p>
<p>Edit 26-02-2009:  Maarten van der Pee wrote a comment that it&#8217;s allso needed to delete the my.conf, I added it to the list of commands. Thanks Maarten!</p>
]]></content:encoded>
			<wfw:commentRss>http://tomkeur.net/39/how-to-remove-mysql-completely-mac-os-x-leopard.html/feed</wfw:commentRss>
		<slash:comments>57</slash:comments>
		</item>
		<item>
		<title>Status update #2</title>
		<link>http://tomkeur.net/34/status-update-2.html</link>
		<comments>http://tomkeur.net/34/status-update-2.html#comments</comments>
		<pubDate>Thu, 21 Aug 2008 13:23:34 +0000</pubDate>
		<dc:creator>Tom Keur</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tomkeur.net/?p=34</guid>
		<description><![CDATA[Hey, Inmiddels woon ik in Groningen omdat ik hier Informatica ga studeren aan de Hanze Hogeschool (HBO). Overigens ben ik zeer benieuwd naar mijn nieuwe rooster zodat ik tijd kan gaan vrij plannen om te freelancen, maar zodra ik mijn rooster heb zal ik wat meer actie ondernemen om aan projecten te kunnen werken. Vrijdag [...]]]></description>
			<content:encoded><![CDATA[<p>Hey,</p>
<p>Inmiddels woon ik in Groningen omdat ik hier Informatica ga studeren aan de Hanze Hogeschool (HBO).<br />
Overigens ben ik zeer benieuwd naar mijn nieuwe rooster zodat ik tijd kan gaan vrij plannen om te freelancen, maar zodra ik mijn rooster heb zal ik wat meer actie ondernemen om aan projecten te kunnen werken.</p>
<p>Vrijdag begint de eerste officiële hockey training, ik kijk er naar uit!</p>
<p>Tot zover deze korte status update.</p>
]]></content:encoded>
			<wfw:commentRss>http://tomkeur.net/34/status-update-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

