<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Josh Highland &#187; coldfusion</title>
	<atom:link href="http://joshhighland.com/blog/category/coldfusion/feed/" rel="self" type="application/rss+xml" />
	<link>http://joshhighland.com/blog</link>
	<description>the living internet</description>
	<lastBuildDate>Fri, 20 Jan 2012 18:48:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Letting the database to the heavy lifting: Capitalization via SQL</title>
		<link>http://joshhighland.com/blog/2011/02/12/letting-the-database-to-the-heavy-lifting-capitalization-via-sql/</link>
		<comments>http://joshhighland.com/blog/2011/02/12/letting-the-database-to-the-heavy-lifting-capitalization-via-sql/#comments</comments>
		<pubDate>Sun, 13 Feb 2011 07:33:04 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Capitalization]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[ucfirst]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=14626</guid>
		<description><![CDATA[Years ago I had the pleasure of meeting Ben Forta and listen to his thoughts on web development. One thing that stuck with me was his statement that: &#8220;Dynamic programming languages like PHP and Coldfusion are great, but developers need to leverage the database more. Allow the database to do it&#8217;s job, the heavy lifting&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignleft size-full wp-image-14627" title="Letting the database to the heavy lifting: Capitalization via SQL " src="http://joshhighland.com.s3.amazonaws.com/blog/wp-content/uploads/2011/02/databaseStrength.jpg" alt="databaseStrength Letting the database to the heavy lifting: Capitalization via SQL " width="332" height="318" />Years ago I had the pleasure of meeting <a href="http://en.wikipedia.org/wiki/Ben_Forta">Ben Forta</a> and listen to his  thoughts on web development. One thing that stuck with me was his  statement that:</p>
<blockquote><p><em>&#8220;Dynamic programming languages like PHP and Coldfusion  are great, but developers need to leverage the database more. Allow the  database to do it&#8217;s job, the heavy lifting&#8221;</em></p></blockquote>
<p>With that being said, I was recently working with a database that  contained users first names. The data was not snantized at entry, and  contained a mix of lower cased (ex. josh) and upper cased (ex. Josh)  first characters in the firstname column. I needed to always present the  users first name in a capitalized format.</p>
<p>The first solution that most developers would reach for is  dynamically parsing the users first name, then upper-casing the first character. This works, but in my opinion isn&#8217;t the most elegant solution.</p>
<p>With a simple SQL statement, like the one below, we can return the users first name already in a capitalized state.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">&#40;</span><span style="color: #993333; font-weight: bold;">UPPER</span><span style="color: #66cc66;">&#40;</span><span style="color: #993333; font-weight: bold;">LEFT</span><span style="color: #66cc66;">&#40;</span>firstname<span style="color: #66cc66;">,</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">+</span><span style="color: #993333; font-weight: bold;">SUBSTRING</span><span style="color: #66cc66;">&#40;</span>firstname<span style="color: #66cc66;">,</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">,</span>LEN<span style="color: #66cc66;">&#40;</span>firstname<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> firstname 
<span style="color: #993333; font-weight: bold;">FROM</span> users</pre></div></div>

<div>It&#8217;s quick to implement, its easy to work with, and it&#8217;s also very fast on the performance scale.</div>
<div></div>
<div>Yes, I understand that there are cool convenience functions in like <a href="http://php.net/manual/en/function.ucfirst.php">ucfirst()</a> in PHP, but I&#8217;m a lazy programmer and I don&#8217;t want to have to remember  to use <a href="http://php.net/manual/en/function.ucfirst.php">ucfirst()</a> every time I&#8217;m dealing with the users name. I&#8217;d rather get  the information in the correct format the first time, then remembering  to groom it every time before I use it. Set it and forget it.</div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2011/02/12/letting-the-database-to-the-heavy-lifting-capitalization-via-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detecting Character Encoding In Coldfusion</title>
		<link>http://joshhighland.com/blog/2011/02/03/detecting-character-encoding-in-coldfusion/</link>
		<comments>http://joshhighland.com/blog/2011/02/03/detecting-character-encoding-in-coldfusion/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 08:34:46 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=14615</guid>
		<description><![CDATA[Most of the time I only work with UTF-8 or UTF-16 character encodings. With that said, recently I was working on an old coldfusion project. Do to database restrictions, required all inputs from the user into the application to be Latin-1 (ISO-8859-1) character encoded. Coldfusion does not have a good way of checking the character [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignleft size-full wp-image-14616" title="Detecting Character Encoding In Coldfusion " src="http://joshhighland.com.s3.amazonaws.com/blog/wp-content/uploads/2011/02/cf-and-java.jpg" alt="cf and java Detecting Character Encoding In Coldfusion " width="300" height="162" />Most of the time I only work with <a href="http://en.wikipedia.org/wiki/Utf-8">UTF-8</a> or <a href="http://en.wikipedia.org/wiki/UTF-16/UCS-2">UTF-16</a> character encodings.  With that said, recently I was working on an old coldfusion project. Do  to database restrictions, required all inputs from the user into the  application to be <a href="http://en.wikipedia.org/wiki/Latin-1">Latin-1 (ISO-8859-1)</a> character encoded.</p>
<p>Coldfusion does not have a good way of checking the character encoding of a string, so I had to pull out some of my Java skillz.</p>
<p>Dropping into Java from ColdFusion is a lot easier then it sounds. Check it out</p>

<div class="wp_syntax"><div class="code"><pre class="cfm" style="font-family:monospace;"><span style="color: #333333;"><span style="color: #0000FF;">&lt;</span><span style="color: #990000; font-weight: bold;">cfscript</span><span style="color: #0000FF;">&gt;</span></span>   
   //use this to test character encoding. We only want Latin-1
    encoder = createObject(&quot;java&quot;, &quot;java.nio.charset.Charset&quot;).forName(&quot;ISO-8859-1&quot;).newEncoder();
&nbsp;
    if(encoder.canEncode(testVar))
    {
        //its Latin-1
    }
    else
    {
        /NOT Latin-1
    }
<span style="color: #333333;"><span style="color: #0000FF;">&lt;/</span><span style="color: #990000; font-weight: bold;">cfscript</span><span style="color: #0000FF;">&gt;</span></span></pre></div></div>

<p>The Java layer of Coldfusion is very powerful and under utilized by many developers.</p>
<p>If you want to see some true ColdFusion magic, check out the ColdBox Framework, <a href="http://coldboxframework.com/" target="_blank">http://ColdBoxFramework.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2011/02/03/detecting-character-encoding-in-coldfusion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ColdFusion powered iPhone Applications</title>
		<link>http://joshhighland.com/blog/2010/08/04/coldfusion-powered-iphone-applications/</link>
		<comments>http://joshhighland.com/blog/2010/08/04/coldfusion-powered-iphone-applications/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 19:07:20 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[iPhone app dev]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[cfunited]]></category>
		<category><![CDATA[coldbox]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=5131</guid>
		<description><![CDATA[Last month I had the honor of being a presenter at CFUnited 2010. Luis Majano and I gave a presentation on creating “ColdFusion Powered iPhone Applications”. Specifically, coldfusion apps running on the ColdBox Framework The volume is low, so you need to crank it up. You can download our demo source code and slides here]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://joshhighland.com.s3.amazonaws.com/blog/wp-content/uploads/2010/08/iphoneColdbox.jpg"><img class="size-full wp-image-5135 alignleft" title="ColdFusion powered iPhone Applications" src="http://joshhighland.com.s3.amazonaws.com/blog/wp-content/uploads/2010/08/iphoneColdbox.jpg" alt="iphoneColdbox ColdFusion powered iPhone Applications" width="172" height="269" /></a>Last month I had the honor of <a href="http://joshhighland.com/blog/2010/07/20/cfunited-2010-here-i-come/">being a presenter at CFUnited 2010</a>. <a href="http://www.luismajano.com/"><br />
Luis Majano</a> and I gave a presentation on creating “ColdFusion Powered iPhone Applications”. Specifically, coldfusion apps running on the <a href="http://www.coldboxframework.com">ColdBox Framework</a></p>
<p>The volume is low, so you need to crank it up. <a href="http://wiki.coldbox.org/wiki/MediaPresentations.cfm#ColdFusion_Powered_iPhone_Applications_at_CFUnited_2010_%28July_29.2C_2010%29">You can download our demo source code and slides here</a><br />
<br/><br/><br/><br/><br/><br/><br />
<p><a href="http://joshhighland.com/blog/2010/08/04/coldfusion-powered-iphone-applications/"><em>Click here to view the embedded video.</em></a></p><br />
<br/><br/><br/><br/><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2010/08/04/coldfusion-powered-iphone-applications/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CFUnited 2010 here I come!</title>
		<link>http://joshhighland.com/blog/2010/07/20/cfunited-2010-here-i-come/</link>
		<comments>http://joshhighland.com/blog/2010/07/20/cfunited-2010-here-i-come/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 05:00:36 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[iPhone app dev]]></category>
		<category><![CDATA[cfunited]]></category>
		<category><![CDATA[coldbox]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[luis majano]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=1273</guid>
		<description><![CDATA[I will be speaking at this years CFUnited conference in Lansdowne Virgina, at the Lansdowne Resort CFUnited is an annual conference based around the Coldfusion, Flex, and AIR languages and platforms. This year I will be co-presenting with Luis Majano on &#8220;ColdFusion Powered iPhone Applications&#8221; The session will cover how to develop and power iPhone [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignnone size-full wp-image-1274" title="CFUnited 2010 here I come!" src="http://joshhighland.com.s3.amazonaws.com/blog/wp-content/uploads/2010/07/cfunited2010.gif" alt="cfunited2010 CFUnited 2010 here I come!" width="525" height="165" /></p>
<p>I will be speaking at this years <a href="http://cfunited.com/2010/speakers/1066-josh-giese" rel="nofollow">CFUnited</a> conference in Lansdowne Virgina, at the <a href="http://www.lansdowneresort.com">Lansdowne Resort </a></p>
<p>CFUnited is an annual conference based around the Coldfusion, Flex, and AIR languages and platforms.</p>
<p>This year I will be co-presenting with <a href="http://www.luismajano.com">Luis Majano</a> on &#8220;<a href="http://cfunited.com/2010/topics/430-coldfusion-powered-iphone-applications" rel="nofollow">ColdFusion Powered iPhone Applications</a>&#8221;</p>
<p>The session will cover how to develop and power iPhone applications via ColdFusion REST Services. I will cover all the development basics, intricacies, best practices, etc of iPhone development. The focus will be on how to make an iPhone application connect and consume ColdBox REST services.</p>
<p>The ColdFusion portion of the session will be led by Luis Majano, Creator of the <a href="http://coldboxframework.com">Coldbox Framework</a>.</p>
<p>I&#8217;m really looking forward to this great experience. I will be posting the slides and sample code here, after the presentation.</p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2010/07/20/cfunited-2010-here-i-come/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSON + Coldfusion</title>
		<link>http://joshhighland.com/blog/2008/02/11/json-coldfusion/</link>
		<comments>http://joshhighland.com/blog/2008/02/11/json-coldfusion/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 17:54:51 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/2008/02/11/json-coldfusion/</guid>
		<description><![CDATA[Bill Garoutte, just made a great blog post about using JSON with Coldfusion, as a faster and more light weight alternative to using WDDX to serialize data. If you use Coldfusion at all, I highly suggest you read it, and download his code sample. http://garoutte.com/?p=21]]></description>
			<content:encoded><![CDATA[<p></p><p><img src='http://joshhighland.com.s3.amazonaws.com/blog/wp-content/uploads/2008/02/coldfusion_logo.jpg' title="JSON + Coldfusion" alt="coldfusion logo JSON + Coldfusion" /></p>
<p><a href="http://garoutte.com/">Bill Garoutte</a>, just made a great blog post about using JSON with Coldfusion, as a faster and more light weight alternative to using WDDX to serialize data. If you use Coldfusion at all, I highly suggest you read it, and download his code sample.</p>
<p><a href="http://garoutte.com/?p=21">http://garoutte.com/?p=21</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/02/11/json-coldfusion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&#8220;CodeIgniter lets you write kick ass PHP programs&#8221;</title>
		<link>http://joshhighland.com/blog/2008/01/10/codeigniter-lets-you-write-kick-ass-php-programs/</link>
		<comments>http://joshhighland.com/blog/2008/01/10/codeigniter-lets-you-write-kick-ass-php-programs/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 01:05:36 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/2008/01/10/codeigniter-lets-you-write-kick-ass-php-programs/</guid>
		<description><![CDATA[At work, I have been lucky enough to work directly with Luis Majano, the author of an awesome Object Oriented Framework for ColdFusuion, ColdBox (I have blogged about it before) Using the Coldbox Frame work really took my CF coding to the next level. At home, I am not lucky enough to have access to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src='http://joshhighland.com.s3.amazonaws.com/blog/wp-content/uploads/2008/01/codeigniter.jpg' title="&#8220;CodeIgniter lets you write kick ass PHP programs&#8221;" alt="codeigniter &#8220;CodeIgniter lets you write kick ass PHP programs&#8221;" /></p>
<p>At work, I have been lucky enough to work directly with <a href="http://www.LuisMajano.com">Luis Majano</a>, the author of an awesome Object Oriented Framework for ColdFusuion, <a href="http://coldboxframework.com">ColdBox</a> (I have blogged about it <a href="http://joshhighland.com/blog/2007/12/12/nasa-adopts-the-coldfusion-framework-coldbox/">before</a>)</p>
<p>Using the Coldbox Frame work really took my CF coding to the next level.</p>
<p>At home, I am not lucky enough to have access to a Coldfusion server. I run everything off of a dedicated PHP machine that I have had for some time now. Mostly due to the cost of the CF licenses, and the investments I have already made in the running so many sites in PHP.</p>
<p>After using ColdBox, I wanted to find something similar that would really help me write better code, and do it more quickly. I first looked at cake and wasn&#8217;t that excited about it, it seemed more complicated then it should be.</p>
<p>After doing some more research, I came across <a href="http://codeigniter.com/">Code Igniter</a>. Code Igniter has turned my PHP world upside down. Its easy to use, straight forward, and has a lot of build in functionality that would take me forever to achieve on my own.</p>
<p>Working in an object oriented frame work just makes me feel like a more effective programmer for some reason. Maybe its because I feel more organized and can really see how fast I can put applications together using it.</p>
<p>The <a href="http://codeigniter.com/user_guide/">user guide</a>, <a href="http://codeigniter.com/tutorials/">video tutorials</a>, <a href="http://codeigniter.com/wiki/">wiki</a>, and <a href="http://codeigniter.com/forums/">forums</a> for code igniter all rock. There is a wealth of information in there that I can draw off of.</p>
<p>I am re-working <a href="http://notpopular.com">notpopular.com</a> 2.0 once again (at this point maybe i should call it notpop 2.5), and I am using Code Igniter to do it. Lets hope that my newly peaked interest in object oriented PHP development will carry me though the development and launch of notpop 2.0 (2.5?!)</p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/01/10/codeigniter-lets-you-write-kick-ass-php-programs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NASA adopts the Coldfusion framework &#8211; Coldbox</title>
		<link>http://joshhighland.com/blog/2007/12/12/nasa-adopts-the-coldfusion-framework-coldbox/</link>
		<comments>http://joshhighland.com/blog/2007/12/12/nasa-adopts-the-coldfusion-framework-coldbox/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 18:59:29 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/2007/12/12/nasa-adopts-the-coldfusion-framework-coldbox/</guid>
		<description><![CDATA[WOW! NASA just adopted the Coldfusion Framework, ColdBox as their official web development framework. NASA! I&#8217;m excited about this for several reasons. I have been using the Coldbox framework for about a year now. Before Coldbox, I was using Fusebox. Fusebox isn&#8217;t bad, but it just doesn&#8217;t compare to the features that I get out [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.coldboxframework.com"><img src='http://joshhighland.com.s3.amazonaws.com/blog/wp-content/uploads/2007/12/coldbox_400.png' alt="coldbox 400 NASA adopts the Coldfusion framework   Coldbox" border='0' title="NASA adopts the Coldfusion framework   Coldbox" /></a></p>
<p>WOW! NASA just adopted the Coldfusion Framework, <a href="http://www.coldboxframework.com/">ColdBox</a> as their official web development framework. <strong>NASA!</strong></p>
<p>I&#8217;m excited about this for several reasons. I have been using the Coldbox framework for about a year now. Before Coldbox, I was using Fusebox. Fusebox isn&#8217;t bad, but it just doesn&#8217;t compare to the features that I get out of Coldbox. I suggest that all serious Coldfusion developers take an in depth look at Coldbox as an application framework. Heck if its good enough for government rocket scientists, its got to be good enough for anything that you or I are doing!</p>
<p><a href="http://www.coldboxframework.com/">Coldbox</a> is developed and maintained by <a href="http://luismajano.com/blog/index.cfm" rel="nofollow">Luis Majano</a>. Please stop by his blog and encourage his to continue the development of this software.</p>
<p>While you are at it, please stop by DIGG, and <a href="http://digg.com/software/NASA_Jet_Propulsion_Laboratory_Adopts_ColdBox">digg his blog post about NASA adopting ColdBox</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2007/12/12/nasa-adopts-the-coldfusion-framework-coldbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Transfer ORM with Mark Mandel</title>
		<link>http://joshhighland.com/blog/2007/11/07/transfer-orm-with-mark-mandel/</link>
		<comments>http://joshhighland.com/blog/2007/11/07/transfer-orm-with-mark-mandel/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 00:33:31 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/2007/11/07/transfer-orm-with-mark-mandel/</guid>
		<description><![CDATA[I have been working long and hard on a project at work (yes i have a realy job outside of working on notpop and related sites) I&#8217;m lucky enough to work with Luis Majano, the creator of the ColdBox Coldfusion Application Framework. Working with ColdBox has really increased the performance of the site, and brought [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src='http://joshhighland.com.s3.amazonaws.com/blog/wp-content/uploads/2007/11/iecfug_logo4.gif' alt="iecfug logo4 Transfer ORM with Mark Mandel"  title="Transfer ORM with Mark Mandel" /></p>
<p>I have been working long and hard on a project at work (yes i have a realy job outside of working on notpop and related sites)<br />
I&#8217;m lucky enough to work with Luis Majano, the creator of the <a href="http://coldboxframework.com">ColdBox Coldfusion Application Framework</a>. Working with ColdBox has really increased the performance of the site, and brought the company fully into object oriented ColdFusion programming.</p>
<p>Along with Coldbox, we have really relied on <a href="http://www.transfer-orm.com">Transfer-ORM</a> to handle 99% of our database operations. Again, a huge improvement over what we were doing in the past, and a great time saver also. <a href="http://www.transfer-orm.com">Transfer-ORM</a> was created by Mark Mandel.</p>
<p>I&#8217;m a member of the <a href="http://www.iecfug.com">Inland Empire Coldfusion users group</a>, and last Friday we had our month meeting, held by Luis Majano, with Mark Mandel as the guest speaker, talking about Transfer. It was a really great presentation, with a lot of great information.</p>
<p>We recorded the presentation through adobe connect, so its <a href="https://admin.adobe.acrobat.com/_a200985228/p10885427">available online</a>. If you are interested in taking your coldfusion database operations to the next level, I suggest you check out Mark Mandels presentation, I learned a lot, I&#8217;m sure you will also.</p>
<p>check it out: <a href="https://admin.adobe.acrobat.com/_a200985228/p10885427">https://admin.adobe.acrobat.com/_a200985228/p10885427</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2007/11/07/transfer-orm-with-mark-mandel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>cfdump in php!</title>
		<link>http://joshhighland.com/blog/2007/04/24/cfdump-in-php/</link>
		<comments>http://joshhighland.com/blog/2007/04/24/cfdump-in-php/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 02:59:58 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/2007/04/24/cfdump-in-php/</guid>
		<description><![CDATA[At work, I write ColdFusion, at home I write PHP. I bounce back and forth between worlds. Jack of all trades, master of none I guess. One thing that I have always loved about ColdFusion is the cfdump tag. You feed it any variable, and it will spit out whats in it. Struct, String, Array, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>At work, I write ColdFusion, at home I write PHP. I bounce back and forth between worlds. Jack of all trades, master of none I guess.</p>
<p>One thing that I have always loved about ColdFusion is the cfdump tag. You feed it any variable, and it will spit out whats in it. Struct, String, Array, Query, Object, XML, it doesnt matter, it just works. I would go as far to say that its one of the best native debugging resources I have ever seen in a web development language.</p>
<p>In PHP, you can do a print_r() and look at the source, but that is no where as cool as cfdump. I have longed for a cfdump style resource to be available in PHP. Today I got my wish when I stumbled upon &#8220;dBug&#8221;. <a href="http://dbug.ospinto.com">http://dbug.ospinto.com</a></p>
<p>dBug is a small PHP class that duplicates the cfdump tag from ColdFusion</p>
<p>look how simple it is to use:<br />
<code><br />
      include_once("dBug.php");<br />
      new dBug($myVariable);<br />
</code></p>
<p>The output looks like this:<br />
<img src='http://joshhighland.com.s3.amazonaws.com/blog/wp-content/uploads/2007/04/phpdump.gif' alt="phpdump cfdump in php!"  title="cfdump in php!" /></p>
<p>dBug will handle anything you throw at it, just like cfdump does. This is going to help me so much in the future. If you develop in PHP, I think that this class is a must have in your tool kit.</p>
<p>dBug is free! get it today from <a href="http://dbug.ospinto.com">http://dbug.ospinto.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2007/04/24/cfdump-in-php/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Coldfusion MX RSS Feeds</title>
		<link>http://joshhighland.com/blog/2005/12/28/coldfusion-mx-rss-feeds/</link>
		<comments>http://joshhighland.com/blog/2005/12/28/coldfusion-mx-rss-feeds/#comments</comments>
		<pubDate>Wed, 28 Dec 2005 16:22:28 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/2005/12/28/coldfusion-mx-rss-feeds/</guid>
		<description><![CDATA[I am a web developer by trade. I write a lot of ColdFusion code for my job, I write a lot of PHP in my spare time. Being involved in both the CF and PHP communities, I have seen an overwhelming number of tutorials for things like generating RSS feeds using PHP, but not too [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>
I am a web developer by trade. I write a lot of ColdFusion code for my job, I write a lot of PHP in my spare time. Being involved in both the CF and PHP communities, I have seen an overwhelming number of tutorials for things like generating RSS feeds using PHP, but not too many geared towards CF developers.
</p>
<p>
Here is some quick and dirty code that I wrote using CF MX to generate an RSS feed using some data that I had stored in a MS SQL database.
</p>
<p>
<img src="http://www.notpopular.com/blog/uploaded/cfrss/cfrss.gif" title="Coldfusion MX RSS Feeds" alt="cfrss Coldfusion MX RSS Feeds" />
</p>
<p>
<b><a href="http://www.notpopular.com/blog/uploaded/cfrss/cfrss.txt" target="_blank">Download the source code here</a></b></p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2005/12/28/coldfusion-mx-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Database Caching 13/70 queries in 0.358 seconds using disk: basic
Object Caching 1110/1214 objects using disk: basic
Content Delivery Network via Amazon Web Services: S3: joshhighland.com.s3.amazonaws.com

Served from: joshhighland.com @ 2012-02-04 02:27:41 -->
