<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>Trunkful.com &lt;cf_gems&gt; - Random Tools</title>
			<link>http://www.trunkful.com/index.cfm</link>
			<description>A ColdFusion blog with some twists. The Twists are BlueDragon and PostgreSQL DB server.  I also specialize in JVM tuning and monitoring.</description>
			<language>en-us</language>
			<pubDate>Sun, 05 Sep 2010 17:55:02 -0500</pubDate>
			<lastBuildDate>Wed, 04 Aug 2010 16:30:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>wilgeno@trunkful.com</managingEditor>
			<webMaster>wilgeno@trunkful.com</webMaster>
			
			
			
			
			
			<item>
				<title>Serving File Downloads with ColdFusion</title>
				<link>http://www.trunkful.com/index.cfm/2010/8/4/Serving-File-Downloads-with-ColdFusion</link>
				<description>
				
				I frequently get asked about providing links to files to be downloaded from ColdFusion websites. Many people will just create a direct link to the file that downloaded such as &quot;myfile.pdf&quot;, but by doing it this way you have no control over how the end user&apos;s browser is going to access that file. Controlling how the end-users browser accesses the file is very simple with ColdFusion. This can be done in ten lines of code or less. And the benefit of doing it this way is you also mask the location on your file server where your downloaded files are stored. Am I doing it this way you could even place these download files outside of the web root for even greater security.

There isn&apos;t much to it just three tags; cfSet, cfHeader and cfContent. Create a new file and name it something like filedownload.cfm and copy the code below into that file and save it. The only thing you should have to do is modify the line that has &quot;[ PATH TO YOUR FILES FOR DOWNLOAD ]&quot; by setting the correct folder path. You should be able to test this by modifying the code that would normally have a link to the file and change the link to call this file and pass is the filename of the file to be downloaded.  The link would should look like something like this: filedownload.cfm?filename=myfile.pdf.

&lt;code&gt;
&lt;cfset folder = &quot;[ PATH TO YOUR FILES FOR DOWNLOAD ]&quot;&gt;
&lt;cfif StructKeyExists(url,&quot;filename&quot;) &amp;&amp; fileExists(folder &amp; filename)&gt;
	&lt;cfset filename = &quot;#url.filename#&quot;&gt;
	&lt;cfset fileInfo = GetFileInfo(folder &amp; filename)&gt;
	&lt;cfset mimeType = getPageContext().getServletContext().getMimeType(folder &amp; filename)&gt;
	&lt;cfheader name=&quot;Content-Disposition&quot; value=&quot;Attachment; filename=#filename#&quot;&gt;
	&lt;cfheader name=&quot;Expires&quot; value=&quot;#Now()#&quot;&gt;
	&lt;cfheader name=&quot;Content-Length&quot; value=&quot;#fileInfo.size#&quot;&gt;
	&lt;cfcontent type=&quot;#mimeType#&quot; file=&quot;#folder##filename#&quot; deletefile=&quot;No&quot;&gt;
&lt;/cfif&gt;
&lt;/code&gt;

&lt;b&gt;So what am I doing here?&lt;/b&gt;
&lt;ol&gt;&lt;li&gt;Checking to make sure a filename was passed and that it exists!&lt;/li&gt;&lt;li&gt;
Getting the file size using getFileInfo.
&lt;/li&gt;&lt;li&gt;Getting the mime type using a little CF mixed with Java.
&lt;/li&gt;&lt;li&gt;Setting the header Content-Disposition. This is critical. By specifying the key word Attachment you will be forcing all browsers to download the file using the default download tool. If you specify &apos;Inline&apos; you can force the browser to try to display the file inside the browser window. Since Internet Explorer can open many MS Office documents in the browser window you need to specify which you want to happen.
&lt;/li&gt;&lt;li&gt;Set the header Expire to now() so the browser will not cache the file.&lt;/li&gt;&lt;li&gt;Specify the length of the content (ie file size) the the browsers download manager can correctly estimate the download time and amount remaining. A nice thing to do for your users when having them download large files.&lt;/li&gt;&lt;li&gt;Delivering the file to the browser using cfContent. This also specifies the file mime type and file name so the browser download manager knows how to handle the file and the name it should use to save the file.&lt;/li&gt;&lt;/ol&gt;

And that is how you should serve up a file to be downloaded using ColdFusion. It&apos;s quick and easy.

&lt;p&gt;&lt;textblock label=&quot;RandomToolsCF9&quot;&gt;&lt;/textblock&gt;&lt;/p&gt;
				
				</description>
						
				
				<category>Random Tools</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 04 Aug 2010 16:30:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2010/8/4/Serving-File-Downloads-with-ColdFusion</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Migrating to ColdFusion Builder from CFEclipse</title>
				<link>http://www.trunkful.com/index.cfm/2010/3/23/Migrating-to-ColdFusion-Builder-from-CFEclipse</link>
				<description>
				
				Many people have been using CFEclipse for several years now and are now migrating to ColdFusion Builder.  Since both are Eclipse based products this is pretty simple, but there are a few things that will not migrate without manual intervention.

First start with installing ColdFusion Builder.  (&lt;a href=&quot;http://www.trunkful.com/index.cfm/2009/7/14/Getting-Started-with-ColdFusion-Builder&quot; target=&quot;_blank&quot;&gt;See this&lt;/a&gt;.)

Next lets import your CFEclipse Projects.  You can do this and it is easy since it is really an Eclipse feature not specific to any add-ons.  Right click in the Navigator view and choose &quot;Import&quot;.  The windows that opens give you many options for what to import. You are going to click and expand the &quot;General&quot;  folder and then choose &quot;Existing Projects into a Workspace&quot; and click the Next Button.

If you are using an SVN and you plan to use an Eclipse SVN plug-in in ColdFusion Builder install that plug in before importing your projects, the import process will automatically reconnect the imported projects to your SVN(s). You will also want to configure the SVN plug-in to access all repositories before you run the imports.
				 [More]
				</description>
						
				
				<category>Random Tools</category>				
				
				<category>CF Builder</category>				
				
				<pubDate>Tue, 23 Mar 2010 14:01:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2010/3/23/Migrating-to-ColdFusion-Builder-from-CFEclipse</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Homebrewed ColdFusion Monitor Presentation Files</title>
				<link>http://www.trunkful.com/index.cfm/2009/12/10/Homebrewed-ColdFusion-Monitor-Presentation-Files</link>
				<description>
				
				&lt;p&gt;Recently I presented Homebrewed ColdFusion Monitoring to the Twin Cities CFUG and to the Online ColdFusion Meetup. &amp;nbsp;Both presentations went well and I&apos;ve been asked to post my slides and example code.&amp;nbsp;&lt;/p&gt;
&lt;div&gt;Attached to this post is a zip file that contains a PDF version of my slides and the example code plus the CFC I&apos;m using to make a full featured monitoring application. &amp;nbsp;Please note that the code is for CF9 Enterprise. &amp;nbsp;There may be some things that won&apos;t work in earlier versions of CF or the standard edition of CF.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;The recording for my live presentation is at &lt;a href=&quot;http://experts.na3.acrobat.com/p34004904/&quot; target=&quot;_blank&quot;&gt;http://experts.na3.acrobat.com/p34004904/ &lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Enjoy and watch RIAForge. &amp;nbsp;I am planning to release this application to the ColdFusion Community for collaborative development.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Thank you to all that attended the presentations and for your wonderful feedback.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Wil&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;p&gt;*UPDATE* - I just uploaded a new zip file with corrected code that actually works this time.&lt;/p&gt;
&lt;textblock label=&quot;RandomTools&quot;&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>JVM Tuning</category>				
				
				<category>Random Tools</category>				
				
				<category>this.Blog</category>				
				
				<pubDate>Thu, 10 Dec 2009 17:01:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2009/12/10/Homebrewed-ColdFusion-Monitor-Presentation-Files</guid>
				
				<enclosure url="http://www.trunkful.com/enclosures/HomebrewedColdFusionMonitoring.zip" length="7257998" type="application/zip"/>
				
			</item>
			
		 	
			
			
			<item>
				<title>RegEx IP Address Validation</title>
				<link>http://www.trunkful.com/index.cfm/2009/10/28/RegEx-IP-Address-Validation</link>
				<description>
				
				&lt;p&gt;RegEx IP Address Validation&lt;/p&gt;
&lt;p&gt;I recently had a project at work where I had to add in some strict IP Address validation and restrictions.  We are being required to prevent end users from entering certain IP addresses or ranges.  This is a perfect task for Regular Expressions.  I am not an expert in RegEx, but I can get out basic RegEx expressions.  The first thing I did was search around the net to see if there were expressions already done for IP addresses.  There are, but not entirely what I needed.  The best I could find were expressions to validate the IP address to ensure it is valid.  I didn&apos;t find anything to test for certain ranges of IP Addresses.  Since I can hack at RegEx a bit I took the expression I found to validate the IP address and made modifications to do the tests I needed.  These are the Regular Expressions I hacked up to do the validation and restrictions.&lt;/p&gt;
&lt;p&gt;We were required to block these IP addresses or ranges.&lt;/p&gt;
&lt;code&gt;
0.0.0.0
127.0.0.1
255.255.255.255
10.0.0.0 - 10.255.255.255
172.16.0.0 - 172.31.255.255
192.168.0.0 - 192.168.255.255
&lt;/code&gt;
				 [More]
				</description>
						
				
				<category>Random Tools</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 28 Oct 2009 14:38:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2009/10/28/RegEx-IP-Address-Validation</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Recursion Fun</title>
				<link>http://www.trunkful.com/index.cfm/2009/2/3/Recursion-Fun</link>
				<description>
				
				&lt;p&gt;I just came across a fun little &lt;a href=&quot;http://derekperez.com/blog/2009/02/nerd-challenge-fibonacci-fun/&quot; target=&quot;_blank&quot;&gt;blog post&lt;/a&gt; about benchmarking the new version of Ruby by doing a &lt;a href=&quot;http://en.wikipedia.org/wiki/Fibonacci_number&quot; target=&quot;_blank&quot;&gt;Fibonacci&lt;/a&gt; sequence. &amp;nbsp;I hadn&apos;t thought about playing with Fibonacci sequences in a long time and since several others did it already I didn&apos;t really try.&amp;nbsp; I just ran one of the CF code examples someone posted on my MacBook Pro.&amp;nbsp; I blinked and missed the execution of it.  Meh, fast enough.&amp;nbsp;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Like I said I hadn&apos;t thought about Fibonacci or other such algorithms in a long time.&amp;nbsp; At least not much since college when we all learned such things along with various sorting algorithms (who can forget the bubble sort?).&amp;nbsp; Why did we learn those when today we just write something like sort(blah) and never think about how it gets done.&amp;nbsp; I remember working on analyzing sorting algorithms to see which was the fastest and most memory efficient.&amp;nbsp; Memory efficient?&amp;nbsp; That is a novel concept these days.&lt;br /&gt;
&lt;br /&gt;
However, a while back I did a recursion experiment in ColdFusion by doing a &lt;a href=&quot;http://en.wikipedia.org/wiki/Factorial&quot; target=&quot;_blank&quot;&gt;Factorial&lt;/a&gt; function which in college is one of the classic programming examples used to teach recursion.&lt;br /&gt;
&lt;br /&gt;
I&apos;m not even sure where you would use recursion these days, except in programming classes.&amp;nbsp; I have not run across the need for it in ages, but for some reason I was compelled to try this little experiment.&lt;br /&gt;
&lt;br /&gt;
Is there really a need for recursion these days, or are we overlooking a power tool?&lt;/p&gt;
&lt;code&gt;
&lt;cffunction name=&quot;factorial&quot; access=&quot;public&quot; returntype=&quot;numeric&quot; output=&quot;yes&quot;&gt;
	&lt;cfargument name=&quot;end_value&quot; required=&quot;Yes&quot; type=&quot;numeric&quot;&gt;
	&lt;cfif end_value lte 1&gt;
		&lt;cfreturn 1&gt;
	&lt;cfelse&gt;
		Calling myself with #arguments.end_value-1#&lt;br&gt;
		&lt;cfreturn end_value * factorial(arguments.end_value-1)&gt;
	&lt;/cfif&gt;
&lt;/cffunction&gt;
&lt;cfoutput&gt;#factorial(100)#&lt;/cfoutput&gt;

&lt;/code&gt;
				
				</description>
						
				
				<category>Random Tools</category>				
				
				<pubDate>Tue, 03 Feb 2009 22:39:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2009/2/3/Recursion-Fun</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>New blog skin</title>
				<link>http://www.trunkful.com/index.cfm/2009/1/28/New-blog-skin</link>
				<description>
				
				&lt;p&gt;I got tired of having an ugly blog and I am absolutely NOT a designer.&amp;nbsp; So I dug around looking for free blog skins and finally found the one I liked best.&amp;nbsp; Clean, simple and easy to implement with blogCFC.&amp;nbsp; It&apos;s called Nautica 2.2 Liquid [&lt;a target=&quot;_blank&quot; href=&quot;http://www.oswd.org/design/preview/id/2828&quot;&gt;here&lt;/a&gt;].&amp;nbsp; The photo I used in the header is one my wife shot of the new I-35W bridge that spans the Mississippi river in Minneapolis, MN and replaces the one that collapsed (almost on me) back in 2007.&amp;nbsp; &lt;strike&gt;I&apos;ll have to have her get me high-res version of that photo so I can rid of the grain.&lt;/strike&gt;&amp;nbsp; You can see the full size bridge photos &lt;a target=&quot;_blank&quot; href=&quot;http://elisabethviola.blogspot.com/2008/12/35w-bridge-at-night.html&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I still have design elements I want to try, but I&apos;ll have to do them another day.&amp;nbsp; It&apos;s 3:15am and my alarm goes off at 6am. Yuk.&lt;/p&gt;
&lt;p&gt;Well, at least I won&apos;t have the ugliest blog on the net any more.&amp;nbsp; Now I can get back to ColdFusion coding and not be embarrassed by my ugly blog.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Update: Note to self, never write a blog post at 3 in the morning.&amp;nbsp; Spelling errors!&lt;/p&gt;
&lt;p&gt;Update: 3 Days later I looked at my blog with IE.&amp;nbsp; I HATE IE!&amp;nbsp; Back to the CSS to compensate for the weakest link.&lt;/p&gt;
&lt;p&gt;Update: I finally have it &apos;good enough&apos; in IE.&amp;nbsp;&lt;/p&gt;
				
				</description>
						
				
				<category>Random Tools</category>				
				
				<category>this.Blog</category>				
				
				<pubDate>Wed, 28 Jan 2009 03:06:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2009/1/28/New-blog-skin</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Scripting ColdFusion Restarts on Linux</title>
				<link>http://www.trunkful.com/index.cfm/2009/1/18/Scripting-Coldfusion-Restarts-on-Linux</link>
				<description>
				
				&lt;p&gt;A long time ago I wrote a bash shell script to monitor ColdFusion 7 and issue a restart if the CF server hung itself or was about to run out of memory.&amp;nbsp; I posted info on this script at &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-linux/thread.cfm/threadid:1072&quot; target=&quot;_blank&quot;&gt;House of Fusion&lt;/a&gt; back then. Today I am still getting requests for this script so I am finally posting the script files to my blog (which I didn&apos;t have back then). &amp;nbsp;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Repost from HOF:&lt;/p&gt;
&lt;p&gt;My bash script does two things.&amp;nbsp;&amp;nbsp;It checks a  specified URL for a certain string to see if CF is still responsive and  it also calls a cf script which reports back an integer that is the  amount of free JVM memory left.&lt;/p&gt;
&lt;p&gt;If a hang situation is detected the script will pause for a specified  amount of time and
				 [More]
				</description>
						
				
				<category>JVM Tuning</category>				
				
				<category>Random Tools</category>				
				
				<pubDate>Sun, 18 Jan 2009 22:54:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2009/1/18/Scripting-Coldfusion-Restarts-on-Linux</guid>
				
				<enclosure url="http://www.trunkful.com/enclosures/cfmonitor.sh.zip" length="2265" type="application/zip"/>
				
			</item>
			
		 	
			
			
			<item>
				<title>VMWare Fusion, ColdFusion, Open BlueDragon</title>
				<link>http://www.trunkful.com/index.cfm/2009/1/15/VMWare-Fusion-Coldfusion-Open-BlueDragon</link>
				<description>
				
				&lt;p&gt;I&apos;m very new to the world of running Virtual Servers.&amp;nbsp; It&apos;s a strange concept to me.&amp;nbsp; Even though I manage many of my own physical servers I&apos;m finding it a little hard to grasp this whole concept.&amp;nbsp; Given that, I&apos;ve manged to do two different installs today. Oh, I should mention I&apos;m doing this on my Mac Book Pro with a 2.2Ghz Core Dual and 4Gb of ram.&amp;nbsp; So far I am finding Fusion, VMWare&apos;s only Mac offering, to be easy enough to use.&amp;nbsp; I did manage to install Ubuntu from the ISO, however the mouse behavior was real odd and I never did get the VMTools installed right.&amp;nbsp; I have more to learn.&lt;/p&gt;
&lt;p&gt;I did find a neat website, &lt;a href=&quot;http://elasticserver.com&quot; target=&quot;_blank&quot;&gt;elasticserver.com&lt;/a&gt;. Elastic Server lets you use a web interface to build your VM appliance stack.&amp;nbsp; I was able to pick the software I wanted on my &apos;server&apos;.&amp;nbsp; I chose Open Blue Dragon, JBOSS,
				 [More]
				</description>
						
				
				<category>BlueDragon</category>				
				
				<category>ColdFusion</category>				
				
				<category>Random Tools</category>				
				
				<pubDate>Thu, 15 Jan 2009 23:36:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2009/1/15/VMWare-Fusion-Coldfusion-Open-BlueDragon</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>See all applications and their sessions</title>
				<link>http://www.trunkful.com/index.cfm/2008/11/25/See-all-applications-and-their-sessions</link>
				<description>
				
				&lt;p&gt;Someone at House of Fusion was asking how to see the sizes of sessions in CF7.&amp;nbsp; While CF8 has a built in Monitoring API but it can have dangerous overhead load on your application, CF7 does not even have that.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I had run across the need to see all the applications running on our servers and then all the sessions of each application so I wrote a quick little script that uses the java objects &amp;quot;&lt;span style=&quot;color: rgb(128, 0, 0);&quot;&gt;coldfusion.runtime.ApplicationScopeTracker&lt;/span&gt;&amp;quot; and &amp;quot;&lt;span style=&quot;color: rgb(128, 0, 0);&quot;&gt;coldfusion.runtime.SessionTracker&lt;/span&gt;&amp;quot; to get all the data I was trying to see.&lt;/p&gt;
&lt;p&gt;So here is that little&amp;nbsp; &amp;quot;Random Tool&amp;quot;.&amp;nbsp; (Click on the Download Icon below.)&lt;/p&gt;
&lt;p&gt;&lt;textblock label=&quot;RandomTools&quot;&gt;&lt;/textblock&gt;&lt;/p&gt;
				
				</description>
						
				
				<category>Random Tools</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Tue, 25 Nov 2008 16:37:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2008/11/25/See-all-applications-and-their-sessions</guid>
				
				<enclosure url="http://www.trunkful.com/enclosures/appdump.rar" length="1134" type="application/octet-stream"/>
				
			</item>
			
		 	
			
			
			<item>
				<title>Coldfish test</title>
				<link>http://www.trunkful.com/index.cfm/2008/5/28/Coldfish-test</link>
				<description>
				
				This is a test of Coldfish in BlogCFC on Bludragon JX 7.0x.

--UPDATE-- I never did get Coldfish working with BlueDragon. However the code below may be useful to someone. It might even be a hidden cf_gem.


&lt;code&gt;
&lt;cffunction name=&quot;stripTags&quot; access=&quot;public&quot; output=&quot;false&quot; returntype=&quot;string&quot; hint=&quot;Remove all HTML tags from string&quot;&gt;
	&lt;cfargument name=&quot;string&quot; type=&quot;any&quot; required=&quot;true&quot;  hint=&quot;String to clean&quot;/&gt;
	&lt;cfset var pattern = &quot;&lt;[^&gt;]*&gt;&quot;&gt;
	&lt;cfreturn REReplaceNoCase(arguments.string, pattern, &quot;&quot; , &quot;ALL&quot;)&gt;
&lt;/cffunction&gt;
&lt;/code&gt;

&lt;code&gt;
&lt;!--- ##################################################################
# PCASE                                                                #
# receive a string of data in any case and return the string           #
# in proper case format                                                #
# return data string                                                   #
######################################################################## ---&gt;
&lt;cffunction name=&quot;PCase&quot; access=&quot;public&quot; output=&quot;false&quot; returntype=&quot;String&quot; hint=&quot;receive a string of data in any case and return the string in proper case format&quot;&gt;
	&lt;cfargument name=&quot;string&quot; default=&quot;&quot; required=&quot;true&quot; hint=&quot;string to alter&quot;&gt;
	&lt;cfscript&gt;
		var listlen = listlen(arguments.string,&quot; &quot;);
		var return_string = &apos;&apos;;
		var pos = 0;
		for (pos=1;pos lte listlen;pos=pos+1) {
			if (len(ListGetAt(arguments.string,pos,&quot; &quot;)) gt &quot;1&quot;) {
				return_string = return_string &amp; Ucase(left(ListGetAt(arguments.string,pos,&quot; &quot;), 1)) &amp; LCase(right(ListGetAt(arguments.string,pos,&quot; &quot;), len(ListGetAt(arguments.string,pos,&quot; &quot;))-1)) &amp; &quot; &quot;;
			} else {
				return_string = return_string &amp; Ucase(left(ListGetAt(arguments.string,pos,&quot; &quot;), 1)) &amp; &quot; &quot;;
			}
		}
		return Trim(return_string);
	&lt;/cfscript&gt;	
&lt;/cffunction&gt;
&lt;/code&gt;
				
				</description>
						
				
				<category>BlueDragon</category>				
				
				<category>ColdFusion</category>				
				
				<category>Random Tools</category>				
				
				<pubDate>Wed, 28 May 2008 14:08:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2008/5/28/Coldfish-test</guid>
				
			</item>
			
		 	
			</channel></rss>