<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>cold-fusion &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/cold-fusion/</link>
	<description>Feed of posts on WordPress.com tagged "cold-fusion"</description>
	<pubDate>Tue, 01 Dec 2009 14:50:46 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Got Energy? Creativity? Skill? - Awesome WORDPRESS Needed!!! by dantonip]]></title>
<link>http://outsourcedjobs.wordpress.com/2009/12/01/got-energy-creativity-skill-awesome-wordpress-needed-by-dantonip/</link>
<pubDate>Tue, 01 Dec 2009 06:35:23 +0000</pubDate>
<dc:creator>ejazazeem</dc:creator>
<guid>http://outsourcedjobs.wordpress.com/2009/12/01/got-energy-creativity-skill-awesome-wordpress-needed-by-dantonip/</guid>
<description><![CDATA[Lights, Camera, Action&#8230;. We are a young adult travel &amp; entertainment company. We book, pla]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Lights, Camera, Action&#8230;. We are a young adult travel &#38; entertainment company. We book, plan, organize large travel groups &#38; party events&#8230; We&#8217;re talking spring breaks, bachelor parties, graduation trips, sexy Las Vegas Weekends, Ibiza trips and more&#8230; (Budget: $30-250, Jobs: Cold Fusion, Graphic Design, Social Networking, Website Design, WordPress)<br /> <a href="http://www.getafreelancer.com/projects/mea_561671.html"><b>Bid on this project</b></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Fusion Conundrum]]></title>
<link>http://westernexperience.wordpress.com/2009/11/27/the-fusion-conundrum/</link>
<pubDate>Fri, 27 Nov 2009 11:00:17 +0000</pubDate>
<dc:creator>Mike</dc:creator>
<guid>http://westernexperience.wordpress.com/2009/11/27/the-fusion-conundrum/</guid>
<description><![CDATA[by Mike Sitting around at a table top debate amongst friends of various political stripes and backgr]]></description>
<content:encoded><![CDATA[by Mike Sitting around at a table top debate amongst friends of various political stripes and backgr]]></content:encoded>
</item>
<item>
<title><![CDATA[Issues when null value is sent for a variable of type Date or Integer from Flex to CF]]></title>
<link>http://magicwithflex.wordpress.com/2009/11/23/issues-when-null-value-is-sent-for-a-variable-of-type-date-or-integer-from-flex-to-cf/</link>
<pubDate>Mon, 23 Nov 2009 09:35:27 +0000</pubDate>
<dc:creator>lksmurthy</dc:creator>
<guid>http://magicwithflex.wordpress.com/2009/11/23/issues-when-null-value-is-sent-for-a-variable-of-type-date-or-integer-from-flex-to-cf/</guid>
<description><![CDATA[When we make use of Cold Fusion as the backend server for a Flex Application. We have to take precau]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="_mcePaste">When we make use of Cold Fusion as the backend server for a Flex Application. We have to take precautions when handling variables of type Date and Integer. In particular, precaution has to be exercised when a null value is sent for the Date and Integer variables from Flex to CF.</div>
<div></div>
<div></div>
<div id="_mcePaste"><strong>Reason:</strong> When a null value is sent for variable of any data type from Flex, the Cold Fusion handles it differently. In particular, Cold Fusion does not believe in the concept of null and stores it as empty value i.e. If there is a variable by name “dt”. Instead of having dt = null, we will have dt = “” in CF. This creates issues when building Data intensive applications (one of the key focus area of DCD). MySQL associates the concept of nothing to “null” and not to {empty}/””. Only in the case of String does MySQL recognizes {empty}/ “” and stores it as null.</div>
<div></div>
<div></div>
<div id="_mcePaste"><strong>Work Around:</strong> Let us look at the following lines of code, to better understand the work around.</div>
<div></div>
<div id="_mcePaste">a) <em>&#60;cfquery name=&#8221;updateItem&#8221; datasource=&#8221;Test&#8221;&#62;</em></div>
<div><em><br />
</em></div>
<div id="_mcePaste"><em>UPDATE test</em></div>
<div id="_mcePaste"><em>SET Start_Date = &#60;CFQUERYPARAM cfsqltype=CF_SQL_TIMESTAMP  null=&#8221;#dt1#&#8221;  VALUE=&#8221;#item.Start_Date#&#8221;&#62;</em></div>
<div id="_mcePaste"><em>WHERE  test_id = &#60;CFQUERYPARAM CFSQLTYPE=&#8221;CF_SQL_INTEGER&#8221; VALUE=&#8221;#item.test_ID#&#8221;&#62;</em></div>
<div><em><br />
</em></div>
<div id="_mcePaste"><em>&#60;/cfquery&#62;</em></div>
<div></div>
<div><em><br />
</em></div>
<div id="_mcePaste">The above lines of code show a sample SQL query in CF. It shows an Update query which tries to set the value of field Start_Date, to the value existing in the variable #item.Start_Date#. In the above code I would like to draw the attention to a specific property in the CFQUERYPARAM, the property “null”.</div>
<div></div>
<div id="_mcePaste">Above we have set the property null to a variable #dt1#. This property decides if we are passing a null value to the Query or Not</div>
<div></div>
<div></div>
<div id="_mcePaste">b) Now let us have a look at dt1 variable. dt1 is a CF variable with a boolean value. The Boolean value for that variable is decided on the value present in item.Start_Date. If item.Start_Date is empty then dt1 is true.</div>
<div></div>
<div></div>
<div id="_mcePaste"><em>&#60;cfset var dt1 = &#8220;false&#8221;&#62;</em></div>
<div id="_mcePaste"><em>&#60;cfif item.Start_Date EQ &#8220;&#8221;&#62;</em></div>
<div id="_mcePaste"><em>&#60;cfset dt1 = &#8220;true&#8221;&#62;</em></div>
<div id="_mcePaste"><em>&#60;/cfif&#62;</em></div>
<div></div>
<div><em><br />
</em></div>
<div id="_mcePaste">Combining a and b. We have the following algorithm:</div>
<div id="_mcePaste">a) Initialize a CF variable dt1 to false</div>
<div id="_mcePaste">b) Check if the value present in item.Start_Date = “”</div>
<div id="_mcePaste">c) If empty, set dt1 to true, else keep it at false</div>
<div id="_mcePaste">d) In the SQL query set the null property to take the value present in dt1</div>
<div id="_mcePaste">e) If dt1 is true, then null value is sent to database, else database gets the value in item.Start_Date</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New Energy Technology]]></title>
<link>http://dkidwell.wordpress.com/2009/11/11/new-energy-technology/</link>
<pubDate>Thu, 12 Nov 2009 01:16:34 +0000</pubDate>
<dc:creator>Dennis Kidwell</dc:creator>
<guid>http://dkidwell.wordpress.com/2009/11/11/new-energy-technology/</guid>
<description><![CDATA[The term &#8220;New Energy&#8221; refers to revolutionary alternative energy technologies that can r]]></description>
<content:encoded><![CDATA[The term &#8220;New Energy&#8221; refers to revolutionary alternative energy technologies that can r]]></content:encoded>
</item>
<item>
<title><![CDATA[Online Chess Game by regnatarajan]]></title>
<link>http://outsourcedjobs.wordpress.com/2009/10/22/online-chess-game-by-regnatarajan/</link>
<pubDate>Thu, 22 Oct 2009 05:26:47 +0000</pubDate>
<dc:creator>ejazazeem</dc:creator>
<guid>http://outsourcedjobs.wordpress.com/2009/10/22/online-chess-game-by-regnatarajan/</guid>
<description><![CDATA[I need a web based Flash or Java based Chess game that would allow players to play against each othe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I need a web based Flash or Java based Chess game that would allow players to play against each other.  They don&#8217;t need to play against the computer, but the game should not allow illegal moves.    It&#8230; (Budget: $1500-3000, Jobs: Cold Fusion, Flex, Java, JavaFX)<br /> <a href="http://www.getafreelancer.com/projects/mea_533642.html"><b>Bid on this project</b></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Adobe Web Technologies in Action this weekend in Raleigh]]></title>
<link>http://frolickingfrog.wordpress.com/2009/10/13/adobe-web-technologies-in-action-this-weekend-in-raleigh/</link>
<pubDate>Tue, 13 Oct 2009 16:54:45 +0000</pubDate>
<dc:creator>Nancy L Starr</dc:creator>
<guid>http://frolickingfrog.wordpress.com/2009/10/13/adobe-web-technologies-in-action-this-weekend-in-raleigh/</guid>
<description><![CDATA[In my days at doing tech support for Sony, I worked extensively with their proprietary time-line bas]]></description>
<content:encoded><![CDATA[In my days at doing tech support for Sony, I worked extensively with their proprietary time-line bas]]></content:encoded>
</item>
<item>
<title><![CDATA[NT Authentication]]></title>
<link>http://jkocen.wordpress.com/2009/09/22/nt-authentication/</link>
<pubDate>Tue, 22 Sep 2009 20:58:01 +0000</pubDate>
<dc:creator>jkocen</dc:creator>
<guid>http://jkocen.wordpress.com/2009/09/22/nt-authentication/</guid>
<description><![CDATA[when you want to authenticate people using an IIS web server but don&#8217;t want to use groups. ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>when you want to authenticate people using an IIS web server but don&#8217;t want to use groups.</p>
<p>&#60;cffunction name=&#8221;authenticateUser&#8221; access=&#8221;public&#8221; returntype=&#8221;struct&#8221; hint=&#8221;Authenticates the user.&#8221; output=&#8221;yes&#8221; static=&#8221;yes&#8221;&#62;<br />
     &#60;cfargument name=&#8221;userid&#8221; type=&#8221;string&#8221; required=&#8221;true&#8221; /&#62;<br />
     &#60;cfargument name=&#8221;passwd&#8221; type=&#8221;string&#8221; required=&#8221;true&#8221; /&#62;<br />
     &#60;cfargument name=&#8221;domain&#8221; type=&#8221;string&#8221; required=&#8221;true&#8221; /&#62;<br />
&#60;cftry&#62;<br />
&#60;cfscript&#62;<br />
ntauth = createObject(&#8220;java&#8221;, &#8220;jrun.security.NTAuth&#8221;);<br />
ntauth.init(arguments.domain);<br />
// authenticateUser throws an exception if it fails (bad anythin userid or password,<br />
// so we don&#8217;t have anything specific here<br />
ntauth.authenticateUser(arguments.userid, arguments.passwd);<br />
// make sure this is being requested via SSL<br />
if (cgi.https neq &#8216;On&#8217;) {<br />
status.isAuthenticated=false;<br />
status.message=&#8221;You must call this function from https, not http&#8221;;<br />
}<br />
else {<br />
status.isAuthenticated=true;<br />
status.message=&#8221;Valid Credentials for #ucase(domain)#\#ucase(userid)#&#8221;;<br />
}<br />
&#60;/cfscript&#62;<br />
&#60;cfcatch&#62;<br />
&#60;cfscript&#62;<br />
status.isAuthenticated=false;<br />
status.message=&#8221;Authentication failed for #ucase(domain)#\#ucase(userid)#&#8221;;<br />
&#60;/cfscript&#62;<br />
&#60;/cfcatch&#62;<br />
&#60;/cftry&#62;<br />
&#60;cfreturn status&#62;<br />
&#60;/cffunction&#62;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Need someone to build PHP forms to MySQL from my mock-ups by iquotient]]></title>
<link>http://outsourcedjobs.wordpress.com/2009/09/17/need-someone-to-build-php-forms-to-mysql-from-my-mock-ups-by-iquotient/</link>
<pubDate>Thu, 17 Sep 2009 05:56:05 +0000</pubDate>
<dc:creator>ejazazeem</dc:creator>
<guid>http://outsourcedjobs.wordpress.com/2009/09/17/need-someone-to-build-php-forms-to-mysql-from-my-mock-ups-by-iquotient/</guid>
<description><![CDATA[I am working on a remote database project. I need someone who can: 1. Take my Excel list of fields a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I am working on a remote database project. I need someone who can:  1. Take my Excel list of fields and tables  2. Create PHP front-end forms in PHP, Cold Fusion or Flex.  3. Create an environment that will allow one to enter data in the fields and store to MySQL server&#8230; (Budget: $30-250, Jobs: Cold Fusion, Flex, PHP, SQL)<br /> <a href="http://www.getafreelancer.com/projects/mea_509884.html"><b>Bid on this project</b></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Need someone to build PHP forms to MySQL from my mock-ups by iquotient]]></title>
<link>http://phpcareers.wordpress.com/2009/09/17/need-someone-to-build-php-forms-to-mysql-from-my-mock-ups-by-iquotient/</link>
<pubDate>Thu, 17 Sep 2009 05:55:56 +0000</pubDate>
<dc:creator>ejazazeem</dc:creator>
<guid>http://phpcareers.wordpress.com/2009/09/17/need-someone-to-build-php-forms-to-mysql-from-my-mock-ups-by-iquotient/</guid>
<description><![CDATA[I am working on a remote database project. I need someone who can: 1. Take my Excel list of fields a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I am working on a remote database project. I need someone who can:  1. Take my Excel list of fields and tables  2. Create PHP front-end forms in PHP, Cold Fusion or Flex.  3. Create an environment that will allow one to enter data in the fields and store to MySQL server&#8230; (Budget: $30-250, Jobs: Cold Fusion, Flex, PHP, SQL)<br /> <a href="http://www.getafreelancer.com/projects/mea_509884.html"><b>Bid on this project</b></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cold Fusion Photo Album Code]]></title>
<link>http://coldfusionguru.wordpress.com/2009/09/16/cold-fusion-photo-album-code/</link>
<pubDate>Wed, 16 Sep 2009 13:24:04 +0000</pubDate>
<dc:creator>smitchell1974</dc:creator>
<guid>http://coldfusionguru.wordpress.com/2009/09/16/cold-fusion-photo-album-code/</guid>
<description><![CDATA[Cold Fusion Photo Album Adobe Cold Fusion Photo Album MOST POPULAR! A complete adobe cold fusion onl]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Cold Fusion Photo Album<br />
Adobe Cold Fusion Photo Album </p>
<p>MOST POPULAR!<br />
A complete adobe cold fusion online photo album allowing you to upload and organize your pictures.<br />
If you have been searching for an easy to use, easy to install and low cost alternative to the other providers, you have come to the right place.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>This easy to use and low cost cold fusion application includes:</p>
<p>- session based login authentication<br />
- create unlimited viewbooks for specific events<br />
- view photos by page number (as many as you like, default set to 6)<br />
- photo viewer screen with viewbook menu<br />
- upload unlimited photos<br />
- main menu navigation by viewbook<br />
- ms access database included </p>
<p><a href="http://www.cfcodestore.com">Click here for more information </a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cold Fusion or Thermal Fusion?]]></title>
<link>http://hairextensionsdiy.wordpress.com/2009/09/10/cold-fusion-or-thermal-fusion/</link>
<pubDate>Thu, 10 Sep 2009 11:21:26 +0000</pubDate>
<dc:creator>Julia  Humphrey</dc:creator>
<guid>http://hairextensionsdiy.wordpress.com/2009/09/10/cold-fusion-or-thermal-fusion/</guid>
<description><![CDATA[Recommended Product Cold Fusion or Thermal Fusion for Your Hair Extensions When looking into hair ex]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="wp-caption alignleft" style="width: 160px"><a href="http://finca4ed.hairextdiy.hop.clickbank.net"><img title="Recommended Product" src="http://www.hairextensionsdiy.com/affiliates/bannersandgraphics/box1.jpg" alt="Recommended Product" width="150" height="200" /></a><p class="wp-caption-text">Recommended Product</p></div>
<h2 style="text-align:left;"><strong><span style="color:#ff0000;">Cold Fusion or Thermal Fusion for Your Hair Extensions</span></strong></h2>
<p style="text-align:justify;">When looking into <span style="color:#0000ff;"><strong><a title="Hair Extensions " href="http://finca4ed.hairextdiy.hop.clickbank.net" target="_self"><span style="color:#3366ff;">hair extensions</span></a></strong></span> it is important to choose the right attachment method for the look you are going for as well as the type of hair that you have. There are a number techniques from weaving, clip ins, chemical bonding, and fusion.</p>
<p style="text-align:justify;">There are, however, two types of fusion and it is important to know the differences between the two if you are intending on taking this route to attach your extensions. These types of fusion are cold fusion and thermal, or heat fusion.</p>
<p style="text-align:justify;">Both approaches do the same thing, except in different ways. For example, both cold and thermal fusion attaches the <span style="color:#0000ff;"><strong><a title="Hair Extensions " href="http://finca4ed.hairextdiy.hop.clickbank.net" target="_self"><span style="color:#3366ff;">hair extensions</span></a></strong></span> on a strand by strand basis. This allows for excellent coverage and an extremely natural look because the extensions will fall naturally the way your normal hair does.</p>
<p style="text-align:justify;">Because of the great amount of detail that goes into applying these extensions, in can take many hours to complete so it is good to understand that whether you are choosing cold or thermal fusion, you will be sitting for quite a while. The upside is that by maintaining extensions that are fused to your hair you can keep your <span style="color:#3366ff;"><strong><a title="Hair Extensions " href="http://finca4ed.hairextdiy.hop.clickbank.net" target="_self">hair extensions</a></strong></span> looking great for a longer period of time that virtually any other attachment method out there today.</p>
<p style="text-align:justify;">Thermal or heat fusion uses a heat gun to melt the bonding agent that is at the tip of the <span style="color:#3366ff;"><strong><a title="Hair Extensions " href="http://finca4ed.hairextdiy.hop.clickbank.net" target="_self">hair extension.</a></strong></span> The tip will then fuse to your hair strand and will create a long lasting bond. Thermal fusion is a very popular way to apply <span style="color:#3366ff;"><strong><a title="Hair Extensions " href="http://finca4ed.hairextdiy.hop.clickbank.net" target="_self">hair extensions</a></strong></span> because they last a long time and can be applied very precisely to obtain exactly the look that you want. One drawback is that thermal fusion uses heat which can be damaging to your own hair if it is not done properly.</p>
<p style="text-align:justify;">Cold fusion is a modern and revolutionary technique for applying <span style="color:#3366ff;"><strong><a title="Hair Extensions " href="http://finca4ed.hairextdiy.hop.clickbank.net" target="_self">hair extensions.</a></strong></span> Cold fusions uses ultrasonic waves, also known as sound waves, to soften the tip of the hair extensions and allows you to be able to bond the hair extension to your hair without subjecting your hair to the possible damages of heat. There is also no risk of burning the scalp with cold fusion so the <span style="color:#3366ff;"><strong><a title="Hair Extensions " href="http://finca4ed.hairextdiy.hop.clickbank.net" target="_self">hair extension</a></strong></span> can be applied much more closely to the root of the hair strands because there is no risk of burning.</p>
<p style="text-align:justify;"><a href="http://hairextensionsdiy.wordpress.com/" target="_self"><strong>DIY Hair Extensions &#8211; Home Page</strong></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[]]></title>
<link>http://vaidehipatil.wordpress.com/2009/09/03/404/</link>
<pubDate>Thu, 03 Sep 2009 19:07:17 +0000</pubDate>
<dc:creator>vaidehipatil</dc:creator>
<guid>http://vaidehipatil.wordpress.com/2009/09/03/404/</guid>
<description><![CDATA[http://en.wikipedia.org/wiki/Cold_fusion Cold conFusion ?]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://en.wikipedia.org/wiki/Cold_fusion">http://en.wikipedia.org/wiki/Cold_fusion</a></p>
<p>Cold <em>con</em>Fusion ?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[XML in Coldfusion]]></title>
<link>http://jkocen.wordpress.com/2009/09/03/xml-in-coldfusion/</link>
<pubDate>Thu, 03 Sep 2009 16:58:52 +0000</pubDate>
<dc:creator>jkocen</dc:creator>
<guid>http://jkocen.wordpress.com/2009/09/03/xml-in-coldfusion/</guid>
<description><![CDATA[Need to process XML after you have read it from a server? Can be in the content or if from a BB in t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Need to process XML after you have read it from a server?</p>
<p>Can be in the content or if from a BB in the header</p>
<p>x = tostring(GetHttpRequestData().content) or x = page content via a web server</p>
<p>Convert string to XML &#8211; xmlparse(xmldata)<br />
Verify it is actually XML &#8211; isxml(xmldata)</p>
<p>xmldata.<em>tag</em>.<em>tag</em>.xmlchildern is an array</p>
<p>xmldata.<em>tag.tag</em>.xml.attributes.<em>tag</em> is a data field between 2 tags</p>
<p>xmldata.<em>tag.tag.</em>xmltext is data inside a tag</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Futuristical Perspectives #1:  The Sewing Machine]]></title>
<link>http://carlsagansdanceparty.wordpress.com/2009/08/30/futuristical-perspectives-the-sewing-machine/</link>
<pubDate>Sun, 30 Aug 2009 02:26:53 +0000</pubDate>
<dc:creator>logicmania</dc:creator>
<guid>http://carlsagansdanceparty.wordpress.com/2009/08/30/futuristical-perspectives-the-sewing-machine/</guid>
<description><![CDATA[By time-traveler extraordinaire John Titor Sewing machines have come a long way and they&#8217;re go]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>By time-traveler extraordinaire John Titor</p>
<p>Sewing machines have come a long way and they&#8217;re gonna be even more amazing.  Just think: in 20 years how sewing machines won&#8217;t just be sewing your clothes, but they&#8217;ll be sewing up cats, humans, buildings with serious fractures, and possibly even rips within the fabric of space and time itself!</p>
<p>Once you guys start to understand the science of superstrings, sewing machines will be able to not just knit those buttons back on your shirt, but they&#8217;ll be knitting new forms of exotic matter into existence.</p>
<p>Sewing machines will be very advanced by 2020.  If you have lacerations that go deep into your bowels, don&#8217;t call EMS, just put yourself under the Sewing Bot 3000 and in no time you&#8217;ll be fit as a fiddle or fit as some other more appropriate metaphor.  Don&#8217;t worry about the Sewing Bot 3000 injuring you; if it does injure you, then it can just sew you back up!  And if Sewing Bot 3000 becomes evil and tries to kill you, then you probably have given it a reason to be that way.  But just in case it&#8217;s evil for purely evil intentions, just remember to have a Sewing Bot 3000-and-1 handy and close by.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/ip1laBMkxec&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/ip1laBMkxec&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>This goes far beyond prosaic, boring repair work by the way. Future sewing machines can stitch together the fabric of failed relationships, repair the seams in a nation&#8217;s economy and help us put patches over our empy lives!</p>
<p>By the year 2025, sewing machines will probably be too advanced to operate.  But don&#8217;t worry, the sewing machine will probably know how to operate itself.  You can be rest assured as you sleep at night the sewing machine will be stitching up the proper materials that it thinks is proper to stitch.  Since the sewing machines will probably not be human operated, they will probably have purely humanoid metal endoskeleton with a sewing mechanism attached to their abdomen.  You&#8217;ll never have to worry about turning them on or off as they will have a 200 year life cold fusion cell powering them.  All sewing machines will be operated by a central program called Skystich or Sewnet (it was one of those, can&#8217;t remember which).</p>
<p>In the future, if the self-aware sewing machines sew something that doesn&#8217;t need sewing, then it probably shouldn&#8217;t be a problem.  More than likely, a sewing machine like the Sewing Bot 3000 will carry a 5 gigawatt laser that can quickly undo the stitches by burning straight through them.  This laser might sound pretty powerful but it shouldn&#8217;t produce anymore heat than the surface of the sun for more than an hour.</p>
<p>Some people think that the future holds nothing but malaise for all humankind &#8211; that we&#8217;ll live under some kind of technological dystopia.  They&#8217;ll think again when they live in a world full of self-aware sewing machines that never sleep, never eat, never feel pain, never can be reasoned with, and much more importantly never can be turned off or destroyed, but just keep sewing.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/Or-epXMvTM8&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/Or-epXMvTM8&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[25 Lies About Me]]></title>
<link>http://exercisingmonsters.wordpress.com/2009/08/26/25-lies-about-me/</link>
<pubDate>Thu, 27 Aug 2009 01:23:42 +0000</pubDate>
<dc:creator>nickory</dc:creator>
<guid>http://exercisingmonsters.wordpress.com/2009/08/26/25-lies-about-me/</guid>
<description><![CDATA[I just found this again on my Facebook, and I feel the need to share it again.  If you have never ma]]></description>
<content:encoded><![CDATA[I just found this again on my Facebook, and I feel the need to share it again.  If you have never ma]]></content:encoded>
</item>
<item>
<title><![CDATA[Ajax call in ModelGlue without rendering a view]]></title>
<link>http://ajithmanmadhan.wordpress.com/2009/08/10/ajax-call-in-modelglue-without-rendering-a-view/</link>
<pubDate>Mon, 10 Aug 2009 17:50:40 +0000</pubDate>
<dc:creator>ajithmanmu</dc:creator>
<guid>http://ajithmanmadhan.wordpress.com/2009/08/10/ajax-call-in-modelglue-without-rendering-a-view/</guid>
<description><![CDATA[Making an Ajax call is simple and straight forward in ModelGlue.  The concept is simple and is given]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Making an Ajax call is simple and straight forward in <a href="http://www.model-glue.com/index.cfm?mode=entry&#38;entry=FA2A2669-E081-2BAC-6979D3478AEDC219" target="_blank">ModelGlue</a>.  The concept is simple and is given in detail in Doug&#8217;s blog. <a href="http://www.dougboude.com/blog/1/2007/03/Using-Ajax-with-ModelGlue--its-really-quite-simple.cfm" target="_blank">Read the full tutorial</a>.</p>
<p>In ModelGlue(2) to call the Ajax call we need to have a view. i.e a page needs to be created to act as the view. This is in need if we are using the Ajax call to dynamically load HTML content. The Javascript receives the rendered view and does whatever it was told to do with it. But however there are times when we do not want to have a view rendered for our event(i.e our Ajax call). We simply want to return a value from server(it can even be a mere checking..!!) and assign it to a Javascript variable. For this simple purpose we do not want to create a new page/view.</p>
<p>In order to accomplish this we will have to break the ModelGlue architecture (till now..i couldn&#8217;t find any other suitable methods). Anyone who is familiar to ModelGlue architecture will find it easy to understand the below code.</p>
<p>My ModelGlue event:</p>
<pre style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#f5f5f5;font-family:Consolas, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New';width:auto;max-height:600px;background-position:initial initial;border:0 initial initial;margin:0 0 10px;padding:5px;"><code style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;font-family:Consolas, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New';background-position:initial initial;border:0 initial initial;margin:0;padding:0;"><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">event-handler</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">name</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">"test.testFunction"</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;          </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">
     </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">broadcasts</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">
          </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">message</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">name</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">"testFunction"</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">/&#62;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">
     </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;/</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">broadcasts</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">
</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;/</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">event-handler</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;                    </span></code></pre>
<p>Please note that i am not using a view in this event.</p>
<p>And my controller function:-</p>
<pre style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#d9f5d9;font-family:Consolas, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New';width:auto;max-height:600px;background-position:initial initial;border:0 initial initial;margin:0 0 10px;padding:5px;">
<pre style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#d9f5d9;font-family:Consolas, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New';width:auto;max-height:600px;background-position:initial initial;border:0 initial initial;margin:0 0 10px;padding:5px;"><code style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;font-family:Consolas, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New';background-position:initial initial;border:0 initial initial;margin:0;padding:0;"><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">cffunction</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">name</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">"testFunction"</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">returnType</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">"any"</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">output</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">"true"</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">    
</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">cfargument</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">name</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">"event"</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">type</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">"any"</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">required</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">"true"</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">        

</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">cfset</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">justtest</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">1</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">

</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">CFCONTENT</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">TYPE</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">"text"</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">RESET</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">"Yes"</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;&#60;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">CFOUTPUT</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">#serializeJSON(justTest)#
</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">cfset</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">request</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">.</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">modelGlueSuppressDebugging</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">true</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">/&#62;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">
</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">cfsetting</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:red;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">showdebugoutput</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:blue;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">"false"</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">/&#62;&#60;/</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">CFOUTPUT</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;&#60;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">cfabort</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">

</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#60;/</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">cffunction</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;background-position:initial initial;border:0 initial initial;margin:0;padding:0;">&#62;</span></code></pre>
</pre>
<p>Here we are converting the justtest variable in JSON format and outputting via cfcontent. Here cfcontent acts as the rendered view and returns justtest in JSON format. Here aborting at the end of controller function can be considered as breaking the ModelGlue archi , but this is one way around to solve the problem.</p>
<p>By the way here is my Ajax call:-</p>
<pre style="font:normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace;font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#f5f5f5;font-family:Consolas, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New';width:auto;max-height:600px;margin:0 0 10px;padding:5px;"><code style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;font-family:Consolas, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New';margin:0;padding:0;"><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:#00008b;margin:0;padding:0;">new</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:#2b91af;margin:0;padding:0;">Ajax</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">.</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:#2b91af;margin:0;padding:0;">Request</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">(</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">root</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">+</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;margin:0;padding:0;">'test.testFunction'</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">,{</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">
  method</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">:</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:maroon;margin:0;padding:0;">'post'</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">,</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">
  parameters</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">:</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">{</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">param1</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">:</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">paramval</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">},</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">
  onSuccess</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">:</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;"> </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:#00008b;margin:0;padding:0;">function</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">(</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">response</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">){</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">
    alert</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">(</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">response</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">.</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">responseText</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">);</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">
    </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:#00008b;margin:0;padding:0;">var</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;"> myresult </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">=</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;"> response</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">.</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">responseText</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">;</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">
  </span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">}</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">
</span><span style="font-size:14px;vertical-align:baseline;background-image:initial;background-repeat:initial;background-attachment:initial;background-color:transparent;color:black;margin:0;padding:0;">});</span></code></pre>
<p>I am making use of <a href="http://www.prototypejs.org/" target="_blank">prototype</a> library for this.</p>
<p>We will get 1 if we alert the responseText call back from the server.</p>
<p>This is only applicable to ModelGlue2. If you are using ModelGlue3 then you would also need to check out <a href="http://docs.model-glue.com/wiki/HowTos/Formats" target="_blank">how to use fomats in MG3</a>. Thanks Ray Camdon for sharing this link.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Magnets, A Home In Point Loma, Little Gray Men]]></title>
<link>http://shortsalenurse.wordpress.com/2009/08/10/magnets-a-home-in-point-loma-little-gray-men/</link>
<pubDate>Mon, 10 Aug 2009 13:22:35 +0000</pubDate>
<dc:creator>shortsalenurse</dc:creator>
<guid>http://shortsalenurse.wordpress.com/2009/08/10/magnets-a-home-in-point-loma-little-gray-men/</guid>
<description><![CDATA[The other day a few friends of mine met at our favorite San Diego taco stand over looking the Bay. F]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignright size-medium wp-image-82" title="aircraft_carrier" src="http://shortsalenurse.wordpress.com/files/2009/08/aircraft_carrier.jpg?w=300" alt="aircraft_carrier" width="300" height="225" />The other day a few friends of mine met at our favorite San Diego taco stand over looking the Bay. From the vantage point of our table we could see one of the Aircraft Carriers coming into the bay. Our respective careers took us in different directions so three industries were represented. Real Estate Broker, Medicine <a href="http://www.medtravelers.com/medical-mri-technologist.aspx">(MRI TEC)</a> and Banker.</p>
<p>The MRI TEC is always interesting to talk to because he follows advances in science and the Banker and I have educations that were science based. Last time we met he was discussing<strong> <a href="http://www.google.com/hostednews/afp/article/ALeqM5j2QobOQnlULUZ7oalSRUVjnlHjng">Cold Fusion</a></strong> as a source of energy, and how someone right here  in San Diego may have worked it out, but our discussions always seen to come back to the ecomony.</p>
<p>Looking out over the bay to the aircraft carrier the MRI Tec told us that he saw a special where the Navy is working on <a href="http://www3.signonsandiego.com/stories/2009/jul/02/company-wins-huge-catapult-contract/?uniontrib">l<strong>aunching planes off Aircraft Carriers with Magnets</strong>.</a> I mentioned that I had seen something recently where they believe it is possible that<strong><a href="http://www.earthfiles.com/"> Crop Circles</a> </strong>are being created with magnetic forces and the Banker had to chime looking for humor and said, &#8220;Money is getting a little easier to borrow but we are not giving it to the little gray men that are making crop circles, yet. &#8221; We all laughed and though about things that had nothing to do with the ecomony for a few minutes.</p>
<p>The Banker started <a href="http://www.youtube.com/watch?v=L-g_Y0UCxmg"><strong>humming a song that had to be inspired by the theme of our discussion</strong></a> and looking to Point Loma he stopped humming and said &#8220;Someday I will buy a home on that hill right over there&#8221; pointing in the direction of <strong><a href="http://www.nps.gov/cabr/">Cabrillo Monument</a></strong>. Well I hope everything gets worked out, the Navy figures out the magnets, little gray men from where ever find a way to borrow money and my friend buys his home in Point Loma, if its a short sale or a foreclosure and he saves a ton of money, even better.</p>
<p>I guess there is that bond of friendship that makes us all want our friends to find what they are searching for. In contemplation , I guess  what brought me to Real Estate,  was the feeling gained by helping people in their<em><strong> <a href="http://www.numberoneinsandiego.listingbook.com">search for a home</a>,</strong></em> chase their dreams and solve their problems. The Real Estate Market is going to spin forward and I don&#8217;t want to predict when but I bet it is before they find out what is making crop circles. If mankind finds out aliens are making crop circles, I bet people quit buying and selling property,,,,,,, Na.. I guess there is nothing to worry about, I&#8217;ll bet you <strong><a href="http://www.cropcircles.org/Circle_Research_Tours/Welcome.html">crop circles (2)</a></strong> are being made by unemployed English Bankers or are they?</p>
<p>George Kenner is a Broker Associate with Prudential California Realty, in La Mesa California. He can also be found at <a href="http://www.numberoneinsandiego.com">NumberOneInSanDiego.com</a> or contacted at 619-723-5714. George Kenner is also the owner of Kalabash Marketing.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Removing viewstate values in ModelGlue]]></title>
<link>http://ajithmanmadhan.wordpress.com/2009/08/05/removing-viewstate-values-in-modelglue/</link>
<pubDate>Wed, 05 Aug 2009 17:38:02 +0000</pubDate>
<dc:creator>ajithmanmu</dc:creator>
<guid>http://ajithmanmadhan.wordpress.com/2009/08/05/removing-viewstate-values-in-modelglue/</guid>
<description><![CDATA[A quick blog post on removing viewstate values in Model Glue&#8230;everyone knows  about this, but i]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A quick blog post on removing viewstate values in Model Glue&#8230;everyone knows  about this, but i didn&#8217;t find any useful reference while googling this&#8230;also for my reference as well just in case i forget&#8230;</p>
<p>Removing a value from the viewstate:</p>
<pre style="width:auto;font-size:14px;float:left;clear:both;font-style:normal;font-variant:normal;font-weight:normal;line-height:18px;vertical-align:baseline;background-color:#f5f5f5;font-family:Consolas, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New';max-height:600px;margin:0 0 10px;padding:5px;"><span style="color:#00008b;margin:0;padding:0;"><span style="color:#808080;margin:0;padding:0;">&#60;!--- Here key is the name of the value you want to remove---&#62;</span>
viewstate.removeValue('<span style="color:#ff0000;">key</span>')</span><span style="color:#00008b;margin:0;padding:0;">
</span></pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Reading Schedule task details from neo-cron.xml]]></title>
<link>http://ajithmanmadhan.wordpress.com/2009/08/01/reading-schedule-task-details-from-neo-cron-xml/</link>
<pubDate>Sat, 01 Aug 2009 15:27:26 +0000</pubDate>
<dc:creator>ajithmanmu</dc:creator>
<guid>http://ajithmanmadhan.wordpress.com/2009/08/01/reading-schedule-task-details-from-neo-cron-xml/</guid>
<description><![CDATA[I found  this code helpful while working with schedule tasks(i&#8217;ve been working with it for a w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-family:Georgia;font-size:13px;line-height:19px;">I found  this code helpful while working with schedule tasks(i&#8217;ve been working with it for a while now <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ).</span></p>
<p>Schedule tasks that are created in the Coldfusion Administrator can be accessed as structure programatically. This is particularly in need when we need to check through code whether a schedule task has been executed or not. We can also get the details of the existing schedule tasks that are in the Coldfusion administrator.</p>
<p><span style="font-family:Georgia;font-size:13px;line-height:19px;"> </span></p>
<pre style="font-style:normal;font-variant:normal;font-weight:normal;line-height:18px;font-size:14px;vertical-align:baseline;background-color:#f5f5f5;font-family:Consolas,Monaco,'Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono','Courier New';width:auto;max-height:600px;margin:0 0 10px;padding:5px;"><span style="color:#00008b;"><span style="color:#808080;">&#60;!--- Get the scheduler xml file.  It's stored as WDDX in CFroot dir---&#62;</span>
<span style="color:#0000ff;">&#60;cffile</span> <span style="color:#ff0000;">action</span><span style="color:#0000ff;">="Read"</span>
          <span style="color:#0000ff;"><span style="color:#ff0000;">file</span>="#Server.ColdFusion.RootDir#/lib/neo-cron.xml"</span>
          <span style="color:#0000ff;"><span style="color:#ff0000;">variable</span>="TaskXML"&#62;</span>

<span style="color:#808080;">&#60;!--- Convert the WDDX to CFML - and array of structs ---&#62;  </span>
<span style="color:#0000ff;">&#60;cfwddx <span style="color:#ff0000;">action</span>="WDDX2CFML" <span style="color:#ff0000;">input</span>="#TaskXML#" <span style="color:#ff0000;">output</span>="GetTasks"&#62;</span>

<span style="color:#808080;">&#60;!--- Dump all the schedule tasks in CF Admin in Struct format. ---&#62; </span>
<span style="color:#0000ff;">&#60;cfdump <span style="color:#ff0000;">var</span>="#GetTasks#"&#62;</span></span></pre>
<p><span style="font-family:Georgia;font-size:13px;line-height:19px;">The Scheduler configuration file neo-cron.xml stores all the schedule task details in the CF Admin in xml format. We are simply reading the file and converting the WDDX into an array of structs.</span></p>
<p>The output should look something like this:</p>
<p><img class="alignnone size-full wp-image-145" title="scheduletaskdump" src="http://ajithmanmadhan.wordpress.com/files/2009/08/scheduletaskdump2.jpg" alt="scheduletaskdump" width="349" height="512" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[(Web) Backend Technical Support - (Toronto)]]></title>
<link>http://glennanddenise.wordpress.com/2009/07/28/web-backend-technical-support-toronto/</link>
<pubDate>Tue, 28 Jul 2009 12:51:42 +0000</pubDate>
<dc:creator>Glenn</dc:creator>
<guid>http://glennanddenise.wordpress.com/2009/07/28/web-backend-technical-support-toronto/</guid>
<description><![CDATA[I have a client in Toronto that is looking for a web technical support person. Person would need to ]]></description>
<content:encoded><![CDATA[I have a client in Toronto that is looking for a web technical support person. Person would need to ]]></content:encoded>
</item>
<item>
<title><![CDATA[CF9 out in the wild...]]></title>
<link>http://ajithmanmadhan.wordpress.com/2009/07/20/cf9-out-in-the-wild/</link>
<pubDate>Mon, 20 Jul 2009 17:37:17 +0000</pubDate>
<dc:creator>ajithmanmu</dc:creator>
<guid>http://ajithmanmadhan.wordpress.com/2009/07/20/cf9-out-in-the-wild/</guid>
<description><![CDATA[Adobe Labs just released the much anticipated public beta versions of ColdFusion 9(Centaur) and Cold]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Adobe Labs just released the much anticipated public beta versions of ColdFusion 9(Centaur) and ColdFusion Builder(BOLT). Adobe went for three simple categories of improvement with this release: Increase user productivity, improve integration with popular enterprise software, and simplify the workflow between Adobe products.</p>
<p><strong>Top 10 ColdFusion 9 Features to lookout for:-</strong></p>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">1.Adobe AIR database synchronization</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">By enabling this feature in your AIR application (both on the server and in the client app), the application syncs the data from a ColdFusion datasource to a local SQLite database. To support offline AIR data access, you code ActionScript elements on the client side and CFML on the server side.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Read More</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSAFE323E5-CA8B-429e-BC1C-450DA839D705.html</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">http://askjayvir.blogspot.com/2009/07/coldfusion-9-air-sqlite-offline-support.html</div>
<p><span style="color:#ff00ff;">1.Adobe AIR database synchronization </span></p>
<p>By enabling this feature in your AIR application (both on the server and in the client app), the application syncs the data from a ColdFusion datasource to a local SQLite database. To support offline AIR data access, you code ActionScript elements on the client side and CFML on the server side.</p>
<p><span style="color:#99ccff;"><em><em>Read More</em></em></span></p>
<p><a href="http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSAFE323E5-CA8B-429e-BC1C-450DA839D705.html" target="_blank">http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSAFE323E5-CA8B-429e-BC1C-450DA839D705.html</a></p>
<p><a href="http://askjayvir.blogspot.com/2009/07/coldfusion-9-air-sqlite-offline-support.html" target="_blank">http://askjayvir.blogspot.com/2009/07/coldfusion-9-air-sqlite-offline-support.html </a></p>
<p><span style="color:#ff00ff;">2.Object Relational Mapping (ORM) </span></p>
<p>ORM allows you to do complex database calls without writing a single SQL query thus making your code a lot cleaner and more manageable. This helps save lot of time and your apps will even run faster because of the built-in ORM optimizations in CF9.</p>
<p><em>Read More</em></p>
<p><a href="http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSD628ADC4-A5F7-4079-99E0-FD725BE9B4BD.html" target="_blank">http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSD628ADC4-A5F7-4079-99E0-FD725BE9B4BD.html </a></p>
<p><a href="http://forta.com/blog/index.cfm/2009/7/7/ORM-Rethinking-ColdFusion-Database-Integration" target="_blank">http://forta.com/blog/index.cfm/2009/7/7/ORM-Rethinking-ColdFusion-Database-Integration</a></p>
<p><span style="color:#ff00ff;">3.Flex integration </span></p>
<p>By using the ColdFusion proxy ActionScript classes, you can access several ColdFusion services without actually writing any ColdFusion code for Flex-based applications that run on Flash and AIR . You just call the ColdFusion service straight from your Flex code. ColdFusion 9 now uses Blaze DS to power Flex remoting and messaging.</p>
<p><em>Read More</em></p>
<p><a href="http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WS45F7E41F-825B-4fcd-B96D-D5B7E2107E7E.html" target="_blank">http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WS45F7E41F-825B-4fcd-B96D-D5B7E2107E7E.html </a></p>
<p><a href="http://www.mischefamily.com/nathan/index.cfm/2009/7/15/ColdFusion-9-Flex-Improvements" target="_blank">http://www.mischefamily.com/nathan/index.cfm/2009/7/15/ColdFusion-9-Flex-Improvements </a></p>
<p><span style="color:#ff00ff;">4.ColdFusion as a service </span></p>
<p>ColdFusion 9 has an exposed service layer that lets you to have direct access to a bunch of CF9 services from any server language you use. You can even call them using SOAP or Flash Remoting without writing a single line of CFML. These services include charting, document services, PDF utilities, image manipulation and email. Also these web services can be sandboxed, permitting access only to authorized applications.</p>
<p><em>Read More</em></p>
<p><a href="http://forta.com/blog/index.cfm/2009/6/19/ColdFusion-Functionality-Exposed-As-Services" target="_blank">http://forta.com/blog/index.cfm/2009/6/19/ColdFusion-Functionality-Exposed-As-Services </a></p>
<p><span style="color:#ff00ff;">5.New Enhancements in &#60;cfscript&#62; </span></p>
<p>You can now build CFCs entirely in CFSCRIPT, including Application.cfc. You can invoke any tags and functions in cfscript. You can use new operators like abort, exit, include, and throw, to simplify your cfscript. WriteDump() is the equivalent of &#60;CFDUMP&#62;, WriteLog()is the equivalent of &#60;CFLOG&#62; (both of these are named similarly to the existing WriteOutput() function), Trace() is the equivalent of &#60;CFTRACE&#62;, Location() is the equivalent of &#60;CFLOCATION&#62;, and Throw() is the equivalent of &#60;CFTHROW&#62;.</p>
<p><em>Read More</em></p>
<p><a href="http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7ebf.html" target="_blank">http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7ebf.html </a></p>
<p><span style="color:#ff00ff;">6.Office application integration </span></p>
<p>ColdFusion 9 extends its reach into .NET based technologies like Microsoft SharePoint and MSOffice.The &#60;cfpresentation&#62; tag allows you to create, convert and read presentation files with just a few lines of code.The same thing goes for documents and spreadsheets.</p>
<p><em>Read More</em></p>
<p><a href="http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WS56EA2935-FBD2-4089-8402-FDDA2BAF55FB.html" target="_blank">http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WS56EA2935-FBD2-4089-8402-FDDA2BAF55FB.html </a></p>
<p><span style="color:#ff00ff;">7.Server manager </span></p>
<p>Server Manager is an AIR-based desktop application that allows you to centrally manage multiple ColdFusion servers from one location. We can apply hot fixes, change configs, create data sources etc to all servers at once. We can also clear caches across a cluster of ColdFusion servers.</p>
<p><em>Read More</em></p>
<p><a href="http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WS3D7763CA-4F04-4376-BF4C-9232C87C409F.html" target="_blank">http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WS3D7763CA-4F04-4376-BF4C-9232C87C409F.html </a></p>
<p><span style="color:#ff00ff;">8.PDF integration </span></p>
<p>With the enhanced PDF support in CF9, you can extract all the content form a PDF file. You can also update PDFs and even optimize them on the server .</p>
<p><em>Read More</em></p>
<p><a href="http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cdd76f064-8000.html" target="_blank">http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cdd76f064-8000.html </a></p>
<p><span style="color:#ff00ff;">9.Dynamic UI Controls </span></p>
<p>ColdFusion 9 provides access to a broader set of AJAX controls that  use the new Ext JS 3.0 library via easy to use CFML tags and attributes. New controls include mapping, Video Player, multi-file upload, enhanced data grid, accordion navigation, progress indicator, confirmations and alerts as well as customizable buttons and sliders.</p>
<p><em>Read More</em></p>
<p><a href="http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSe9cbe5cf462523a06a6137d81220767786c-8000.html" target="_blank">http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSe9cbe5cf462523a06a6137d81220767786c-8000.html </a></p>
<p><span style="color:#ff00ff;">10.ColdFusion Builder (BOLT)</span></p>
<p>ColdFusion Builder is an Eclipse based IDE for CF development that is deeply integrated with CF9. With just a few clicks, you can create all the necessary CRUD code to use in your CF application or your Flex application. We can also extend ColdFusion Builder with our own extensions using CFML.</p>
<p><em>Read More</em></p>
<p><a href="http://labs.adobe.com/technologies/coldfusionbuilder/" target="_blank">http://labs.adobe.com/technologies/coldfusionbuilder/ </a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Playing SWF files using cfcontent]]></title>
<link>http://ajithmanmadhan.wordpress.com/2009/07/14/playing-swf-files-using-cfcontent/</link>
<pubDate>Tue, 14 Jul 2009 17:32:38 +0000</pubDate>
<dc:creator>ajithmanmu</dc:creator>
<guid>http://ajithmanmadhan.wordpress.com/2009/07/14/playing-swf-files-using-cfcontent/</guid>
<description><![CDATA[Playing swf files using cfcontent is very simple. The video will not play when we call only the HTML]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Playing swf files using<span style="color:#993366;"> </span><span style="color:#993366;"><a href="http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_c_11.html" target="_blank">cfcontent</a></span> is very simple.</p>
<p>The video will not play when we call only the HTML page in which the flash video is embedded. Instead we also need to call the swf file using cfcontent to play the video files.</p>
<p>Playing flash files embedded in HTML can be done by the following code snippet:-</p>
<p><span style="color:#ff0000;"><em>&#60;cfcontent type=&#8221;application/x-shockwave-flash;&#8221; file=&#8221;#FilePathandFileNameOfSWFFile#&#8221; deletefile=&#8221;no&#8221;&#62;</em></span></p>
<p><span style="color:#ff0000;"><em>&#60;cfcontent type=&#8221;text/html&#8221; file=&#8221;#FilePathandFileNameOfHTMLFile#&#8221; deletefile=&#8221;no&#8221;&#62;</em></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hey, everybody's doing it!]]></title>
<link>http://scientifictendencies.wordpress.com/2009/07/14/hey-everybodys-doing-it/</link>
<pubDate>Tue, 14 Jul 2009 13:37:36 +0000</pubDate>
<dc:creator>scientifictendencies</dc:creator>
<guid>http://scientifictendencies.wordpress.com/2009/07/14/hey-everybodys-doing-it/</guid>
<description><![CDATA[Science + Music = Me A concise, simple equation that will hopefully also come to describe this blog.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Science + Music = Me</p>
<p>A concise, simple equation that will hopefully also come to describe this blog.  I plan to blog on scientific stories I find interesting and old and new music I like.  Incongruous?  Possibly.  Life-changing?  No.  Interesting?  Hopefully.  A cold-fusion powered guitar amp?  Yes please.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Why every Flex developer should learn Cold Fusion (new betas)]]></title>
<link>http://aflexworld.wordpress.com/2009/07/13/why-every-flex-developer-should-learn-cold-fusion-new-betas/</link>
<pubDate>Mon, 13 Jul 2009 18:58:27 +0000</pubDate>
<dc:creator>aflexwrold</dc:creator>
<guid>http://aflexworld.wordpress.com/2009/07/13/why-every-flex-developer-should-learn-cold-fusion-new-betas/</guid>
<description><![CDATA[I must admit that, even though I&#8217;m working for Adobe and have worked with Flex for a long time]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft size-medium wp-image-238" title="ColdFusion-Rocks-Dude" src="http://aflexworld.wordpress.com/files/2009/07/coldfusion-rocks-dude1.png?w=178" alt="ColdFusion-Rocks-Dude" width="178" height="300" />I must admit that, even though I&#8217;m working for Adobe and have worked with Flex for a long time, Cold Fusion was still a bit off my limit. Now, with the new beta releases of <a href="http://labs.adobe.com/technologies/coldfusion9/">CF9 server</a> and <a href="http://labs.adobe.com/technologies/coldfusionbuilder/">CF9 Builder</a>, I have taken the opportunity to get into it and here is my conclusion plain and straight: Cold Fusion is amazing and every Flash developer should learn and use it.</p>
<p>Why? First off, it makes your life sooooooo much easier. Things that would take you ages in PHP or Java take you minutes, few minutes, to get them done in CF. This is how a query looks like in CF:</p>
<pre>&#60;cfquery datasource="cfartgallery" name="myquery"&#62;
SELECT * FROM APP.ARTISTS WHERE LASTNAME = 'Kim'
&#60;/cfquery&#62;</pre>
<p>For anyone who has been querying with PHP, this is heaven. And come to think of it, you don&#8217;t even have to do this out of Cold Fusion. With CF9, every Flex/Flash developer (as any PHP, Java or .net) can invoke CF as a web service. Take a look at this:</p>
<pre>
&#60;mx:Application xmlns:cf="coldfusion.service.mxml.*"&#62;
&#60;cf:Mail id="cfMail"
to="bill.gates@microsoft.com"
from="steve@mac.com"
subject="Have you heard about CF9"
content="It rocks!"
type="html"    /&#62;
cfMail.execute();</pre>
<p>via <a href="http://forta.com/blog/index.cfm/2009/6/19/ColdFusion-Functionality-Exposed-As-Services">Forta.com</a></p>
<p>And remember: CF9 Builder comes as a standalone installation or as part of your Eclipse, which means it also integrates into Flash Builder. Come to speak of Microsoft: CF9 has a really nice integration with Sharepoint and the major office products, like Word, Excel and Powerpoint. You can dynamically generate PPTs and XLSs, and convert DOCs and PPTs to PDFs. You can read more about the new features on S<a href="http://webkitchen.be/2009/07/13/my-9-favorite-coldfusion-9-features/">erge&#8217;s blog here</a>. By you should be all hot to try out a bit of CF. I promise it will make your life so much easier, allow you to be more productive and be a better Flash developer. Here are two docs that will be your new bible. See them as the old and new testament <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<ul>
<li><a href="https://share.acrobat.com/adc/document.do?docid=f5ade5e8-20ca-4bcc-8aa5-bbfff6389be1">Developing Applications with Adobe Cold Fusion 9</a></li>
<li><a href="https://share.acrobat.com/adc/document.do?docid=1d18bc65-61c3-41a1-8fe3-6de4387959b9">Adobe Cold Fusion 9 Reference Guide<br />
</a></li>
</ul>
<p>For a quick start, don&#8217;t miss out on the videos over at <a href="http://tv.adobe.com">Adobe TV</a> (tv.adobe.com). I&#8217;ve made a quick selection of the three videos that will best get you started.</p>
<ul>
<li><a href="http://tv.adobe.com/#vi+f1472v1517">Build a Cold Fusion powered Flex app</a> (Ben Forta)</li>
<li><a href="http://tv.adobe.com/#vi+f1472v1107">Flex for Cold Fusion developers</a> (Tim Buntel)</li>
<li><a href="http://tv.adobe.com/#vi+f1472v1112">Proxy Tags in CF9</a> (Ryan Stewart)</li>
</ul>
</div>]]></content:encoded>
</item>

</channel>
</rss>
