<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Coderguy's Blog</title>
	<link>http://www.coderguy.com</link>
	<description>Thoughts on code</description>
	<lastBuildDate>Tue, 16 Feb 2010 16:29:10 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Trying out Nginx</title>
		<description><![CDATA[So, I have heard about nginx (engine x) as a great alternative to apache.  Apache is a very robust web server.  Nginx is a very minimal server.  It doesn&#8217;t to a lot of stuff, but that is fine because it does the things I need it to do.  Being a PHP [...]]]></description>
		<link>http://www.coderguy.com/2010/02/trying-out-nginx/</link>
			</item>
	<item>
		<title>Twitter Surveillance</title>
		<description><![CDATA[So I just installed nagios on my server at work.  I configured it to check our companies websites every 5-10 minutes.  I even got a couple of the sites setup to check if it was able to log in via the web inject plugin.  That&#8217;s not really that or earth shattering.
Things got [...]]]></description>
		<link>http://www.coderguy.com/2010/02/twitter-surveillance/</link>
			</item>
	<item>
		<title>Show Forgein Keys in MySQL</title>
		<description><![CDATA[Here is a handy query I found the mysql reference manual for how to see all the foreign keys in a database:

SELECT ke.referenced_table_name parent, ke.table_name child, ke.constraint_name
FROM information_schema.KEY_COLUMN_USAGE ke
WHERE ke.referenced_table_name IS NOT NULL
ORDER BY ke.referenced_table_name;

]]></description>
		<link>http://www.coderguy.com/2009/11/show-forgein-keys-in-mysql/</link>
			</item>
	<item>
		<title>Couchdb CURL gotcha</title>
		<description><![CDATA[So this is one of those stupid little development issues that eats up an hour of your time.  I am documenting this in hopes that it will save someone from wasting an hour of your time.
I am learning couchdb and using curl to interact with it&#8217;s RESTful api.  I wrote a view and was trying [...]]]></description>
		<link>http://www.coderguy.com/2009/10/couchdb-curl-gotcha/</link>
			</item>
	<item>
		<title>Learning to Test: Email Signup</title>
		<description><![CDATA[Background
A big part of the DSNews.com website is its Daily Dose.  The Daily Dose is a daily email that includes the top 4 stories on the site.  We send it out to a lot of people and it is opened and people click through to stories.  Before the re-launch in August, this [...]]]></description>
		<link>http://www.coderguy.com/2009/09/learning-to-test-email-signup/</link>
			</item>
	<item>
		<title>Learning to Test: Images vs Text</title>
		<description><![CDATA[We recently redesigned DSNews.com.  We had a tight deadline so some of the polishing elements have been added on over time.  Rather than add them in a careless manner, I decided to develop my testing skill set by always introducing new elements with a 2 or 3 variation test.
The first new feature to be developed [...]]]></description>
		<link>http://www.coderguy.com/2009/09/learning-to-test-images-vs-text/</link>
			</item>
	<item>
		<title>Get the Mime Type of a File</title>
		<description><![CDATA[If you would like to know the mime type of the file you can use the file command with the -i -b options.  Example:
&#62; file -i -b 20090731.flv
application/octet-stream
]]></description>
		<link>http://www.coderguy.com/2009/08/get-the-mime-type-of-a-file/</link>
			</item>
	<item>
		<title>PHP Session Numeric Key Bug</title>
		<description><![CDATA[I was working on a 404 page today.  The pages that detected the 404 and routed it to the 404 page, would try and set the $_SESSION['404'] variable.  After setting the variable I was able to use it on that page.  However, after the redirect the variable was missing.  I could set other variables, and [...]]]></description>
		<link>http://www.coderguy.com/2009/07/php-session-numeric-key-bug/</link>
			</item>
	<item>
		<title>Refresh MySQL Autocomplete: \#</title>
		<description><![CDATA[Here is nifty little tip.  If you need to have your command line MySQL autocomplete enabled or refresh the just type \# at the command line.
mysql&#62;\#
This is great for those times when you creating a lot of tables.
]]></description>
		<link>http://www.coderguy.com/2009/06/refresh-mysql-autocomplete/</link>
			</item>
	<item>
		<title>Upgrading Subversion (SVN) on the Mac</title>
		<description><![CDATA[As new versions of SVN come out, I enviably run into the error message:
svn: This client is too old to work with working copy &#8216;.&#8217;.
I have spent countless hours looking for a good way to upgrade the SVN client on my Mac.  The offical SVN page, includes links to MacPorts and Fink versions.  [...]]]></description>
		<link>http://www.coderguy.com/2009/06/upgrading-subversion-svn-on-the-mac/</link>
			</item>
</channel>
</rss>
