<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Jeffry Houser&apos;s Blog - User Group News</title>
			<link>http://www.jeffryhouser.com/index.cfm</link>
			<description>Jeffry Houser&apos;s Blog</description>
			<language>en-us</language>
			<pubDate>Sat, 25 May 2013 19:04:51 -0400</pubDate>
			<lastBuildDate>Tue, 18 Apr 2006 23:56:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			
			<managingEditor>&#106;&#104;&#98;&#108;&#111;&#103;&#64;&#102;&#97;&#114;&#99;&#114;&#121;&#102;&#108;&#121;&#46;&#99;&#111;&#109;</managingEditor>
			<webMaster>&#106;&#104;&#98;&#108;&#111;&#103;&#64;&#102;&#97;&#114;&#99;&#114;&#121;&#102;&#108;&#121;&#46;&#99;&#111;&#109;</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author>Jeffry Houser</itunes:author>
			<itunes:owner>
				<itunes:email>jhblog@farcryfly.com</itunes:email>
				<itunes:name>Jeffry Houser</itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>Jeffry Houser&apos;s Blog</title>
				<link>http://www.jeffryhouser.com/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>CFUGitives User Group</title>
				<link>http://www.jeffryhouser.com/index.cfm/2006/4/18/CFUGitives-User-Group</link>
				<description>
				
				I just got back from the &lt;a href=&quot;http://www.cfugitives.com&quot;&gt;CFUGitives&lt;/a&gt; user group; and had a few ramblings that I thought I&apos;d share with the world.

 First off, I spoke a bit about Flex and demonstrated some of the proof-of-principle demos I&apos;d been working on.  Nothing mind-blowing; but it&apos;s good to be moving forward w/ the technology.  

 Second; in earlier meetings they discussed creating a group application.  Well, it looks like this is actually going to get off the ground.  The &apos;leader&apos; on the project signed up the project on &lt;a href=&quot;http://cfopen.org/projects/cfphotoalbum/&quot;&gt;cfopen.org&lt;/a&gt;.  Since a lot of the group has high interest in Flex stuff, the decision is to try to implement things as an API; so that any front end can be built on top of it (And theoretically so that future features could be easily tacked on ).  I offered to do some object modeling for it.  I believe I&apos;ll be walking a fine line between Simplicity and Flexibility.  Kudos to Erik for getting it started.

 Third, we spoke a bit about &lt;a href=&quot;http://www.woot.com&quot;&gt;Woot.com&lt;/a&gt;&apos;s RSS feed.  Some of the items have colons in them, such as &quot;media:thumbnail&quot;.  How do you access them by name; as opposed to hard-coded array positions.  We didn&apos;t walk away with a specific solution, but I stepped through the problem when I came home.  This was my approach.

 First, we need to get the feed:

&lt;code&gt;
&lt;cfhttp url=&quot;http://www.woot.com/blog/rss.aspx&quot; method=&quot;get&quot;&gt;
&lt;cfset results = xmlparse(cfhttp.filecontent)&gt;
&lt;/code&gt;

When traversing feeds like this, I often like to dump them to make it easier to see visually:
&lt;code&gt;
&lt;cfdump var=&quot;#xmlparse(cfhttp.filecontent)#&quot;&gt;
&lt;/code&gt;

 I see the top level channel is &apos;rss&apos;, so let me dump that:

&lt;code&gt;
&lt;cfdump var=&quot;#results.rss#&quot;&gt;
&lt;/code&gt;

After, RSS is Channel (it&apos;s only child)

&lt;code&gt;
&lt;cfdump var=&quot;#results.rss.channel#&quot;&gt;
&lt;/code&gt;

Now, we&apos;re going after media:thumbnail.  We can skip the iTunes stuff and go right to the items.  I&apos;m not quite sure how to sort out product listings blog entries in the woot RSS (I believe the coder was doing that), so for this example i&apos;m assuming that we&apos;re getting item 2, the first woot product (at the time of this writing)

&lt;code&gt;
&lt;cfdump var=&quot;#results.rss.channel.item[2]#&quot;&gt;
&lt;/code&gt;

From there, I got the media:thumbnail.  The &apos;:&apos; is invalid in a variable name, so you can&apos;t access it using the structure dot notation we&apos;ve been using.  I used the associative array notation:

&lt;code&gt;
&lt;cfdump var=&quot;#results.rss.channel.item[2][&quot;media:thumbnail&quot;]#&quot;&gt;
&lt;/code&gt;

From there, we can get the thumbnail location:

&lt;code&gt;
&lt;cfdump var=&quot;#results.rss.channel.item[2][&quot;media:thumbnail&quot;].xmltext#&quot;&gt;
&lt;/code&gt;

 When dealing with foreign RSS feeds, I often use this type of drill down approach to get at the data I want / need. 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 18 Apr 2006 23:56:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2006/4/18/CFUGitives-User-Group</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>CSS Training in Hartford, CT</title>
				<link>http://www.jeffryhouser.com/index.cfm/2006/3/23/CSS-Training-in-Hartford-CT</link>
				<description>
				
				Sandra Clark, is going to be giving a 4 day hands on CSS training class in Hartford Connecticut.  The dates will be May 9th to May 12th.  Here is the message from her I just saw posted to a mailing list.  

 It &lt;a href=&quot;http://www.jeffryhouser.com/index.cfm/2006/3/23/Another-Day-Another-3000&quot;&gt;doesn&apos;t&lt;/a&gt; look like I&apos;ll be able to afford it this time around, but we&apos;ll try to get her to speak at [one of] the CT User Groups.  Maybe we&apos;ll try a combined meeting.

 Her message follows: 

---

I will be conducting a Hands on 4 Day Cascading Style Sheet Class in
Hartford Connecticut May 9th- 12th.

A syllabus of the class can be found at
&lt;a href=&quot;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&quot;&gt;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&lt;/a&gt;.


I currently have 8 open spots available.  Cost of the class is $1,399 per
student.

Hope to see some of you there

Sandra Clark

==============================

http://www.shayna.com

Training in Cascading Style Sheets and Accessibility 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 23 Mar 2006 18:10:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2006/3/23/CSS-Training-in-Hartford-CT</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>Go to CFUnited for free!</title>
				<link>http://www.jeffryhouser.com/index.cfm/2006/3/22/Go-to-CFUnited-for-free</link>
				<description>
				
				That&apos;s right folks, you too can go to CFUnited at no cost.  No, you don&apos;t have to buy Micheal Smith one beer too many on the day before the conference.  But, you do have have to be from Washington.

 The Seattle User Group is sponsoring the trip.  Details are from their press release, below.  I wonder if I know &lt;a href=&quot;http://www.ryanstewart.net/&quot;&gt;anyone&lt;/a&gt; from that area who might be eligible.

 Unfortunately, it looks like they&apos;re only buying you the ticket.  Travel, lodging, and food are your own responsibility (in my experience that is often the bigger piece of the financial pie when it comes to conference going).  

FOR IMMEDIATE RELEASE


For more information contact:
Garrett Wiedmeier
206-613-3215
info@seattlecfug.com


SEATTLE COLDFUSION USER&apos;S GROUP CFUNITED 2006 REGISTRATION SCHOLARSHIP 


This &quot;scholarship&quot; shall pay for the registration fee of the CFUNITED
2006 conference in Washington, DC, for one individual. The individual
will be responsible for all other conference expenses (travel, lodging,
etc). This is not a cash award; the Seattle CFUG will pay for the
winner&apos;s CFUNITED registration on their behalf.


All people interested and currently using the ColdFusion (CFML) web
programming language in Washington state in any capacity may apply. The
winner will be selected based on a short application and reference
check, and will be at the sole discretion of the Seattle CFUG founding
members. Decision is final.


Application requirements:


1. You must live or do business in the state of Washington, and verify
this in some form.


2. A simple one page essay on why you use ColdFusion and why you need
this scholarship.


3. Demonstrate current use of CFML in *any* capacity or skill level
(project management plans, documentation, live website link, or
other...) The decision will not be based on how advanced the CFML code
is, but extra consideration will be given to projects that solve
specific problems that needed solutions.


4. Self-employed: One professional reference. Employed: Reference letter
from your supervisor indicating support of your attendance, and, beyond
unforeseen business circumstances, you will have the time to attend
CFUNITED 2006.


5. Current founding members of the Seattle CFUG are not eligible.


Submission Deadline: April 15, 2006 4 p.m. Pacific time.


Submit to: Garrett Wiedmeier, CFUG Manager, via email:
info@seattlecfug.com


The Seattle CFUG is an equal-opportunity volunteer user group community.


About the Seattle CFUG:
The Seattle ColdFusion Users Group offers speakers, programs and
professional development opportunities for webmasters, programmers,
database admins, designers or anyone with an interest in dynamic web
applications while meeting and sharing ideas with other like-minded
people in the greater Seattle area. The group meets on the first
Thursday of each month in Downtown Seattle. www.seattlecfug.com.


Garrett M. Wiedmeier
Manager of IT Services
Downtown Seattle Association
Mission: To Champion a Healthy, Vibrant Urban Core


500 Union Street, Suite 300
Seattle, WA 98101
206-623-0340
206-625-9940 fax
www.downtownseattle.com 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 22 Mar 2006 11:51:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2006/3/22/Go-to-CFUnited-for-free</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>Goodbye Tim</title>
				<link>http://www.jeffryhouser.com/index.cfm/2006/2/12/Goodbye-Tim</link>
				<description>
				
				Tim Buntel, the ColdFusion product manager has 
&lt;a href=&quot;http://www.buntel.com/blog/index.cfm?mode=entry&amp;entry=554ED003-4E22-1671-5D1CE5913972AFB8&quot;&gt;turned in his resignation&lt;/a&gt;.  

 Tim has been a part of the ColdFusion team since the Allaire days and he was always prominent at various conferences and the blogsphere.  It will be interesting to see who replaces him.  

 I hope he got a nice chunk of cash from various stock options throughout the mergers.  It will be interesting to see who steps up to fill his shoes. 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Sun, 12 Feb 2006 10:18:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2006/2/12/Goodbye-Tim</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>No New Atlanta cfObjective</title>
				<link>http://www.jeffryhouser.com/index.cfm/2006/1/12/No-New-Atlanta-cfObjective</link>
				<description>
				
				I just heard that New Atlanta will not be a sponsor at CFObjective.  I have no idea if they were interested in doing that, but the organizer used the &quot;No BlueDragon, No Microsoft&quot; in a way to entice Adobe to increase sponsorship money.  

 It apparently worked, as Adobe is paying four-times as much than was initially discussed.  

 I think the real shame is that this prevents the *BEST* speaker from last year&apos;s CFUnited from presenting.  When I say best, I&apos;m not giving an opinion, I&apos;m talking about scores from the speaker evaluations.  Charlie Arehart gained the highest score of all presenters.  

 I think I&apos;ll give my presentation in my BlueDragon MySpace T-shirt. 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>Business</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 12 Jan 2006 19:30:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2006/1/12/No-New-Atlanta-cfObjective</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>The future of User Groups at Adobe</title>
				<link>http://www.jeffryhouser.com/index.cfm/2006/1/10/The-future-of-User-Groups-at-Adobe</link>
				<description>
				
				Adobe President &amp; COO, Shantanu Narayen, talks about the future of User Groups at Adobe:  
&lt;a href=&quot;http://adobe.breezecentral.com/drupdate0106/&quot;&gt;http://adobe.breezecentral.com/drupdate0106/&lt;/a&gt; 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 10 Jan 2006 23:34:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2006/1/10/The-future-of-User-Groups-at-Adobe</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>cf.Objective()</title>
				<link>http://www.jeffryhouser.com/index.cfm/2005/12/30/cfObjective</link>
				<description>
				
				&lt;a href=&quot;http://www.cfobjective.com/conference/&quot;&gt;cf.Objective()&lt;/a&gt; is coming.  It is a conference focused on advanced ColdFusion development.

 I&apos;m a confirmed speaker.  Currently they are accepting topics from other speakers too (you have to log in first).

 It should be a nice intimate crowd (comapred to CFUnited which has grown too big) 
				</description>
				
				<category>Writing and Presenting</category>				
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Fri, 30 Dec 2005 14:50:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2005/12/30/cfObjective</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>The future of Coldfusion</title>
				<link>http://www.jeffryhouser.com/index.cfm/2005/12/8/The-future-of-Coldfusion</link>
				<description>
				
				Simon Horwith interviewed David Mendels, the new Adobe head of the Flex / CF business for the CFDJ.  Here is the article:

&lt;A href=&quot;http://cfdj.sys-con.com/read/161456.htm&quot;&gt;http://cfdj.sys-con.com/read/161456.htm&lt;/a&gt;

 I didn&apos;t see any major relevations in there.  It sounds like things are same old same old and the next version of CF will have more integration w/ Adobe products (PDF and LiveCycle).

 The skeptic in me wants to see it to believe it.  Quite frankly, given the amount of functionality in CF, I can&apos;t imagine what additions would constitute a major release.  

 There has been speculation that CF will get an influx of marketing money.  While I hope that will be the case, I&apos;m not convinced it will happen. 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 08 Dec 2005 11:01:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2005/12/8/The-future-of-Coldfusion</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>It is Official</title>
				<link>http://www.jeffryhouser.com/index.cfm/2005/12/5/It-is-Official</link>
				<description>
				
				&lt;A href=&quot;http://www.macromedia.com/&quot;&gt;Macromedia.com&lt;/a&gt; is now owned by Adobe

&lt;a href=&quot;http://www.adobe.com/aboutadobe/acquisition_complete/main.html&quot;&gt;Words from Adobe CEO Bruce Chizen&lt;/a&gt;

&lt;A href=&quot;http://www.adobe.com/aboutadobe/pressroom/pressreleases/200512/120505Bundles.html&quot;&gt;Adobe releases software bundles with MM software&lt;/a&gt; 

&lt;A href=&quot;http://www.adobe.com/products/bundles/web_bundle.html&quot;&gt;Adobe Web Bundle&lt;/a&gt; (Adobe Creative Suite and Macromedia Studio

&lt;a href=&quot;http://www.adobe.com/products/bundles/design_bundle.html&quot;&gt;Adobe Design Bundle&lt;/a&gt; (Adobe Createive Suite with Macromedia Flash) 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 05 Dec 2005 10:20:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2005/12/5/It-is-Official</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>Merger News hits the MM web site</title>
				<link>http://www.jeffryhouser.com/index.cfm/2005/12/2/Merger-News-hits-the-MM-web-site</link>
				<description>
				
				A Macromedia Press Release about the merger (tomorrow) hit the MM web site:

&lt;A href=&quot;http://www.macromedia.com/macromedia/proom/pr/2005/acquisition_clearances.html&quot;&gt;http://www.macromedia.com/macromedia/proom/pr/2005/acquisition_clearances.html&lt;/&gt; 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Fri, 02 Dec 2005 14:35:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2005/12/2/Merger-News-hits-the-MM-web-site</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>Adobe plans to move quick after the Merger</title>
				<link>http://www.jeffryhouser.com/index.cfm/2005/11/16/Adobe-plans-to-move-quick-after-the-Merger</link>
				<description>
				
				&lt;a href=&quot;http://www.nasdaq.com/aspxcontent/NewsStory.aspx?cpath=20051116\ACQDJON200511161443DOWJONESDJONLINE000928.htm&amp;symbol=ADBE%60&amp;symbol=MACR%60&amp;symbol=MSFT%60&amp;symbol=IPIX%60&amp;symbol=VSTH&amp;selected=ADBE&amp;selecteddisplaysymbol=ADBE&amp;coname=Adobe%20Systems%20Incorporated&amp;logopath=%2flogos%2fADBE.GIF&amp;market=NASDAQ-NM&amp;pageName=Company%20News&quot;&gt;
Click Here, the URL is long&lt;/a&gt; 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>Business</category>				
				
				<pubDate>Wed, 16 Nov 2005 23:00:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2005/11/16/Adobe-plans-to-move-quick-after-the-Merger</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>Microsoft&apos;s Letters</title>
				<link>http://www.jeffryhouser.com/index.cfm/2005/11/10/Microsofts-Letters</link>
				<description>
				
				There has been a lot of talk lately about Microsoft&apos;s &quot;Software as a Service&quot; move.  These are the original memos from Bill Gates and Ray Ozzie (now the MS CTO). 

&lt;a href=&quot;http://www.hypercamp.org/2005/11/09#a43&quot;&gt;Read them here&lt;/a&gt; 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<pubDate>Thu, 10 Nov 2005 16:56:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2005/11/10/Microsofts-Letters</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>CFUNITED 2006 Call for Speakers</title>
				<link>http://www.jeffryhouser.com/index.cfm/2005/11/3/CFUNITED-2006-Call-for-Speakers</link>
				<description>
				
				&lt;a href=&quot;http://www.cfunited.com/speakersurvey.cfm?EventID=134&quot;&gt;The CFUNITED 2006 Call for Speakers&lt;/a&gt; is out.  Do you want to present?  Now is your chance.  

 It looks like there will be four days this year instead of 3 *AND* if I&apos;m capable of reading a Calendar at this late hour, some of them are on the weekend, which is good for a consultant such as myself (who hates to take time off during the week).

 I submited proposals for 2 presentations.  

One was on CF Code Generation.  I wasn&apos;t sure whether to put that in the &quot;advanced&quot; or &quot;CFML PLatform.&quot;  I did the latter.  The other was on &quot;Encapsulation in ColdFusion.&quot; which would be in the Bootcamp vein.  I believe I&apos;ll be giving a predecessor the &quot;encapsulation in CF&quot; presentation at the CFUGitives meeting in January. 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 03 Nov 2005 01:53:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2005/11/3/CFUNITED-2006-Call-for-Speakers</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>ColdFusion Podcasts</title>
				<link>http://www.jeffryhouser.com/index.cfm/2005/11/1/ColdFusion-Podcasts</link>
				<description>
				
				I just became aware of 2 sites that are podcasting on CF-related issues.  The first is Halm Helms and Jeff Peters site:

&lt;a href=&quot;http://www.helmsandpeters.com/&quot;&gt;http://www.helmsandpeters.com/&lt;/a&gt;.  These two are behind Fusebox and Mach II and have a natural talent at doing writing about development-related topics and making them sound interesting.  Based on the Framework Shrink podcast I just listened to, it appears that they are bringing that talent into the podcasting world.  ( They need to bump up that compression to even out the disparity between voices, though )


 The other site is at &lt;a href=&quot;http://www.coldfusionpodcast.com/&quot;&gt;http://www.coldfusionpodcast.com/&lt;/a&gt;
and I haven&apos;t had a chance to listen to anything from them yet. 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 01 Nov 2005 01:40:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2005/11/1/ColdFusion-Podcasts</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			
			<item>
				<title>Houston MUG Holding Web Design Contest</title>
				<link>http://www.jeffryhouser.com/index.cfm/2005/10/31/Houston-MUG-Holding-Web-Design-Contest</link>
				<description>
				
				The &lt;a href=&quot;http://hmmfug.interlake.net/&quot;&gt;Houston Macromedia User Group&lt;/a&gt; is holding a design contest.  Anyone (who is a member of any Macromedia user group) can enter,  and the top prize takes a copy of Macromedia Studio 8.  There are other prizes too. 
				</description>
				
				<category>Professional</category>				
				
				<category>User Group News</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 31 Oct 2005 21:53:00 -0400</pubDate>
				<guid>http://www.jeffryhouser.com/index.cfm/2005/10/31/Houston-MUG-Holding-Web-Design-Contest</guid>
				<author>info@theflexshow.com (Jeffry Houser and John Wilker)</author>
				
				
			</item>
			</channel></rss>