<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Vincent Collins' Weblog</title>
	<atom:link href="http://vincentcollins.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vincentcollins.com</link>
	<description>Web application development with ColdFusion.  Self employed and enjoying it.</description>
	<pubDate>Wed, 20 Aug 2008 15:02:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Active Directory LDAP Authentication</title>
		<link>http://vincentcollins.com/2008/08/20/active-directory-ldap-authentication/</link>
		<comments>http://vincentcollins.com/2008/08/20/active-directory-ldap-authentication/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 14:58:52 +0000</pubDate>
		<dc:creator>Vincent Collins</dc:creator>
		
		<category><![CDATA[ADAM]]></category>

		<category><![CDATA[Active Directory]]></category>

		<category><![CDATA[ColdFusion]]></category>

		<category><![CDATA[LDAP]]></category>

		<guid isPermaLink="false">http://vincentcollins.wordpress.com/?p=84</guid>
		<description><![CDATA[I recently had a project for a client where I needed to authenticate with their implementation of Microsoft&#8217;s ADAM.  Behind the scenes they are syncing their Active Directory as well as their SAP data with ADAM.
Using ColdFusion, I was able to to do something like the following:


&#60;cfif Trim(selUsername) neq &#34;&#34; and Trim(selPassword) neq &#34;&#34;&#62;
&#60;cfset [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently had a project for a client where I needed to authenticate with their implementation of Microsoft&#8217;s ADAM.  Behind the scenes they are syncing their Active Directory as well as their SAP data with ADAM.</p>
<p>Using ColdFusion, I was able to to do something like the following:</p>
<pre name="code" class="php">

&lt;cfif Trim(selUsername) neq &quot;&quot; and Trim(selPassword) neq &quot;&quot;&gt;
&lt;cfset SearchFilter=&quot;sAMAccountName=#selUsername#&quot;&gt;
&lt;cfset viewfieldlistLookup = &quot;sAMAccountName,distinguishedName,cn,memberOf&quot;&gt;
    &lt;cftry&gt;
      &lt;cfldap action=&quot;QUERY&quot;
		      name=&quot;qry_authenticate_user&quot;
		      attributes=&quot;#viewfieldlistLookup#&quot;
		      filter=&quot;#SearchFilter#&quot;
		      sort=&quot;sn&quot;
		      start=&quot;#LDAPBase#&quot;
		      server=&quot;#LDAPServer#&quot;
		      username=&quot;#selUsername#&quot;
		      password=&quot;#selPassword#&quot;&gt;
      &lt;cfcatch type = &quot;Any&quot;&gt;
        &lt;cfset err = &quot;#err#
	&lt;li&gt;Unable to find that username and password.&lt;/li&gt;
&quot;&gt;
      &lt;/cfcatch&gt;
    &lt;/cftry&gt;
&lt;cfelse&gt;
  &lt;cfset err = &quot;#err#
	&lt;li&gt;Username and Password are required fields&lt;/li&gt;
&quot;&gt;
&lt;/cfif&gt;&lt;strong&gt;
&lt;/strong&gt;
&lt;cfif err eq &quot;&quot; and IsDefined( &quot;qry_authenticate_user.recordcount&quot; ) and qry_authenticate_user.recordcount gt 0&gt;
  &lt;cfset variables.IsValid = 1&gt;
&lt;cfelse&gt;
  &lt;cfset variables.IsValid = 0&gt;
&lt;/cfif&gt;
...
</pre>
<p>The above works because all users of this organization has read only and search access for ADAM.</p>
<p>Now here is the interesting thing.  For a different client, they don&#8217;t have an implementation of MS&#8217; ADAM directory so I&#8217;m tasked with authenticating directly with their Active Directory.  This company does not give the user read only or search capability of their Active Directory.  So, I ended up having to rewrite it a bit by doing the following:</p>
<pre name="code" class="php">

&lt;cfset variables.IsValid = 0&gt;
&lt;cfset err = &quot;&quot;&gt;

&lt;cfif Trim(selUsername) neq &quot;&quot; and Trim(selPassword) neq &quot;&quot;&gt;
    &lt;cfset SearchFilter=&quot;sAMAccountName=#selUsername#&quot;&gt;
    &lt;cfset viewfieldlistLookup =
&quot;cn,displayName,distinguishedName,givenName,homeDirectory,name,objectClass,sAMAccountName,sn,mail&quot;&gt;
    &lt;cftry&gt;
        &lt;cfldap action=&quot;QUERY&quot;
                name=&quot;qryCheckUser&quot;
                attributes=&quot;#viewfieldlistLookup#&quot;
                start=&quot;#LDAPBase#&quot;
                server=&quot;#LDAPServer#&quot;
                username=&quot;#LDAPUsername#&quot;
                password=&quot;#LDAPPassword#&quot;
                filter=&quot;#SearchFilter#&quot;&gt;
                &lt;cfif qryCheckUser.RecordCount gt 0&gt;
                    &lt;cfset curDisplayName = &quot;#qryCheckUser.displayName#&quot;&gt;
                    &lt;cfldap action=&quot;QUERY&quot;
                            name=&quot;qryAuthenticateUser&quot;
                            attributes=&quot;#viewfieldlistLookup#&quot;
                            start=&quot;#LDAPBase#&quot;
                            server=&quot;#LDAPServer#&quot;
                            username=&quot;#curDisplayName#&quot;
                                password=&quot;#selPassword#&quot;&gt;
                    &lt;cfif qryAuthenticateUser.RecordCount gt 0&gt;
                        &lt;cfset variables.IsValid = 1&gt;
                    &lt;cfelse&gt;
                        &lt;cfset err = &quot;#err#
	&lt;li&gt;Username and/or Password Failed&lt;/li&gt;
&quot;&gt;
                        &lt;cfset variables.IsValid = 0&gt;
                    &lt;/cfif&gt;
                &lt;cfelse&gt;
                    &lt;cfset err = &quot;#err#
	&lt;li&gt;Username and/or Password Failed&lt;/li&gt;
&quot;&gt;
                    &lt;cfset variables.IsValid = 0&gt;
                &lt;/cfif&gt;
        &lt;cfcatch type = &quot;Any&quot;&gt;
            &lt;cfset err = &quot;#err#
	&lt;li&gt;Technical Error Connecting to LDAP Server.  Please notify IT.&lt;/li&gt;
&quot;&gt;
            &lt;cfset variables.IsValid = 0&gt;
        &lt;/cfcatch&gt;
    &lt;/cftry&gt;
&lt;!---
    Here is a list of Active Directory errors you could optionally test for:
    525 - user not found
    52e - invalid credentials
    530 - not permitted to logon at this time
    532 - password expired
    533 - account disabled
    701 - account expired
    773 - user must reset password
---&gt;
&lt;cfelse&gt;
    &lt;cfset err = &quot;#err#
	&lt;li&gt;Username and Password are required fields&lt;/li&gt;
&quot;&gt;
&lt;/cfif&gt;
</pre>
<p>Because the user doesn&#8217;t have permission to query AD via LDAP, I must use a system account to look up that person to find out if they exist first.  There is an interesting twist in this second example.   After a long time searching, I gave up on trying to find out why I couldn&#8217;t pass their NT username (sAMAccountName) and their password like I did in the first example with ADAM.  After much trial and error, the only way I figured out how to do it is by looking up their DisplayName and passing that along with their supplied password instead.  I think looking up their Distinguished Name (DN) works as well.</p>
<p>I&#8217;m assuming that AD blocks the passing of their NT Username for some obscure reason or more likely I have made a mistake.  I&#8217;ll look to others reading this post for any insight.  The current code works but I&#8217;m not 100% sure it&#8217;s the best solution.</p>
<p>I suppose another option is to set NT Authentication as a requirement for the directory within IIS and handle it that way.  A colleague showed me a quick example which seemed like a pretty graceful way to handle things.  I just am unclear on the compatibility of this option with other browsers, Servers like Apache, as well as possible problems from remote connections via VPN.</p>
<p>So, there you go, a couple of examples of how I have used ColdFusion to connect to two different LDAP compliant directories.</p>
<p>I&#8217;m looking for suggestions to make this better as well as any feedback you might have regarding the use of NT Authentication at the Web server level instead.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vincentcollins.wordpress.com/84/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vincentcollins.wordpress.com/84/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincentcollins.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincentcollins.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincentcollins.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincentcollins.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincentcollins.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincentcollins.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincentcollins.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincentcollins.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincentcollins.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincentcollins.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincentcollins.com&blog=1578150&post=84&subd=vincentcollins&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vincentcollins.com/2008/08/20/active-directory-ldap-authentication/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/vincentcollins-128.jpg" medium="image">
			<media:title type="html">Vince</media:title>
		</media:content>
	</item>
		<item>
		<title>I Turned 40 Today - Happy Birthday to Me!</title>
		<link>http://vincentcollins.com/2008/07/15/i-turned-40-today-happy-birthday-to-me/</link>
		<comments>http://vincentcollins.com/2008/07/15/i-turned-40-today-happy-birthday-to-me/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 18:58:28 +0000</pubDate>
		<dc:creator>Vincent Collins</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://vincentcollins.wordpress.com/?p=80</guid>
		<description><![CDATA[
Yes, I&#8217;m officially 40 years old today.  I&#8217;m not nearly as sad about it as one might think.
I&#8217;m healthy and happy&#8230;What more can I ask for?
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="alignright size-medium wp-image-81" src="http://vincentcollins.files.wordpress.com/2008/07/happy-40th-birthday_l.jpg?w=209&#038;h=212" alt="" width="209" height="212" /></p>
<p>Yes, I&#8217;m officially 40 years old today.  I&#8217;m not nearly as sad about it as one might think.</p>
<p>I&#8217;m healthy and happy&#8230;What more can I ask for?</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vincentcollins.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vincentcollins.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincentcollins.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincentcollins.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincentcollins.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincentcollins.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincentcollins.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincentcollins.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincentcollins.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincentcollins.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincentcollins.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincentcollins.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincentcollins.com&blog=1578150&post=80&subd=vincentcollins&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vincentcollins.com/2008/07/15/i-turned-40-today-happy-birthday-to-me/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/vincentcollins-128.jpg" medium="image">
			<media:title type="html">Vince</media:title>
		</media:content>

		<media:content url="http://vincentcollins.files.wordpress.com/2008/07/happy-40th-birthday_l.jpg?w=297" medium="image" />
	</item>
		<item>
		<title>FarCry CMS 5.0 Install and Configuration - My Firsthand Experience</title>
		<link>http://vincentcollins.com/2008/07/15/farcry-cms-50-install-and-configuration-my-firsthand-experience/</link>
		<comments>http://vincentcollins.com/2008/07/15/farcry-cms-50-install-and-configuration-my-firsthand-experience/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 14:57:49 +0000</pubDate>
		<dc:creator>Vincent Collins</dc:creator>
		
		<category><![CDATA[CMS]]></category>

		<category><![CDATA[ColdFusion]]></category>

		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://vincentcollins.wordpress.com/?p=74</guid>
		<description><![CDATA[I have a client that is interested in implementing their first Intranet.  They want something simple to use, which usually means something powerful behind the scenes.  Also, of course, the client wants something free that can be extended by ColdFusion.
I have posted in the past about CMS options.  There are many choices [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have a client that is interested in implementing their first Intranet.  They want something simple to use, which usually means something powerful behind the scenes.  Also, of course, the client wants something free that can be extended by ColdFusion.</p>
<p>I have <a href="http://vincentcollins.com/2007/08/30/simple-content-management-system-does-one-exist/">posted in the past</a> about CMS options.  There are many choices but but the choices narrow once you introduce CF as a requirement.  I have decided to give FarCry 5.0 a shot.  The last time I installed FarCry was probably 2003 so I&#8217;m willing to give it a fair shake once more.</p>
<p>So far, I&#8217;m impressed overall.  For one thing, the 5.0 installer just works and simplifies the whole process.  So many CF programs (including many of mine) require editing of text files and placing of scripts manually but FarCry seems more mature and is evidenced by the installer.  I&#8217;m very impressed with this.</p>
<p>The look and feel of the administration back end or web top as FarCry refers to it is really nice.  There was a bit of a learning curve for me at least regarding how to actually use the tool to build the structure of a website and I will go into that in a later post.  That said, I was up and running pretty quickly once I got it.</p>
<p>The documentation seems a bit fragmented on the deamon site.  I know there is a wiki for each version but it&#8217;s incomplete.  I spent hours looking for answers to my questions in the form of documentation.  In the end, I did happen to come across their <a href="http://blog.daemon.com.au/go/blog-post/farcry-4-0-training-course-released">125 page training guide</a> for version 4.0 which was a help.  There are also <a href="http://blog.daemon.com.au/index.cfm?objectid=4F36E562-13D4-B1F1-4840CD9078B7C4D0">eSeminars posted</a> on deamon&#8217;s blog such as <a href="http://blog.daemon.com.au/index.cfm?objectid=4F36E562-13D4-B1F1-4840CD9078B7C4D0">this one for version 5.0</a>.</p>
<p>5.0 is still in beta, however I hit the ground running with it <strong>before</strong> I knew this since the <a href="http://www.farcrycms.org/">5.0 version is placed prominently on deamon&#8217;s home page</a> without the warning that it is beta.  Well, at least as recently as today <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  This means that things such as site-wide search and other components aren&#8217;t working yet as I came to find out while I was developing a mockup for a client.  I&#8217;ve decided to take a small risk and continue to use the 5.0 version because I&#8217;d hate to go backwards and <a href="http://groups.google.com/group/farcry-beta/browse_thread/thread/d5aaa007554ba805">Geoff Bowers&#8217; recent posting</a> eluded to the fact that this feature would be implemented in the coming weeks.</p>
<p>Once the software was installed, and once I had a handle on how to create top-level links with related pages with them, I was able to quickly create all the core Intranet pages in the hierarchy needed within a couple of hours.  I&#8217;m now working on creating users with permissions to edit only certain sections such as Department heads editing their own departments and not others&#8217;.  From what I understand, this is straight forward to do.</p>
<p>The challenges ahead are many such as how to embed custom CF pages and how to use the built-in functions such as RSS feeds, News, FAQs, Events and how to embed built in features like these into a FarCry page.  I&#8217;m hoping it&#8217;s covered in the 4.0 manual because as I have said, the wiki is incomplete or if it is not, it seems at least hard for me to navigate.  I&#8217;m also going to have to figure out how to modify the look and feel and find out how navigation works once you get 4 levels deep.  Also, how the &#8216;create link&#8217; function works in the webtop.</p>
<p>FarCry seems deep and can feel a bit daunting at times for me when I just can&#8217;t figure out how to do something I want.  However, my gut here is that Deamon really has a winner on their hands and if I can figure out how to master it, I may become a bit of an evangelist for the tool because there just isn&#8217;t another software package out there written in CF that is open source and does what this one does.  Well, that last statement is based on my knowledge.  If you know of something else, please let me know.</p>
<p>Also, I would really like to hear from some of you with first-hand experience/knowledge of FarCry.  It would be nice to know how others are using it and how successful you have been handing over the day to day management of a site to end users with no programming knowledge.  Have you come across a tutorial you can hand end users with simple instructions on day to day maintenance, adding a page, approving a page, adding users, etc.  Did you have to create something yourselves?</p>
<p>I&#8217;m really looking forward to hearing your comments!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vincentcollins.wordpress.com/74/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vincentcollins.wordpress.com/74/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincentcollins.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincentcollins.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincentcollins.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincentcollins.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincentcollins.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincentcollins.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincentcollins.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincentcollins.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincentcollins.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincentcollins.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincentcollins.com&blog=1578150&post=74&subd=vincentcollins&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vincentcollins.com/2008/07/15/farcry-cms-50-install-and-configuration-my-firsthand-experience/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/vincentcollins-128.jpg" medium="image">
			<media:title type="html">Vince</media:title>
		</media:content>
	</item>
		<item>
		<title>Is your work better than another&#8217;s?</title>
		<link>http://vincentcollins.com/2008/07/08/is-your-work-better-than-anothers/</link>
		<comments>http://vincentcollins.com/2008/07/08/is-your-work-better-than-anothers/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 16:37:04 +0000</pubDate>
		<dc:creator>Vincent Collins</dc:creator>
		
		<category><![CDATA[ColdFusion]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://vincentcollins.wordpress.com/?p=70</guid>
		<description><![CDATA[There is a difference between criticism and constructive criticism.
I&#8217;m disappointed when I come across developers laughing and making fun of a code block or website design they happen to come across.  I see this sort of mentality time and time again.  I suppose it is easy to forget about the long path we [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There is a difference between criticism and constructive criticism.</p>
<p>I&#8217;m disappointed when I come across developers laughing and making fun of a code block or website design they happen to come across.  I see this sort of mentality time and time again.  I suppose it is easy to forget about the long path we all had to take to get to where we are.  Forget about all the mistakes we made along the way and  will continue to make in the future.</p>
<p>This is the equivalent of a bully making fun of a geek in third grade.  The only difference is that in this case, the geek is the bully and should be a bit more educated and mature by now.</p>
<p>I know that no one&#8217;s perfect.  I&#8217;m sure not.  However, the next time you come across work you deem is terrible or laughable, consider the possibility that the person you are laughing about may be newer to the whole wide world of design or programming than you.  They might be younger than you and just getting started.  They might not have had the opportunity to go to college like you but they still want to do whatever it is they are doing.  Consider the possibility that someone might be trying to pull themselves up by their own bootstraps with limited knowledge and resources.</p>
<p>If you still feel like laughing, keep it to yourself and go to a comedy show.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vincentcollins.wordpress.com/70/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vincentcollins.wordpress.com/70/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincentcollins.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincentcollins.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincentcollins.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincentcollins.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincentcollins.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincentcollins.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincentcollins.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincentcollins.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincentcollins.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincentcollins.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincentcollins.com&blog=1578150&post=70&subd=vincentcollins&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vincentcollins.com/2008/07/08/is-your-work-better-than-anothers/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/vincentcollins-128.jpg" medium="image">
			<media:title type="html">Vince</media:title>
		</media:content>
	</item>
		<item>
		<title>ColdFusion Community - What Gives?</title>
		<link>http://vincentcollins.com/2008/05/19/coldfusion-community-what-gives/</link>
		<comments>http://vincentcollins.com/2008/05/19/coldfusion-community-what-gives/#comments</comments>
		<pubDate>Mon, 19 May 2008 14:17:54 +0000</pubDate>
		<dc:creator>Vincent Collins</dc:creator>
		
		<category><![CDATA[ColdFusion]]></category>

		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://vincentcollins.wordpress.com/?p=69</guid>
		<description><![CDATA[Last week I wrote an article asking the CF community for a list of open source applications they wished existed.  The resulting comments were much different than I thought they would be.
I expected a small laundry list of applications similar to what is found in the PHP world as well as suggestions to make various [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Last week I <a href="http://vincentcollins.com/2008/05/15/what-open-source-coldfusion-application-is-sorely-missing/">wrote an article</a> asking the CF community for a list of open source applications they wished existed.  The resulting comments were much different than I thought they would be.</p>
<p>I expected a small laundry list of applications similar to what is found in the PHP world as well as suggestions to make various applications work well together.  I did get a few so far but what I didn&#8217;t expect were the discussions about the problems with the <strong>fragmentation of CF frameworks</strong>, and the <strong>overwhelming PHP and .NET installed user bases</strong> and how CF is stuck between a rock and a hard place because of this.  There is also the statement that the <strong>open source applications for CF are generally all &#8220;one man shows&#8221;</strong> and not a community of developers on a single project.</p>
<p>If you haven&#8217;t had a chance to jump in <a href="http://vincentcollins.com/2008/05/15/what-open-source-coldfusion-application-is-sorely-missing/">on the conversation</a>, I&#8217;d love to hear your list of applications as well as your take on the various other conversations going on here.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vincentcollins.wordpress.com/69/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vincentcollins.wordpress.com/69/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincentcollins.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincentcollins.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincentcollins.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincentcollins.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincentcollins.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincentcollins.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincentcollins.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincentcollins.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincentcollins.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincentcollins.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincentcollins.com&blog=1578150&post=69&subd=vincentcollins&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vincentcollins.com/2008/05/19/coldfusion-community-what-gives/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/vincentcollins-128.jpg" medium="image">
			<media:title type="html">Vince</media:title>
		</media:content>
	</item>
		<item>
		<title>What Open Source ColdFusion Application is Sorely Missing?</title>
		<link>http://vincentcollins.com/2008/05/15/what-open-source-coldfusion-application-is-sorely-missing/</link>
		<comments>http://vincentcollins.com/2008/05/15/what-open-source-coldfusion-application-is-sorely-missing/#comments</comments>
		<pubDate>Thu, 15 May 2008 15:18:48 +0000</pubDate>
		<dc:creator>Vincent Collins</dc:creator>
		
		<category><![CDATA[ColdFusion]]></category>

		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://vincentcollins.wordpress.com/?p=68</guid>
		<description><![CDATA[This is a simple call to the ColdFusion community.  Thanks to the wonderful efforts by Ray, Ben Rob and others (let me know who else) we have RIAForge.  I have a simple question I&#8217;d like to pose.
We are all well aware of the many open source applications written for other languages.  What is on your [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is a simple call to the ColdFusion community.  Thanks to the wonderful efforts by <a href="http://www.coldfusionjedi.com/">Ray</a>, <a href="http://www.forta.com">Ben</a> <a href="http://www.robgonda.com">Rob</a> and others (let me know who else) we have <a href="http://www.riaforge.org">RIAForge</a>.  I have a simple question I&#8217;d like to pose.</p>
<p>We are all well aware of the many open source applications written for other languages.  <strong>What is on your much wished for short list of open source tools not yet available for ColdFusion?</strong> Or, if a tool exists but you would like another option, name it!</p>
<p>This is your chance to not only tell the CF community what you want, but also a chance to maybe jump in and help develop a much needed application.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vincentcollins.wordpress.com/68/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vincentcollins.wordpress.com/68/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincentcollins.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincentcollins.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincentcollins.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincentcollins.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincentcollins.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincentcollins.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincentcollins.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincentcollins.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincentcollins.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincentcollins.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincentcollins.com&blog=1578150&post=68&subd=vincentcollins&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vincentcollins.com/2008/05/15/what-open-source-coldfusion-application-is-sorely-missing/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/vincentcollins-128.jpg" medium="image">
			<media:title type="html">Vince</media:title>
		</media:content>
	</item>
		<item>
		<title>Perfect, Easy, CSS Styled Buttons Example</title>
		<link>http://vincentcollins.com/2008/05/08/perfect-easy-css-styled-buttons-example/</link>
		<comments>http://vincentcollins.com/2008/05/08/perfect-easy-css-styled-buttons-example/#comments</comments>
		<pubDate>Thu, 08 May 2008 14:48:53 +0000</pubDate>
		<dc:creator>Vincent Collins</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Tutorial Links]]></category>

		<guid isPermaLink="false">http://vincentcollins.wordpress.com/?p=65</guid>
		<description><![CDATA[This is a well thought out and clearly explained tutorial explaining how to create CSS styled buttons.
There are a million examples but his approach by using just two images and shifting the pixels up and down for pressing and releasing is a neat idea.
how-to-make-sexy-buttons-with-css
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is a well thought out and clearly explained tutorial explaining how to create CSS styled buttons.</p>
<p>There are a million examples but his approach by using just two images and shifting the pixels up and down for pressing and releasing is a neat idea.</p>
<p><a href="http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html">how-to-make-sexy-buttons-with-css</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vincentcollins.wordpress.com/65/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vincentcollins.wordpress.com/65/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincentcollins.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincentcollins.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincentcollins.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincentcollins.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincentcollins.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincentcollins.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincentcollins.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincentcollins.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincentcollins.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincentcollins.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincentcollins.com&blog=1578150&post=65&subd=vincentcollins&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vincentcollins.com/2008/05/08/perfect-easy-css-styled-buttons-example/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/vincentcollins-128.jpg" medium="image">
			<media:title type="html">Vince</media:title>
		</media:content>
	</item>
		<item>
		<title>YouthAtPlay.com - A New Project is Born</title>
		<link>http://vincentcollins.com/2008/04/25/youthatplaycom-a-new-project-is-born/</link>
		<comments>http://vincentcollins.com/2008/04/25/youthatplaycom-a-new-project-is-born/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 17:30:06 +0000</pubDate>
		<dc:creator>Vincent Collins</dc:creator>
		
		<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://vincentcollins.wordpress.com/?p=62</guid>
		<description><![CDATA[
I&#8217;ve had a lot of fun putting together a new project recently.
A few weeks ago I talked about putting together a very simple tool that helped to alleviate some difficulties that our sports organization has been having.  However, I realized that with a bit more thought and effort, I could build something that any [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://vincentcollins.files.wordpress.com/2008/04/yap_square_logo_large.gif"><img class="alignright size-thumbnail wp-image-63" src="http://vincentcollins.files.wordpress.com/2008/04/yap_square_logo_large.gif?w=96&#038;h=96" alt="" width="96" height="96" /></a></p>
<p>I&#8217;ve had a lot of fun putting together a new project recently.</p>
<p>A few weeks ago I talked about putting together a very simple tool that helped to alleviate some difficulties that our sports organization has been having.  However, I realized that with a bit more thought and effort, I could build something that any youth-based organization could use.</p>
<p><a title="YouthAtPlay.com - A Youth-based Organization Management Tool" href="http://www.youthatplay.com">YouthAtPlay.com</a> (version 1.0) is now released for the first time to help serve that purpose.  Anyone can create a free account and begin using the tool today.  It is in its infancy of course but here is a short list of features it currently does as well as plans for the future.</p>
<p>In it&#8217;s simplest form, it can be used for any youth organization.  Troops, Sports Organizations, Kids Event Management, School Teacher, whatever&#8230;  If you need to keep track of many children and send emails to their parents, this tool could be for you.</p>
<p>Also, for a limited time, since this is considered a beta release, I&#8217;ll upgrade your account for free for 6 months.  Just send an email to info@youthatplay.com with the words &#8220;YouthAtPlay.com Discount&#8221; in the subject line and  your username.</p>
<p>Give it a try, you will be up and running in minutes!</p>
<p><a title="Manage Your Youth Organization Online at YouthAtPlay.com" href="http://www.youthatplay.com">http://www.YouthAtPlay.com</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vincentcollins.wordpress.com/62/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vincentcollins.wordpress.com/62/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincentcollins.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincentcollins.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincentcollins.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincentcollins.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincentcollins.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincentcollins.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincentcollins.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincentcollins.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincentcollins.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincentcollins.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincentcollins.com&blog=1578150&post=62&subd=vincentcollins&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vincentcollins.com/2008/04/25/youthatplaycom-a-new-project-is-born/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/vincentcollins-128.jpg" medium="image">
			<media:title type="html">Vince</media:title>
		</media:content>

		<media:content url="http://vincentcollins.files.wordpress.com/2008/04/yap_square_logo_large.gif?w=96" medium="image" />
	</item>
		<item>
		<title>StellentForums.com - Galleon Forums Rocks Once Again</title>
		<link>http://vincentcollins.com/2008/03/21/stellentforumscom-galleon-forums-rocks-once-again/</link>
		<comments>http://vincentcollins.com/2008/03/21/stellentforumscom-galleon-forums-rocks-once-again/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 16:13:45 +0000</pubDate>
		<dc:creator>Vincent Collins</dc:creator>
		
		<category><![CDATA[ColdFusion]]></category>

		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://vincentcollins.wordpress.com/?p=60</guid>
		<description><![CDATA[
Just a quick public shout out to Ray Camden for making the open source tool Galleon ColdFusion Forums available to all.
Version 2.011 installed without a hitch yesterday and StellentForums.com was up and running with a brand new forum in less than 20 minutes.
I can&#8217;t say enough about how cool it is to now have so [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://vincentcollins.files.wordpress.com/2008/03/stellentforums.gif" alt="StellentForumsSite" align="right" /></p>
<p>Just a quick public shout out to <a href="http://www.coldfusionjedi.com/">Ray Camden</a> for making the open source tool <a href="http://galleon.riaforge.org/index.cfm">Galleon ColdFusion Forums</a> available to all.</p>
<p>Version 2.011 installed without a hitch yesterday and <a href="http://www.stellentforums.com">StellentForums.com</a> was up and running with a brand new forum in less than 20 minutes.</p>
<p>I can&#8217;t say enough about how cool it is to now have so many choices for ColdFusion software, free or pay.  It&#8217;s good to be a CF Developer.</p>
<p>Once again, thanks Ray!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vincentcollins.wordpress.com/60/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vincentcollins.wordpress.com/60/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincentcollins.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincentcollins.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincentcollins.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincentcollins.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincentcollins.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincentcollins.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincentcollins.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincentcollins.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincentcollins.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincentcollins.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincentcollins.com&blog=1578150&post=60&subd=vincentcollins&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vincentcollins.com/2008/03/21/stellentforumscom-galleon-forums-rocks-once-again/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/vincentcollins-128.jpg" medium="image">
			<media:title type="html">Vince</media:title>
		</media:content>

		<media:content url="http://vincentcollins.files.wordpress.com/2008/03/stellentforums.gif" medium="image">
			<media:title type="html">StellentForumsSite</media:title>
		</media:content>
	</item>
		<item>
		<title>New Project - Youth Sports Association Management Tool (any interest?)</title>
		<link>http://vincentcollins.com/2008/03/07/new-project-youth-sports-association-management-tool-any-interest/</link>
		<comments>http://vincentcollins.com/2008/03/07/new-project-youth-sports-association-management-tool-any-interest/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 18:53:04 +0000</pubDate>
		<dc:creator>Vincent Collins</dc:creator>
		
		<category><![CDATA[ColdFusion]]></category>

		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://vincentcollins.wordpress.com/?p=59</guid>
		<description><![CDATA[I recently joined the board of our small town youth sports association and I have set the site up using WordPress, which allows multiple users to contribute with control over permission level.  Everyone is happy.
However, when it comes to actually managing the sports, teams, coaches, players and registration as well as sending emails to [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently joined the board of our small town youth sports association and I have set the site up using WordPress, which allows multiple users to contribute with control over permission level.  Everyone is happy.</p>
<p>However, when it comes to actually managing the sports, teams, coaches, players and registration as well as sending emails to all or a sub-set of players, I have not found any tool that seems to do it well.  I have to be honest however, I usually search for ten minutes and grow frustrated if nothing stands out quickly and just decide to build it myself.  I did find a few sites offering this service for a monthly fee and some with a per user fee but we are on a shoe-string budget and I want a tool I can install on my server and manage/modify from there.  Preferably it should be written in ColdFusion <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thus, I quickly put together the following CF + SQL Server application in a couple of days:</p>
<p>Users Table (board members and delegates)<br />
User Role (read only, read/write, admin)<br />
Player Table (all players of all sports, their address, DOB, Parents/Guardians, phone number(s), email(s) etc.)<br />
Log Table (logs all actions such as updates, emails sent etc)</p>
<p>Currently the tool allows you to manage users, players, as well as send email announcements to all players and users that have not opted out.  I&#8217;m also thinking of adding things like associated seasons, sports, coaches, and fee management.  Also maybe a Board Task List.  I&#8217;m wondering if there is a need for such a tool by others out there.  My thoughts are to set it up on RIAForge as an open source tool.  What do you think?</p>
<p>Also, if you know of a CF tool already out there that does this, I&#8217;d love to hear from you.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vincentcollins.wordpress.com/59/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vincentcollins.wordpress.com/59/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincentcollins.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincentcollins.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincentcollins.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincentcollins.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincentcollins.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincentcollins.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincentcollins.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincentcollins.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincentcollins.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincentcollins.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincentcollins.com&blog=1578150&post=59&subd=vincentcollins&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vincentcollins.com/2008/03/07/new-project-youth-sports-association-management-tool-any-interest/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/vincentcollins-128.jpg" medium="image">
			<media:title type="html">Vince</media:title>
		</media:content>
	</item>
	</channel>
</rss>