<?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>Cory Hardman&#039;s Blog &#187; Development Links</title>
	<atom:link href="http://www.coryhardman.com/category/links/dev-links/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coryhardman.com</link>
	<description></description>
	<lastBuildDate>Fri, 23 Jul 2010 22:32:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=6402</generator>
		<item>
		<title>Floating Point Guide</title>
		<link>http://www.coryhardman.com/2010/05/floating-point-guide/</link>
		<comments>http://www.coryhardman.com/2010/05/floating-point-guide/#comments</comments>
		<pubDate>Sun, 02 May 2010 16:24:36 +0000</pubDate>
		<dc:creator>Cory Hardman</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Development Links]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://www.coryhardman.com/?p=122</guid>
		<description><![CDATA[I came across a great article about the pit falls of using floating point numbers in programming. All to often software bugs come up because developers expect something like 0.1+0.2==0.3. The article goes into very clear detail as to why it is not the case that we can expect exact equality while using float point representations.]]></description>
			<content:encoded><![CDATA[<p>I came across a great <a title="http://floating-point-gui.de/" href="http://">article</a> about the pit falls of using floating point numbers in programming. All to often software bugs come up because developers expect something like 0.1+0.2==0.3. The article goes into very clear detail as to why it is not the case that we can expect exact equality while using float point representations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coryhardman.com/2010/05/floating-point-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No NoSQL</title>
		<link>http://www.coryhardman.com/2010/03/no-nosql/</link>
		<comments>http://www.coryhardman.com/2010/03/no-nosql/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 16:45:06 +0000</pubDate>
		<dc:creator>Cory Hardman</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Development Links]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.coryhardman.com/?p=116</guid>
		<description><![CDATA[I&#8217;ve recently seen major websites start to move their database back-ends from MySQL to a NoSQL solution. NoSQL for those that have not yet heard of it is way to story data in a loose manner without a rigid scheme defined in a non relational way. The claim is that it these newer technologies can [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently seen <a href="http://about.digg.com/blog/saying-yes-nosql-going-steady-cassandra">major</a> websites start to move their database back-ends from MySQL to a NoSQL solution. NoSQL for those that have not yet heard of it is way to story data in a loose manner without a rigid scheme defined in a non relational way. The claim is that it these newer technologies can scale better than other relational based methods.</p>
<p>Which is fine and dandy for certain projects and if it works it works. However, a recent <a href="http://teddziuba.com/2010/03/i-cant-wait-for-nosql-to-die.html">article</a> underscores a feeling I have had with this trend. What is wrong with MySQL? The recent move to NoSQL would make one wonder how did we ever manage  to store this information in the past? I&#8217;d have to guess that over 99% of all projects are not large enough to every be concerned with scale issues. By scale issues I mean trying to store Google&#8217;s search information. MySQL or some other relational database back-end is being used by nearly every large cooperation in the world to store and manage tons of information.</p>
<p>Relational storage based solutions are still perfectly fine for nearly every project and they are often much easy to use. Be sure to think carefully before trying to decide which direction to head down.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coryhardman.com/2010/03/no-nosql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL and Java common problem</title>
		<link>http://www.coryhardman.com/2009/10/mysql-and-java-common-problem/</link>
		<comments>http://www.coryhardman.com/2009/10/mysql-and-java-common-problem/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 19:52:01 +0000</pubDate>
		<dc:creator>Cory Hardman</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Development Links]]></category>

		<guid isPermaLink="false">http://www.coryhardman.com/?p=92</guid>
		<description><![CDATA[Have you ever received the following error while using Java and MySQL: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;????????????????&#8217; at line 1 This is a common error when you first set up Java and MySQL to [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever received the following error while using Java and MySQL:</p>
<blockquote><p><span style="color: #000000;">You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;????????????????&#8217; at line 1</span></p></blockquote>
<p><span style="color: #000000;">This is a common error when you first set up Java and MySQL to work together. To correct it simply add the following lines of code to your my.cnf in the section [mysqld]</span></p>
<blockquote><p><span style="color: #000000;">collation_server=utf8_general_ci<br />
character_set_server=utf8</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.coryhardman.com/2009/10/mysql-and-java-common-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great C Tutorial</title>
		<link>http://www.coryhardman.com/2009/08/great-c-tutorial/</link>
		<comments>http://www.coryhardman.com/2009/08/great-c-tutorial/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 04:52:44 +0000</pubDate>
		<dc:creator>Cory Hardman</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Development Links]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://www.coryhardman.com/?p=29</guid>
		<description><![CDATA[Dr. Dave Marshall at Cardiff School of Computer Science has written a great C tutorial. This tutorial is mostly aimed at UNIX C developers and covers the basics of C programming to advanced multi-threaded application development. This is the tutorial that I used to learn C and I still open it up whenever I need [...]]]></description>
			<content:encoded><![CDATA[<p><strong><strong><em><a href="http://www.cs.cf.ac.uk/Dave/">Dr. Dave Marshall</a> at <a href="http://www.cs.cf.ac.uk/">Cardiff School of Computer Science</a> has written a <a href="http://www.cs.cf.ac.uk/Dave/C/CE.html">great C tutorial</a>. This tutorial is mostly aimed at UNIX C developers and covers the basics of C programming to advanced multi-threaded application development. This is the tutorial that I used to learn C and I still open it up whenever I need to look up something new or need a quick refresher on something. Unfortunately it appears that Google keeps burying the link so I thought it would be helpful to others that are looking for in my opinion the best C tutorial available online. </em> </strong></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coryhardman.com/2009/08/great-c-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
