<?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/"
				  >
<channel>
<title>random thoughts of a code monkey</title>
<link>http://bradym.net/feed</link>
<description><![CDATA[random thoughts of a code monkey]]></description>
<language>en-us</language>
<pubDate>Sun, 20 May 2012 01:00:00 -0700</pubDate>
<copyright>Copyright 2002 - 2012 bradym.net</copyright>
<item>
<title>Understanding error settings in PHP</title>
<link>http://bradym.net/php/understanding-error-settings</link>
<pubDate>Thu, 19 May 2011 10:15:00 -0700</pubDate>
<description><![CDATA[Do you understand what the different php.ini settings around error messages are and how to use them? Here's a description of some of the most important settings related to errors and how to use them effectively.]]></description>
<guid isPermaLink="true" >http://bradym.net/php/understanding-error-settings</guid>
</item>
<item>
<title>Custom Error Controller in CodeIgniter 2.0</title>
<link>http://bradym.net/php/custom-error-controller-in-codeigniter-2-0</link>
<pubDate>Tue, 01 Feb 2011 01:26:53 -0800</pubDate>
<description><![CDATA[One long-awaited feature of CodeIgniter 2.0 is using a controller for the 404 page. Unfortunately it doesn't quite work in all situations. Here's one appraoch to fix the behavior.]]></description>
<guid isPermaLink="true" >http://bradym.net/php/custom-error-controller-in-codeigniter-2-0</guid>
</item>
<item>
<title>Modify Query String Parameters</title>
<link>http://bradym.net/php/modify-query-string-parameters</link>
<pubDate>Tue, 05 Oct 2010 23:50:52 -0700</pubDate>
<description><![CDATA[How to modify the query string in a given url. Can be very useful when implementing pagination.]]></description>
<guid isPermaLink="true" >http://bradym.net/php/modify-query-string-parameters</guid>
</item>
<item>
<title>Creating iCalendar (ics) files with PHP</title>
<link>http://bradym.net/php/creating-icalendar-ics-files-with-php</link>
<pubDate>Sat, 15 Aug 2009 00:00:59 -0700</pubDate>
<description><![CDATA[Trying to create an ics file using PHP? Here's one way to do it.]]></description>
<guid isPermaLink="true" >http://bradym.net/php/creating-icalendar-ics-files-with-php</guid>
</item>
<item>
<title>Simple PHP Syntax Highlighting</title>
<link>http://bradym.net/php/simple-php-syntax-highlighting</link>
<pubDate>Sun, 19 Apr 2009 21:01:49 -0700</pubDate>
<description><![CDATA[Looking for a simple way to share code with fellow developers on a local network? This post shows one way to do just that using PHP.]]></description>
<guid isPermaLink="true" >http://bradym.net/php/simple-php-syntax-highlighting</guid>
</item>
<item>
<title>Setup Xdebug on OS X Leopard</title>
<link>http://bradym.net/php/setup-xdebug-on-os-x</link>
<pubDate>Wed, 25 Feb 2009 23:59:17 -0800</pubDate>
<description><![CDATA[Using Xdebug on OS X without installing a 3rd party version of Apache is possible, here's how.]]></description>
<guid isPermaLink="true" >http://bradym.net/php/setup-xdebug-on-os-x</guid>
</item>
<item>
<title>Geocoding with PHP</title>
<link>http://bradym.net/php/geocoding-with-php</link>
<pubDate>Tue, 24 Feb 2009 23:35:03 -0800</pubDate>
<description><![CDATA[Storing the latitude and longitude of addresses in your database speeds up the generation of map-based mashups. Here's a solution using the Yahoo! Geocoding API.]]></description>
<guid isPermaLink="true" >http://bradym.net/php/geocoding-with-php</guid>
</item>
<item>
<title>http_build_query() and arg_separator.output</title>
<link>http://bradym.net/php/http_build_query-and-arg_separator_output</link>
<pubDate>Thu, 25 Sep 2008 23:40:41 -0700</pubDate>
<description><![CDATA[If you've run into problems with PHP's http_build_query function, setting arg_separator.output may help. ]]></description>
<guid isPermaLink="true" >http://bradym.net/php/http_build_query-and-arg_separator_output</guid>
</item>
<item>
<title>Canonical redirect on IIS using PHP</title>
<link>http://bradym.net/php/canonical-redirect-iis</link>
<pubDate>Wed, 03 Sep 2008 21:37:49 -0700</pubDate>
<description><![CDATA[Using a Windows hosting account where you don't have the ability to modify IIS configurations? Here's one method for setting up a canonical redirect.]]></description>
<guid isPermaLink="true" >http://bradym.net/php/canonical-redirect-iis</guid>
</item>
<item>
<title>Testing in multiple versions of IE</title>
<link>http://bradym.net/windows/testing-in-multiple-versions-of-ie</link>
<pubDate>Wed, 27 Aug 2008 22:02:40 -0700</pubDate>
<description><![CDATA[Internet Explorer is the bane of every web developer's existance. What makes it worse is how difficult Microsoft makes it to test sites in different versions of IE.]]></description>
<guid isPermaLink="true" >http://bradym.net/windows/testing-in-multiple-versions-of-ie</guid>
</item>
<item>
<title>Logging requests with MySQL</title>
<link>http://bradym.net/mysql/logging-requests-with-mysql</link>
<pubDate>Sat, 12 Jul 2008 15:49:33 -0700</pubDate>
<description><![CDATA[Trying to setup a simple activity log using MySQL?  Using this techniquie it's easy to get a count of actions performed on your site.]]></description>
<guid isPermaLink="true" >http://bradym.net/mysql/logging-requests-with-mysql</guid>
</item>
<item>
<title>MySQL - on duplicate key update</title>
<link>http://bradym.net/mysql/on-duplicate-key-update</link>
<pubDate>Sun, 06 Jul 2008 17:57:00 -0700</pubDate>
<description><![CDATA[Using "ON DUPLICATE KEY UPDATE" can be very useful when migrating data or logging to a MySQL database.]]></description>
<guid isPermaLink="true" >http://bradym.net/mysql/on-duplicate-key-update</guid>
</item>
<item>
<title>Making the Windows Command Prompt Usable</title>
<link>http://bradym.net/windows/making-the-windows-command-prompt-usable</link>
<pubDate>Mon, 28 Apr 2008 22:53:40 -0700</pubDate>
<description><![CDATA[Compared to *nix based systems, the windows command prompt is a joke. If you're stuck on windows, here are some tips to make the command line experience a little less painful.]]></description>
<guid isPermaLink="true" >http://bradym.net/windows/making-the-windows-command-prompt-usable</guid>
</item>
<item>
<title>Opera friendly PHP redirect</title>
<link>http://bradym.net/php/opera-friendly-php-redirect</link>
<pubDate>Wed, 02 Jan 2008 19:23:09 -0800</pubDate>
<description><![CDATA[Having trouble getting a redirect to work in Opera? This might help]]></description>
<guid isPermaLink="true" >http://bradym.net/php/opera-friendly-php-redirect</guid>
</item>
<item>
<title>Can't get JCalendar to select a specific date when opening</title>
<link>http://bradym.net/misc/cant-get-jcalendar-to-select-a-specific-date-when-opening</link>
<pubDate>Wed, 02 Jan 2008 19:22:34 -0800</pubDate>
<description><![CDATA[How to get around the bug that in some versions of JCalendar prevents the initial date from being set.]]></description>
<guid isPermaLink="true" >http://bradym.net/misc/cant-get-jcalendar-to-select-a-specific-date-when-opening</guid>
</item>
<item>
<title>Setting up Wireless with DSL</title>
<link>http://bradym.net/misc/setting-up-wireless-with-dsl</link>
<pubDate>Wed, 02 Jan 2008 19:19:54 -0800</pubDate>
<description><![CDATA[Using a Cisco 678 DSL modem and want to setup wireless? It's trickier than it sounds, here's how I got it to work.]]></description>
<guid isPermaLink="true" >http://bradym.net/misc/setting-up-wireless-with-dsl</guid>
</item>
<item>
<title>Choosing a Domain Registrar</title>
<link>http://bradym.net/misc/choosing-a-domain-registrar</link>
<pubDate>Wed, 02 Jan 2008 19:17:54 -0800</pubDate>
<description><![CDATA[Trying to decide on a registrar? Here are some thinks to keep in mind so you don't get burned.]]></description>
<guid isPermaLink="true" >http://bradym.net/misc/choosing-a-domain-registrar</guid>
</item>
</channel>
</rss>
