<?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>Brandon Beasley&#187; Blog</title>
	<atom:link href="http://brandonbeasley.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://brandonbeasley.com</link>
	<description>Wordpress, Systems Admin, Codeigniter, Network Engineer, Coder, SEO</description>
	<lastBuildDate>Thu, 09 Jun 2011 14:55:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Codeigniter Reactor: Quick and Dirty</title>
		<link>http://brandonbeasley.com/blog/codeigniter-reactor-quick-dirty/</link>
		<comments>http://brandonbeasley.com/blog/codeigniter-reactor-quick-dirty/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 01:41:44 +0000</pubDate>
		<dc:creator>Brandon Beasley</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Code Example]]></category>
		<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://brandonbeasley.com/?p=1125</guid>
		<description><![CDATA[<p>This entire Codeigniter Reactor example was created in about 1hr using version 2.0.1. Although quick and dirty, the result is a very effective web application that is stupidly simple. I don&#8217;t suggest taking this code and creating a similar site unless you own the domain names my.ip or myip.is as the niche is already over-crowded. [...]]]></description>
			<content:encoded><![CDATA[<p>This entire Codeigniter Reactor example was created in about 1hr using version 2.0.1.  Although quick and dirty, the result is a very effective web application that is stupidly simple.  I don&#8217;t suggest taking this code and creating a similar site unless you own the domain names my.ip or myip.is as the niche is already over-crowded.  Nevertheless you can check out <strong><a href="http://yourip4.com/">YourIP4.com &#8211; A Codeigniter Reactor Example Web Application</a></strong> and have a look at the example controller, view, and css style:</p>
<h2>The Controller</h2>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">class</span> Home <span style="color: #000000; font-weight: bold;">extends</span> CI_Controller <span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">function</span> __construct<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
            parent<span style="color: #339933;">::</span>__construct<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: #000000; font-weight: bold;">function</span> index<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_REFERER'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #000088;">$referer</span> <span style="color: #339933;">=</span>  <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_REFERER'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #000088;">$referer</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'No Referer'</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span>
&nbsp;
            <span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
                <span style="color: #0000ff;">'ip_address'</span>  <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REMOTE_ADDR'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
                <span style="color: #0000ff;">'remote_host'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">gethostbyaddr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REMOTE_ADDR'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
                <span style="color: #0000ff;">'browser'</span>     <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_USER_AGENT'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
                <span style="color: #0000ff;">'referer'</span>     <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$referer</span><span style="color: #339933;">,</span>
            <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">load</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">view</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'home_view'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<h2>The View</h2>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt;
    &lt;head&gt;
        &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;
        &lt;title&gt;YourIP4 &amp;copy; 2011&lt;/title&gt;
        &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot; /&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div id=&quot;wrapper&quot;&gt;
            &lt;div id=&quot;header&quot;&gt;
                &lt;a href=&quot;http://yourip4.com&quot;&gt;
                &lt;h1&gt;yourIP4.com&lt;/h1&gt;&lt;/a&gt;
            &lt;/div&gt;
            &lt;div id=&quot;content&quot;&gt;
                &lt;div id=&quot;liftbox&quot;&gt;
                    &lt;h1&gt;Your IP Address is:&lt;/h1&gt;
                    &lt;h4&gt;&lt;?php echo $ip_address ?&gt;&lt;/h4&gt;
                &lt;/div&gt;
                &lt;div id=&quot;info&quot;&gt;
                    &lt;img src=&quot;img/globe_download.png&quot; alt=&quot;HTTP Referer&quot; class=&quot;icon&quot; /&gt;
                    &lt;h2&gt;The last site you visited was:&lt;/h2&gt;
                    &lt;h3&gt;&lt;?php echo $referer ?&gt;&lt;/h3&gt;
                    &lt;img src=&quot;img/gear.png&quot; alt=&quot;HTTP Referer&quot; class=&quot;icon&quot; /&gt;
                    &lt;h2&gt;Your browser type is:&lt;/h2&gt;
                    &lt;h3&gt;&lt;?php echo $browser ?&gt;&lt;/h3&gt;
                    &lt;img src=&quot;img/info.png&quot; alt=&quot;Hostname&quot; class=&quot;icon&quot; /&gt;
                    &lt;h2&gt;Your hostname is:&lt;/h2&gt;
                    &lt;h3&gt;&lt;?php echo $remote_host ?&gt;&lt;/h3&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div id=&quot;dashboard&quot;&gt;
            &lt;table width=&quot;850&quot;&gt;
            &lt;tr&gt;
                &lt;td&gt;
                    &lt;ul&gt;
                            &lt;li&gt;&lt;a href=&quot;http://codeigniter.com/&quot;&gt;Codigniter&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://fuelphp.com/&quot;&gt;FuelPHP&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://jquery.com/&quot;&gt;jQuery&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://php.net/&quot;&gt;PHP&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://www.apache.org/&quot;&gt;Apache SF&lt;/a&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/td&gt;
                    &lt;td&gt;
                        &lt;ul&gt;
                            &lt;li&gt;&lt;a href=&quot;http://codeigniter.com/&quot;&gt;Codigniter&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://fuelphp.com/&quot;&gt;FuelPHP&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://jquery.com/&quot;&gt;jQuery&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://php.net/&quot;&gt;PHP&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://www.apache.org/&quot;&gt;Apache SF&lt;/a&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/td&gt;
                    &lt;td&gt;
                        &lt;ul&gt;
                            &lt;li&gt;&lt;a href=&quot;http://codeigniter.com/&quot;&gt;Codigniter&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://fuelphp.com/&quot;&gt;FuelPHP&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://jquery.com/&quot;&gt;jQuery&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://php.net/&quot;&gt;PHP&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://www.apache.org/&quot;&gt;Apache SF&lt;/a&gt;&lt;/li&gt;
&nbsp;
                        &lt;/ul&gt;
                    &lt;/td&gt;
                    &lt;td&gt;
                        &lt;ul&gt;
                            &lt;li&gt;&lt;a href=&quot;http://codeigniter.com/&quot;&gt;Codigniter&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://fuelphp.com/&quot;&gt;FuelPHP&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://jquery.com/&quot;&gt;jQuery&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://php.net/&quot;&gt;PHP&lt;/a&gt;&lt;/li&gt;
                            &lt;li&gt;&lt;a href=&quot;http://www.apache.org/&quot;&gt;Apache SF&lt;/a&gt;&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/td&gt;
                &lt;/tr&gt;
            &lt;/table&gt;
&nbsp;
        &lt;/div&gt;
&nbsp;
        &lt;div id=&quot;footer&quot;&gt;
&nbsp;
&nbsp;
                        &lt;div id=&quot;footer_stats&quot;&gt;
&nbsp;
                &lt;/div&gt;&lt;!-- End Footer_Stats --&gt;
            &lt;/div&gt;&lt;!-- End Footer --&gt;
        &lt;/div&gt; &lt;!-- End Wrapper --&gt;
    &lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<h2>The Style</h2>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* 
    Document   : style.css
    Created on : Jan 19, 2011, 10:14:46 AM
    Author     : Brandon Beasley
    Description: yourip4.com
*/</span>
<span style="color: #808080; font-style: italic;">/* The Basics */</span>
root <span style="color: #00AA00;">&#123;</span> 
    <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
body <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> Arial<span style="color: #00AA00;">,</span> Helvetica<span style="color: #00AA00;">,</span> <span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10pt</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#142D58</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
h1<span style="color: #00AA00;">,</span> h2<span style="color: #00AA00;">,</span> h3 <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
h1 <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">24pt</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
h2 <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">18pt</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
h3 <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">12pt</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
h4 <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">36pt</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
img <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">border-style</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/* End Basics */</span>
&nbsp;
<span style="color: #cc00cc;">#wrapper</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">922px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#header</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#333</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">900px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> <span style="color: #933;">10px</span> <span style="color: #933;">0px</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> <span style="color: #933;">0px</span> <span style="color: #933;">0px</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#header</span> h1 <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">32pt</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span> <span style="color: #933;">40px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#header</span> a <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFFFFF</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#header</span> a<span style="color: #3333ff;">:visited </span><span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFFFFF</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#content</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">900px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #933;">10px</span> <span style="color: #933;">10px</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">5px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#BBBBBB</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">;</span>
    -moz-border-radius<span style="color: #00AA00;">:</span><span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
    -webkit-border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
    border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#dashboard</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">900px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">both</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#0e203e</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #933;">5px</span> <span style="color: #933;">10px</span> <span style="color: #933;">18px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">;</span>
    -moz-border-radius<span style="color: #00AA00;">:</span><span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
    -webkit-border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
    border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10pt</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #cc00cc;">#333</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#dashboard</span> ul <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">list-style-type</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#dashboard</span> td <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#BBB</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#dashboard</span> a<span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#EEEEEE</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#dashboard</span> a<span style="color: #3333ff;">:visited </span><span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#999999</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#dashboard</span> a<span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#FFFFFF</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#footer</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">900px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">both</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#9E3E17</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> <span style="color: #933;">0px</span> <span style="color: #933;">10px</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span> <span style="color: #933;">5px</span> <span style="color: #933;">20px</span> <span style="color: #933;">18px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">;</span>
    -moz-border-radius<span style="color: #00AA00;">:</span><span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
    -webkit-border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
    border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10pt</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #cc00cc;">#333</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#footer_stats</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-15px</span>  <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #cc00cc;">#liftbox</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#EEEEEE</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#0e203e</span><span style="color: #00AA00;">;</span>
    -moz-border-radius<span style="color: #00AA00;">:</span><span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
    -moz-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span> <span style="color: #933;">5px</span> <span style="color: #933;">5px</span> <span style="color: #cc00cc;">#888</span><span style="color: #00AA00;">;</span>
    -webkit-border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
    -webkit-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span> <span style="color: #933;">5px</span> <span style="color: #933;">5px</span> <span style="color: #cc00cc;">#888</span><span style="color: #00AA00;">;</span>
    border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<h2><a href="http://yourip4.com/">The Site</a></h2>
<p><a href="http://yourip4.com"><img class="aligncenter size-medium wp-image-1158" title="YourIP4.com" src="http://brandonbeasley.com/wp-content/uploads/2011/04/ScreenHunter_01-Apr.-06-21.201-300x246.jpg" alt="" width="300" height="246" /></a><br />
<strong><a href="http://yourip4.com/">YourIP4.com &#8211; A Codeigniter Reactor Example Web Application</a></strong></p>
<h2>Questions?</h2>
<p>Place any questions you may have in the comments so everyone can benefit from the discussion.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/codeigniter-reactor-quick-dirty/&via=tbrandonbeasley&text=Codeigniter Reactor: Quick and Dirty&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/codeigniter-reactor-quick-dirty/&via=tbrandonbeasley&text=Codeigniter Reactor: Quick and Dirty&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://brandonbeasley.com/blog/codeigniter-reactor-quick-dirty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FuelPHP: Release Candidate 1 (RC1)</title>
		<link>http://brandonbeasley.com/blog/fuelphp-rc1/</link>
		<comments>http://brandonbeasley.com/blog/fuelphp-rc1/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 15:46:57 +0000</pubDate>
		<dc:creator>Brandon Beasley</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://brandonbeasley.com/?p=1097</guid>
		<description><![CDATA[<p><a href="http://brandonbeasley.com/wp-content/uploads/2011/04/ScreenHunter_01-Apr.-06-11.46.jpg"></a>After only 4 months, FuelPHP has its first release candidate of the new web framework available for download. Since v1.0.0-beta1 they have changed many different features based on initial feedback from the community of developers associated with FuelPHP.  What does this mean to the greater programming audience? According to the <a title="FuelPHP blog" href="http://fuelphp.com/blog/2011/04/start-your-engines-fuel-rc1-is-here">FuelPHP [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://brandonbeasley.com/wp-content/uploads/2011/04/ScreenHunter_01-Apr.-06-11.46.jpg"><img class="alignleft size-medium wp-image-1101" title="ScreenHunter_01 Apr. 06 11.46" src="http://brandonbeasley.com/wp-content/uploads/2011/04/ScreenHunter_01-Apr.-06-11.46-300x203.jpg" alt="" width="300" height="203" /></a>After only 4 months, FuelPHP has its first release candidate of the new web framework available for download. Since v1.0.0-beta1 they have changed many different features based on  initial feedback from the community of developers associated with  FuelPHP.  What does this mean to the greater programming audience?  <span id="more-1097"></span>According to the <a title="FuelPHP blog" href="http://fuelphp.com/blog/2011/04/start-your-engines-fuel-rc1-is-here">FuelPHP blog</a>, RC1 means the framework is ready for end users to begin implementing its code.  The authors have frozen all the features and are focusing on finding and fixing any bugs that are found during the release candidate time frame.</p>
<p>Some of the new features of FuelPHP RC1 are:</p>
<ul>
<li>ORM</li>
<li>Modularity</li>
<li>Unit Testing with PHPUnit</li>
<li>Response Object</li>
</ul>
<p>I have been following the progress of this project since Nov 2010, and great strides have been made in the areas of usability and documentation since then.  I want to applaud the authors of the documentation as it is concise and very straight-forward, unlike many other frameworks such as Symphony, Yii, and CakePHP.</p>
<p>If you would like to know more about FuelPHP: <a title="FuelPHP Home" href="http://fuelphp.com">http://fuelphp.com</a><br />
Want to participate in FuelPHP: <a title="Contribute to FuelPHP at github" href="https://github.com/fuel">https://github.com/fuel</a><br />
Join the FuelPHP discussion forum: <a title="FuelPHP Forums" href="http://fuelphp.com/forums">http://fuelphp.com/forums</a></p>
<p>Here are a few examples of websites using FuelPHP:</p>
<ul>
<li><a title="FuelPHP application" href="http://threetune.com/">http://threetune.com/</a></li>
<li><a title="FuelPHP website" href="http://wanwizard.eu/">http://wanwizard.eu/</a></li>
<li><a title="FuelPHP application" href="http://scrp.at/">http://scrp.at/</a></li>
</ul>
<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/fuelphp-rc1/&via=tbrandonbeasley&text=FuelPHP: Release Candidate 1 (RC1)&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/fuelphp-rc1/&via=tbrandonbeasley&text=FuelPHP: Release Candidate 1 (RC1)&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://brandonbeasley.com/blog/fuelphp-rc1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cURL: Using PHP and cURL with APIs</title>
		<link>http://brandonbeasley.com/blog/curl-using-php-with-api/</link>
		<comments>http://brandonbeasley.com/blog/curl-using-php-with-api/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 12:17:28 +0000</pubDate>
		<dc:creator>Brandon Beasley</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Code Example]]></category>
		<category><![CDATA[cURL]]></category>

		<guid isPermaLink="false">http://brandonbeasley.com/?p=1048</guid>
		<description><![CDATA[<p><a href="http://brandonbeasley.com/wp-content/uploads/2011/04/curl_logo.jpg"></a>cURL is a tool to transfer data from or to a server, using one of the supported protocols (DICT, FILE, FTP, FTPS, GOPHER, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, TELNET and TFTP).<br /> <br /> We can use cURL to connect to a web service API [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://brandonbeasley.com/wp-content/uploads/2011/04/curl_logo.jpg"><img class="size-full wp-image-1074 alignleft" title="curl_logo" src="http://brandonbeasley.com/wp-content/uploads/2011/04/curl_logo.jpg" alt="cURL logo" width="200" height="200" /></a>cURL is a tool to transfer data from or to a server, using one of the supported protocols (DICT, FILE, FTP, FTPS, GOPHER, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, TELNET and TFTP).<br />
<span id="more-1048"></span><br />
We can use cURL to connect to a web service API and return a response that we can later parse and extract the data we need.  Most API&#8217;s response data is in the form of XML or JSON and both are quite easy to parse.  Let&#8217;s take a look at using cURL in a real scenario.</p>
<p>To begin writing a PHP application that connects to an API, cURL will need a few pieces of critical data:</p>
<ul>
<li>URL of the API used to service requests</li>
<li>GET parameters such as credentials and/or the actual query</li>
<li>Any cURL options that are required</li>
</ul>
<p>The following is a simple example of how to consume a web service or API using cURL and PHP.  We will connect to the Internet.bs API and check to see if &#8220;example.com&#8221; is an unregistered domain name.  You can view the API documentation <a href="http://www.internetbs.net/ResellerRegistrarDomainNameAPI/">here</a>.  This cURL example uses three data arrays:</p>
<ul>
<li> $params (GET parts of the URL)</li>
<li>$options (cURL configuration options/constants)</li>
<li>$default (cURL default options/constants for this API).</li>
</ul>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'https://testapi.internet.bs/Domain/Check'</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$params</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span>
            <span style="color: #0000ff;">'ApiKey'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'testapi'</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'Password'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'testpass'</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'Domain'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'example.com'</span>
        <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$options</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
            CURLOPT_SSL_VERIFYHOST <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span>
            CURLOPT_SSL_VERIFYPEER <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">0</span>
        <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$defaults</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
            CURLOPT_URL <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$url</span><span style="color: #339933;">.</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'?'</span><span style="color: #009900;">&#41;</span> 
               <span style="color: #339933;">===</span> <span style="color: #009900; font-weight: bold;">FALSE</span> ? <span style="color: #0000ff;">'?'</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span> <span style="color: #990000;">http_build_query</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$params</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
            CURLOPT_HEADER <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span>
            CURLOPT_RETURNTRANSFER <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">TRUE</span><span style="color: #339933;">,</span>
            CURLOPT_TIMEOUT <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">4</span>
        <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$ch</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">curl_setopt_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$options</span> <span style="color: #339933;">+</span> <span style="color: #000088;">$defaults</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span> <span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_exec</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #990000;">trigger_error</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">curl_error</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #990000;">curl_close</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>And this is the response from Internet.bs API:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">transactid=0462c7eeb2b64583fd273f3469250c26
status=UNAVAILABLE
domain=example.com
minregperiod=1Y
maxregperiod=10Y
registrarlockallowed=YES
privatewhoisallowed=YES
realtimeregistration=YES</pre></div></div>

<p><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="" show_faces="true" width="450" font="arial"></fb:like></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/curl-using-php-with-api/&via=tbrandonbeasley&text=cURL: Using PHP and cURL with APIs&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/curl-using-php-with-api/&via=tbrandonbeasley&text=cURL: Using PHP and cURL with APIs&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://brandonbeasley.com/blog/curl-using-php-with-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning! Site Overhaul</title>
		<link>http://brandonbeasley.com/blog/warning-site-overhaul/</link>
		<comments>http://brandonbeasley.com/blog/warning-site-overhaul/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 21:16:12 +0000</pubDate>
		<dc:creator>Brandon Beasley</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://brandonbeasley.com/?p=1027</guid>
		<description><![CDATA[<p><a href="http://brandonbeasley.com/wp-content/uploads/2011/03/Construction-Tractor.png"></a></p> <p>I&#8217;m going to be changing some things around over the next day or so.  You may experience brief periods of downtime but the result will be worth the hassle.  Stay tuned!</p> <a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/warning-site-overhaul/&#038;via=tbrandonbeasley&#038;text=Warning! Site Overhaul&#038;related=:&#038;lang=en&#038;count=horizontal" class="twitter-share-button">Tweet</a><a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/warning-site-overhaul/&#038;via=tbrandonbeasley&#038;text=Warning! Site Overhaul&#038;related=:&#038;lang=en&#038;count=horizontal" class="twitter-share-button">Tweet</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://brandonbeasley.com/wp-content/uploads/2011/03/Construction-Tractor.png"><img class="aligncenter size-full wp-image-1028" title="Construction Tractor" src="http://brandonbeasley.com/wp-content/uploads/2011/03/Construction-Tractor.png" alt="" width="256" height="256" /></a></p>
<p>I&#8217;m going to be changing some things around over the next day or so.  You may experience brief periods of downtime but the result will be worth the hassle.  Stay tuned!</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/warning-site-overhaul/&via=tbrandonbeasley&text=Warning! Site Overhaul&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/warning-site-overhaul/&via=tbrandonbeasley&text=Warning! Site Overhaul&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://brandonbeasley.com/blog/warning-site-overhaul/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programming Fonts</title>
		<link>http://brandonbeasley.com/blog/programming-fonts/</link>
		<comments>http://brandonbeasley.com/blog/programming-fonts/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 14:36:07 +0000</pubDate>
		<dc:creator>Brandon Beasley</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Font]]></category>

		<guid isPermaLink="false">http://brandonbeasley.com/?p=1004</guid>
		<description><![CDATA[<p><a href="http://brandonbeasley.com/wp-content/uploads/2010/11/font.gif"></a>I have compiled a list of fonts commonly used by programmers and coders.  All of the examples are 12pt with no user added options such as bold or italics.  Those of you who write a lot of code know if you are going to stare at the screen for hours you must use a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://brandonbeasley.com/wp-content/uploads/2010/11/font.gif"><img class="alignleft size-full wp-image-1103" title="Programming Fonts" src="http://brandonbeasley.com/wp-content/uploads/2010/11/font.gif" alt="" width="300" height="300" /></a>I have compiled a list of fonts commonly used by programmers and coders.  All of the examples are 12pt with no user added options such as bold or italics.  Those of you who write a lot of code know if you are going to stare at the screen for hours you must use a programming font that works for you.</p>
<p><span id="more-1004"></span></p>
<p><a title="Anonymous Programming Font" href="http://c0007443.cdn2.cloudfiles.rackspacecloud.com/Anonymous.ttf">Anonymous</a></p>
<p><a href="http://brandonbeasley.com/wp-content/uploads/2010/11/anonymous.jpg"><img class="aligncenter size-full wp-image-1005" title="Anonymous Programming Font" src="http://brandonbeasley.com/wp-content/uploads/2010/11/anonymous.jpg" alt="Anonymous Programming Font" width="498" height="67" /></a></p>
<p><a title="Crisp Programming Font" href="http://c0007443.cdn2.cloudfiles.rackspacecloud.com/Crisp.ttf">Crisp</a></p>
<p><a href="http://brandonbeasley.com/wp-content/uploads/2010/11/Crisp.jpg"><img class="aligncenter size-full wp-image-1006" title="Crisp Programming Font" src="http://brandonbeasley.com/wp-content/uploads/2010/11/Crisp.jpg" alt="Crisp Programming Font" width="372" height="54" /></a></p>
<p><a title="Pixel Carnage Mono Programming Font" href="http://c0007443.cdn2.cloudfiles.rackspacecloud.com/PixelCarnageMono.ttf">Pixel Carnage (Mono)</a></p>
<p><a href="http://brandonbeasley.com/wp-content/uploads/2010/11/PixelCarnage.jpg"><img class="aligncenter size-full wp-image-1007" title="Pixel Carnage Programming Font" src="http://brandonbeasley.com/wp-content/uploads/2010/11/PixelCarnage.jpg" alt="Pixel Carnage Programming Font" width="411" height="57" /></a></p>
<p><a title="Proggy Clean Programming Font" href="http://c0007443.cdn2.cloudfiles.rackspacecloud.com/ProggyClean.ttf">Proggy Clean</a></p>
<p><a href="http://brandonbeasley.com/wp-content/uploads/2010/11/proggyClean.jpg"><img class="aligncenter size-full wp-image-1008" title="Proggy Clean Programming Font" src="http://brandonbeasley.com/wp-content/uploads/2010/11/proggyClean.jpg" alt="Proggy Clean Programming Font" width="324" height="54" /></a></p>
<p><a title="Proggy Clean SZBP Programming Font" href="http://c0007443.cdn2.cloudfiles.rackspacecloud.com/ProggyCleanSZBP.ttf">Proggy Clean (SZBP)</a></p>
<p><a href="http://brandonbeasley.com/wp-content/uploads/2010/11/proggyClean-SZBP.jpg"><img class="aligncenter size-full wp-image-1009" title="Proggy Clean SZBP Programming Font" src="http://brandonbeasley.com/wp-content/uploads/2010/11/proggyClean-SZBP.jpg" alt="Proggy Clean SZBP Programming Font" width="319" height="55" /></a></p>
<p><a title="Vera Sans Mono Programming Font" href="http://c0007443.cdn2.cloudfiles.rackspacecloud.com/VeraMono.ttf">Vera Sans (Mono)</a></p>
<p><a href="http://brandonbeasley.com/wp-content/uploads/2010/11/VeraSansMono.jpg"><img class="aligncenter size-full wp-image-1010" title="Vera Sans Mono Programming Font" src="http://brandonbeasley.com/wp-content/uploads/2010/11/VeraSansMono.jpg" alt="Vera Sans Mono Programming Font" width="335" height="58" /></a><br />
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="" show_faces="true" width="450" font="arial"></fb:like></p>
<h3 style="text-align: center;">Have a font you use that is not listed here?</h3>
<h3 style="text-align: center;">Leave a comment and I will add it to this post.</h3>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/programming-fonts/&via=tbrandonbeasley&text=Programming Fonts&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://brandonbeasley.com/blog/programming-fonts/&via=tbrandonbeasley&text=Programming Fonts&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://brandonbeasley.com/blog/programming-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
