<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.irolo.net" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>programming</title>
 <link>http://www.irolo.net/taxonomy/term/29</link>
 <description>The taxonomy view with a depth of 0.</description>
 <language>en</language>
<item>
 <title>Drupal Droplets: Task One</title>
 <link>http://www.irolo.net/drupal_limiting_access_registration</link>
 <description>&lt;h3&gt;The setup&lt;/h3&gt;
&lt;p&gt;
Recently, I did some pro-bono consulting work for a client.  As part of our agreement I made it clear that I would retain the rights to the code I wrote.  The reason I did this is because I wanted to be able to give back to the community, and now I am going to do that. The work was made up of six tasks, ranging from trivial to complex.  I intend to write six articles based on these tasks.  This is the first.
&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.irolo.net/drupal_limiting_access_registration&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="http://www.irolo.net/taxonomy/term/27">cms</category>
 <category domain="http://www.irolo.net/taxonomy/term/13">development</category>
 <category domain="http://www.irolo.net/drupal">drupal</category>
 <category domain="http://www.irolo.net/taxonomy/term/34">php</category>
 <category domain="http://www.irolo.net/taxonomy/term/29">programming</category>
 <pubDate>Wed, 21 May 2008 15:41:36 -0400</pubDate>
 <dc:creator>RoloDMonkey</dc:creator>
 <guid isPermaLink="false">29 at http://www.irolo.net</guid>
</item>
<item>
 <title>Services</title>
 <link>http://www.irolo.net/services</link>
 <description>&lt;p&gt;
The lists below may seem sparse. This is deliberate. I could give you a laundry lists of every programming language, software package, operating system, and technology buzzword that I have ever worked with. I won&#039;t subject you to that.  I will just tell you my greatest strength:
&lt;/p&gt;
&lt;p&gt;I find solutions.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.irolo.net/services&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="http://www.irolo.net/taxonomy/term/9">css</category>
 <category domain="http://www.irolo.net/taxonomy/term/13">development</category>
 <category domain="http://www.irolo.net/drupal">drupal</category>
 <category domain="http://www.irolo.net/taxonomy/term/46">html</category>
 <category domain="http://www.irolo.net/taxonomy/term/34">php</category>
 <category domain="http://www.irolo.net/taxonomy/term/29">programming</category>
 <category domain="http://www.irolo.net/taxonomy/term/40">security</category>
 <pubDate>Fri, 09 May 2008 15:33:53 -0400</pubDate>
 <dc:creator>RoloDMonkey</dc:creator>
 <guid isPermaLink="false">30 at http://www.irolo.net</guid>
</item>
<item>
 <title>Do You Unit?</title>
 <link>http://www.irolo.net/do_you_unit_test</link>
 <description>&lt;h3&gt;What is Unit Testing?&lt;/h3&gt;

&lt;p&gt;
In simple terms, unit testing is a definition of tests to run on your code.  Usually, these tests are automated.  The &amp;quot;unit&amp;quot; in unit testing means that the tests should test the smallest functional units, like functions or methods.  However, unit testing does not have to be limited to only testing small parts; it can also test interactions between parts with complex combinations and variables, and even test some visual elements, like whether or not a certain image is actually shown or if a class was applied to an XHTML tag.
&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.irolo.net/do_you_unit_test&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="http://www.irolo.net/taxonomy/term/25">code</category>
 <category domain="http://www.irolo.net/taxonomy/term/13">development</category>
 <category domain="http://www.irolo.net/taxonomy/term/29">programming</category>
 <pubDate>Thu, 20 Mar 2008 18:40:48 -0400</pubDate>
 <dc:creator>RoloDMonkey</dc:creator>
 <guid isPermaLink="false">27 at http://www.irolo.net</guid>
</item>
<item>
 <title>Mixing Conditions and Assignments</title>
 <link>http://www.irolo.net/mixing_conditions_and_assignments</link>
 <description>&lt;p&gt;
Here is another tip from &lt;a href=&quot;/mistakes&quot;&gt;&quot;Mistakes I&#039;ve Made&quot;&lt;/a&gt;.  Don&#039;t mix up your conditions and assignments.  In other words be careful about using assignment operators (like the eqauls sign &#039;=&#039;) inside of conditional statements.  Although this happened with PHP, the same problem can occur with many other languages.  Let me explain...
&lt;/p&gt;
&lt;p&gt;
Here is a very common way to loop:
&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.irolo.net/mixing_conditions_and_assignments&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="http://www.irolo.net/taxonomy/term/25">code</category>
 <category domain="http://www.irolo.net/mistakes">mistake</category>
 <category domain="http://www.irolo.net/taxonomy/term/29">programming</category>
 <pubDate>Mon, 21 Jan 2008 15:50:52 -0500</pubDate>
 <dc:creator>RoloDMonkey</dc:creator>
 <guid isPermaLink="false">25 at http://www.irolo.net</guid>
</item>
<item>
 <title>Drupal, webform and Dynamic Checkboxes</title>
 <link>http://www.irolo.net/drupal_webform_and_dynamic_checkboxes</link>
 <description>&lt;p&gt;
Below you will find my description of how I made a new component for &lt;a href=&quot;http://drupal.org&quot; title=&quot;Drupal content management system&quot;&gt;Drupal&#039;s&lt;/a&gt; &lt;a href=&quot;http://drupal.org/project/webform&quot; title=&quot;Drupal web forms gui&quot;&gt;webform module&lt;/a&gt; that dynamically displays a selection of checkboxes. I will go over why I made it.   Then I will explain the code step by step.  I have also attached a copy of the file for &lt;a href=&quot;/drupal_webform_and_dynamic_checkboxes#download&quot;&gt;download&lt;/a&gt;.
&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.irolo.net/drupal_webform_and_dynamic_checkboxes&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="http://www.irolo.net/taxonomy/term/27">cms</category>
 <category domain="http://www.irolo.net/taxonomy/term/25">code</category>
 <category domain="http://www.irolo.net/taxonomy/term/13">development</category>
 <category domain="http://www.irolo.net/drupal">drupal</category>
 <category domain="http://www.irolo.net/taxonomy/term/41">mysql</category>
 <category domain="http://www.irolo.net/taxonomy/term/34">php</category>
 <category domain="http://www.irolo.net/taxonomy/term/29">programming</category>
 <enclosure url="http://www.irolo.net/files/webform.zip" length="2758" type="application/zip" />
 <pubDate>Tue, 27 Nov 2007 10:03:19 -0500</pubDate>
 <dc:creator>RoloDMonkey</dc:creator>
 <guid isPermaLink="false">24 at http://www.irolo.net</guid>
</item>
<item>
 <title>htmlentities()</title>
 <link>http://www.irolo.net/htmlentities</link>
 <description>  &lt;p&gt;
    Do you need to output a code sample onto an HTML page?  Just copy the code
    into the box below, and press &amp;quot;Convert&amp;quot;
  &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.irolo.net/htmlentities&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="http://www.irolo.net/taxonomy/term/25">code</category>
 <category domain="http://www.irolo.net/taxonomy/term/46">html</category>
 <category domain="http://www.irolo.net/taxonomy/term/34">php</category>
 <category domain="http://www.irolo.net/taxonomy/term/29">programming</category>
 <pubDate>Sat, 03 Nov 2007 13:55:51 -0400</pubDate>
 <dc:creator>RoloDMonkey</dc:creator>
 <guid isPermaLink="false">22 at http://www.irolo.net</guid>
</item>
<item>
 <title>Mambo and &quot;sex&quot;</title>
 <link>http://www.irolo.net/mambo_and_sex</link>
 <description>&lt;p&gt;Recently, I had trouble with the &lt;a href=&quot;http://mambo-foundation.org/&quot; title=&quot;Mambo CMS Foundation&quot;&gt;Mambo&lt;/a&gt; contact component.  Sometimes, the emails would get through, and other times they
would not.  There did not appear to be any discernable pattern.  In the end, I discovered that an innocent looking
word in the subject of the email was causing the message to be blocked by some spam filters.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.irolo.net/mambo_and_sex&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <category domain="http://www.irolo.net/taxonomy/term/27">cms</category>
 <category domain="http://www.irolo.net/taxonomy/term/13">development</category>
 <category domain="http://www.irolo.net/taxonomy/term/28">email</category>
 <category domain="http://www.irolo.net/mambo.php">mambo</category>
 <category domain="http://www.irolo.net/taxonomy/term/34">php</category>
 <category domain="http://www.irolo.net/taxonomy/term/29">programming</category>
 <category domain="http://www.irolo.net/taxonomy/term/30">spam</category>
 <pubDate>Wed, 29 Aug 2007 12:57:42 -0400</pubDate>
 <dc:creator>RoloDMonkey</dc:creator>
 <guid isPermaLink="false">7 at http://www.irolo.net</guid>
</item>
</channel>
</rss>
