<?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>Fuel Your Coding &#187; Languages</title>
	<atom:link href="http://fuelyourcoding.com/category/languages/feed/" rel="self" type="application/rss+xml" />
	<link>http://fuelyourcoding.com</link>
	<description></description>
	<lastBuildDate>Mon, 09 Aug 2010 14:40:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Down &amp; Dirty with MongoDB Part 2: Ruby ToDo</title>
		<link>http://fuelyourcoding.com/down-and-dirty-with-mongodb-part-2/</link>
		<comments>http://fuelyourcoding.com/down-and-dirty-with-mongodb-part-2/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 14:40:31 +0000</pubDate>
		<dc:creator>Jerod Santo</dc:creator>
				<category><![CDATA[Datastores]]></category>
		<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[nosql]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=1235</guid>
		<description><![CDATA[Earlier this summer, we kicked off a series on MongoDB where the goal was to write a simple todo application using native MongoDB drivers and three of our favorite scripting languages.
This article is part 2 in that series, in which we write said application in Ruby.
The Interface
You can refer back to the introductory article for [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/down-and-dirty-with-mongodb-part-2/">Down &#038; Dirty with MongoDB Part 2: Ruby ToDo</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Earlier this summer, we kicked off <a href="/down-and-dirty-with-mongodb-part-1/">a series on MongoDB</a> where the goal was to write a simple todo application using native <a href="http://mongodb.org">MongoDB</a> drivers and three of our favorite scripting languages.</p>
<p>This article is part 2 in that series, in which we write said application in <a href="http://ruby-lang.org">Ruby</a>.</p>
<h2>The Interface</h2>
<p>You can refer back to the <a href="http://fuelyourcoding.com/down-and-dirty-with-mongodb-part-1/">introductory article</a> for all the details, but I&#8217;ll reiterate the command-line interface here for easy reference:</p>
<ul>
<li><strong>todo</strong> &#8211; list all incomplete tasks sorted by priority then chronologically</li>
<li><strong>todo next</strong> &#8211; list all incomplete tasks that are high priority</li>
<li><strong>todo done</strong> &#8211; list all complete tasks chronologically</li>
<li><strong>todo high &#8220;pay bills&#8221;</strong> &#8211; add high priority task called &#8220;pay bills&#8221;</li>
<li><strong>todo low &#8220;get milk&#8221;</strong> &#8211; add low priority task called &#8220;get milk&#8221;</li>
<li><strong>todo finish &#8220;pay bills&#8221;</strong> &#8211; complete task called &#8220;pay bills&#8221;</li>
<li><strong>todo dont &#8220;get milk&#8221;</strong> &#8211; delete task called &#8220;get milk&#8221;</li>
<li><strong>todo help</strong> &#8211; list all commands and their usage</li>
</ul>
<p>Okay, let&#8217;s write this thing!</p>
<h2>The Driver</h2>
<p><a href="http://www.10gen.com/">10gen</a> distributes the Ruby driver using Ruby&#8217;s most popular package distribution tool, <a href="http://rubygems.org">RubyGems</a>. To install the driver on your machine simply execute:</p>
<pre class="brush: bash;">
gem install mongo
</pre>
<p>Our program will need to load in the driver before anything else, and we&#8217;ll use RubyGems to do it, so create a new text file called <tt>mongo_todo.rb</tt> and begin it with the following:</p>
<pre class="brush: ruby;">
require 'rubygems'
require 'mongo'
</pre>
<h2>The ToDo Class</h2>
<p>Ruby is a purely object-oriented language, so our program will employ a single object of a class we&#8217;ll write called <tt>ToDo</tt>. The class will take in the required command-line arguments, connect to the MongoDB collection that stores our todos, and execute the appropriate command on them.</p>
<p>To facilitate these needs, our object will need to take some arguments from the user and store a reference to the MongoDB collection when it is instantiated:</p>
<pre class="brush: ruby;">
class ToDo
  def initialize(args)
    @args  = args
    @mongo = Mongo::Connection.new.db(&quot;todo&quot;).collection(&quot;todos&quot;)
  end
end
</pre>
<p>In Ruby, the <tt>initialize</tt> instance method is called when a new object of a class is instantiated, most often using the <tt>new</tt> class method, like this:</p>
<pre class="brush: ruby;">
my_todo = ToDo.new
</pre>
<p>When a new <tt>ToDo</tt> object is instantiated, our class will store the arguments passed in to it in an instance variable called <tt>@args</tt> and store a connection to MongoDB in an instance variable called <tt>@mongo</tt>. <a href="http://api.mongodb.org/ruby/current/Mongo/Collection.html">Mongo::Connection</a> is a class provided by the <tt>mongo</tt> gem that we&#8217;re using.</p>
<p>Since our class expects some arguments passed in to the initializer, we need to provide them to the <tt>new</tt> method. The arguments will be read in from the command-line when the program is executed, and Ruby exposes these to our program via the <tt>ARGV</tt> variable. So, we call <tt>new</tt> like this instead:</p>
<pre class="brush: ruby;">
my_todo = ToDo.new(ARGV)
</pre>
<p>At this point, the entire program should look like this:</p>
<pre class="brush: ruby;">
require 'rubygems'
require 'mongo'

class Todo
  def initialize(args)
    @args  = args
    @mongo = Mongo::Connection.new.db(&quot;todo&quot;).collection(&quot;todos&quot;)
  end
end

ToDo.new(ARGV)
</pre>
<p>You can execute this program from the command-line, but nothing will happen. Well, stuff will happen but you won&#8217;t see it displayed back to you. We still need to implement the bulk of the program, which parses the user&#8217;s command-line arguments and acts appropriately.</p>
<h2>A Little Help</h2>
<p>The first thing we&#8217;ll implement is a method that prints usage help for the program. It looks like this:</p>
<pre class="brush: ruby;">
def help
  abort &lt;&lt;-HELP
  usage: #{__FILE__} &lt;method&gt;

  == Methods ==
  &lt;none&gt;            list all incomplete tasks sorted by priority
  help              show this help
  next              list all incomplete tasks that are high priority
  done              list all complete tasks chronologically
  high &quot;argument&quot;   add high priority task called argument
  low &quot;argument&quot;    add low priority task called argument
  finish &quot;argument&quot; complete task called argument
  dont &quot;argument&quot;   delete unfinished task called argument
  HELP
end
</pre>
<p>In Ruby, <a href="http://ruby-doc.org/ruby-1.9/classes/Kernel.html#M002645">abort</a> is a method you can call which will exit the application and display a string you pass to it. The string we&#8217;re passing in shows all the ways the program can be used, which will be displayed back to the user. This will be executed by default if the user doesn&#8217;t pass in an argument that we want to handle. More on that in the next section.</p>
<h2>Run, Baby, Run</h2>
<p>At some point, our application needs to run, so lets create an instance method called <tt>run</tt> which will handle the program&#8217;s flow. In this method we will determine what the user passed in from the command-line and call another method that handles the different use cases. The default action is to list all incomplete tasks, and the catch-all is to execute the <tt>help</tt> method we implemented above. Here is what <tt>run</tt> looks like:</p>
<pre class="brush: ruby;">
def run
  if @args.empty?
    show :complete =&gt; false
  else
    case @args.first
    when &quot;help&quot;   then help
    when &quot;high&quot;   then add &quot;high&quot;
    when &quot;low&quot;    then add &quot;low&quot;
    when &quot;next&quot;   then show :complete =&gt; false, :level =&gt; &quot;high&quot;
    when &quot;done&quot;   then show :complete =&gt; true
    when &quot;dont&quot;   then complete false
    when &quot;finish&quot; then complete true
    else
      help
    end
  end
end
</pre>
<p><tt>ARGV</tt> is an <a href="http://ruby-doc.org/ruby-1.9/classes/Array.html">Array</a>, so we can call methods like <a href="http://ruby-doc.org/ruby-1.9/classes/Array.html#M000711">empty?</a> and <a href="http://ruby-doc.org/ruby-1.9/classes/Array.html#M000698">first</a> on it. The meat of the run method is a Ruby <tt>case</tt> statement which checks if the first argument passed in by the user matches any of our predetermined keywords and calls other methods, <tt>add</tt><tt>, </tt><tt>show</tt>, and <tt>complete</tt>. These methods are the ones that actually interact with MongoDB and display information back to the user. We&#8217;ll implement them next.</p>
<h2>Using Mongo</h2>
<p>So far we&#8217;ve only dealt with setting up our class and parsing user arguments, we&#8217;ve barely even touched MongoDB! This is the meat of the application, so let&#8217;s get straight to it. First, the <tt>show</tt> method:</p>
<pre class="brush: ruby;">
def show(params)
  sort = [[&quot;level&quot;, Mongo::ASCENDING], [&quot;added&quot;, Mongo::ASCENDING]]
  @mongo.find(params, :sort =&gt; sort).each { |todo| puts &quot;#{todo[&quot;task&quot;]} (#{todo[&quot;level&quot;]})&quot; }
end
</pre>
<p><tt>show</tt> takes a hash of <tt>params</tt> as an argument and passes that hash on directly to the <tt>mongo</tt> library&#8217;s <a href="http://api.mongodb.org/ruby/current/Mongo/Collection.html#find-instance_method">find</a> method, which will return an array of the found items in the collection.</p>
<p>We print each of the todo items returned from <a href="http://api.mongodb.org/ruby/current/Mongo/Collection.html#find-instance_method">find</a> along with the level of the todo. How do those items get in there in the first, place? That is up to the <tt>add</tt> method, which we will implement next.</p>
<pre class="brush: ruby;">
def add(level)
  help unless @args.length == 2
  @mongo.insert &quot;task&quot; =&gt; @args.last, &quot;level&quot; =&gt; level, &quot;complete&quot; =&gt; false, &quot;added&quot; =&gt; Time.now
  puts &quot;added #{level} level task: #{@args.last}&quot;
end
</pre>
<p><tt>add</tt> takes a single argument, the level of the todo to create (e.g.- &#8220;high&#8221; or &#8220;low&#8221;). It then makes sure that the user had passed in two arguments at the command line because it needs the second one for the name of the task. If not, it calls <tt>help</tt> which aborts the application.</p>
<p>If so, It calls Mongo&#8217;s <a href="http://api.mongodb.org/ruby/current/Mongo/Collection.html#insert-instance_method">insert</a> method and passes it all the information to be stored in the datastore.</p>
<p>Finally, we need to implement the <tt>complete</tt> method, which is the most complex of the lot. Like <tt>add</tt>, it makes sure there were two command-line arguments given. Then it tries to find the todo by the &#8220;task&#8221; name. If found, it will either &#8220;finish&#8221; the task or &#8220;remove&#8221; the task depending on a boolean argument passed in. The method looks like this:</p>
<pre class="brush: ruby;">
def complete(finish)
  help unless @args.length == 2
  if (document = @mongo.find_one(&quot;task&quot; =&gt; @args.last, &quot;complete&quot; =&gt; false))
    if finish
      document[&quot;complete&quot;] = Time.now
      @mongo.save(document)
      puts &quot;finished: #{@args.last}&quot;
    else
      @mongo.remove(document)
      puts &quot;removed: #{@args.last}&quot;
    end
  else
    puts &quot;No ToDo matching #{@args.length} found&quot;
  end
end
</pre>
<p>The mongo-related calls in the <tt>complete</tt> method are <a href="http://api.mongodb.org/ruby/current/Mongo/Collection.html#find_one-instance_method">find_one</a>, <a href="http://api.mongodb.org/ruby/current/Mongo/Collection.html#save-instance_method">save</a>, and <a href="http://api.mongodb.org/ruby/current/Mongo/Collection.html#remove-instance_method">remove</a>.</p>
<h2>Finishing Up</h2>
<p>So, we&#8217;ve written our <tt>run</tt> method which calls the other methods using the user&#8217;s passed in arguments. Now all we have to do to get the class going is finish the program by creating a ToDo class object and calling <tt>run</tt> on it, like this:</p>
<pre class="brush: ruby;">
ToDo.new(ARGV).run
</pre>
<p>You can view/download the program in its entirety <a href="http://gist.github.com/409729">here</a>. One thing to note is how little code is needed to add CRUD to an application when using MongoDB as a datastore.</p>
<p>Hopefully this article has helped you with Ruby or MongoDB or both. Stay tuned for our next article in the series when we write the exact same application in PHP!</p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/down-and-dirty-with-mongodb-part-2/">Down &#038; Dirty with MongoDB Part 2: Ruby ToDo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/down-and-dirty-with-mongodb-part-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress: Auto URL Shortening</title>
		<link>http://fuelyourcoding.com/wordpress-auto-url-shortening/</link>
		<comments>http://fuelyourcoding.com/wordpress-auto-url-shortening/#comments</comments>
		<pubDate>Mon, 24 May 2010 12:39:29 +0000</pubDate>
		<dc:creator>Designerfoo</dc:creator>
				<category><![CDATA[Languages]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[bitly]]></category>
		<category><![CDATA[Plugins / Add-Ons]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=985</guid>
		<description><![CDATA[Everyday there are scores of new links shared, re-tweeted, posted, and emailed by people like you and I. Because of social media platforms like Twitter and Facebook, our love for sharing information, tutorials, freebies, etc., has never been stronger!
The Proposition
As a WordPress developer/designer, how would you like if URLs on your WordPress site were automatically [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/wordpress-auto-url-shortening/">WordPress: Auto URL Shortening</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://fuelyourcoding.com/files/urlshortner_mini.jpg" alt="WP Auto URL Shortening" title="WP Auto URL Shortening" width="250" height="188" class="alignright size-full wp-image-1031" />Everyday there are scores of new links shared, re-tweeted, posted, and emailed by people like you and I. Because of social media platforms like Twitter and Facebook, our love for sharing information, tutorials, freebies, etc., has never been stronger!</p>
<h2>The Proposition</h2>
<p>As a <a href="http://wordpress.org">WordPress</a> developer/designer, how would you like if URLs on your WordPress site were automatically shortened as soon as you publish? This would mean instantly available shortened URLs for sharing/posting AND statistics of your links!</p>
<h2>Here&#8217;s How</h2>
<p>We are going to build the Auto URL Shortening feature within your WordPress theme using the <a href="http://bit.ly/">bit.ly</a> API. Let&#8217;s start with the <tt>functions.php</tt> file found within your theme.</p>
<p>The <tt>functions.php</tt> file is included in most WordPress themes as a place to drop custom functions to be used from the theme. If this file doesn&#8217;t exist in the theme you are using, go ahead and create it.</p>
<h3>Add 3 functions within the functions.php file</h3>
<pre class="brush: php;">
function makeshorturl()
{

}

function shorturl_metabox()
{

}

function showshorturlbox()
{

}
</pre>
<p>The first function, <tt>makeshorturl()</tt>, as the name suggests will be creating a short URL for us. The second and the third functions will work together to show us the short URL in the admin editor.</p>
<h3>Shortening the link</h3>
<pre class="brush: php;">
function makeshorturl()
{
    global $post;

    $short_url = json_decode(file_get_contents('http://api.bit.ly/v3/shorten?login=[username]&amp;apiKey=[apikey]&amp;longURL='.urlencode(get_permalink($post-&gt;ID)).'&amp;format=json'));

    if($short_url-&gt;status_code==&quot;200&quot;)
    {
         $short_url = $short_url-&gt;data-&gt;url;
    }
    else
    {
        $short_url = &quot;Bit.ly Error! &quot;.$short_url-&gt;status_txt;
    }

    do_action('makeshorturl');

    return $short_url;
}
</pre>
<p>The first line in this function declares WordPress&#8217;s global <tt>$post</tt> variable which holds all the data for the current post. We extract the permalink of the current post using the <tt>get_permalink()</tt> function and supplying the current post&#8217;s id. We then take the permalink and pass it on to bit.ly&#8217;s API which returns us a short URL within a JSON object. Next we extract the short URL. If an error occurs we simply return the error.</p>
<p>The <tt>do_action()</tt> method in WordPress makes this function hookable with other functions/hooks and the function can be used within theme using the hook &#8211; <strong>makeshorturl()</strong>.</p>
<p>Want to know more about <a href="http://codex.wordpress.org/Function_Reference/do_action" target="_new" rel="nofollow">do_action()</a> and <a href="http://codex.wordpress.org/Plugin_API"  target="_new" rel="nofollow">wordpress hooks</a>?</p>
<h3>Lets look at the api call in more detail</h3>
<pre class="brush: php;">
http://api.bit.ly/v3/shorten?login=[username]&amp;apiKey=[apikey]&amp;longURL='.urlencode(get_permalink($post-&gt;ID)).'&amp;format=json
</pre>
<p>It&#8217;s really quite simple.</p>
<p>The <tt>login</tt> parameter would expect your login over at bit.ly (<a href="http://bit.ly/a/sign_up" target="_new" rel="nofollow">don&#8217;t have one? create one here</a>). The <tt>apiKey</tt> parameter accepts the API key given to each bit.ly account. If you already have an account you can find <a href="http://bit.ly/a/your_api_key" target="_new" rel="nofollow">the API key here</a>. The <tt>longURL</tt> parameter expects an encoded long URL string that needs to be shortened, and this is where our custom permalinks get passed. The <tt>format</tt> parameter expects one of the three values &#8211; json, xml or text; depending on the format value specified, the API returns the shortened url (and more data) as JSON, XML or text respectively. By default, if format is not specified, it returns a JSON object. For more info on the bit.ly API, refer the <a href="http://code.google.com/p/bitly-api/wiki/ApiDocumentation">API documentation</a>. Once the bit.ly API sends the JSON object back, we use PHP&#8217;s <tt>json_decode</tt> function to decode the JSON object into a PHP5 object.</p>
<h3>Adding the shortened URL to the admin editor</h3>
<p>Once the permalink has been shortened, we need to make it available in the backend. To do this, we use the two functions as outlined below.</p>
<pre class="brush: php;">
function shorturl_metabox()
{
    if(is_admin())
    {
        add_meta_box('bitlyurl',__('Short URL','short-url'),'showshorturlbox','post','side');
        add_meta_box('bitlyurl',__('Short URL','short-url'),'showshorturlbox','page','side');
    }
}
</pre>
<p>The <tt>shorturl_metabox</tt> will first check if the user is within the admin section of the wordpress based site/blog. Then we add a meta box to the admin page.</p>
<p><img src="http://fuelyourcoding.com/files/shorturlmaker.png" alt="Short URL Admin" title="Short URL Admin" width="297" height="79" class="alignleft size-full wp-image-1019" /> A Meta box in WordPress basically is a box which sets and gets meta information about a post. Default meta boxes include Post Tags, Discussions and so forth. </p>
<p><a href="http://codex.wordpress.org/Writing_Posts" target="_new" rel="nofollow">More on meta boxes.</a></p>
<p>The <tt>add_meta_box</tt> function takes five parameters:</p>
<ol>
<li> the HTML id of the box</li>
<li>the label/title of the box</li>
<li>the callback function which would render the box contents</li>
<li>the type of write screen &#8211; post or a page
</li>
<li>the position or context where the box would be located &#8211; Normal, Advanced or Side.</li>
</ol>
<p><a href="ttp://codex.wordpress.org/Function_Reference/add_meta_box" target="_new" rel="nofollow">More on add_meta_box()</a>.</p>
<p>As you can see, that when the function &#8220;<em>adds</em>&#8221; the meta box to the admin view, it calls the <tt>showshorturlbox</tt> function which renders the contents of the meta box, as shown below.</p>
<pre class="brush: php;">
function showshorturlbox()
{
    echo '&lt;label for=&quot;bitlyurl&quot;&gt;'.__('Shortened URL','short-url-label').': '.makeshorturl().'&lt;/label&gt;&lt;br/&gt;&lt;br/&gt;';
}
</pre>
<p>The function echoes the short URL in a label, thus making it available to be shared by the authors of the post/page. We are calling <tt>makeshorturl()</tt> which fetches or generates the shortened URL via the bitly API.</p>
<h3>Bringing it together</h3>
<p>Finally we use the following three lines which attach our <tt>makeshorturl()</tt> function to the <tt>publish_post</tt> and <tt>publish_page</tt> hooks and attaches <tt>shorturl_metabox</tt> to the <tt>do_meta_boxes</tt> hook that generates the meta boxes.</p>
<pre class="brush: php;">
add_action('publish_post','makeshorturl');
add_action('publish_page','makeshorturl');
add_action('do_meta_boxes','shorturl_metabox');
</pre>
<h3>Complete Code within functions.php</h3>
<pre class="brush: php;">
function makeshorturl()
{
global $post;

$short_url = json_decode(file_get_contents('http://api.bit.ly/v3/shorten?login=[username]&amp;apiKey=[apikey]&amp;longURL='.urlencode(get_permalink($post-&gt;ID)).'&amp;format=json'));

if($short_url-&gt;status_code==&quot;200&quot;)
    {
         $short_url = $short_url-&gt;data-&gt;url;
    }
    else
    {
        $short_url = &quot;Bit.ly Error! &quot;.$short_url-&gt;status_txt;
    }
    do_action('makeshorturl');
    return $short_url;
}

function shorturl_metabox()
{
    if(is_admin())
    {
        add_meta_box('bitlyurl',__('Short URL','short-url'),'showshorturlbox','post','side');
        add_meta_box('bitlyurl',__('Short URL','short-url'),'showshorturlbox','page','side');
    }
}

function showshorturlbox()
{
    echo '&lt;label for=&quot;bitlyurl&quot;&gt;'.__('Shortened URL','short-url-label').': '.makeshorturl().'&lt;/label&gt;&lt;br/&gt;&lt;br/&gt;';
}

add_action('publish_post','makeshorturl');
add_action('publish_page','makeshorturl');
add_action('do_meta_boxes','shorturl_metabox');
</pre>
<h3>Usage</h3>
<p>If you did like to show off the shortened URL to your users simply insert this code where you want the short URL to show up:</p>
<pre class="brush: php;">
&lt;?php echo makeshorturl(); ?&gt;
</pre>
<h2>BONUS</h2>
<p>Want a ready-to-use solution? Here&#8217;s the plugin version of the above code that will generate the shortened URLs on the fly for you to share. If you did like to call the functions from within the theme template, you can do so by using: </p>
<pre class="brush: php;">
&lt;?php echo wps_hook(); ?&gt;
</pre>
<p><em><strong>Note: </strong>Above tag is for the plugin only. </em></p>
<p><em>PS:</em> The plugin can also show number of clicks on a shortened link :) per shortened URL</p>
<h3>Download it!</h3>
<p><a href="http://fuelyourcoding.com/files/wp_shorturlmaker.zip" rel="nofollow"><img src="http://fuelyourcoding.com/files/downloadplugin1.jpg" alt="Download Plugin - WP Short URL Maker" title="Download Plugin - WP Short URL Maker" width="300" height="60" class="alignleft size-full wp-image-1043" border="0"/></a></p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/wordpress-auto-url-shortening/">WordPress: Auto URL Shortening</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/wordpress-auto-url-shortening/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Create a simple &#8220;shop&#8221; page in Textpattern</title>
		<link>http://fuelyourcoding.com/create-a-simple-shop-page-in-textpattern/</link>
		<comments>http://fuelyourcoding.com/create-a-simple-shop-page-in-textpattern/#comments</comments>
		<pubDate>Thu, 20 May 2010 12:32:19 +0000</pubDate>
		<dc:creator>Marie Poulin</dc:creator>
				<category><![CDATA[Concepts & Training]]></category>
		<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Textpattern]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=881</guid>
		<description><![CDATA[This tutorial assumes that you have a fairly strong understanding of  HTML and CSS, as well as a basic understanding of Textpattern and its  tags. (I won&#8217;t be going into detail about the css) We will be building a very simple &#8220;shop&#8221; type page in Textpattern.  There are plugins which allow Textpattern [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/create-a-simple-shop-page-in-textpattern/">Create a simple &#8220;shop&#8221; page in Textpattern</a></p>
]]></description>
			<content:encoded><![CDATA[<p>This tutorial assumes that you have a fairly strong understanding of  HTML and CSS, as well as a basic understanding of Textpattern and its  tags. (I won&#8217;t be going into detail about the css) We will be building a very simple &#8220;shop&#8221; type page in Textpattern.  There are plugins which allow Textpattern to integrate paypal support,  but this is a fairly simple alternative. This allows you to feature  products which you may sell through paypal, e-junkie, Amazon (or  whatever else you may be using) The structure of this page is built with  the client in mind &#8211; they don&#8217;t need to format the page with any html  or div&#8217;s in order to get the products laid out nicely.</p>
<p>Two example links of this simple functionality in action are:</p>
<p>1. <a href="http://www.meghantelpner.com/shop/?c=books" target="_blank">http://www.meghantelpner.com/shop/?c=books</a></p>
<p>2. <a href="http://www.elmwoodspa.com/shop/">http://www.elmwoodspa.com/shop/</a></p>
<p>In the first example, you can click on one of Meghan&#8217;s books to see more information before deciding to purchase. If you click on &#8220;buy now&#8221;, you will be taken to her e-junkie store. Additionally, if you click on a specific book to see more information, you get a small navigation block at the top of the article that allows you to quickly browse the next and previous products. You may notice that if you click on one of the other submenus within her store, such as the Books/DVDs/Audio, that you will be taken directly to the Amazon affiliate link for that product. The client has the capacity to choose whether or not to link the product to an external link (Amazon, e-junkie, paypal) or whether or not to link to the full product page itself first, with a &#8220;buy now&#8221; button.</p>
<p>In the second example, you can click to see details/shop online which takes you immediately to Elmwood Spa&#8217;s online store.</p>
<p>I will be using the first example as a basis for the tutorial.</p>
<p>Plugins used: <a href="http://textpattern.org/plugins/470/cbs_category_list">cbs_category_list</a>, <a href="http://textpattern.org/plugins/186/zem_nth">zem_nth</a> (both optional) and <a href="http://utterplush.com/txp-plugins/upm-image">upm_image</a></p>
<p>First you&#8217;ll want to set up some custom fields, depending on how you want your shop to function. For Meghan&#8217;s shop, there are instances where she links to external products via a buy now button. Other times, she&#8217;ll want to link to an external site without the buy now button. So I have created 2 custom fields, &#8220;link to this site&#8221; and &#8220;buynow.&#8221; If you link exclusively to Paypal links, you could name it paypal, or whatever is easy for you to remember. (As long as you adjust it accordingly in the article forms)</p>
<p><img class="alignnone size-full wp-image-883" title="customfields" src="http://fuelyourcoding.com/files/customfields.jpg" alt="customfields" width="547" height="99" /></p>
<p>Now let&#8217;s take a look at one of the product pages inside textpattern:</p>
<p><img class="alignnone size-full wp-image-884" title="shop1" src="http://fuelyourcoding.com/files/shop1.jpg" alt="shop1" width="606" height="411" /></p>
<p>1. The title that will appear on the shop landing page</p>
<p>2. The description that will appear only one the item is clicked on</p>
<p>3. This is the link that the thumbnail and title will link to if you put a link (full url) here, otherwise:</p>
<p>4. A buy now button will appear and will link to the full url pasted here (if a link is not placed in either field, the title and thumbnail will merely link to the full article page automatically)</p>
<p>5. Place the image id number here that you want to associate with the article (the thumbnail version of this image will appear on the shop landing page, while the full image size will show on the individual article page.)</p>
<p>6. Choose the appropriate section for your article, in this instance, &#8220;shop.&#8221;</p>
<p>7. Select the appropriate categoryfor the article (if applicable. You may not have a need for categories)</p>
<p>8. IF USING THE BUY NOW FIELD you must use the override form named shop_listing2 (I&#8217;ll explain below)</p>
<p>SAVE your article!</p>
<div id="attachment_886" class="wp-caption alignnone" style="width: 616px"><img class="size-full wp-image-886" title="shop2" src="http://fuelyourcoding.com/files/shop2.jpg" alt="shop subnav" width="606" height="365" /><p class="wp-caption-text">shop subnav</p></div>
<p>In the actual page template for the shop, the code that calls the shop submenu (books and guides, etc) looks like this:</p>
<pre class="brush: xml;">&lt;txp:cbs_category_list parent=&quot;shop&quot; wraptag=&quot;ul&quot; break=&quot;li&quot; class=&quot;subnav&quot; section=&quot;shop&quot; showcount=&quot;false&quot; class=&quot;subnav&quot; activeclass=&quot;active&quot;/&gt;</pre>
<p>Using the plugin cbs_category_list, this pulls a list of all of the categories with a parent category of &#8220;shop&#8221;, wraps each category in a list tag, wraps the whole thing in an unordered list with a class of subnav, and assigns a class of active on list items when they are active. Handy dandy! You don&#8217;t necessarily need to use this plugin if your shop does not need this type of subnav.</p>
<p>Ok, so how do we pull all of our shop items into the page? The article tag in our shop page template looks like this:</p>
<div>
<pre class="brush: xml;">&lt;txp:article listform=&quot;shop_listing&quot; form=&quot;shop&quot; limit=&quot;99&quot; sort=&quot;posted asc&quot;/&gt;</pre>
</div>
<p>So this tag basically says: on the landing page (or listform version of the page), display the articles using the form of &#8220;shop_listing&#8221;. If you&#8217;re looking at an individual article page, (i.e. an individual product page) display the article using the form &#8220;shop&#8221;. Limit the amount of articles shown to 99, and sort them by date of Posted Ascending.</p>
<p>The &#8220;shop_listing&#8221; form looks like this:</p>
<div>
<pre class="brush: xml;">&lt;div class=&quot;shop-item&quot;&gt;  &lt;a href=&quot;&lt;txp:permlink  /&gt;&quot;&gt;&lt;txp:upm_article_image type=&quot;thumbnail&quot;  class=&quot;shopimg&quot;/&gt;&lt;/a&gt;  &lt;h3&gt;&lt;txp:permlink&gt;&lt;txp:title  /&gt;&lt;/txp:permlink&gt;&lt;/h3&gt;  &lt;span&gt;&lt;a href=&quot;&lt;txp:custom_field  name=&quot;buynow&quot; /&gt;&quot;&gt;BUY NOW&lt;/a&gt;&lt;/span&gt;  &lt;/div&gt;</pre>
</div>
<p>Translation: the thumbnail version of the article&#8217;s image is being pulled from the &#8220;Article image&#8221; field in the article, and assigned the class of &#8220;shopimg&#8221; for styling purposes. Both the title and thumbnail are linked to the permanent link to the article (which will show the body/description of the product. The Buy Now button links to whatever gets put into the custom field named &#8220;buynow.&#8221; The shop-item css looks something like: .shop-item {float:left; margin:20px 25px 10px 0; width:175px; }</p>
<p><em>Alternately, if you want to get really nerdy, you could use the plugin <a href="http://textpattern.org/plugins/186/zem_nth">zem_nth</a> to tell every third (or whatever number) post to display with different class. I use it to apply &#8220;shop-item-last&#8221; (<span style="font-style: normal;"><em>which has a margin-right of zero) <span style="font-style: normal;"><em>to every third item , so the last item in every row doesn&#8217;t have any extra margin space on the right. You can choose to do your layouts with or without zem_nth. This is what my shop_listing article form really looks like:</em></span></em></span></em></p>
<pre class="brush: xml;">&lt;txp:zem_nth step=&quot;1&quot; of=&quot;3&quot;&gt;&lt;div class=&quot;shop-item&quot;&gt;&lt;/txp:zem_nth&gt;&lt;txp:zem_nth step=&quot;2&quot; of=&quot;3&quot; &gt;&lt;div class=&quot;shop-item&quot;&gt;&lt;/txp:zem_nth&gt;&lt;txp:zem_nth step=&quot;3&quot; of=&quot;3&quot; &gt;&lt;div class=&quot;shop-item-last&quot;&gt;&lt;/txp:zem_nth&gt;&lt;a href=&quot;&lt;txp:permlink /&gt;&quot;&gt;&lt;txp:upm_article_image type=&quot;thumbnail&quot; class=&quot;shopimg&quot;/&gt;&lt;/a&gt;&lt;h3&gt;&lt;txp:permlink&gt;&lt;txp:title /&gt;&lt;/txp:permlink&gt;&lt;/h3&gt;&lt;span class=&quot;register&quot;&gt;&lt;a href=&quot;&lt;txp:custom_field name=&quot;buynow&quot; /&gt;&quot;&gt;BUY NOW&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;txp:zem_nth step=&quot;3&quot; of=&quot;3&quot; &gt;&lt;hr class=&quot;space&quot; /&gt;&lt;/txp:zem_nth&gt;</pre>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2145px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;txp:zem_nth step=&#8221;1&#8243; of=&#8221;3&#8243;&gt;&lt;div&gt;&lt;/txp:zem_nth&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2145px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;txp:zem_nth step=&#8221;2&#8243; of=&#8221;3&#8243; &gt;&lt;div&gt;&lt;/txp:zem_nth&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2145px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;txp:zem_nth step=&#8221;3&#8243; of=&#8221;3&#8243; &gt;&lt;div&gt;&lt;/txp:zem_nth&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2145px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;a href=&#8221;&lt;txp:permlink /&gt;&#8221;&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2145px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;txp:upm_article_image type=&#8221;thumbnail&#8221;/&gt;&lt;/a&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2145px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;h3&gt;&lt;txp:permlink&gt;&lt;txp:title /&gt;&lt;/txp:permlink&gt;&lt;/h3&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2145px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;span&gt;&lt;a href=&#8221;&lt;txp:custom_field name=&#8221;buynow&#8221; /&gt;&#8221;&gt;BUY NOW&lt;/a&gt;&lt;/span&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2145px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;/div&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2145px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;txp:zem_nth step=&#8221;3&#8243; of=&#8221;3&#8243; &gt;&lt;hr /&gt;&lt;/txp:zem_nth&gt;</div>
<p>The &#8220;shop_listing2&#8243; form (for products without a buy now button, linking externally) looks like this:</p>
<div>
<pre class="brush: xml;">&lt;div class=&quot;shop-item&quot;&gt;
 &lt;a href=&quot;&lt;txp:custom_field name=&quot;link to this site&quot; /&gt;&quot;  rel=&quot;external&quot;&gt;&lt;txp:upm_article_image type=&quot;thumbnail&quot;  class=&quot;shopimg&quot;/&gt;&lt;/a&gt;
 &lt;h3&gt;&lt;a href=&quot;&lt;txp:custom_field name=&quot;link to this site&quot;  /&gt;&quot;&gt;&lt;txp:title /&gt;&lt;/a&gt;&lt;/h3&gt;
 &lt;/div&gt;</pre>
</div>
<p>This tells the title and thumbnail on the listing page to link directly (in a new window/tab) to the link that is found in the &#8220;link to this site&#8221; field shown in the image above, #3. You could also include the &lt;txp:excerpt /&gt; tag if you wanted to include an excerpt. If you want the article to appear this way (without the buy now button), you need to ensure that you are using the override_form in the article named &#8220;shop_listing2&#8243;.</p>
<p>Now that we have set up what the listing page looks like for product pages, let&#8217;s look at how the individual product pages look. If you will recall the article form we used:</p>
<div>
<pre class="brush: xml;">&lt;txp:article listform=&quot;shop_listing&quot; form=&quot;shop&quot; limit=&quot;99&quot;  sort=&quot;posted asc&quot;/&gt;</pre>
</div>
<p>We need to create a form called &#8220;shop&#8221; that will determine how the individual pages look once you click on the thumbnail/title.</p>
<p>The &#8220;shop&#8221; article form looks like this:</p>
<div>
<pre class="brush: xml;">&lt;p&gt;&lt;a href=&quot;/shop&quot;&gt;Back to Shop&lt;/a&gt; |  &lt;txp:link_to_prev&gt;Previous Product&lt;/txp:link_to_prev&gt; |  &lt;txp:link_to_next&gt;Next Product&lt;/txp:link_to_next&gt;&lt;/p&gt;
 &lt;div class=&quot;right&quot;&gt;&lt;txp:upm_article_image/&gt;&lt;br /&gt;&lt;span  class=&quot;register&quot; &gt;&lt;a href='&lt;txp:custom_field  name=&quot;buynow&quot;/&gt;' &gt;BUY NOW&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;txp:body /&gt;</pre>
</div>
<p>Translation: The tags inside the paragraphs set up a small subnav which allows the user to click through to the next/previous products. Then it puts the full version of the article image in a div labelled &#8220;right&#8221; (which I float right in my css), below that place a Buy Now button which links to the url provided in the &#8220;buynow&#8221; custom field. Then display the body of the article. You could of course format the tags however you want. (image on top with text below, etc). Individual product page pictured below:</p>
<div id="attachment_888" class="wp-caption alignnone" style="width: 616px"><img class="size-full wp-image-888" title="individualpage" src="http://fuelyourcoding.com/files/individualpage.jpg" alt="individual product page" width="606" height="525" /><p class="wp-caption-text">individual product page</p></div>
<p>Using custom fields is a great way to allow the client (who doesn&#8217;t know how to code) to be able to add new items to the shop easily without having to see any textpattern or html tags, and avoid them forgetting to close link tags and add things like rel=&#8221;external&#8221;. Yay!</p>
<p>This tutorial assumes that you have textpattern installed and ready to go, and have a good grasp of the tags.</p>
<p>( Download the latest version of Textpattern here: http://textpattern.com/download )</p>
<p>Did I miss anything? If you need any more clarity or have any questions, please feel free to put them in the comments, and I will do my best to help.</p>
<p>Happy Coding!</p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/create-a-simple-shop-page-in-textpattern/">Create a simple &#8220;shop&#8221; page in Textpattern</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/create-a-simple-shop-page-in-textpattern/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Emailify Your App with Gmail and Ruby</title>
		<link>http://fuelyourcoding.com/emailify-your-app-with-gmail-and-ruby/</link>
		<comments>http://fuelyourcoding.com/emailify-your-app-with-gmail-and-ruby/#comments</comments>
		<pubDate>Thu, 13 May 2010 14:00:52 +0000</pubDate>
		<dc:creator>Jerod Santo</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[gems]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=965</guid>
		<description><![CDATA[Sending and receiving email from your application isn&#8217;t hard, but lets be honest, its not as easy as you&#8217;d like either. If you haven&#8217;t considered using Gmail to manage inbound/outbound email, you really should! The advantages of using Gmail over a local SMTP server or Sendmail include:

No tricky mail server configuration
Google&#8217;s spam filtering is excellent
Free [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/emailify-your-app-with-gmail-and-ruby/">Emailify Your App with Gmail and Ruby</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Sending and receiving email from your application isn&#8217;t hard, but lets be honest, its not as easy as you&#8217;d like either. If you haven&#8217;t considered using <a href="http://mail.google.com">Gmail</a> to manage inbound/outbound email, you really should! The advantages of using Gmail over a local SMTP server or Sendmail include:</p>
<ul>
<li>No tricky mail server configuration</li>
<li>Google&#8217;s spam filtering is excellent</li>
<li>Free archive/backup of your email history</li>
<li>Easy manual administration when necessary</li>
</ul>
<p>Any language with <a href="http://en.wikipedia.org/wiki/Imap">IMAP</a> capabilities in its core, standard library, or 3rd party ecosystem can connect to Gmail for email processing. If that language happens to be <a href="http://www.ruby-lang.org/en/">Ruby</a>, it&#8217;s even easier thanks the the <a href="http://dcparker.github.com/ruby-gmail/">ruby-gmail</a> gem by <a href="http://BehindLogic.com">Daniel Parker</a>. Check it out.</p>
<h2>Installing</h2>
<p>Easy peasy.</p>
<pre class="brush: bash;">
gem install ruby-gmail
</pre>
<h2>Connecting to Gmail</h2>
<p>Connecting up is quite easy, and there are two options for how to proceed. First, you can perform all your activities inside a block. The advantage of this is the library will automatically log you out at the end of the block:</p>
<pre class="brush: ruby;">
require 'gmail'

Gmail.new(username, password) do |gmail|
  # send commands
end
# logged out
</pre>
<p>Second, you can store the connection in a variable and logout it explicitly when done:</p>
<pre class="brush: ruby;">
require 'gmail'

gmail = Gmail.new(username, password)
# send commands
gmail.logout
# logged out
</pre>
<h2>Managing Email</h2>
<p>The <tt>mailbox</tt> method takes a label as an argument and returns an object which has access to email with the given label.</p>
<pre class="brush: ruby;">
inbox  = gmail.mailbox('inbox')
urgent = gmail.mailbox('urgent')
</pre>
<p>Since <tt>inbox</tt> is such a common label to access, there&#8217;s a handy shortcut method:</p>
<pre class="brush: ruby;">
inbox = gmail.inbox
</pre>
<p>Now that you have a mailbox object in hand, you can access its emails or get counts:</p>
<pre class="brush: ruby;">
inbox.emails #  an array of all emails in mailbox
inbox.emails(:unread) # an array of unread emails
inbox.emails(:from =&gt; &quot;phb@work.com&quot;) # an array of emails from PHB
</pre>
<pre class="brush: ruby;">
inbox.count # how many emails in the mailbox
inbox.count(:unread) # how many unread
inbox.count(:from =&gt; &quot;phb@work.com&quot;) # how many from PHB
</pre>
<p>You can also perform many tasks on an individual email:</p>
<pre class="brush: ruby;">
email = inbox.emails.first

email.mark(:read)
email.archive!
email.delete!
email.label('urgent')
email.move_to('followup')
</pre>
<h2>Sending Email</h2>
<p>Creating and sending emails is also a breeze. Just like connecting you can use the idiomatic Ruby block method, or the more object-oriented approach:</p>
<pre class="brush: ruby;">
# with a block
gmail.deliver do
  to &quot;phb@work.com&quot;
  subject &quot;Not feeling well&quot;
  text_part do
    body &quot;I won't be coming in today.&quot;
  end
  html_part do
    body &quot;&lt;p&gt;I &lt;em&gt;won't&lt;/em&gt; be coming in today.&lt;/p&gt;&quot;
  end
end

# or generate message and send it later
email = gmail.generate_message do
  to &quot;phb@work.com&quot;
  subject &quot;Not feeling well&quot;
  body &quot;I won't be coming in today.&quot;
end

email.deliver!
</pre>
<p>The library will take care of sending it out your Gmail account and even set the &#8220;From&#8221; header for you. Nice!</p>
<h2>Try It</h2>
<p>If you&#8217;re already using Ruby to build an application and you need it to send or receive email, there is little excuse not to let <a href="http://dcparker.github.com/ruby-gmail">Ruby-Gmail</a> do the heavy lifting for you. Give it a try!</p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/emailify-your-app-with-gmail-and-ruby/">Emailify Your App with Gmail and Ruby</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/emailify-your-app-with-gmail-and-ruby/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Meet Storytlr</title>
		<link>http://fuelyourcoding.com/meet-storytlr/</link>
		<comments>http://fuelyourcoding.com/meet-storytlr/#comments</comments>
		<pubDate>Mon, 10 May 2010 14:08:17 +0000</pubDate>
		<dc:creator>John Hobbs</dc:creator>
				<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=932</guid>
		<description><![CDATA[What is Storytlr?
Lifestreaming is the aggregation of all of your actions throughout the web in one place to present a complete picture of your digital life. There are several lifestreaming applications out there, and Storytlr was one of the first.
Storytlr was originally a closed source, hosted web application started by Laurent Eschenauer and Alard Weisscher [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/meet-storytlr/">Meet Storytlr</a></p>
]]></description>
			<content:encoded><![CDATA[<h2>What is Storytlr?</h2>
<p><a href="http://en.wikipedia.org/wiki/Lifestreaming">Lifestreaming</a> is the aggregation of all of your actions throughout the web in one place to present a complete picture of your digital life. There are several lifestreaming applications out there, and <a href="http://storytlr.org/">Storytlr</a> was one of the first.</p>
<p>Storytlr was originally a closed source, hosted web application started by Laurent Eschenauer and Alard Weisscher in 2008. In October 2009 they decided to close the service and in December they open sourced the code.</p>
<p>Considerable community development has occurred since the project was open sourced, including many new plugins, bug fixes and features.</p>
<h2>Installing Storytlr</h2>
<p>Storytlr is written in PHP and based around the <a href="http://framework.zend.com/">Zend</a> framework. It is usually run on Apache, but works fine on lighttpd and Nginx. The current stable release is 0.9.2, although there is an RC 0.9.3 that works well.  Additionally you can use the bleeding edge code on <a href="http://github.com/storytlr/core">GitHub</a>.  I currently maintain my own version of 0.9.3 that has a few more features and plugins you won&#8217;t find in the core. You can find it <a href="http://github.com/jmhobbs/storytlr">here</a>.</p>
<p>Since it&#8217;s coming out of a close source system, expect some rough edges and thin documentation.  This is improving all the time with the growing <a href="http://code.google.com/p/storytlr/wiki/WikiHome?tm=6">wiki</a> and the <a href="http://code.google.com/p/storytlr/issues/list">issues board</a>.  Installation is still one of those rough edges, but it&#8217;s fairly easy anyway.</p>
<p>For simplicity I&#8217;ll be using the 0.9.2 release from the <a href="http://code.google.com/p/storytlr/downloads/list">Google Code site</a>, but these instructions can be easily adapted to other versions.  I&#8217;ll be doing just about everything from the command line, so if you don&#8217;t have shell access, be prepared to tweak things a bit.</p>
<h3>Requirements</h3>
<p>First, let&#8217;s make sure our server is compatible.  0.9.2 has the following requirements:</p>
<ul>
<li>PHP 5</li>
<li>mcrypt</li>
<li>PDO</li>
<li>Tidy</li>
<li>MySQL</li>
<li>Zend Framework</li>
</ul>
<p>An easy way to check compatibility is to use <a href="http://gist.github.com/raw/393739/storytlr_requirements_check.php">this script</a>.</p>
<p>Most hosts have these extensions. The rarest one is Tidy.  For instance, Dreamhost does not run Tidy.  If your host doesn&#8217;t have Tidy, you can work around it by using a different version with the <a href="http://code.google.com/p/storytlr/issues/detail?id=64&amp;can=1&amp;q=htmLawed#c1">htmLawed patch</a>.</p>
<p>If you are missing Zend, that can be downloaded <a href="http://framework.zend.com/download/current/">here</a>. Make sure to put it in your PHP include path.</p>
<h3>Getting Started</h3>
<p>Now that you&#8217;ve got the requirements met, download the <a href="http://code.google.com/p/storytlr/downloads/list">0.9.2 file</a> and unpack it into your root web directory.</p>
<pre class="brush: bash;">
jmhobbs@katya:/var/www/lifestream$ wget http://storytlr.googlecode.com/files/storytlr-0.9.2.tgz
--2010-05-07 13:33:05--  http://storytlr.googlecode.com/files/storytlr-0.9.2.tgz
Resolving storytlr.googlecode.com... 74.125.45.82
Connecting to storytlr.googlecode.com|74.125.45.82|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 8748114 (8.3M) [application/x-gzip]
Saving to: “storytlr-0.9.2.tgz”

100%[============================================&gt;] 8,748,114    233K/s   in 36s

2010-05-07 13:33:41 (239 KB/s) - “storytlr-0.9.2.tgz” saved [8748114/8748114]

jmhobbs@katya:/var/www/lifestream$ tar -zxf storytlr-0.9.2.tgz
jmhobbs@katya:/var/www/lifestream$ ls -a
.  ..  feeds  flash  friendconnect  .htaccess  images  index.php  INSTALL  js  LICENSE  protected  storytlr-0.9.2.tgz  style  themes
jmhobbs@katya:/var/www/lifestream$
</pre>
<h3>The Database</h3>
<p>Now you need to load the database schema. The schema files is located at <tt>protected/install/database.sql</tt>.  If you don&#8217;t have a database or user set up, now is the time to do that as well.</p>
<pre class="brush: bash;">
jmhobbs@katya:/var/www/lifestream$ cd protected/install/
jmhobbs@katya:/var/www/lifestream/protected/install$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5515
Server version: 5.0.81-1 (Debian)

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql&gt; create database lifestream;
Query OK, 1 row affected (0.05 sec)

mysql&gt; grant all on lifestream.* to lifestream@localhost identified by 'supersecretpassword';
Query OK, 0 rows affected (0.11 sec)

mysql&gt; flush privileges;
Query OK, 0 rows affected (0.08 sec)

mysql&gt; use lifestream;
Database changed
mysql&gt; source database.sql
Query OK, 0 rows affected (0.00 sec)

(Lines Removed For Brevity)

Query OK, 0 rows affected (0.00 sec)

mysql&gt; Bye
jmhobbs@katya:/var/www/lifestream/protected/install$
</pre>
<h3>Configuration</h3>
<p>Your last major step is the configuration file, which goes at <tt>protected/config/config.ini</tt>.  Storytlr provides an example file with good defaults, so we&#8217;ll edit that.  The key settings to change are:</p>
<ul>
<li>db.username</li>
<li>db.password</li>
<li>db.dbname</li>
<li>security.cookie</li>
<li>web.host</li>
<li>web.timezone</li>
</ul>
<pre class="brush: bash;">
jmhobbs@katya:/var/www/lifestream$ cd protected/config/
jmhobbs@katya:/var/www/lifestream/protected/config$ ls
config.ini.sample
jmhobbs@katya:/var/www/lifestream/protected/config$ cp config.ini.sample config.ini
jmhobbs@katya:/var/www/lifestream/protected/config$ vim config.ini

[general]

;Database connection settings
db.adapter=PDO_MYSQL
db.host=localhost
db.username=lifestream
db.password=supersecretpassword
db.dbname=lifestream

;Security
security.cookie = kg89y6gbval

;Caching
;cache.content = 1
;cache.metadata = 1
;cache.path = /tmp/cache/

;Web deployment settings
web.host=lifestream.velvetcache.org
web.path=/
web.redirect = 1
web.timezone=America/Chicago
jmhobbs@katya:/var/www/lifestream/protected/config$
</pre>
<h3>The Fruits of Our Labor</h3>
<p>At this point your lifestream should be working, open a browser and take a look.</p>
<p><img class="alignnone size-medium wp-image-934" title="It Works!" src="http://fuelyourcoding.com/files/storytlr-1-600x429.png" alt="It Works!" width="600" height="429" /></p>
<p>Now we need to change our password, so go to the admin page <tt>http://www.example.com/admin</tt> and log in. The default username and password are <tt>admin</tt> and <tt>storytlr</tt> respectively.  You can find that under <strong>Configure » Password</strong>.</p>
<p><img class="alignnone size-medium wp-image-936" title="Change Password" src="http://fuelyourcoding.com/files/storytlr-3-600x429.png" alt="Change Password" width="600" height="429" /></p>
<p>There are lots of options to browse through, and I won&#8217;t cover them all, but I&#8217;d like to run through setting up a source. Sources are the core of lifestreaming, and there are lots of options to choose from. In the admin interface go to <strong>Sources</strong> and click <strong>Add</strong> next to a source you want to add, I&#8217;ll use Delicious in my example.</p>
<p>This should present you with a form asking for some information. Each source is going to be slightly different, but all should be pretty easy to understand. Fill that out and it should import what it can from that source.</p>
<p><img class="alignnone size-medium wp-image-938" title="Delicious" src="http://fuelyourcoding.com/files/storytlr-5b-600x429.png" alt="Delicious" width="600" height="429" /></p>
<p><img class="alignnone size-medium wp-image-939" title="Importing" src="http://fuelyourcoding.com/files/storytlr-6b-600x429.png" alt="Importing" width="600" height="429" /></p>
<p>There you have it! Add some more sources until your lifestream really fleshes out.</p>
<p><img class="alignnone size-medium wp-image-940" title="Lifestream!" src="http://fuelyourcoding.com/files/storytlr-8b-600x429.png" alt="Lifestream!" width="600" height="429" /></p>
<h3>Keeping Current</h3>
<p>The very last step, which is often overlooked, is updating your sources. The primary means for this is the PHP script <tt>protected/tools/update.php</tt>. This must be run from the command line with the name of the user to update.  Here&#8217;s an example:</p>
<pre class="brush: bash;">
jmhobbs@katya:/var/www/lifestream$ php5 protected/tools/update.php admin
Memory usage on startup: 4997940
Memory: 5351904
Memory: 5351904
Updating source delicious for user admin [0/2] (5).... found 0 items
Updated 1 out of 2 sources in 1 seconds.
jmhobbs@katya:/var/www/lifestream$
</pre>
<p>It&#8217;s common to set up a cron job to handle these updates. It&#8217;s often important to put in full paths for your cron jobs.  This example will update my sources every 10 minutes. You can learn more about cron <a href="http://www.linuxhelp.net/guides/cron/">here</a>.</p>
<pre class="brush: bash;">
jmhobbs@katya:/var/www/lifestream$ crontab -e
MAILTO=jmhobbs@towncommons.com
# m h  dom mon dow   command
*/10 * * * * /usr/bin/php5 /var/www/lifestream/protected/tools/update.php admin
jmhobbs@katya:/var/www/lifestream$
</pre>
<p>Storytlr has lots more features and configuration options, I would encourage you to browse around and make your installation suit your taste. To see an example of a fully customized Storytlr installation, you can visit mine at <a href="http://lifestream.velvetcache.org/">http://lifestream.velvetcache.org/</a></p>
<h2>Going Further</h2>
<p>Storytlr is rich with opportunities to contribute. It&#8217;s fairly young and has lots of finicky little things to figure out, and it can always use one more plugin.  Lots of stuff is in the works, including a much simpler installer which will make most of this article obsolete!</p>
<p>Documentation is in need of some TLC, and more eyes on the bug reports would be great.</p>
<p>To get involved visit the <a href="http://code.google.com/p/storytlr">Storytlr Google Code</a> site or hop onto Github and <a href="http://github.com/storytlr/core">fork the project</a>.  Finally, you can also join us on Freenode IRC in <a href="irc://chat.freenode.net/storytlr">#storytlr</a>.</p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/meet-storytlr/">Meet Storytlr</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/meet-storytlr/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Open-Source Spotlight: Underscore.js</title>
		<link>http://fuelyourcoding.com/open-source-spotlight-underscorejs/</link>
		<comments>http://fuelyourcoding.com/open-source-spotlight-underscorejs/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 16:20:36 +0000</pubDate>
		<dc:creator>Jerod Santo</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=856</guid>
		<description><![CDATA[JavaScript is a powerful language, but it lacks some of the handy utilities that developers of other languages like Ruby &#38; Python have come to know and love. Underscore.js is your utility belt. In the author&#8217;s own words:
Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/open-source-spotlight-underscorejs/">Open-Source Spotlight: Underscore.js</a></p>
]]></description>
			<content:encoded><![CDATA[<p>JavaScript is a powerful language, but it lacks some of the handy utilities that developers of other languages like Ruby &amp; Python have come to know and love. <a href="http://documentcloud.github.com/underscore/">Underscore.js</a> is your utility belt. In the author&#8217;s own words:</p>
<blockquote><p>Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects. It&#8217;s the tie to go along with jQuery&#8217;s tux.</p></blockquote>
<p><a href="http://documentcloud.github.com/underscore/">Underscore.js</a> provides collection functions like <tt>each</tt>, <tt>map</tt>, <tt>include</tt>, and <tt>reduce</tt>. It makes arrays more powerful by adding <tt>flatten</tt>, <tt>uniq</tt>, and <tt>intersect</tt>. It extends objects with many useful functions like <tt>keys</tt>, <tt>values</tt>, <tt>functions</tt>, <tt>isNaN</tt>, and many more.</p>
<p>A few examples to whet your appetite:</p>
<p>Using the <tt>each</tt> function to write each array value to the console:</p>
<pre class="brush: jscript;">
// object-oriented way
_(['John', 'Paul', 'George', 'Ringo']).each(function(beatle) {
    console.log(beatle);
});
// functional way
_.each(['John', 'Paul', 'George', 'Ringo'], function(beatle) {
    console.log(beatle);
});
</pre>
<p>Using the <tt>reduce</tt> method to round three numbers down and sum the results:</p>
<pre class="brush: jscript;">
_.reduce([1.5,2,3.7], 0, function(memo, num) { return memo + Math.floor(num) });
// =&gt; 6
</pre>
<p>Using the <tt>pluck</tt> method to to extract just the names from an array of objects:</p>
<pre class="brush: jscript;">
var beatles = [
  {name: 'John', dead: true},
  {name: 'Paul', dead: false},
  {name: 'Ringo', dead: false},
  {name: 'George', dead: true}
]

_.pluck(beatles, 'name');
// =&gt; [&quot;John&quot;, &quot;Paul&quot;, &quot;Ringo&quot;, &quot;George&quot;]
</pre>
<p>The library weighs in at just <strong>2.5kb</strong> once packed and gzipped, so there is little excuse not to take advantage of its offerings. There are over 60 functions included, the documentation on how to use each function is great, the source code is freely available <a href="http://github.com/documentcloud/underscore/">on GitHub</a>, and the library is completely DOM-free which means you can use it server-side as well.</p>
<p>Thanks to <a href="http://github.com/jashkenas">Jeremy Ashkenas</a> and the folks at <a href="http://www.documentcloud.org/home">DocumentCloud</a> for a great open-source library that we can all benefit from!</p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/open-source-spotlight-underscorejs/">Open-Source Spotlight: Underscore.js</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/open-source-spotlight-underscorejs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set Rails Logging on Fire</title>
		<link>http://fuelyourcoding.com/set-rails-logging-on-fire/</link>
		<comments>http://fuelyourcoding.com/set-rails-logging-on-fire/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 17:10:14 +0000</pubDate>
		<dc:creator>Jerod Santo</dc:creator>
				<category><![CDATA[Plugins / Add-Ons]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=842</guid>
		<description><![CDATA[Rails 2.3+ and Rails 3 rely on Rack, a minimal (and awesome) interface between Ruby and webservers. This has many advantages, one of which is the ability to easily swap Rack applications (middlewares) in &#038; out of your Rails app. Modularity FTW!
One fun (and useful) example of a Rack middleware is a Firebug logger written [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/set-rails-logging-on-fire/">Set Rails Logging on Fire</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Rails 2.3+ and Rails 3 rely on <a href="http://rack.rubyforge.org/">Rack</a>, a minimal (and awesome) interface between Ruby and webservers. This has many advantages, one of which is the ability to easily swap Rack applications (middlewares) in &#038; out of your Rails app. Modularity FTW!</p>
<p>One fun (and useful) example of a Rack middleware is a Firebug logger written by <a href="http://sjjdev.com">Simon Jefford</a> for the <a href="http://coderack.org/">CodeRack</a> competition. This middleware allows you to send arbitrary messages directly to <a href="http://getfirebug.com/">Firebug</a>. Why? Since you&#8217;re already debugging much of your Rails app in a browser anyway, sending debug output to your browser&#8217;s console (instead of tailing a log file) makes a lot of sense.</p>
<p><em>NOTE: FirebugLogger plays nice with WebKit&#8217;s Web Inspector as well.</em></p>
<p>Simon also released a <a href="http://github.com/simonjefford/rack_firebug_logger">Rails plugin</a> that you can install to set up the middleware for you, but it&#8217;s more fun (and informative) to set it up yourself. Here&#8217;s how:</p>
<h2>Setup</h2>
<p>The goal is to be able to send arbitrary messages to Firebug from any controller or view.</p>
<p>Rails autoloads (and namespaces) any code placed in the <tt>lib</tt> directory, so that is where we&#8217;ll place our FirebugLogger code. Grab the code from <a href="http://gist.github.com/252575">my gist</a>, which is a fork of <a href="http://gist.github.com/210069">Simon&#8217;s original</a> with minor improvements, and place it inside your Rails app in:</p>
<pre class="brush: plain;">
lib/rack/firebug_logger.rb
</pre>
<p>Rails will load the code for us, but we need to manually activate the middleware. Since this bit of code is only useful during development, we&#8217;ll load it up in that environment only.</p>
<pre class="brush: ruby;">
# config/environments/development.rb
# ... other stuff ...
config.middleware.use ::Rack::FirebugLogger
</pre>
<h2>Using FirebugLogger</h2>
<p>Using the middleware is pretty straight forward. It will process an array of arrays, each of which has a log level and a message. Add a single line like the one below to an existing controller action and load up the page:</p>
<pre class="brush: ruby;">
# app/controllers/posts_controller.rb
class PostsController &lt; ApplicationController
  def index
    @posts = Post.all
    request.env['firebug.logs'] = [[:info, &quot;hello from rack!&quot;]]
  end
  # ... other actions ...
end
</pre>
<p>Open Firebug and you should see &#8220;hello from rack!&#8221; glaring back at you. You can do the same thing in views:</p>
<pre class="brush: ruby;">
# app/views/posts/index.html.erb
&lt;% request.env['firebug.logs'] = [[:warn, &quot;inside a view!&quot;]] %&gt;
</pre>
<h2>Adding a Helper</h2>
<p>Using the logger like this is a bit tedious, and it&#8217;s not easy to create multiple messages for a single request. Let&#8217;s wrap the functionality up into a method that we can call. This method should be placed in the application controller so that all other controllers inherit it.</p>
<pre class="brush: ruby;">
# app/controllers/application_controller.rb
class ApplicationController &lt; ActionController::Base
# ... other stuff ...
helper_method :firebug

  private

  def firebug(message,type = :debug)
    request.env['firebug.logs'] ||= []
    request.env['firebug.logs'] &lt;&lt; [type.to_sym, message.to_s]
  end
end
</pre>
<p>This method will initialize an empty array the first time it is called and then push new messages on to the array on subsequent calls. Notice that it calls <tt>to_s</tt> on the <tt>message</tt> variable before passing it on. This means you can send the method a string or any object that responds to <tt>to_s</tt> and it will just work. Specifying a log type is optional, the method is private and it is explicitly added as a <tt>helper_method</tt> so that you can access it from views as well.</p>
<p>Now writing logs to Firebug is as easy as:</p>
<pre class="brush: ruby;">
firebug &quot;woop woop!&quot;
# optionally specify a log level
firebug &quot;it's a trap!&quot;, :warning
</pre>
<p>Here are a few ideas of helpful messages to send to Firebug:</p>
<pre class="brush: ruby;">
# inspect the attributes of an object
firebug @posts.first.inspect
# dump the session
firebug session
# check a user's roles
firebug current_user.roles.inspect
</pre>
<p>I highly encourage you to try this in one of your Rails apps. It has proven a useful addition to my toolkit. Let me know how it works for you by leaving a comment!</p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/set-rails-logging-on-fire/">Set Rails Logging on Fire</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/set-rails-logging-on-fire/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Simple Debugging with WordPress</title>
		<link>http://fuelyourcoding.com/simple-debugging-with-wordpress/</link>
		<comments>http://fuelyourcoding.com/simple-debugging-with-wordpress/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 19:13:36 +0000</pubDate>
		<dc:creator>Douglas Neiner</dc:creator>
				<category><![CDATA[Concepts & Training]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[wp_debug]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=826</guid>
		<description><![CDATA[For simple WordPress theme development, what is the first thing most PHP developers do to troubleshoot problems?

print_r( $post );
die();

One the statements are in place, the programmer refreshes the page and looks at the source to view a nicely indented array or object. Next they comment out the print_r and die statements, change some lines, and [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/simple-debugging-with-wordpress/">Simple Debugging with WordPress</a></p>
]]></description>
			<content:encoded><![CDATA[<p>For simple WordPress theme development, what is the first thing most PHP developers do to troubleshoot problems?</p>
<pre class="brush: php;">
print_r( $post );
die();
</pre>
<p>One the statements are in place, the programmer refreshes the page and looks at the source to view a nicely indented array or object. Next they comment out the <tt>print_r</tt> and <tt>die</tt> statements, change some lines, and try the code again. If it fails, they are back to square one and in go the <tt>print_r</tt>,<tt>echo</tt> and <tt>die</tt> statements so the brutal cycle can begin again.</p>
<p>We know these methods <em>partially</em> work (who hasn&#8217;t done the above during a PHP project!), but we also know they are less than optimal. Is there a better way?</p>
<h2>WordPress Debug Mode</h2>
<p>WordPress offers quite a few ways to enable and customize a debug mode while developing. To enable debug mode, you want to define <tt>WP_DEBUG</tt> as <tt>true</tt> in your wp-config.php. Here is the complete code block I suggest you use. We will look at the individual parts shortly. Place this in your <tt>wp-config.php</tt> file after the lines that define the database variables. Be sure to change <tt>development_user</tt> to be your development database user name:</p>
<pre class="brush: php;">
@ini_set('display_errors',0);
if( 'development_user' === DB_USER ){
  define('WP_DEBUG',         true);  // Turn debugging ON
  define('WP_DEBUG_DISPLAY', false); // Turn forced display OFF
  define('WP_DEBUG_LOG',     true);  // Turn logging to wp-content/debug.log ON
}
</pre>
<h3>display_errors</h3>
<p>The first line in our code block turns off the display of errors, regardless of php.ini or .htaccess settings to the contrary. This is important because though WordPress can force the display of errors to be on, it won&#8217;t force them to be off if <tt>display_errors</tt> is already turned on.</p>
<h3>Testing for local vs. production</h3>
<p>There are probably fifty ways of doing this part, so use a method that works for you. In my environments, my local development database rarely if <em>ever</em> has the same user name as the production database. Simply checking what I expect the local user name to be against what is defined in <tt>DB_USER</tt> is a simple way of knowing if the files are on the development or production servers.</p>
<h3>WP_DEBUG</h3>
<p>This is the most important constant as it determines if WordPress will use any of the other debugging constants. Thankfully it is quite simple. If set to <tt>true</tt>, debug mode is turned on. If <tt>undefined</tt> or set to <tt>false</tt>, debug mode is kept off.</p>
<h3>WP_DEBUG_DISPLAY</h3>
<p>This constant confused me at first, but it is actually quite simple. If set to <tt>true</tt>, it will override the current <tt>display_errors</tt> configuration setting and turn it on. However, if set to <tt>false</tt> it <strong>will not turn off <tt>display_errors</tt>.</strong> This setting is simply an override. This is the reason we turn <tt>display_errors</tt> off before setting any of these constants.</p>
<p>Set this constant to <tt>true</tt> if you want to see errors displayed in your browser when they occur. Keep in mind this will sometimes complicate errors because once at least one error has been written to the page, all redirect requests will fail. This is because the header information can no longer be modified once content is sent, and a displayed error counts as content.</p>
<h3>WP_DEBUG_LOG</h3>
<p>This constant is the whole reason I found the WordPress debug methods so helpful. Set this constant to <tt>true</tt> and WordPress will set up PHP to write to an error log in <tt>wp-content/debug.log</tt>. Sadly you can&#8217;t specify a different file location that is not in the content folder, but at least you know where it is!</p>
<p><em>Note: because this is written to a public directly, be extremely careful not to upload the log by mistake. Additionally, if you run WP_DEBUG on a production server, do so only for immediate troubleshooting then turn it off and remove <tt>wp-content/debug.log</tt>.</em></p>
<h2>Leveraging WP_DEBUG</h2>
<p>In addition to PHP errors being sent to <tt>debug.log</tt> we can also send our own output using the <tt>error_log</tt> PHP function. The only problem with this, is even in production mode your errors will still most likely be written to a PHP log; it just won&#8217;t be <tt>debug.log</tt>. Because of this, its a good idea to provide a wrapper function to handle the logging for your theme or plugin.</p>
<p>Place the following code in your <tt>functions.php</tt> in your theme, or in the plugin file for your WordPress plugin:</p>
<pre class="brush: php;">
if(!function_exists('_log')){
  function _log( $message ) {
    if( WP_DEBUG === true ){
      if( is_array( $message ) || is_object( $message ) ){
        error_log( print_r( $message, true ) );
      } else {
        error_log( $message );
      }
    }
  }
}
</pre>
<p>Feel free to expand on this function if it doesn&#8217;t exactly meet your needs, but the concept is simple: Centralize all your log calls to use your custom function. Then, in that <tt>_log</tt> function, only output the message if <tt>WP_DEBUG</tt> is set to <tt>true</tt>. There is no reason to test if <tt>WP_DEBUG</tt> has been defined because as soon as <tt>wp-settings.php</tt> is processed, <tt>WP_DEBUG</tt> <em>will be</em> defined, even if it wasn&#8217;t already defined in <tt>wp-config.php</tt>.</p>
<p>This particular <tt>_log</tt> snippet will call a <tt>print_r</tt> on arrays and objects passed to the function for simple debugging.</p>
<h2>Trying it Out</h2>
<p>If you have followed these steps, you can run a quick test by adding these lines into your <tt>header.php</tt> file in your theme folder:</p>
<pre class="brush: php;">
_log('Testing the error message logging');
_log(array('it' =&gt; 'works'));
</pre>
<p>After refreshing your page once, you should see a newly created <tt>debug.php</tt> file with a few lines of output. Use any log viewing utility that supports tailing the file for maximum productivity. On Mac, Unix and Linux systems, you can use this command from the main directory of your site:</p>
<pre class="brush: plain;">
tail -f wp-content/debug.log
</pre>
<h2>More Solutions</h2>
<p>If you are looking for a more interactive console for debugging, be sure to look at our review on the <a href="http://fuelyourcoding.com/plugin-review-wordpress-console/">WordPress Console</a>.</p>
<p><strong>What about you?</strong> If you didn&#8217;t already know about this built in WordPress feature, what methods did you come up with to make debugging WordPress easier? Please leave us your tips in the comments below!</p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/simple-debugging-with-wordpress/">Simple Debugging with WordPress</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/simple-debugging-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>jQuery Plugin Design Patterns: Part I</title>
		<link>http://fuelyourcoding.com/jquery-plugin-design-patterns-part-i/</link>
		<comments>http://fuelyourcoding.com/jquery-plugin-design-patterns-part-i/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 18:21:06 +0000</pubDate>
		<dc:creator>Douglas Neiner</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Plugins / Add-Ons]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=798</guid>
		<description><![CDATA[jQuery plugins come in all shapes and sizes. They perform very simple or very complex tasks depending on their intended use. When it comes time for you to design your own plugin, its really important to understand what patterns other developers use and what will best suits your needs.
As a side note, I have built [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/jquery-plugin-design-patterns-part-i/">jQuery Plugin Design Patterns: Part I</a></p>
]]></description>
			<content:encoded><![CDATA[<p>jQuery plugins come in all shapes and sizes. They perform very simple or very complex tasks depending on their intended use. When it comes time for you to design your own plugin, its really important to understand what patterns other developers use and what will best suits your needs.</p>
<p>As a side note, I have built a number of plugins for my own projects and client work that will <em>never be released</em>. The jQuery community needs to stop thinking of plugins only as releasable, open-source projects, and start thinking of them instead as a reusable pieces of code that can help optimize and <a href="http://en.wikipedia.org/wiki/Don't_repeat_yourself">DRY</a> up a complex website. Take this little plugin as an example:</p>
<pre class="brush: jscript;">
$.fn.notice = function(){
    return this.slideDown(500).delay(4000).slideUp(500);
}
</pre>
<p>It simply abstracts the animation for displaying a notice (using jQuery 1.4). Would I ever release this on an open source site? Of course not! But it is still a fully functioning jQuery plugin that can be used over and over throughout a website.</p>
<h2>Design Pattern Series Overview</h2>
<ul>
<li>Basics &amp; Structure (this article)</li>
<li>Options &amp; Updating</li>
<li>Callbacks &amp; Custom Events</li>
<li>Misc. General Practices</li>
</ul>
<h2>Basics</h2>
<h3>Filename</h3>
<p>Every jQuery plugin sits in its own JS file, and is normally named using the following pattern:</p>
<pre class="brush: plain;">
jquery.pluginname.js
jquery.pluginname.min.js
</pre>
<p>Released plugins often also have a version number:</p>
<pre class="brush: plain;">
jquery.pluginname-1.3.js
jquery.pluginname-1.3.min.js
</pre>
<p>If you end up building a lot of plugins for your website, consider also including a namespace to keep all your files together (And of course you would combine and minify them for production, right?):</p>
<pre class="brush: plain;">
jquery.mysite.pluginname.js
jquery.mysite.pluginname.js
</pre>
<h3>Basic File Layout</h3>
<p>After any comments you choose to put at the top of your file, the very next thing you should have is a self executing anonymous function that will actually wrap your entire plugin. Say what!? Don&#8217;t worry, you have seen it before, and it looks like this:</p>
<pre class="brush: jscript;">
(function($){

   ... code here ...

})(jQuery);
</pre>
<p>This gives your plugin a private scope to work in, and also allows your plugin to be used with <code>$.noConflict</code> mode without creating a problem. By passing <tt>jQuery</tt> into the function, the <tt>$</tt> will equal jQuery <em>inside</em> the function even if <code>$</code> means something different outside your plugin.</p>
<h2>Structure</h2>
<p>There are three basic structures you will see when you look at released plugins:</p>
<h3>Contained Function</h3>
<p>In this structure, (almost) all the code to run your plugin is contained within the function used to call your plugin. This is the most common format:</p>
<pre class="brush: jscript;">
(function($){

   $.fn.myPlugin = function(){
      return this.each(function(){
         // do something
      });
   }

})(jQuery);
</pre>
<p>You <strong>should</strong> use this this structure when you are writing a simple plugin that acts once upon the jQuery result set on each execution. For complex plugins that need to maintain an adjustable state, you should consider the &#8220;Class and Function&#8221; structure.</p>
<h3>Class and Function</h3>
<p>In this structure, a class is used and an instance is created for each DOM element in the result set. You may see these objects attached in some way to the DOM elements they modify:</p>
<pre class="brush: jscript;">
(function($){
   var MyClass = function(el){
       var $el = $(el);

       // Attach the instance of this object
       // to the jQuery wrapped DOM node
       $el.data('MyClass', this);
   }

   $.fn.myPlugin = function(){
      return this.each(function(){
         (new MyClass(this));
      });
   }

})(jQuery);
</pre>
<p>You <strong>should</strong> use this structure if you need to be able to access the object later that is associated with a DOM element. It is far easier to attach a single object vs several key/value pairs using the <tt>data()</tt> method. In this approach, you can access the object by calling <tt>$('selector').data('MyClass')</tt>. This functions more like a widget and is a plugin that maintains state and can adjust its state on the fly (Learn how in the next article.).</p>
<p><em><strong>Note: </strong> Widget Factory: The next release of jQuery UI is going to see the addition of a Widget Factory that will be designed to specially assist in developing widget-like plugins. </em></p>
<h3>Extend</h3>
<p>In my opinion, this is the least idiomatic way to create a jQuery plugin. It uses the <tt>jQuery.fn.extend</tt> method instead of <tt>jQuery.fn.pluginName</tt>:</p>
<pre class="brush: jscript;">
(function($){

   $.fn.extend({
     myPlugin: function(){
      return this.each(function(){
         // do something
     },
     myOtherPlugin: function(){
      return this.each(function(){
         // do something
     }
   });

})(jQuery);
</pre>
<p>You will find this structure helpful if you need to add a <em>large number</em> of plugin methods to jQuery. I would contend, however, that if your plugin needs to add that many methods, there may be a better way to structure its implementation.</p>
<p>I feel the extend method is used more by programmers transitioning from other JS libraries. I personally find the simple <tt>$.fn.pluginName =</tt> structure to be easier to read, and more in line with what you will normally see in jQuery plugins.</p>
<h2>Up Next</h2>
<p>In the next part of this series, we will look at passing options and providing methods for updating settings and functionality after a plugin has been called.</p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/jquery-plugin-design-patterns-part-i/">jQuery Plugin Design Patterns: Part I</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/jquery-plugin-design-patterns-part-i/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>jQuery Enlightenment: Book Review and Giveaway (Winners Announced!)</title>
		<link>http://fuelyourcoding.com/jquery-enlightenment-book-review-and-giveaway/</link>
		<comments>http://fuelyourcoding.com/jquery-enlightenment-book-review-and-giveaway/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 20:04:58 +0000</pubDate>
		<dc:creator>Douglas Neiner</dc:creator>
				<category><![CDATA[Books / Magazines]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=782</guid>
		<description><![CDATA[Winners Announced
I was really happy to see so much participation in this giveaway! After seeing how many people entered, I was feeling really bad that only one of them would leave with a copy of the book. I talked to Cody, and he graciously provided two more free copies so we can award a total [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/jquery-enlightenment-book-review-and-giveaway/">jQuery Enlightenment: Book Review and Giveaway (Winners Announced!)</a></p>
]]></description>
			<content:encoded><![CDATA[<h2>Winners Announced</h2>
<p>I was really happy to see so much participation in this giveaway! After seeing how many people entered, I was feeling really bad that only one of them would leave with a copy of the book. I talked to Cody, and he graciously provided two more free copies so we can award a total of three books! I randomly picked three winners (using <a href="http://random.org">Random.org</a>) and am happy to announce the following winners:</p>
<ul>
<li>Brad Rhine (<a href="http://truetech.org">truetech.org</a>)</li>
<li>Mila</li>
<li>Geoff Woodburn (<a href="http://woodburndesigns.com">woodburndesigns.com</a>)</li>
</ul>
<h2>Book Review</h2>
<p>Late in 2009, <a href="http://www.codylindley.com">Cody Lindley</a> published a PDF book on jQuery titled <a href="http://jqueryenlightenment.com">jQuery Enlightenment</a>. Today we are presenting our view of the book as well as offering a free copy to one lucky reader.</p>
<p><img class="alignnone size-full wp-image-792" title="jqueryen" src="http://fuelyourcoding.com/files/jqueryen.jpg" alt="jqueryen" width="600" height="300" /></p>
<h2>About The Author</h2>
<p>Cody Lindley is a core team member of the <a href="http://jquery.com">jQuery</a> project, and the original developer of the well known Thickbox plugin for jQuery. I had the pleasure of meeting and listening to Cody present at the jQuery Conference last year in Boston. He describes himself on his website:</p>
<blockquote><p>Today I am a Christian, husband, son, brother, professional Web developer, and outdoor enthusiast. I spend a majority of my time sleeping and working, but who doesn’t? In between the daily routines of the average American, I desire an existence that entails a relationship with God, my family, and nature. I would like to consider myself a bookworm (a novice theologian at best), but truth be told, I simply enjoy watching movies and playing xBox way too much. I guess I also have the luxury of pursuing my profession as a personal passion. Yes, I often work even when I am not at work.</p></blockquote>
<h2>Overview</h2>
<p>jQuery Enlightenment is a different type of book than I am used to seeing in the tech field. A list of what it is <em>not</em> might help shed light on what I mean. It is not documentation, a tutorial/walkthrough, or just conceptual material. jQuery Enlightenment is an amazingly clear montage of principals and code samples every jQuery developer needs to know grouped by topic. Cody covered topics both basic and profound throughout the pages of the book.</p>
<p>I consider myself quite adept at using jQuery, but found myself constantly amazed at the things I was learning while reading this book.  Cody says it picks up where the jQuery documentation leaves off. I can see his point, but I think this book would be a better starting place for a new jQuery developer than even reading through the jQuery API site.</p>
<h2>Pros</h2>
<h3>Code Samples</h3>
<p><img class="alignnone size-full wp-image-783" title="code" src="http://fuelyourcoding.com/files/code.jpg" alt="code" width="568" height="104" /></p>
<p>Code samples make up over 70% of the book (rough estimation). The book is not written in an editorial way at all. It is about presenting what you need to know, demonstrating it with an example, and moving on. For this reason the book is an extremely fast read and perfect for reference on a day to day basis.</p>
<p>Possibly one of the neatest features of the book itself is that (almost) every code sample provided in the book has a link to the same code on JSBin.com. JSBin is an online playground for testing and demonstrating JavaScript, HTML, and CSS technologies. jQuery Enlightenment isn&#8217;t a flat reading experience, it allows you to immediately jump in and play with the code samples until everything makes sense.</p>
<h3>Additional Notes</h3>
<p><img class="alignnone size-full wp-image-784" title="notes" src="http://fuelyourcoding.com/files/notes.jpg" alt="notes" width="568" height="104" /></p>
<p>Many of the topics are followed by a little box titled &#8216;Notes&#8217;. I am glad Cody didn&#8217;t choose some cheesy title for these boxes, but &#8216;Notes&#8217; really does not sum up what they provide. You will find many undocumented (or hard to find) tips and tricks about the finer points of jQuery in these boxes. Skip over them at your own peril!</p>
<h3>No Fluff Quality</h3>
<p>Cody doesn&#8217;t waste any time on any of the topics presented in the book. The pattern used is simple: explain, demonstrate, move on. I personally will be using this book not just for reference, but for a quick read-through every few weeks to keep my jQuery senses sharp.</p>
<h2>Cons</h2>
<p>You will be hard pressed to find something negative to say about this book, and it wasn&#8217;t until I reached the end that I had one complaint about the content. The chapter on Ajax (Chapter 11) was far too short. Perhaps this is because the documentation is very clear, but I still wanted to learn more and have more examples to glean from. Perhaps the second edition of the book (which will cover jQuery 1.4) will provide more detail on jQuery&#8217;s AJAX implementation and associated methods.</p>
<h2>Conclusion</h2>
<p>I am confident new users and seasoned users alike will find much to learn in jQuery Enlightenment. After reading the book, my only concern is that I won&#8217;t remember all of the cool things I learned while reading it!</p>
<h2>Win a FREE Copy!</h2>
<p>Next Wednesday we will be selecting a winner to receive a free copy of jQuery Enlightenment. Entering the competition is easy!</p>
<p>Head over to <a href="http://jqueryenlightenment.com">jQuery Enlightenment</a> and quickly look through table of contents. Then, leave a comment below telling us what chapter you think you would learn the most from if you were to win the book. Only comments referencing one of the actual chapters in the book will be eligible to win. <strike>We will randomly select a winner next Wednesday and announce it here on the site.</strike>. <strong>Sorry, but the contest is over!</strong></p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/jquery-enlightenment-book-review-and-giveaway/">jQuery Enlightenment: Book Review and Giveaway (Winners Announced!)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/jquery-enlightenment-book-review-and-giveaway/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Best of 2009 in the Coding Industry</title>
		<link>http://fuelyourcoding.com/best-of-2009/</link>
		<comments>http://fuelyourcoding.com/best-of-2009/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 11:00:26 +0000</pubDate>
		<dc:creator>Douglas Neiner</dc:creator>
				<category><![CDATA[Languages]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[best of 2009]]></category>
		<category><![CDATA[best of coding industry]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=710</guid>
		<description><![CDATA[Every year we see amazing technical advances and 2009 was no exception. Both Apple and Microsoft released new versions of their operating systems; pretty much every major browser, and some smaller ones, saw significant releases and improvements. New tools were released to assist developers as well as new books to increase the effectiveness of both [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/best-of-2009/">Best of 2009 in the Coding Industry</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Every year we see amazing technical advances and 2009 was no exception. Both Apple and Microsoft released new versions of their operating systems; pretty much every major browser, and some smaller ones, saw significant releases and improvements. New tools were released to assist developers as well as new books to increase the effectiveness of both new and seasoned developers alike. In this post we take a look at some of the highlights of 2009. In addition to featuring items you should already know about, I hope to present a few items you may have overlooked during the past year.</p>
<h2>Technologies</h2>
<p><a href="http://www.firerift.com"><img class="alignnone size-full wp-image-717" title="Firerift" src="http://fuelyourcoding.com/files/firerift.jpg" alt="Firerift" width="600" height="200" /></a></p>
<h3><a href="http://www.firerift.com">Firerift</a></h3>
<p>Firerift launched earlier this year as a completely new breed of Content Management Systems.  Firerift is, at its core, a <a href="http://json.org">JSON</a> server with an amazing user interface. The mind behind Firerift <a href="http://drewwilson.com">Drew Wilson</a> refers to it as a Client side CMS. All the tagging is done using CSS classes and valid markup. Released along with Firerift was Titan, an open source JSON templating engine built on top of <a href="http://jquery.com">jQuery</a>. Firerift is a glimpse into the future of highly dynamic, AJAX powered websites.</p>
<p><a href="http://lesscss.org/"><img class="alignnone size-full wp-image-723" title="less" src="http://fuelyourcoding.com/files/less.jpg" alt="less" width="600" height="200" /></a></p>
<h3><a href="http://lesscss.org/">LESS Framework</a></h3>
<p>The LESS framework for CSS provides simplified execution of advanced CSS. With support for variables, mixins, nested rules and mathematical operations. LESS lives up to its name by letting you write shorter, optimized CSS. Though it is packaged as a <a href="http://www.ruby-lang.org">Ruby</a> gem, it can be used to prepare CSS files for any technology, even straight HTML/CSS websites. Since it uses CSS syntax, it&#8217;s as easy as renaming your <tt>.css</tt> files to <tt>.less</tt> and parsing through the LESS engine.</p>
<p><a href="http://buddypress.org/"><img class="alignnone size-full wp-image-713" title="buddy_press" src="http://fuelyourcoding.com/files/buddy_press.jpg" alt="buddy_press" width="600" height="200" /></a></p>
<h3><a href="http://buddypress.org/">BuddyPress</a></h3>
<p>BuddyPress is an amazing addition to WordPress MU (soon to be merged into WordPress core) that turns WPMU into an open-source social networking platform. From their website:</p>
<blockquote><p>BuddyPress is a suite of WordPress plugins and themes, each adding a distinct new feature. BuddyPress contains all the features you’d expect from WordPress but aims to let members socially interact.</p></blockquote>
<p><img class="alignnone size-full wp-image-712" title="browsers" src="http://fuelyourcoding.com/files/browsers.jpg" alt="browsers" width="600" height="200" /></p>
<h3>New Browsers All Around</h3>
<p>This year saw major advances in pretty much all the major browsers. <a href="http://www.apple.com/safari/">Safari 4</a> saw extreme speed increases in its JavaScript performance as well as support for advanced CSS3 properties. <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a> saw many of the same improvements and support with the 3.5 release.  Even the browser developers love to hate saw significant improvements with the release of Internet Explorer 8. (Sadly, still no <tt>border-radius</tt> support!). <a href="http://www.google.com/chrome">Google Chrome</a> seems to see major version number updates much faster than the other browsers, but of significant importance was the final release of a slightly limited Chrome for Mac Beta. <a href="http://opera.com">Opera</a> continued to improve and innovate their browser as well, but I think a great change this year was that Opera got an icon facelift and the dreaded drop shadow on the &#8220;O&#8221; is gone!</p>
<h2>Notable Events</h2>
<p><a href="http://blog.jquery.com/2009/12/03/jquery-joins-the-software-freedom-conservancy/"><img class="alignnone size-full wp-image-722" title="jquery" src="http://fuelyourcoding.com/files/jquery.jpg" alt="jquery" width="600" height="200" /></a></p>
<h3><a>jQuery Joins The Software Freedom Conservancy</a></h3>
<p>The jQuery team has been planning for a while to join the <a href="http://conservancy.softwarefreedom.org/">Software Freedom Conservancy</a> to protect the jQuery project, open the door for future growth, as well as to move the copyright from John Resig&#8217;s own name into the Conservancy&#8217;s name. From the <a href="http://conservancy.softwarefreedom.org/overview/">overview page</a>:</p>
<blockquote><p>One of the principal benefits of joining the Conservancy is that member projects get all the protections of being a corporate entity without actually having to form and maintain one. These benefits include, most notably, the ability to collect earmarked project donations and protection from personal liability for the developers of the project.</p></blockquote>
<p>The jQuery team made the first step this year by joining the Conservancy as planned, and are now working to move the copyright as well.</p>
<p><a href="http://fixoutlook.org/"><img class="alignnone size-full wp-image-718" title="fixoutlook" src="http://fuelyourcoding.com/files/fixoutlook.jpg" alt="fixoutlook" width="600" height="200" /></a></p>
<h3><a>Fix Outlook</a></h3>
<p>A great movement from the guys over at <a href="http://campaignmonitor.com">Campaign Montior</a> launched <a href="http://fixoutlook.org">Fix Outlook</a> as a web campaign to make Microsoft aware of how many people disliked the limited email rendering engine in Office 2005 and newer. The campaign saw over 20,000 tweets in the first 24 hours! Microsoft at first responded rather negatively, then changed face a bit and became very thankful of the effort raised by the website. <a href="http://www.campaignmonitor.com/blog/post/2873/fixoutlook-retrospective/">You can read the full account</a> for more details.</p>
<h2>Books</h2>
<p><a href="http://digwp.com/book/"><img class="alignnone size-full wp-image-715" title="digging" src="http://fuelyourcoding.com/files/digging.jpg" alt="digging" width="600" height="200" /></a></p>
<h3><a href="http://digwp.com/book">Digging Into WordPress</a></h3>
<p>Digging into WordPress is a fantastic new book by <a href="http://chriscoyier.net">Chris Coyier</a> and <a href="http://digwp.com/jeff-starr/">Jeff Starr</a>. It is only available currently as a PDF book, but a printed version is coming soon. Written in an extremely down to earth manner, this book will provide useful information for anyone looking to take WordPress to the next level. This isn&#8217;t a book solving hypothetical problems: the authors only present techniques they have used themselves.</p>
<p><a href="http://jqueryenlightenment.com/"><img class="alignnone size-full wp-image-721" title="jquery_enlightenment" src="http://fuelyourcoding.com/files/jquery_enlightenment.jpg" alt="jquery_enlightenment" width="600" height="200" /></a></p>
<h3><a href="http://jqueryenlightenment.com">jQuery Enlightenment</a></h3>
<p>Written by jQuery core team member <a href="http://codylindley.com">Cody Lindley</a>, jQuery Enlightenment picks up where the <a href="http://docs.jquery.com/Main_Page">jQuery docs</a> leave off. The book is probably 80% code examples and 20% explanation. This is a no fluff, crystal clear presentation of intermediate to advanced jQuery techniques, though I think even beginners would learn a lot through reading this PDF book. An additional innovative feature that I hope other book writers pick up is that almost every code example is linked to a live example on <a href="http://jsbin.com">JSBin.com</a> so you can actually play with his examples, even changing the code, to see how they work.</p>
<h2>Operating Systems</h2>
<p><a href="http://microsoft.com/windows/windows-7/"><img class="alignnone size-full wp-image-727" title="windows7" src="http://fuelyourcoding.com/files/windows7.jpg" alt="windows7" width="600" height="200" /></a></p>
<h3><a href="http://microsoft.com/windows/windows-7/">Windows 7</a></h3>
<p>After nothing less than a PR nightmare with Windows Vista, Microsoft released a fantastic new operating system this year in Windows 7. Far more stable than its predecessor, Windows 7 takes many of the principles and innovations introduced with Vista, but makes them both useable and reliable to users of Windows 7.</p>
<p><a href="http://apple.com/macosx/"><img class="alignnone size-full wp-image-726" title="snow_leopard" src="http://fuelyourcoding.com/files/snow_leopard.jpg" alt="snow_leopard" width="600" height="200" /></a></p>
<h3><a href="http://apple.com/macosx">Snow Leopard</a></h3>
<p>The innovative and trendy OS for Macintosh computers saw an upgrade this year with the release of Snow Leopard. As its name indicates, this OS is not that different an animal from the previous release of OS X (Leopard). Maintaining the same look and feel, Snow Leopard introduced many innovated technology features to further speed up the already finely tuned Mac line of computers. This has to be the first time in history that the install of a new version of an operating system actually gave you <strong>back</strong> 7GB of hard drive space!</p>
<p><a href="http://www.apple.com/iphone/softwareupdate/"><img class="alignnone size-full wp-image-720" title="iphone" src="http://fuelyourcoding.com/files/iphone1.jpg" alt="iphone" width="600" height="200" /></a></p>
<h3><a href="http://www.apple.com/iphone/softwareupdate/">iPhone 3.0</a></h3>
<p>In the third version of the popular OS in use on iPhones and iPod Touches, users finally were allowed to Cut, Copy, and Paste! In addition, Multimedia Messaging (MMS), Spotlight Search, Voice Memos and Voice Dialing were also introduced. From a developers perspective, Apple opened up over 1,000 new API&#8217;s to allow iPhone developers even more freedom and power in their development process.</p>
<p><a href="http://developer.android.com/sdk/android-2.0-highlights.html"><img class="alignnone size-full wp-image-711" title="android" src="http://fuelyourcoding.com/files/android.jpg" alt="android" width="600" height="200" /></a></p>
<h3><a href="http://developer.android.com/sdk/android-2.0-highlights.html">Android 2.0</a></h3>
<p>For those that prefer an alternative to the Apple iPhone, many users have gravitated to the Android phones. This year saw an upgrade to the Android 2.0 OS and several UI and functional enhancements. Support for Exchange accounts, Combined Inboxes, and Macro Focus and White Balance for the Camera were all features added in this release.</p>
<h2>Web Tools</h2>
<p><a href="http://builditwith.me"><img class="alignnone size-full wp-image-714" title="builditiwthme" src="http://fuelyourcoding.com/files/builditiwthme.jpg" alt="builditiwthme" width="600" height="200" /></a></p>
<h3><a href="http://builditwith.me">Build It With Me</a></h3>
<p>Some developers can do everything themselves from marketing, to design, to development. The rest of us would rather work on the part of the project we love, and leave the rest to someone better suited for the job. BuildItWith.me is the goto place to meet other developers that either have ideas or time on their hands to work on your ideas. Form new partnerships, find great projects to work on, all within the stylish interface of BuildItWith.me. I love their tag line: &#8220;Skip the funding.&#8221;</p>
<p><a href="http://www.noteableapp.com"><img class="alignnone size-full wp-image-725" title="noteable" src="http://fuelyourcoding.com/files/noteable.jpg" alt="noteable" width="600" height="200" /></a></p>
<h3><a href="http://www.noteableapp.com">Notable App</a></h3>
<p>Notable provides a great way for web developers to seek responses from their clients during the design process. Simply use one of the provided tools to make a screenshot of the a web page you are working on, and send it to your client for approval. The client can draw on the screenshot and make notes, all through a simple web interface. If you are a developer that works remotely from your clients, this service might be just what you are looking for.</p>
<h2>Flagrant Self-Promotion</h2>
<p><a href="http://downloadify.info"><img class="alignnone size-full wp-image-716" title="downloadify" src="http://fuelyourcoding.com/files/downloadify.jpg" alt="downloadify" width="600" height="200" /></a></p>
<h3><a href="http://downloadify.info">Downloadify</a></h3>
<p>This year saw the release of Flash 10 and with it, the support for client-side file generation and download. Why is this important? Now developers can make web applications that can run fully in the browser, including file saving capabilities, without a round trip to the server. As a personal project, I built and released <a href="http://downloadify.info">Downloadify</a> to provide a JavaScript bridge to this amazing Flash functionality. Since the alternate server methods (dataURIs and IE functions) are all prone to usability problems, Downloadify provides a nice simple way to repurpose client side data and turn it into a savable file.</p>
<h2>WANT MORE?</h2>
<p><a href="http://droplr.com/3Hbt"><img class="alignleft size-full wp-image-1689" title="network-best-of" src="http://www.fuelyourapps.com/files/network-best-of.png" alt="network-best-of" width="600" height="137" /></a></p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/best-of-2009/">Best of 2009 in the Coding Industry</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/best-of-2009/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>JavaScript Can Learn: Now Teach It Tricks!</title>
		<link>http://fuelyourcoding.com/javascript-can-learn-now-teach-it-tricks/</link>
		<comments>http://fuelyourcoding.com/javascript-can-learn-now-teach-it-tricks/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 07:00:34 +0000</pubDate>
		<dc:creator>Douglas Neiner</dc:creator>
				<category><![CDATA[Concepts & Training]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[extending]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=672</guid>
		<description><![CDATA[When you do a lot of development with backend technologies, it can be frustrating to then move to the front end and feel like you are using a completely different syntax. One thing I really miss is the helper methods, especially when using Ruby on Rails on the server. Little helpers like titleize() or downcase() [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/javascript-can-learn-now-teach-it-tricks/">JavaScript Can Learn: Now Teach It Tricks!</a></p>
]]></description>
			<content:encoded><![CDATA[<p>When you do a lot of development with backend technologies, it can be frustrating to then move to the front end and feel like you are using a completely different syntax. One thing I really miss is the helper methods, especially when using Ruby on Rails on the server. Little helpers like <tt>titleize()</tt> or <tt>downcase()</tt> get replaced in javascript by a custom function and <tt>toLowerCase()</tt> respectively. You don&#8217;t have to feel lost anymore! There is a way you can extend the native objects found in JavaScript to make your environment feel a little more like &#8220;home.&#8221;</p>
<p>This is accomplished by using the prototype object. Each native object in JavaScript includes a prototype object. Don&#8217;t get this confused with the PrototypeJS framework&#8230; the prototype object is a way to extend <em>all</em> objects that have inherited from the base object you extended. You can easily extend the prototype object by adding functions to it like this:</p>
<pre class="brush: jscript;">
Object.prototype.functionName = function(){

}
</pre>
<p>You can then call them directly:</p>
<pre class="brush: jscript;">
var obj = new Object();
obj.functionName();
</pre>
<p>There are a number of advanced uses of the prototype object, but this is the important thing to remember: any function added to the prototype of an object is available on any object that inherits from it. So if you extend the prototype on the Number object, all numbers will have access to the new function; if you extend the Array object, all arrays can access your custom function. You only use the <tt>prototype.functionName</tt> syntax when declaring the new function, not when calling it.</p>
<p>Enough theory, lets see some (somewhat) practical uses:</p>
<p>Do you find yourself capitalizing a lot of words in a particular JavaScript app? Just add a <tt>capitalize</tt> method to the String object.</p>
<pre class="brush: jscript;">
String.prototype.capitalize = function(){
  if(this.length == 0) return this;
  return this[0].toUpperCase() + this.substr(1);
}
</pre>
<p>Now you can capitalize any string in your application by calling <tt>"lower".capitalize()</tt> and get <tt>"Lower"</tt> in return. Since it returns a string, you could chain it with any other function you can execute on a string.</p>
<p>Do you always find yourself forgetting you can call Number(&#8221;25&#8243;) to turn a string into a number? Just add a <tt>toNumber()</tt> function to the String prototype:</p>
<pre class="brush: jscript;">
String.prototype.toNumber = function(){
  return Number(this);
}

If you need to split large JSON arrays into groups of two or three each, you could extend the Array object like this:

[js]
Array.prototype.inGroupsOf = function(num){
	var ret = [],
		length = this.length,
		groups = Math.ceil(length / num);

	for(var i = 0; i &lt; groups; i++){
		var start = i * num,
			end   = start + num;

		ret.push(this.slice(start, end))
	}
	return ret;
}
</pre>
<p>Now calling <tt>inGroupsOf(3)</tt> on any Array would return that same array split into as many parts as needed to ensure no group has more than three items in it.</p>
<p>There are a number of objects you can extend, but the ones you will use the most are <tt>String</tt>, <tt>Array</tt>, <tt>Object</tt>, <tt>Number</tt>, <tt>Date</tt>. One trouble area you might face is calling methods on numbers. The following example will fail:</p>
<pre class="brush: jscript;">
Number.prototype.to_s = function(){
  return this + &quot;&quot;;
}

25.to_s();
</pre>
<p>The prototype function is correct, but the way we called it is wrong. There are two ways to call our custom functions on numbers:</p>
<pre class="brush: jscript;">
var n = 25;
n.to_s(); // Returns &quot;25&quot;

(25).to_s(); // Also returns &quot;25&quot;
</pre>
<h2>Think Start, Not End</h2>
<p>Its important when deciding what object to extend that you focus on what object type you are starting with, not so much which type you plan on ending with. For instance, if you wanted to extend an object to easily parse Twitter date strings you would not extend the <tt>Date</tt> object. You would extend the <tt>String</tt> object, and your function would return a <tt>Date</tt> object.</p>
<h2>Load Your Extensions First</h2>
<p>It is normally a good idea to load these extensions prior to any other library, including jQuery. Anytime you extend the prototype object, the new method is instantly available to all objects of the same type or any object that has inherited from that type. However, since you want to be sure your methods are always available, you guarantee their availability by loading them first.</p>
<h2>How to Group The Extensions</h2>
<p>Naming your files <tt>Prototype.Date.js</tt> and <tt>Prototype.Array.js</tt> is an easy way to keep all your extensions in one part of your JS folder, and easy to access during development. If you follow this method, you would simply put Date.prototype methods in the <tt>Prototype.Date.js</tt> file, etc. This starts to break down when you have parallel functions. You might have a <tt>toDateFromTwitter()</tt> method on the String object and a <tt>toTwitterFromDate()</tt> method on the Date object. Putting these in separate files might not make sense. At that point, you should put both these extensions in a file named TwitterHelpers.js or something similar. Obviously use what makes sense to you and works with your flow.</p>
<h2>Don&#8217;t Bloat</h2>
<p>Just because you write 500+ awesome Array extensions in the next 2 years, does not mean you need to include them on every project. Be sure to only use this technique when it makes sense for the project and when it helps clean up your code.</p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/javascript-can-learn-now-teach-it-tricks/">JavaScript Can Learn: Now Teach It Tricks!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/javascript-can-learn-now-teach-it-tricks/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Roll Your Own PHP Framework: Part III</title>
		<link>http://fuelyourcoding.com/roll-your-own-php-framework-part-iii/</link>
		<comments>http://fuelyourcoding.com/roll-your-own-php-framework-part-iii/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 16:10:33 +0000</pubDate>
		<dc:creator>Wess Cope</dc:creator>
				<category><![CDATA[Concepts & Training]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=652</guid>
		<description><![CDATA[In Part I and Part II we looked at how to set up our file structure, how to get URL routing working and how to set up templating for our little framework. In this final part to the series, we are going to briefly look at database access.
Mini-series Overview

Part 1: URL Routing and Directory Setup
Part [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/roll-your-own-php-framework-part-iii/">Roll Your Own PHP Framework: Part III</a></p>
]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://fuelyourcoding.com/php-frameworks-just-roll-your-own-part-1/">Part I</a> and <a href="http://fuelyourcoding.com/roll-your-own-php-framework-part-ii/">Part II</a> we looked at how to set up our file structure, how to get URL routing working and how to set up templating for our little framework. In this final part to the series, we are going to briefly look at database access.</p>
<p><strong>Mini-series Overview</strong></p>
<ul>
<li><a href="http://fuelyourcoding.com/php-frameworks-just-roll-your-own-part-1/">Part 1: URL Routing and Directory Setup</a></li>
<li><a href="http://fuelyourcoding.com/roll-your-own-php-framework-part-ii/">Part 2: Templating</a></li>
<li>Part 3: Database Interaction</li>
</ul>
<p>You can download all the files put together during this three part series here:</p>
<div class="post_buttons" style="margin-bottom: 20px"><a href="http://fuelyourcoding.com/files/peanut_framework.zip"><img class="size-full wp-image-24 alignnone" style="margin-left: 30px" src="http://fuelyourcoding.com/files/download-button.gif" alt="Download zipped archive" width="229" height="68" /></a></div>
<p>I&#8217;m not going into detail about how to create an ORM or ActiveRecord clone.  We are just going to write a simple helper class to setup our connection and query.  Also I&#8217;m going to assume you know how to create a database and table in the database.</p>
<p>I have created a database called &#8220;peanut&#8221; and created table:</p>
<pre class="brush: plain;">
users:
+----------+--------------+------+-----+---------+----------------+
| Field    | Type         | Null | Key | Default | Extra          |
+----------+--------------+------+-----+---------+----------------+
| id       | int(11)      | NO   | PRI | NULL    | auto_increment |
| username | varchar(255) | NO   |     | NULL    |                |
| password | varchar(255) | NO   |     | NULL    |                |
+----------+--------------+------+-----+---------+----------------+
</pre>
<p>In this example we are going to use Mysql and the php mysql_ methods.  So break open system/database.php and drop the following in:</p>
<pre class="brush: php;">
&lt;?php

// Here is where we are setting up a simple wrapper class around mysql
// functions just to make it a little more convenient.  Our models will
// simple extend our database class and simplify making queries just a bit.
class Database
{
	protected var $connection;
	// Every time you instantiate this class you are going to create
	// a new connection to the database.
	public function __construct()
	{
		// First we setup up a nice little connection to the database,
		// make sure you use your connection information.  If the
		// connection fails we just die with the error.
		$this-&gt;connection = mysql_pconnect(&quot;localhost&quot;, &quot;root&quot;, &quot;somepassword&quot;) or die(&quot;MySQL Error: &quot; . mysql_error());

		// And let's tell mysql which db we are going to use.
		mysql_select_db( &quot;peanut&quot;, $this-&gt;connection );
	}

	// This is just a helper function to help out against
	// possible sql injection attacks.
	public function escapeString($string)
	{
		// we call mysql's 'cleaning' function on strings
		// just to make sure we get a little safer item to query
		// with.
		return mysql_real_escape_string($string);
	}

	// Here we will query the database with the passed query string,
	// build up an array of objects and return them, simple enough.
	public function query($qry)
	{
		// Here we make our query and set the result to a $result variable
		$result = mysql_query($qry) or die(&quot;MySQL Error: &quot; . mysql_error());

		// Create a container array variable to hold all of our result objects.
		$resultObjects = array();

		// This might look weird, but all we are doing is saying,
		// While you are still getting results, please put the next
		// result into the next spot on my array.
		while($resultObjects[] = mysql_fetch_object($result));

		// Now we just return our array that has all our result objects in it
		return $resultObjects;
	}

	// Here we add a simplier method for handling INSERTs and UPDATEs since
	// they do not return a result set.
	public function execute($qry)
	{
		$exec = mysql_query($qry) or die(&quot;MySQL Error: &quot; . mysql_error());
		return $exec;
	}
}
?&gt;
</pre>
<p>So we have our database class in place and ready to use, now we just need to require it in the index.php like we did the others, so pop that bad boy open and after the template require, do one just like it but for the database.php</p>
<p>Now let&#8217;s crack open actions/helloworld/models.php and let&#8217;s write a simple addUser and getAllUsers method to it.  We are going to make our model a class as well so that it  can extend our Database class that we wrote.</p>
<p>Here are the guts:</p>
<pre class="brush: php;">
&lt;?php

// All of our database back-and-forth will be handled in our models file
// Don't be mistaken, this is no where close to an ORM (Object Relational Mapper)
// it's just simplified database access.

class myModel extends Database
{
	// When our model is instantiated we just need
	// to also instantiate our parent class (Database)
	// so it knows to make the connection to the database.
	public function __construct()
	{
		// We just call the __construct of Database class.
		parent::__construct();
	}

	// addUser will use the execute method of Database
	// since we are inserting a value and not expecting
	// anything in return.
	public function addUser($username, $password)
	{
		// Here we use that little cleaning method we
		// wrote to make our strings pretty and make sure
		// they will play nice with mysql
		$username = $this-&gt;escapeString($username);
		$password = $this-&gt;escapeString($password);

		// We execute our insert and if it worked $success
		// will be true else it will be false.
		$success = $this-&gt;execute(&quot;INSERT INTO users (username, password) VALUES ('{$username}','{$password}')&quot;);

		// We return $success to inform our page action that it has or hasn't worked.
		return $success;
	}

	// This method does just what you think it would.
	// We are going to use the query function because
	// we are expecting data back, then we are just
	// going to return the array of user objects.
	public function getAllUsers()
	{
		// Populate the $users variable with the results of our query
		$users = $this-&gt;query(&quot;SELECT * FROM users&quot;);

		// Now we return our results
		return $users;
	}
}
?&gt;
</pre>
<p>Now we need to change our actions/helloworld/actions.php mypage page action to:</p>
<pre class="brush: php;">
&lt;?php
// We need to include our models file so we can access the database
require(PEANUT_ROOT_DIR . 'actions/helloworld/models.php');

// We simply define the function (the second item in our request url)
// making sure it is the same name as the one in the url.

function mypage()
{
	// Let's do some database work!
	// Here we are going to instantiate our model
	$model = new myModel();

	// Now let's add a user
	// On a funny note, if you keep refreshing it will add this
	// user over and over in your users table so your getAllUsers call
	// will result in a list that grows by one each time.
	$model-&gt;addUser(&quot;wess&quot;, &quot;password&quot;);

	// Now let's fetch all of our users and put them in our users
	// variable.
	$users = $model-&gt;getAllUsers();

	// Let's create a new template object and pass it the path to our template
	$template = new Template(&quot;helloworld/templates/helloworld.php&quot;);

	// I bet you want to display a table in your template with all your newly
	// created users. So let's do it

	// That's write we use the same set command, and it will set our array of users
	// to our template variable $users, and since php is our template language
	// it's real easy to print them to the screen.
	$template-&gt;set('users', $users);

	// Set our page variable &quot;title&quot; with the value &quot;Hello World&quot;
	$template-&gt;set('title', 'Hello World');

	// Set our page variable &quot;message&quot; with our little message
	$template-&gt;set('message','This is my first message for my template');

	// Now we can call render and return it to dispatch to
	// display in our browser
	return $template-&gt;render();
}
?&gt;
</pre>
<p>So now you are handing all your users from your database to the template, so let&#8217;s display them. Change your <tt>actions/helloworld/templates/helloworld.php</tt> file to:</p>
<pre class="brush: xml;">
&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&gt;
	&lt;head&gt;
		&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;
		&lt;title&gt;My PEANUT Page&lt;/title&gt;

	&lt;/head&gt;
	&lt;body&gt;
		&lt;h1&gt;&lt;?php echo $title ?&gt;&lt;/h1&gt;
		&lt;p&gt;&lt;?php echo $message ?&gt;&lt;/p&gt;

		&lt;h2&gt;Users:&lt;/h2&gt;
		&lt;table&gt;
			&lt;thead&gt;
				&lt;tr&gt;
					&lt;th&gt;ID&lt;/th&gt;
					&lt;th&gt;Username&lt;/th&gt;
					&lt;th&gt;Password&lt;/th&gt;
				&lt;/tr&gt;
			&lt;/thead&gt;
			&lt;tbody&gt;
				&lt;!--
					Here we are going to use native php foreach look
					to create each row of the table with our list of users.
					Notice how the foreach is done with a : and surrounding php tags.
				--&gt;
				&lt;?php foreach($users as $user): ?&gt;
					&lt;tr&gt;
						&lt;td&gt;&lt;?php echo $user-&gt;id ?&gt;&lt;/td&gt;
						&lt;td&gt;&lt;?php echo $user-&gt;username ?&gt;&lt;/td&gt;
						&lt;td&gt;&lt;?php echo $user-&gt;password ?&gt;&lt;/td&gt;
					&lt;/tr&gt;
				&lt;?php endforeach; ?&gt;
			&lt;/tbody&gt;
		&lt;/table&gt;
	&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Now if all went well, you should save all your files and open up: <a href="http://mywebapp.local/helloworld/mypage">http://mywebapp.local/helloworld/mypage</a> and see all the users that you added in a table.</p>
<p>So you have created a template class, url basic url routing, simplified database access, and a page action.  You have all the core basics of a PHP Framework at your hands now.  This is just for a starting point or foundation of understanding, please do not use this in a production environment.</p>
<p>I have really enjoyed writing this and I hope you learned something from my rambling!  The source code is available for download at the top of this article.</p>
<p>Take care,<br />
Wess &#8220;Wattz&#8221;</p>
<p><strong>Updated October 26, 2009: Thanks to Alex and Ian for spotting some errors in the code and supplying the fixes. The code examples have been updated to reflect the changes as has the ZIP file.</strong></p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/roll-your-own-php-framework-part-iii/">Roll Your Own PHP Framework: Part III</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/roll-your-own-php-framework-part-iii/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Easy to update thumbnail gallery using Textpattern and Galleriffic</title>
		<link>http://fuelyourcoding.com/easy-to-update-thumbnail-gallery-using-textpattern-and-galleriffic/</link>
		<comments>http://fuelyourcoding.com/easy-to-update-thumbnail-gallery-using-textpattern-and-galleriffic/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 16:22:10 +0000</pubDate>
		<dc:creator>Marie Poulin</dc:creator>
				<category><![CDATA[Concepts & Training]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[Textpattern]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=631</guid>
		<description><![CDATA[This tutorial assumes that you have a fairly strong understanding of HTML and CSS. I have provided a basic style sheet with all necessary styles to achieve the look of gallery demo, but please feel free to edit the css. We will be building a very simple updateable thumbnail gallery using Textpattern and Galleriffic. There [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/easy-to-update-thumbnail-gallery-using-textpattern-and-galleriffic/">Easy to update thumbnail gallery using Textpattern and Galleriffic</a></p>
]]></description>
			<content:encoded><![CDATA[<p>This tutorial assumes that you have a fairly strong understanding of HTML and CSS. I have provided a basic style sheet with all necessary styles to achieve the look of gallery demo, but please feel free to edit the css. We will be building a very simple updateable thumbnail gallery using <strong>Textpattern</strong> and <strong>Galleriffic</strong>. There are a few <a title="galleriffic txptips" href="http://txptips.com/galleriffic-image-gallery">tutorials</a> out there of a similar nature, but I have found this to be the simplest way to integrate Galleriffic with Textpattern.</p>
<div class="post_buttons"><a href="http://fuelyourcoding.com/files/tp_gallery.zip"><img class="size-full wp-image-24 alignnone" style="margin-left: 30px" src="http://fuelyourcoding.com/files/download-button.gif" alt="Download zipped archive" width="229" height="68" /></a></div>
<p>Below is a screen capture of the final gallery. To see the gallery in action, click <a title="Thumbnail Gallery" href="http://www.textpatternworkshops.com/gallery" target="_blank">here</a></p>
<p><img class="alignnone size-full wp-image-634" title="thumbnail gallery" src="http://fuelyourcoding.com/files/sample.jpg" alt="thumbnail gallery" width="606" height="350" /></p>
<p>This tutorial assumes that you have textpattern installed and ready to go.<br />
( Download the latest version of Textpattern here: <a title="textpattern download" href="http://textpattern.com/download" target="_blank">http://textpattern.com/download</a>)</p>
<h2>Galleriffic</h2>
<p>This gallery is based on Galleriffic, a jQuery plugin for rendering fast-performing photo galleries. This is adapted from <a title="galleriffic" href="http://www.twospy.com/galleriffic/" target="_blank">http://www.twospy.com/galleriffic/</a> to work with textpattern so you (and your clients!) can easily update the gallery. In a nutshell, the gallery works by associating image id #s with a specific article. The article form <strong>gallery</strong> and <strong>article_image_form</strong> work together to render the article in the form of all of the associated images (in their thumbnail format) to appear as an unordered list on the left, while the full version of the current image appears on the right. All that is necessary to add or change images, is to change the numbered list appearing in the advanced options on the left of the article containing the images. So easy once implemented, even a client that doesn&#8217;t speak nerd can add, subtract or change their own images.</p>
<h2>Upload the files</h2>
<p>Upload both of the galleriffic files included in the <strong>files</strong> folder of the download, by uploading them through the <strong>Content</strong> &gt; <strong>Files</strong> tab. I modified the jquery.galleriffic.js file so that the pagination does not appear above the thumbnails. Should you wish to further customize the gallery, I do suggest checking out the original <a title="galleriffic" href="http://www.twospy.com/galleriffic/" target="_blank">Galleriffic demo</a>.</p>
<h2>Install the relevant plugins</h2>
<p>Install the following plugins (these are included in the <strong>Plugins</strong> folder in the download):</p>
<ul>
<li> upm_image by Mary Fredbord – more powerful image display</li>
<li> ebl-image-edit by Eric Limegrover – introduces advanced image editing functionality</li>
</ul>
<p>(I have had technical issues with v.2 of this plugin, so I continue to use v1. Both are included in the plugin folder.)</p>
<p><strong>ebl-image-edit</strong> is great for sizing/creating thumbnails on the fly, without having Textpattern automatically centre the thumbnail. It is not essential to this tutorial, but it&#8217;s very very handy!</p>
<p><img class="alignnone size-full wp-image-635" title="thumbnailplugin" src="http://fuelyourcoding.com/files/thumbnailplugin.jpg" alt="thumbnailplugin" width="606" height="432" /></p>
<h2>Set up your forms</h2>
<p>You can find these forms in the <strong>forms</strong> folder in the download.</p>
<h3>gallery</h3>
<p>Create a new form called &#8220;gallery&#8221; and choose &#8220;article&#8221; for the type:</p>
<pre class="brush: xml;">

&lt;txp:upm_article_image form=&quot;article_image_form&quot; wraptag=&quot;ul&quot;
class=&quot;thumbs noscript&quot; /&gt;
</pre>
<h3>article_image_form</h3>
<p>Create a new form called &#8220;article_image_form&#8221; and choose &#8220;misc&#8221; for the type:</p>
<pre class="brush: xml;">

&lt;li&gt;&lt;a href=&quot;&lt;txp:upm_img_full_url /&gt;&quot; title=&quot;&lt;txp:upm_img_caption /&gt;&quot; class=&quot;thumb&quot;&gt;&lt;img src=&quot;&lt;txp:upm_img_thumb_url /&gt;&quot; alt=&quot;&lt;txp:upm_img_alt /&gt;&quot; /&gt;&lt;/a&gt;

&lt;div&gt;
&lt;div&gt;&lt;txp:upm_img_alt /&gt; &lt;/div&gt;
&lt;div&gt;&lt;txp:upm_img_caption /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
</pre>
<p>If you don&#8217;t want captions, delete the whole caption div.</p>
<p>Basically we have taken this code from galleriffic:</p>
<pre class="brush: xml;">

&lt;ul&gt; &lt;li&gt; &lt;a href=&quot;path/to/slide&quot; title=&quot;your image title&quot;&gt; &lt;img src=&quot;path/to/thumbnail&quot; alt=&quot;your image title again for graceful degradation&quot; /&gt; &lt;/a&gt; &lt;div&gt; (Any html can go here) &lt;/div&gt; &lt;/li&gt; ... (repeat for every image in the gallery) &lt;/ul&gt;
</pre>
<p>and modified it so the article forms generate this code from the image numbers that we will associate with the gallery article. We&#8217;re basically saying, &#8220;take the images associated with this article, put the thumbnail versions of those images on the left with these classes and this formatting, and put the full version of the selected image on the right.&#8221; Huh? Just follow along, I promise it will all make sense soon&#8230;</p>
<h2>Set up your page</h2>
<p>In the <strong>pages</strong> folder I have included a template for this gallery page (gallery.html). Create a new page template in textpattern: <strong>Presentation</strong> &gt; <strong>Pages</strong>. At the bottom, &#8220;copy page as&#8221;, name it <strong>gallery</strong>, and click &#8220;copy.&#8221; Make sure whatever section you are using for the gallery is in fact using the <strong>gallery</strong> page as its template. At the bottom of the page you will notice the galleriffic script. This is where you can make adjustments to sizes, number of thumbnails, etc. In this example I have set a limit of 9 to the thumbnails. At the bottom of the page, near the top of the script, it looks like:</p>
<pre class="brush: xml;">

numThumbs: 9,
</pre>
<h2>Set up your style</h2>
<p>I have created a master style sheet that incorporates some of the Textpattern defaults as well as galleriffic specific css. Copy the content from the <strong>screen.css</strong> file provided in the Styles folder and paste it into your default styles tab under <strong>Presentation</strong> &gt; <strong>Style</strong>.</p>
<h2>Add your images</h2>
<p>Go ahead and start uploading some images, and create some thumbnails. Make sure your images are all using the same size of thumbnail. Take note of the image ID numbers, as that is what you will use to call your images into the article. Make sure to add the <strong>Alt text</strong> and <strong>Caption </strong>when you upload, as this is what will appear to the left of the main image (unless you opted to delete the captions).<br />
<img class="alignnone size-full wp-image-639" title="caption" src="http://fuelyourcoding.com/files/caption.jpg" alt="caption" width="549" height="390" /></p>
<p>Create a new article called <strong>gallery</strong>. On the left hand side, click <strong>advanced options</strong>, and enter the ID numbers of the images you want to appear in the gallery, separated by commas. Make sure you post the article to the <strong>gallery</strong> section, or whichever section you have set up to display the gallery, and click publish. Your article should look something like this:</p>
<p><img class="alignnone size-full wp-image-638" title="article_image" src="http://fuelyourcoding.com/files/article_image.jpg" alt="article_image" width="606" height="415" /></p>
<p><strong>View Site.</strong> You should notice that the images have been automatically formatted into thumbnails on the left, with the first one appearing in full on the right. That&#8217;s it! You have a galleriffic gallery integrated with Textpattern. Play around with the html, settings, scripts and CSS to customize it to suit your own needs.</p>
<p>If you have any questions, suggestions, or requests for future articles, please do not hesitate to leave a comment.</p>
<p>Thanks, and happy coding!</p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/easy-to-update-thumbnail-gallery-using-textpattern-and-galleriffic/">Easy to update thumbnail gallery using Textpattern and Galleriffic</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/easy-to-update-thumbnail-gallery-using-textpattern-and-galleriffic/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Roll Your Own PHP Framework: Part II</title>
		<link>http://fuelyourcoding.com/roll-your-own-php-framework-part-ii/</link>
		<comments>http://fuelyourcoding.com/roll-your-own-php-framework-part-ii/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 13:03:35 +0000</pubDate>
		<dc:creator>Wess Cope</dc:creator>
				<category><![CDATA[Concepts & Training]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=623</guid>
		<description><![CDATA[A little over a week ago, we looked at how to set up our file structure and how to get URL routing working in our little framework. So we now have something to handle urls and display a page, but we want to make the page a little more attractive. Since there is nothing fun [...]<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/roll-your-own-php-framework-part-ii/">Roll Your Own PHP Framework: Part II</a></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://fuelyourcoding.com/php-frameworks-just-roll-your-own-part-1/">A little over a week ago</a>, we looked at how to set up our file structure and how to get URL routing working in our little framework. So we now have something to handle urls and display a page, but we want to make the page a little more attractive. Since there is nothing fun about making php print html, let&#8217;s add a template piece to the puzzle. We won&#8217;t have to do too much since php is a great template language by itself. </p>
<p><strong>Mini-series Overview</strong></p>
<ul>
<li><a href="http://fuelyourcoding.com/php-frameworks-just-roll-your-own-part-1/">Part 1: URL Routing and Directory Setup</a></li>
<li>Part 2: Templating</li>
<li>Part 3: Database Interaction</li>
</ul>
<p><em>Note: I&#8217;m assuming you have a little OOP (Object Oriented Programming) experience.  There are a ton of tutorials out there, so just a heads up:  I won&#8217;t be teaching/explaining OOP here.</em></p>
<p>We are going to create a class <tt>Template</tt> and add a little code to it so it will return our pretty new page to our browser.</p>
<p>Wipe out <tt>system/template.php</tt> and add the following code to it:</p>
<pre class="brush: php;">
&lt;?php
// We are creating a simple class here to handle our templating.
// All this class will do is set some variables and return
// a rendered webpage using native php as the template language.
class Template
{
	// We setup $pageVars to hold all our pages
	// variables.
	private $pageVars = array();

	// We setup $template to define what file is our
	// template and were to get it.
	private $template;

	// When a new Template object is instantiated we want to make sure
	// we pass it a shortened path to the file we want it to use
	// as our template.
	// example: $template = new Template(&quot;helloworld/templates/helloworld.php&quot;);

	public function __construct($template)
	{

		// We setup our action directory
		$actionsDirectory = PEANUT_ROOT_DIR . 'actions';

		// Let's build and set our class var $template to the
		// value of $template that was passed into our __construct method
		$this-&gt;template = $actionsDirectory . '/' . $template;
	}

	// Now we create out set method to allow use to set variables that
	// we want in the template.
	// So in our page action we would do:
	// $template-&gt;set(&quot;title&quot;, &quot;hello world&quot;);
	// and in our template:
	// &lt;h1&gt;&lt;?php echo $title; ?&gt;&lt;/h1&gt;
	public function set($var, $val)
	{
		// This may look weird, but it's not to bad;
		// what we are doing is setting the index name
		// of our associative array pageVars
		// (we setup earlier at the top of the class)
		// to the value that we pass. so $pageVars[&quot;yourVar&quot;] = &quot;yourValue&quot;
		// is basically what it's doing.
		$this-&gt;pageVars[$var] = $val;
	}

	// To render we will need to do a couple of things.
	// First we will need to extract those pageVars then
	// include the template, populate the values in the template
	// and return a rendered page to the browser
	//
	// This is far more easy than you think it is
	// trust me!
	public function render()
	{
		// The extract function is a weird bird
		// when you call it on an associative array
		// it creates regular vars.
		// For instance:
		// 		$this-&gt;pageVars[&quot;yourVar&quot;]
		// becomes:
		// 		$yourVar
		// so basically we are converting all the
		// index keys (with their values), in pageVars to
		// their own respected variables
		extract($this-&gt;pageVars);

		// Now that we have all the variables extracted, the vars we set
		// in the template will be replaced by the value of the pageVars variables.
		// Now we start up our output buffer, grab our template and return the
		// buffer with it's &quot;rendered&quot; template
		ob_start();
			require($this-&gt;template);
		return ob_get_clean();
	}
}
</pre>
<p>Well hello templating! Now let&#8217;s do a couple of things to hook it up to our framework. First, let&#8217;s open up our <tt>www/index.php</tt> one more time and add the following line:</p>
<p>	require(PEANUT_ROOT_DIR . &#8217;system/template.php&#8217;);</p>
<p>Right underneath the <tt>dispatch.php</tt> require statement. Now let&#8217;s change our <tt>actions/helloworld/actions.php</tt> <tt>mypage</tt> function to look like:</p>
<pre class="brush: php;">
// We simply define the function (the second item in our request url)
// making sure it is the same name as the one in the url.
function mypage()
{
	// Let's create a new template object and pass it the path to our template
	$template = new Template(&quot;helloworld/templates/helloworld.php&quot;);

	// Set our page variable &quot;title&quot; with the value &quot;Hello World&quot;
	$template-&gt;set('title', 'Hello World');

	// Set our page variable &quot;message&quot; with our little message
	$template-&gt;set('message','This is my first message for my template');

	// Now we can call render and return it to dispatch to
	// display in our browser
	return $template-&gt;render();
}
</pre>
<p>Ok, so now our page action is setup to use our new found template class, now we need to setup our template</p>
<p>So inside actions/helloworld/templates/helloworld.php template put the following:</p>
<pre class="brush: xml;">
&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&gt;
	&lt;head&gt;
		&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;
		&lt;title&gt;My PEANUT Page&lt;/title&gt;

	&lt;/head&gt;
	&lt;body&gt;
		&lt;!--
		See how we use native php here?
		echo out a variable, this is the same
		variable name that you use in your template
		set method ($template-&gt;('title', &quot;hello&quot;)).
		--&gt;
		&lt;h1&gt;&lt;?php echo $title ?&gt;&lt;/h1&gt;
		&lt;p&gt;&lt;?php echo $message ?&gt;&lt;/p&gt;
	&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Ok, so let&#8217;s see where we are at.  We have basic url routing, templating, and page actions.  We are only missing one thing, a way to talk to the database! That will be the next and final article in our mini-series on rolling your own PHP Framework.</p>
<p><p><strong>Sponsored by</strong></p>
<a href='http://madebytinder.com' target='_blank'><img src='http://fuelbrand.s3.amazonaws.com/downloads/WhatisTinder250x250.jpg' border='0' alt='Made By Tinder' /></a>
<p><a href="http://www.fuelbrandnetwork.com/advertise/">Advertise on Fuel Brand Network</a>. <br />
  <a href="http://www.fuelbrandnetwork.com">Fuel Brand Network</a> 2010 <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/">cc</a> (creative commons license)
</p></p>
<p><a href="http://fuelyourcoding.com/roll-your-own-php-framework-part-ii/">Roll Your Own PHP Framework: Part II</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/roll-your-own-php-framework-part-ii/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
	</channel>
</rss>
