<?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; Developer Tools</title>
	<atom:link href="http://fuelyourcoding.com/category/devtools/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>Jquery, JQuery and Asking for help</title>
		<link>http://fuelyourcoding.com/jquery-jquery-and-asking-for-help/</link>
		<comments>http://fuelyourcoding.com/jquery-jquery-and-asking-for-help/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 09:00:15 +0000</pubDate>
		<dc:creator>Douglas Neiner</dc:creator>
				<category><![CDATA[Concepts & Training]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=1223</guid>
		<description><![CDATA[A few weeks ago, I tweeted:
General service announcement: it is written &#8220;jQuery&#8221; not &#8220;Jquery&#8221; or &#8220;JQuery&#8221;&#8230; even if it comes first in a sentence!!!! ∞
Then Saturday I put out a stronger tweet, and caught some stronger feedback for it:
Test: &#8220;If you want jQuery help, which misspelling will greatly hurt your chances: a) Jquery b) JQuery c) [...]<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-jquery-and-asking-for-help/">Jquery, JQuery and Asking for help</a></p>
]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, I tweeted:</p>
<blockquote><p>General service announcement: it is written &#8220;jQuery&#8221; not &#8220;Jquery&#8221; or &#8220;JQuery&#8221;&#8230; even if it comes first in a sentence!!!! <a href="http://twitter.com/dougneiner/status/15858703370">∞</a></p></blockquote>
<p>Then Saturday I put out a stronger tweet, and caught some stronger feedback for it:</p>
<blockquote><p>Test: &#8220;If you want jQuery help, which misspelling will greatly hurt your chances: a) Jquery b) JQuery c) jquery d) All of the above. <a href="http://twitter.com/dougneiner/status/18214276476">∞</a></p></blockquote>
<p>At the end of the day, does it really matter how someone writes the name &#8220;jQuery&#8221;? Does it make them a better or worse programmer based on how they type it out?</p>
<p>Let me clarify that I have never failed to answer a question on Stack Overflow (Where I like to hang out and answer jQuery questions) because the asker typed jQuery with incorrect capitalization. <strong>I would never fail to respond to an email because the asker wrote it as Jquery or JQuery.</strong> I would hate to be that petty an individual, and I think that is the feeling some people were picking up from my tweets.</p>
<p>However, I can say I <em>notice</em> it and it <em>bothers me</em> when people seeking help don&#8217;t type out the library name correctly. It really is a small thing, and maybe it shouldn&#8217;t bother me, but it does. It got me thinking about things that might negatively affect a request for help, and I came up with a list of six suggestions. I hope these suggestions are helpful when you need to ask for help with open source software.</p>
<h2>Asking for Help</h2>
<p>If you need help with an open source project, you will often be dealing with people that 1) don&#8217;t have a lot of time and 2) must use the time they have wisely. With that in mind, here are few suggestions that might help you get answers easier:</p>
<ol>
<li>Take the time to <strong>make sure your question makes sense</strong>. Complete sentences, clear code examples, and links to a page demonstrating the problem all go a long way in ensuring a quality answer.</li>
<li><strong>Run spell-check</strong> before sending your question. There are at least two reasons there would be a lot of spelling errors in a question: 1) English is not the native tongue of the person requesting help 2) The person requesting help didn&#8217;t take the time ensure a quality question. Most applications have spell check. If they don&#8217;t, you can copy and paste your question to an application that does have spell check. Reason #1 is understandable and should be overlooked; reason #2 is what will stand out most to someone reading your question. It may affect that person&#8217;s decision to answer you.</li>
<li>Getting back to my original statement regarding Jquery, JQuery and jquery. Some libraries have really weird spelling or capitalizations, some are more straight forward. <strong>Write the library/plugin name correctly when asking for help with it!</strong> jQuery should be very easy, but so many people get it wrong. It is like the names iPad and iPhone: the first letter is lowercase! For another example, the popular blogging platform is WordPress, not Wordpress or Word Press.</li>
<li>At the very least, <strong>run a Google/Yahoo/Bing search (pick one) </strong>with some of the words from the question you plan on asking. I almost always take time to run a few searches to answer a question myself before asking on Stack Overflow or emailing someone for help. It is just common courtesy to spend some of <em>your</em> time before asking for the time of <em>someone else</em>.</li>
<li>If you find the answer yourself after asking for help, <strong>be sure to let the person know you no longer need their help</strong>. Sometimes emails will sit around until there is time to answer them while in the mean time you find the answer somewhere else. It might reduce your chance of getting future emails answered if the person who takes the time to answer your question finds out they wasted their time.</li>
<li><strong>Be respectful and kind.</strong> If an open source project is screwing up your project, you have a few choices 1) use a different project 2) pay for help 3) Ask kindly for help from the project. Notice I didn&#8217;t put &#8220;4) Demand help for free.&#8221; On a very positive note, I have to say every request I have gotten for help on the few small projects I maintain have been both respectful and kind. This is really important!</li>
</ol>
<h2>What It All Means</h2>
<p>The bottom line is this: <em>If it appears to someone reading your question that you have not put any time into either solving the problem yourself or writing a decent request for help, they will be less likely to put any time into answering it.</em></p>
<p>Remember, it isn&#8217;t always about just getting an answer. Sometimes its about getting the <em>right person</em> to answer your question. For instance, there are tons of programmers answering questions on Stack Overflow, but not all of them have equal qualifications and skill. Put in the effort up front when asking the question. It will be worth it when you get a solid answer!</p>
<p>Do you have any tips to add? If so, please let me know about them in the comments!</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-jquery-and-asking-for-help/">Jquery, JQuery and Asking for help</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/jquery-jquery-and-asking-for-help/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Down &amp; Dirty with MongoDB Part 1: the Plot</title>
		<link>http://fuelyourcoding.com/down-and-dirty-with-mongodb-part-1/</link>
		<comments>http://fuelyourcoding.com/down-and-dirty-with-mongodb-part-1/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 13:32:22 +0000</pubDate>
		<dc:creator>Jerod Santo</dc:creator>
				<category><![CDATA[Datastores]]></category>
		<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[nosql]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=1197</guid>
		<description><![CDATA[MongoDB is an open-source, document-based datastore that has been gaining traction with developers lately. Its popularity is most likely due to the &#8220;middle ground&#8221; it provides between relational databases like MySQL and key-value stores like Redis.

We&#8217;ve found the datastore a joy to use and wanted to feature it somehow on FYC. However, there are many, [...]<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-1/">Down &#038; Dirty with MongoDB Part 1: the Plot</a></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mongodb.org/">MongoDB</a> is an open-source, document-based datastore that has been gaining traction with developers lately. Its popularity is most likely due to the &#8220;middle ground&#8221; it provides between relational databases like <a href="http://www.mysql.com/">MySQL</a> and key-value stores like <a href="http://code.google.com/p/redis/m">Redis</a>.</p>
<p><a href="http://www.mongodb.org/"><img src="http://fuelyourcoding.com/files/MongoDB.png" alt="MongoDB" title="MongoDB" width="550" height="115" class="alignright size-full wp-image-1200" /></a></p>
<p>We&#8217;ve found the datastore a joy to use and wanted to feature it somehow on FYC. However, there are many, many <a href="http://devzone.zend.com/article/12132">introductory articles</a> and <a href="http://www.rubyinside.com/getting-started-mongodb-ruby-1875.html">getting started tutorials</a> for MongoDB (also the <a href="http://www.mongodb.org/display/DOCS/Home">information</a> on the project&#8217;s website is spectacular), so we would be remiss to provide yet another basic intro.</p>
<p>Instead, we decided to highlight how the datastore is used from a few popular dynamic languages. <a href="http://www.10gen.com/">10gen</a> &#8211; MongoDB&#8217;s creator &#8211; provides many official client drivers (libraries) and the open-source community has produced a handful of libraries as well. We couldn&#8217;t feature them all, so we chose three favorites &#8211; Ruby, Python, and PHP &#8211; to include in the series.</p>
<h2 id="theplot">The Plot</h2>
<p>Many demonstrations use throwaway &#8220;Hello World&#8221; type programs. We thought it would be much cooler to write something that we can actually use, build upon, and maybe derive some value from. With that in mind, we tried to think of an application that had the following characteristics:</p>
<ol>
<li>Real-world use case</li>
<li>Few lines of code (~ 100)</li>
<li>Simple to understand and implement</li>
<li>No 3rd party libraries or frameworks</li>
<li>Demonstrate the basic <a href="http://en.wikipedia.org/wiki/Create,_read,_update_and_delete">CRUD</a> operations</li>
</ol>
<p>For better or worse, we chose to write a command-line todo list app as it fit the requirements well.</p>
<h2 id="thespec">The Spec</h2>
<p>Our todo application is invoked from the command-line and works as follows:</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 style="text-align: center;"><img src="http://fuelyourcoding.com/files/todo-example.png" alt="todo-example" title="todo-example" width="520" height="98" class="size-full wp-image-1216" /></p>
<p>The only requirement outside of the user interface outlined above is that MongoDB be used to persist the todo list.</p>
<h2 id="thesetup">The Setup</h2>
<p>An identical application will be written in Ruby, Python, and PHP using the <a href="http://www.mongodb.org/display/DOCS/Drivers">official MongoDB drivers</a>. Each language will get its own article in the series. You have the application requirements so feel free to code along in your language of choice. Also, we&#8217;d love to see versions in <a href="http://www.mongodb.org/display/DOCS/Perl+Language+Center">some</a> <a href="http://www.mongodb.org/display/DOCS/Javascript+Language+Center">other</a> <a href="http://www.mongodb.org/display/DOCS/JVM+Languages">languages</a> that we won&#8217;t be covering. Show us your skills by submitting them in the comments. We&#8217;ll happily tweet them out and link them up in our final article in the series!</p>
<p>Be sure to grab our <a href="http://feeds.feedburner.com/FuelYourCoding">RSS feed</a> or follow <a href="http://twitter.com/fuelyourcoding">@fuelyourcoding</a> on Twitter so you don&#8217;t miss out as we get down &amp; dirty with MongoDB!</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-1/">Down &#038; Dirty with MongoDB Part 1: the Plot</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/down-and-dirty-with-mongodb-part-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Eight Great iOS Apps for Developers</title>
		<link>http://fuelyourcoding.com/eight-great-ios-apps-for-developers/</link>
		<comments>http://fuelyourcoding.com/eight-great-ios-apps-for-developers/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 13:30:22 +0000</pubDate>
		<dc:creator>Jerod Santo</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=1138</guid>
		<description><![CDATA[The trouble with having over 200,000 iOS apps in the App Store is how difficult it is to find high quality apps to fit our needs. With that in mind, I have compiled this list of eight apps that I&#8217;ve found invaluable as a developer.
Without any further ado, here they are listed alphabetically:

Air Display

Price: $9.99
Type: [...]<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/eight-great-ios-apps-for-developers/">Eight Great iOS Apps for Developers</a></p>
]]></description>
			<content:encoded><![CDATA[<p>The trouble with having over <strong>200,000</strong> iOS apps in the App Store is how difficult it is to find high quality apps to fit our needs. With that in mind, I have compiled this list of eight apps that I&#8217;ve found invaluable as a developer.</p>
<p>Without any further ado, here they are listed alphabetically:</p>
<hr />
<h2><a href="http://itunes.apple.com/us/app/air-display/id368158927?mt=8">Air Display</a></h2>
<p><a href="http://itunes.apple.com/us/app/air-display/id368158927?mt=8"><img src="http://fuelyourcoding.com/files/AirDisplay.png" alt="AirDisplay" title="AirDisplay" width="125" height="125" class="alignright size-full wp-image-1167" style="border: none; background: transparent; padding-left: 50px; padding-bottom: 0;"/></a></p>
<p><strong>Price:</strong> $9.99<br />
<strong>Type:</strong> iPad<br />
<strong>Version:</strong> 1.0.1</p>
<p>Air Display lets you use your iPad as a wireless display for your Mac OS X computer. Why is this great for developers? Because we need screen real estate, baby!</p>
<p><a href="http://www.flickr.com/photos/sant0sk1/4645873586/">Here&#8217;s a pic</a> of Air Display in action as my 3rd monitor. The iPad monitor is perfect size for your <a href="http://www.skype.com/">Skype</a> windows, API documentation, or a browser session with programming tutorials.</p>
<hr />
<h2><a href="http://itunes.apple.com/us/app/domainstorm/id376898108?mt=8">DomainStorm</a></h2>
<p><a href="http://itunes.apple.com/us/app/domainstorm/id376898108?mt=8"><img src="http://fuelyourcoding.com/files/DomainStorm.png" alt="DomainStorm" title="DomainStorm" width="125" height="125" class="alignright size-full wp-image-1160" style="border: none; background: transparent; padding-left: 50px; padding-bottom: 0;"/></a></p>
<p><strong>Price:</strong> Free<br />
<strong>Type:</strong> iPhone<br />
<strong>Version:</strong> 1.0</p>
<p>When inspiration for that new web application hits you, the first (and most fun) thing to do is buy a great domain name for it. </p>
<p>DomainStorm is a relatively new app from <a href="http://networksolutions.com/">Network Solutions</a> built to help you accomplish just that. It tells you if domains are available, helps you brainstorm name ideas, lets you mark domains as favorites for later purchase, and even provides you <a href="http://en.wikipedia.org/wiki/Whois">WHOIS</a> information so you can contact current domain owners about a purchase. A must have for sure!</p>
<hr />
<h2><a href="http://itunes.apple.com/us/app/ego/id306785502?mt=8">Ego</a></h2>
<p><a href="http://itunes.apple.com/us/app/ego/id306785502?mt=8"><img src="http://fuelyourcoding.com/files/Ego.png" alt="Ego" title="Ego" width="125" height="125" class="alignright size-full wp-image-1163" style="border: none; background: transparent; padding-left: 50px; padding-bottom: 0;"/></a></p>
<p><strong>Price:</strong> $1.99, $4.99<br />
<strong>Type:</strong> iPhone, iPad<br />
<strong>Version:</strong> 2.1</p>
<p>Obsessed with checking your site analytics? There is no better way to get a quick glance at your traffic than the beautifully designed <a href="http://ego-app.com/">Ego</a> by <a href="http://garrettmurray.net/">Garrett Murray</a>.</p>
<p>With support for Google Analytics, Ember, FeedBurner, Twitter, Mint, Vimeo, Tumblr, and SquareSpace this app has your analytics needs covered. Did I mention it was beautifully designed?</p>
<hr />
<h2><a href="http://itunes.apple.com/us/app/evernote/id281796108?mt=8">Evernote</a></h2>
<p><a href="http://itunes.apple.com/us/app/evernote/id281796108?mt=8"><img src="http://fuelyourcoding.com/files/Evernote.png" alt="Evernote" title="Evernote" width="125" height="125" class="alignright size-full wp-image-1169" style="border: none; background: transparent; padding-left: 50px; padding-bottom: 0;"/></a></p>
<p><strong>Price:</strong> Free<br />
<strong>Type:</strong> Universal<br />
<strong>Version:</strong> 3.3.5</p>
<p><a href="http://www.evernote.com">Evernote</a> is a wonderful way to store all the programming tips, tricks, tutorials and gotchas that we accumulate as we go about our development efforts. The power of Evernote is the universal access to your notes that it provides. They have a web interface, Mac/Windows clients, and mobile apps including a highly polished iOS app.</p>
<p>If you haven&#8217;t tried Evernote yet, now is a great time to put all your notes in one highly accessible place. You can even save passwords in Evernote as they provide encrypted strings inside your notes.</p>
<hr />
<h2><a href="http://itunes.apple.com/us/app/ioctocat/id310429782?mt=8">iOctocat</a></h2>
<p><a href="http://itunes.apple.com/us/app/ioctocat/id310429782?mt=8"><img src="http://fuelyourcoding.com/files/iOctocat.png" alt="iOctocat" title="iOctocat" width="125" height="125" class="alignright size-full wp-image-1151" style="border: none; background: transparent; padding-left: 50px; padding-bottom: 0;"/></a></p>
<p><strong>Price:</strong> $4.99<br />
<strong>Type:</strong> iPhone<br />
<strong>Version:</strong> 1.7.1.1</p>
<p>iOctocat is, hands down, the best way to keep up to snuff with open-source development on <a href="http://github.com">GitHub</a> from your iPhone.</p>
<p>This app features access to your personal news feed, repositories, individual commits, issues, user profiles and site search. While the app is not free as in beer, it is <a href="http://en.wikipedia.org/wiki/Gratis_versus_Libre#.22Free_as_in_beer.22_vs_.22Free_as_in_speech.22">free as in speech</a> and the source is aptly hosted <a href="http://github.com/dbloete/ioctocat">on GitHub</a>. That makes it <a href="/one-sure-fire-way-to-improve-your-coding">a great candidate for learning</a> iOS development as well!</p>
<hr />
<h2><a href="http://itunes.apple.com/us/app/issh-ssh-vnc-console/id287765826?mt=8">iSSH</a></h2>
<p><a href="http://itunes.apple.com/us/app/issh-ssh-vnc-console/id287765826?mt=8"><img src="http://fuelyourcoding.com/files/iSSH.png" alt="iSSH" title="iSSH" width="125" height="125" class="alignright size-full wp-image-1144" style="border: none; background: transparent; padding-left: 50px; padding-bottom: 0;" /></a></p>
<p><strong>Price:</strong> $9.99<br />
<strong>Type:</strong> Universal<br />
<strong>Version:</strong> 4.2.5</p>
<p>Most developers have found themselves <a href="http://en.wikipedia.org/wiki/Afk">AFK</a> when a very important server is having problems. If you know the feeling, then <a href="http://www.zinger-soft.com/iSSH_features.html">iSSH</a> is your new best friend. </p>
<p>There are a few remote server control iOS apps available, but this one is the best one that I&#8217;ve come across. It allows SSH, telnet, and even VNC connections and boasts many features. The iPad version provides a display size large enough to allow <a href="http://www.flickr.com/photos/sant0sk1/4555954836/">determined coders like myself</a> to fire up vim and get some coding done. The price is a bit steep, but if iSSH saves your butt one time then it has already earned its keep.</p>
<hr />
<h2><a href="http://itunes.apple.com/us/app/istat-sys-monitoring-battery/id303034517?mt=8">iStat</a></h2>
<p><a href="http://itunes.apple.com/us/app/istat-sys-monitoring-battery/id303034517?mt=8"><img src="http://fuelyourcoding.com/files/iStat.png" alt="iStat" title="iStat" width="125" height="125" class="alignright size-full wp-image-1171" style="border: none; background: transparent; padding-left: 50px; padding-bottom: 0;"/></a></p>
<p><strong>Price:</strong> $0.99<br />
<strong>Type:</strong> iPhone<br />
<strong>Version:</strong> 1.2</p>
<p>Bjango makes gorgeous and useful software including the OS X system monitoring tool <a href="http://bjango.com/apps/istatmenus/">iStat Menus</a>. They also offer a similar app called <a href="http://bjango.com/apps/istat/">iStat</a> which displays your iPhone&#8217;s system stats.</p>
<p>The beauty of the iStat app for developers is that you can also use it to monitor remote servers running Mac, Linux or Solaris! You simply install a daemon on the server you need monitoring and iStat will show you its CPU, memory, disk, temps, uptime, and tons more information. It feels great to have intimate details about your servers always at your fingertips.</p>
<hr />
<h2><a href="http://itunes.apple.com/us/app/nezumi/id346715875?mt=8">Nezumi</a></h2>
<p><a href="http://itunes.apple.com/us/app/nezumi/id346715875?mt=8"><img src="http://fuelyourcoding.com/files/Nezumi.png" alt="Nezumi" title="Nezumi" width="125" height="125" class="alignright size-full wp-image-1174" style="border: none; background: transparent; padding-left: 50px; padding-bottom: 0;"/></a></p>
<p><strong>Price:</strong> $4.99<br />
<strong>Type:</strong> iPhone<br />
<strong>Version:</strong> 1.2</p>
<p>This one is specific to Ruby-using web developers. For those who fit that description, you absolutely need to try deploying an application to <a href="http://heroku.com/">Heroku</a>. It is the dead simplest way to get deployed and if you haven&#8217;t tried it yet then you don&#8217;t know what you&#8217;re missing out on.</p>
<p>For those who&#8217;ve seen the Heroku light, <a href="http://nezumiapp.com/">Nezumi</a> is a must-have companion app for the Heroku service. Nezumi gives you instant access to your Heroku apps from your iPhone so you can add collaborators, manage your dynos, toggle maintenance mode, execute rake/console tasks, and even restart your application on the go. Love it!</p>
<hr />
<p>So there you have &#8216;em. Eight great iOS apps for developers. Hopefully you&#8217;ll find that one or more of these apps helps you increase your productivity as a developer. I know I&#8217;m better off with them than I was without.</p>
<p>If you know of any other iOS apps that did not make my list, please give them a shout out in the comments, so we can all check them out!</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/eight-great-ios-apps-for-developers/">Eight Great iOS Apps for Developers</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/eight-great-ios-apps-for-developers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>One Sure-Fire Way to Improve Your Coding</title>
		<link>http://fuelyourcoding.com/one-sure-fire-way-to-improve-your-coding/</link>
		<comments>http://fuelyourcoding.com/one-sure-fire-way-to-improve-your-coding/#comments</comments>
		<pubDate>Thu, 27 May 2010 13:25:35 +0000</pubDate>
		<dc:creator>Jerod Santo</dc:creator>
				<category><![CDATA[Concepts & Training]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=1086</guid>
		<description><![CDATA[The most obvious way to improve your coding is to write more code. Everybody knows that. However, another activity which I guarantee will improve your coding is the complete opposite of writing. I will state this as plainly as I possibly can:
If you want to dramatically increase your programming skills you need to be reading [...]<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/one-sure-fire-way-to-improve-your-coding/">One Sure-Fire Way to Improve Your Coding</a></p>
]]></description>
			<content:encoded><![CDATA[<p>The most obvious way to improve your coding is to write more code. Everybody knows that. However, another activity which I guarantee will improve your coding is the complete opposite of writing. I will state this as plainly as I possibly can:</p>
<p><strong>If you want to dramatically increase your programming skills you need to be reading other people&#8217;s code.</strong></p>
<p>Maybe you believe that, maybe you don&#8217;t. You should. And if you&#8217;re willing to give it a shot, I believe you will be rewarded greatly for your time.</p>
<p>In this article I will help you choose what to read and give you practical advice on how to go about reading it. If you&#8217;re already a code reader you may find a few ways to get more from your efforts. If you aren&#8217;t, you absolutely must read on.</p>
<h2>What to Read</h2>
<p>This is a big decision, and one that is difficult to advise on. I won&#8217;t simply point you toward code I think you should read, because it really comes down to what you&#8217;re in to. However, I will provide some guidelines which you can follow to help you choose what to read.</p>
<h3>&raquo; Read Code That You Rely On</h3>
<p>A great place to start is with any plugins or libraries that you are already using.</p>
<ul>
<li>A WordPress plugin that you really like</li>
<li>A Ruby gem that you&#8217;ve found useful</li>
<li>A jQuery plugin that you keep going back to</li>
</ul>
<p>These are all great candidates for learning. You are already familiar with their public APIs so the barrier to understanding their inner workings is lower. Also, as a user of the code you have an opportunity to add documentation, implement a new feature, or generally give back to the project in some way.</p>
<h3>&raquo; Read Code That Impresses You</h3>
<p>I remember the first time I saw <a href="http://280slides.com">280 Slides</a> and I thought to myself, &#8220;Now that is impressive.&#8221; I quickly learned that the code driving that site was the open-source <a href="http://cappuccino.org">Cappuccino</a> project. I tucked that knowledge into the far recesses of my brain and when I eventually came across <a href="http://almost.at">another impressive app</a> running on <a href="http://cappuccino.org">Cappuccino</a> I knew I had a project that I could learn a lot from. What have you been impressed by lately? Is it open-source? If so, it&#8217;s a great choice for reading since the code is likely to impress you as much as the resulting application.</p>
<h3>&raquo; Read Code Written By Somebody You Respect</h3>
<p>If you&#8217;ve been coding with open-source software for more than a little while, there are probably other programmers who have earned your respect. I can think of <a href="http://github.com/defunkt">a</a> <a href="http://github.com/defunkt">few</a> <a href="http://github.com/jashkenas">developers</a> off the top of my head whose code is downright enviable.</p>
<p style="text-align: center;"><img src="http://fuelyourcoding.com/files/follow-coders.png" alt="follow-coders" title="follow-coders" width="438" height="88" class="aligncenter size-full wp-image-1097" /></p>
<p>If you don&#8217;t have a respected developer in mind, it&#8217;s easy to find one. He or she has probably authored some code in one of the previous two sections (code you rely upon, or that impresses you).</p>
<h3>&raquo; Read Code That You Can Actually Grok</h3>
<p>If you&#8217;re the adventurous type you may be considering diving into a large project like <a href="http://rubyonrails.org">Ruby on Rails</a>, <a href="http://drupal.org/">Drupal</a>, or <a href="http://jquery.com/">jQuery</a>. I suggest avoiding projects like these for now unless you are an experienced code reader.</p>
<p>Large projects have a lot more moving pieces, and you may end up struggling too much with the concepts to learn anything of immediate value. Confusion leads to discouragement, and larger projects more likely to confuse and discourage you in your reading. The advantage of picking a small project to read is that you can hold the entire program logic in your head at once. This leaves you with just the details to discover and learn from.</p>
<h2>How to Read</h2>
<p>Now that you&#8217;ve chosen some code to read, what is the best way to go about reading it? I&#8217;ve read a lot of code in my days, and I can suggest a few ways to maximize your ROI.</p>
<h3>&raquo; See the Big Picture</h3>
<p>I&#8217;m going to assume that you at least know at a macro level what the code you&#8217;re reading accomplishes. If not, I suggest reading the project&#8217;s website, tutorials, documentation, and anything else you can get your hands on except the code.</p>
<p>Okay, with that cleared I suggest your first step is to wrap your head around the project&#8217;s structure. This is a variable amount of work depending on the size of the codebase you&#8217;ve chosen, but anything larger than one file will require a little bit of time.</p>
<p>First, note the file structure. This step is aided by an editor that has a folder hierarchy view like <a href="http://macromates.com">TextMate</a>. For example, here is a nice overview of the <a href="http://github.com/jnunemaker/twitter">Twitter</a> Ruby gem:</p>
<p style="text-align: center;"><img src="http://fuelyourcoding.com/files/twitter-folder-structure.png" alt="twitter-folder-structure" title="twitter-folder-structure" width="230" height="510" class="aligncenter size-full wp-image-1090" /></p>
<p>The goal with this step is to just get familiar with the source. Find out which files include/require/load other files, where the bulk of the code is, the namespaces used if any, and things of this nature. Once you&#8217;ve got the big picture you&#8217;ll be ready to dig into the details.</p>
<h3>&raquo; Document Your Findings</h3>
<p>Reading code should not be a passive activity. I encourage you to add comments as you go, documenting your assumptions and your conclusions as you begin to understand the program flow. When you first get started your comments will probably look something like:</p>
<pre class="brush: ruby;">
# I think this function is called after 'initialize'
</pre>
<pre class="brush: ruby;">
# What does this equation even do?
</pre>
<pre class="brush: ruby;">
# Pretty sure this variable loses scope after line 17
</pre>
<p>As your understanding progresses you can remove the little breadcrumb comments you left yourself and perhaps write more meaningful and authoritative comments that could possibly be committed back to the project.</p>
<h3>&raquo; Use the Tests, Luke</h3>
<p>Hopefully the project you&#8217;ve chosen has a test suite. If not, you can skip this section altogether (or find one that does).</p>
<p>Tests are a great place to start whenever you read somebody else&#8217;s code because they document what the code is supposed to accomplish. Some tests are more informative than others, but no matter how well written, you&#8217;ll often find the programmer&#8217;s intent in the tests much more easily than you&#8217;ll find it in the implementation. While you&#8217;re reading, try to get the test suite to run successfully. This will make sure your development environment is configured properly and will make you more confident when making changes.</p>
<h3>&raquo; Execute, Change Stuff, Execute</h3>
<p>Who said reading code had to be hands off? You&#8217;ll really start to understand things once you&#8217;ve broken everything and put it back together again. Remember those tests you got passing? Make them fail, add some more, or try changing the implementation without breaking them. Try adding a small feature that you think is cool, or setup project-wide logging so you can print output at various stages of the code. Is this still reading? Absolutely, but at this point its more of a choose your own adventure than a mystery novel. And that&#8217;s a good thing!</p>
<h3>&raquo; Rinse and Repeat</h3>
<p>Once you finish reading one codebase, pick another one and start the process over again. The more code you read, the better you get at reading it and the more you get out of it in less time. I think you&#8217;ll find that the ROI increases quite quickly and that it&#8217;s actually a very enjoyable way to learn.</p>
<h2>Where To Start</h2>
<p>The single most influential factor in my code reading is <a href="http://github.com">GitHub</a>. The site makes it so easy to find new projects and great coders that you&#8217;re doing yourself a disservice if you&#8217;re not leveraging it. I suggest starting on <a href="http://github.com">GitHub</a> and reading code right on the site until you find a project you know you can learn from. Then <tt>git clone</tt> that baby and get to reading!</p>
<p><strong>How about you? Do you read code as a learning tool? Which projects would you recommend to others? Read any good code lately?</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/one-sure-fire-way-to-improve-your-coding/">One Sure-Fire Way to Improve Your Coding</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/one-sure-fire-way-to-improve-your-coding/feed/</wfw:commentRss>
		<slash:comments>41</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>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>A Brief Overview of Twitter&#8217;s New @Anywhere API</title>
		<link>http://fuelyourcoding.com/a-brief-overview-of-twitters-new-anywhere-api/</link>
		<comments>http://fuelyourcoding.com/a-brief-overview-of-twitters-new-anywhere-api/#comments</comments>
		<pubDate>Wed, 05 May 2010 14:54:24 +0000</pubDate>
		<dc:creator>Jerod Santo</dc:creator>
				<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=907</guid>
		<description><![CDATA[Twitter recently announced and released a JavaScript API called @Anywhere which makes it super-simple to integrate Twitter-related content on any website. This means developers no longer have to roll their own integration or use 3rd party libraries. @Anywhere, despite its unfortunate naming, appears to be a big win for all. Here is a brief overview [...]<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/a-brief-overview-of-twitters-new-anywhere-api/">A Brief Overview of Twitter&#8217;s New @Anywhere API</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Twitter recently announced and released a JavaScript API called <a href="http://dev.twitter.com/anywhere">@Anywhere</a> which makes it super-simple to integrate Twitter-related content on any website. This means developers no longer have to roll their own integration or use 3rd party libraries. @Anywhere, despite its unfortunate naming, appears to be a big win for all. Here is a brief overview of its features and usage.</p>
<p>To get started, <a href="http://dev.twitter.com/anywhere/apps/new">register an @Anywhere application</a> and get an API key. Then plug this snippet into your page:</p>
<pre class="brush: jscript;">
&lt;script src=&quot;http://platform.twitter.com/anywhere.js?id=YOUR_API_KEY&amp;v=1&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
</pre>
<p>Now you can begin using any of the following features:</p>
<h2>Auto-linkification of Twitter usernames</h2>
<p>This is a convenient way to link Twitter usernames on your site to the appropriate user&#8217;s profile page on Twitter. The most basic usage looks like this:</p>
<pre class="brush: jscript;">
&lt;script type=&quot;text/javascript&quot;&gt;

  twttr.anywhere(function (T) {
    T.linkifyUsers();
  });

&lt;/script&gt;
</pre>
<h2>Hovercards</h2>
<p>A Hovercard is a small, context-aware tooltip that provides access to data about a particular Twitter user. It looks like this:</p>
<p><img src="http://fuelyourcoding.com/files/hovercard.png" alt="hovercard" title="hovercard" width="310" height="163" class="alignnone size-full wp-image-913" /></p>
<p>To enable hovercards on a page:</p>
<pre class="brush: jscript;">
&lt;script type=&quot;text/javascript&quot;&gt;

  twttr.anywhere(function (T) {
    T.hovercards();
  });

&lt;/script&gt;
</pre>
<h2>Follow buttons</h2>
<p>The feature name pretty much says it all. Let people follow Twitter users from your page. To enable it for user <a href="http://twitter.com/sant0sk1">sant0sk1</a> inside a span with id of `follow-me`:</p>
<pre class="brush: jscript;">
&lt;span id=&quot;follow-me&quot;&gt;&lt;/span&gt;
&lt;script type=&quot;text/javascript&quot;&gt;

  twttr.anywhere(function (T) {
    T('#follow-mei').followButton(&quot;sant0sk1&quot;);
  });

&lt;/script&gt;
</pre>
<p>The buttons look like this:</p>
<p><img src="http://fuelyourcoding.com/files/follow-buttons.png" alt="follow-buttons" title="follow-buttons" width="407" height="37" class="alignnone size-full wp-image-914" /></p>
<h2>Tweet Box</h2>
<p>Let Twitter users tweet from inside your webpage or web application. An example of using this on a div with id of `tweetbox`:</p>
<pre class="brush: jscript;">
&lt;div id=&quot;tbox&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;

  twttr.anywhere(function (T) {
    T(&quot;#tbox&quot;).tweetBox();
  });
&lt;/script&gt;
</pre>
<h2>User login &#038; signup</h2>
<p>This feature allows users to perform some of the authentication-required activities like following users and tweeting from your page. It uses OAuth and provides <tt>authComplete</tt> and <tt>signOut</tt> callbacks that you can hook into. It&#8217;s more complicated than the others so we won&#8217;t provide an example here.</p>
<h2>Try it!</h2>
<p>@Anywhere looks like a solid API that can provide immediate advantages over other solutions. If you need quick, easy and official Twitter integration on your site we highly recommend trying it out. Start with the <a href="http://dev.twitter.com/anywhere/begin">official documentation</a> from which we derived much of this overview. Then you can move on to the <a href="http://platform.twitter.com/js-api.html">full API documentation</a> which is (at the time of posting) in a preview state. Enjoy!</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/a-brief-overview-of-twitters-new-anywhere-api/">A Brief Overview of Twitter&#8217;s New @Anywhere API</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/a-brief-overview-of-twitters-new-anywhere-api/feed/</wfw:commentRss>
		<slash:comments>11</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 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>Unconventional: CSS3 Link Checking</title>
		<link>http://fuelyourcoding.com/unconventional-css3-link-checking/</link>
		<comments>http://fuelyourcoding.com/unconventional-css3-link-checking/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 19:50:24 +0000</pubDate>
		<dc:creator>Douglas Neiner</dc:creator>
				<category><![CDATA[Concepts & Training]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://fuelyourcoding.com/?p=767</guid>
		<description><![CDATA[One of our regular writers Wess Cope lives by the principle that you should seek to push technology past its intended uses and beyond even its own limitations. From time to time we will be featuring unconventional uses of technology. Today, we look at unconventional CSS3:
The Problem
As a developer, you are rapidly building your newest [...]<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/unconventional-css3-link-checking/">Unconventional: CSS3 Link Checking</a></p>
]]></description>
			<content:encoded><![CDATA[<p>One of our regular writers <a href="/about">Wess Cope</a> lives by the principle that you should seek to push technology past its intended uses and beyond even its own limitations. From time to time we will be featuring unconventional uses of technology. Today, we look at unconventional CSS3:</p>
<h2>The Problem</h2>
<p>As a developer, you are rapidly building your newest web creation. You start with the HTML, knowing full well you don&#8217;t have the hyperlinks you will need to complete the design. Nonetheless you put in:</p>
<pre class="brush: xml;">
&lt;ul id=&quot;nav&quot;&gt;
   &lt;li&gt;&lt;a href=&quot;/&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;&quot;&gt;About&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;
   ...
&lt;/ul&gt;
</pre>
<p>What seems like a long time later, you get to the point where you finish up your site for demoing or production. How do you quickly find all those empty links? Well, you could use a link checker&#8230; or, just use CSS3!</p>
<h2>CSS3 Solution</h2>
<p>Just paste this line to the end of your last included CSS file for a quick visual display:</p>
<pre class="brush: css;">
/* Find all links where an href is not provided */
html body a:not([href]), html body a[href='']  { background: red !important;}
</pre>
<p>Then open your site in modern browser that supports CSS3, and any empty link now has a background of red. Edit your HTML, and check the page again. When all the links are fixed, none will have a red background!</p>
<p>You can see for yourself by checking a quick demo:<br />
<a target="_blank" href="http://fuelbrand.s3.amazonaws.com/coding/unconventional-css3/styles-off.html">Standard Page</a> | <a target="_blank"  href="http://fuelbrand.s3.amazonaws.com/coding/unconventional-css3/styles-on.html">Page With CSS3 Link Checking</a></p>
<h2>Bonus: Testing Progressive Enhancement</h2>
<p>For mission critical functionality it is generally good practice to have a fallback for non JavaScript users. To test if your page has any JavaScript only code, add this rule to your CSS file after the rule we just added:</p>
<pre class="brush: css;">
/* Find all links where the href = # */
html body a[href='#'] { background: yellow !important;}
</pre>
<p>Next, disable JavaScript in your browser (In Firefox and Safari it is an option in your preferences.).</p>
<p>Now, any of those links you cleverly enhanced with JavaScript, but forgot to add a valid fallback URL, will show up with a yellow background. If an item truly has application <em>only</em> when JavaScript is enable, you should consider adding it dynamically with JavaScript.</p>
<h2>Variations</h2>
<p>As a leftover vestige from IE6 days, many developers use <tt>href='#'</tt> so signify an empty url (So the <tt>:hover</tt> pseudo selector will still work). If this is your case, you have two options: 1) Change your style going forward and use <tt>href=''</tt> to signify an empty URL and <tt>href='#'</tt> for JavaScript enhanced links. or 2) Use only the second CSS3 rule and change the color to Red.</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/unconventional-css3-link-checking/">Unconventional: CSS3 Link Checking</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fuelyourcoding.com/unconventional-css3-link-checking/feed/</wfw:commentRss>
		<slash:comments>34</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>
	</channel>
</rss>
