<rss version="2.0">
			<channel>
			<title>RIA CFML Flex Flash</title>
			<link>http://www.cfcdeveloper.com/index.cfm</link>
			<description>Adobe RIA Development</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 07:11:52 -0700</pubDate>
			<lastBuildDate>Sat, 05 Dec 2009 13:11:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>clint317@cfcdeveloper.com</managingEditor>
			<webMaster>clint317@cfcdeveloper.com</webMaster>
			
			
			
			
			
			<item>
				<title>OVP Open Video Player for Flex</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2009/12/5/OVP-Open-Video-Player-for-Flex</link>
				<description>
				
				I&apos;m working on creating a simple video chat component for my application and came across this open source solution from the good folks at &lt;a href=&quot;http://www.openvideoplayer.com&quot; target=&quot;_blank&quot;&gt;OpenVideoPlayer.com&lt;/a&gt;. You can download the latest &lt;a href=&quot;http://openvideoplayer.sourceforge.net/downloads&quot; target=&quot;_blank&quot;&gt;open source flash video player&lt;/a&gt; version from SourceForge. Open it up and go to the core\bin and drag the ovp_core.swc to your project&apos;s asset folder. Now open project properties within your project and add the swc file through the Flex Build Path, Library path. Now the openvideoplayer package and akamai package will be available for development from the org and com packages.

Below is a very basic Hello World I used to make sure it operated correctly as expected. I&apos;m not sure yet if I&apos;ll use it for my specific needs which are very basic. This OVP brings a lot of other features I may or may not need, like running ads, which I may need. But for now I&apos;ll go through and see if it has the features I require before making a commitment.

&lt;code&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot; layout=&quot;absolute&quot; creationComplete=&quot;init()&quot;&gt;

	&lt;mx:Script&gt;
		&lt;![CDATA[
			import flash.events.*;
			import org.openvideoplayer.net.*;
			import org.openvideoplayer.events.*;
			import com.akamai.net.*;
			
			public var net:AkamaiConnection;
			
			public function init():void {
				ovc = new OvpConnection();
				ovc.addEventListener(NetStatusEvent.NET_STATUS,netStatusHandler)
				ovc.connect(&quot;localhost/devCRW&quot;);
				//net = new AkamaiConnection();
				//net.addEventListener(NetStatusEvent.NET_STATUS,netStatusHandler);
				//net.connect(&quot;localhost/devCRW&quot;);
			}
			public function netStatusHandler(e:NetStatusEvent):void {
				var info:Object = e.info;
				switch(info.code) {
					case &quot;NetConnection.Connect.Success&quot;:
						output.text = &quot;Hello World!&quot;;
					break;
					default:
						output.text = &quot;Sorry, try again.&quot;;
				}
			}
		]]&gt;
	&lt;/mx:Script&gt;
	
	&lt;mx:Text x=&quot;10&quot; y=&quot;10&quot; id=&quot;output&quot;/&gt;
	
&lt;/mx:Application&gt;
&lt;/code&gt;

Notice that you don&apos;t include the usual rtmp:// when connecting. I believe it does some of it&apos;s own decision making about connection protocols, meaning you don&apos;t have to test connections and try HTTP tunneling etc.. becuase it&apos;ll do it for you. Now to put up a simple video UI, connect it to my camera, and then stream it to FMS and back again.
				
				</description>
				
				<category>Resources</category>
				
				<category>Flex/Flash/AS3</category>
				
				<pubDate>Sat, 05 Dec 2009 13:11:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2009/12/5/OVP-Open-Video-Player-for-Flex</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Generating and using site documentation, cfcdoc</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2009/9/6/Generating-and-using-site-documentation-cfcdoc</link>
				<description>
				
				I&apos;m completely embarrased to admit it but, I didn&apos;t know until yesterday that not only can I create my own web site&apos;s API documentation automatically but how useful it can be. Sure beats glazing over my directories and trying to remember where everything is and what it does.

My latest project has got me dealing heavily with application API&apos;s and it&apos;s important to read and understand how to apply the API to development, especially when using OO framework architectures. Reading and using the API&apos;s for my Coldbox framework (&lt;a href=&quot;http://www.coldboxframework.com/api/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;) I got to thinking that having this documentation for my own site would be very useful and very cool. It literally puts OO into perspective, for me anyways since I like the API&apos;s, and helps me to visualize how my classes (components) are organized, if anything is out of place, and if I can optimize anything.

At first I was using the CFIDE component utilities (localhost:8300/cfide/componentutils/) like the explorer and the componentdoc. But it would always list packages from everywhere, including the CFIDE and WEB-INF folders. And then it would list the pakages from the mappings as well as the folder it pointed to. So I edited the code to exclude folders, thinking that there&apos;s got to be a better way, and there was. Looking back at Coldbox&apos;s API I notice it&apos;s from an open source RIAforge thing, get it here: &lt;a href=&quot;http://cfcdoc.riaforge.org/&quot; target=&quot;_blank&quot;&gt;CFCDoc&lt;/a&gt;. It&apos;s so easy, just extract the zip to your root under a folder, like &apos;/api/&apos; and go there. There&apos;s information about what to do next because all the packages you&apos;ll see at first are the one&apos;s in the /api/ folder you placed it in, not very useful. But basically you add or delete folders to include through a simple config xml file and that&apos;s it, your exploring your very own API.

Depending on the length you want to go to in your documentation you can go really wild with component and function attributes like hint and displayname, probably more too. Using these extra attributes I&apos;m sure you thought were useless and time consuming you can add enough information to make the API a virtual users manual. At the very least you can use the API to match up with your UML class models. I&apos;m thinking also that planning a site&apos;s structure could be done API style instead of UML style, maybe even faster. You can think of what classes you need and how to package them for your application doing API visualization. In other words, what should your API look like and is it all packaged logically from an API documentation perspective?
				
				</description>
				
				<category>Resources</category>
				
				<category>OOP/Patterns</category>
				
				<category>Frameworks</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Sun, 06 Sep 2009 09:17:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2009/9/6/Generating-and-using-site-documentation-cfcdoc</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Free web-based UML diagram tool</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2009/9/3/Free-webbased-UML-diagram-tool</link>
				<description>
				
				This is really cool, a simple web-based UML diagram tool you can use on the fly without being at the web site it is served from. Without even going to, or even signing up with, &lt;a href=&quot;http://yuml.me/&quot; target=&quot;_blank&quot;&gt;Yuml.me&lt;/a&gt; I can create a UML model typing in what I want into the address bar, then just copy and paste that into my blog or anywhere else I can use the URL to share and display it.

Since you asked, of course I&apos;ll show you an example right here. I will create a user gateway class [UsersGateway|+DNS;+User|+getUserBean();+getAllUsers()]:

&lt;img src=&quot;http://yuml.me/diagram/scruffy/class/[UsersGateway|+DNS;+User|+getUserBean();+getAllUsers()]&quot; /&gt;

You simply use an img tag with the source http://yuml.me/diagram/class/, the &quot;scruffy&quot; option makes the output look less formal.
				
				</description>
				
				<category>OOP/Patterns</category>
				
				<category>Resources</category>
				
				<pubDate>Thu, 03 Sep 2009 14:50:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2009/9/3/Free-webbased-UML-diagram-tool</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Flex Key Codes</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2009/8/25/Flex-Key-Codes</link>
				<description>
				
				Just a reference for myself:

Keybaord:
Enter = 13,
` = 192,
1 = 49,
2 = 50,
3 = 51,
4 = 52,
5 = 53,
6 = 54,
7 = 55,
8 = 56,
9 = 57,
0 = 48,
- = 189,
= = 187,
Backspace = 8,
[ = 219,
] = 221,
\ = 220,
; = 186,
&apos; = 222,
, = 188,
. = 190,
/ = 191,
Esc = 27,
Shift = 16,
Ctrl = 17,
Tab = 9,
Spacebar = 32
A = 65,
B = 66,
C = 67,
D = 68,
E = 69,
F = 70,
G = 71,
H = 72,
I = 73,
J = 74,
K = 75,
L = 76,
M = 77,
N = 78,
O = 79,
P = 80,
Q = 81,
R = 82,
S = 83,
T = 84,
U = 85,
V = 86,
W = 87,
X = 88,
Y = 89,
Z = 90

Other:
Enter = 13,
up = 38,
right = 39,
down = 40,
left = 37,
Insert = 45,
Home = 36,
Delete = 46,
End = 35,
Page Up = 33,
Page Down = 34

Keypad:
Num Lock = 144,
/ = 111,
* = 106,
- = 109,
+ = 107,
Locked:
. = 110,
0 = 96,
1 = 97,
2 = 98,
3 = 99,
4 = 100,
5 = 101,
6 = 102,
7 = 103,
8 = 104,
9 = 105
Unlocked:
. = 46,
0 = 45,
1 = 35,
2 = 40,
3 = 34,
4 = 37,
5 = 12,
6 = 39,
7 = 36,
8 = 38,
9 = 33

OLD:
CTRL + A = 1
CTRL + B = 2
CTRL + C = 3
CTRL + D = 4
CTRL + E = 5
CTRL + F = 6
CTRL + G = 7
CTRL + H = 8
CTRL + I = 9
CTRL + J = 10
CTRL + K = 11
CTRL + L = 12
CTRL + M = 13
CTRL + N = 14
CTRL + O = 15
CTRL + P = 16
CTRL + Q = 17
CTRL + R = 18
CTRL + S = 19
CTRL + T = 20
CTRL + U = 21
CTRL + V = 22
CTRL + W = 23
CTRL + X = 24
CTRL + Y = 25
CTRL + Z = 26
ALT + A = 197
ALT + B = 166
ALT + C = 199
ALT + D = 206
ALT + E = 180
ALT + F = 207
ALT + G = 169
ALT + H = 211
ALT + I = 136
ALT + J = 212
ALT + K = 190
ALT + L = 210
ALT + M = 194
ALT + N = 152
ALT + O = 216
ALT + P = 222
ALT + Q = 140
ALT + R = 174
ALT + S = 205
ALT + T = 134
ALT + U = 168
ALT + V = 175
ALT + W = 221
ALT + X = 188
ALT + Y = 193
ALT + Z = 253
				
				</description>
				
				<category>Resources</category>
				
				<category>Flex/Flash/AS3</category>
				
				<pubDate>Tue, 25 Aug 2009 08:57:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2009/8/25/Flex-Key-Codes</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>ActionScript 3 Tutorial AS3 for Flash &amp; Flex</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2009/8/24/ActionScript-3-Tutorial-AS3-for-Flash--Flex</link>
				<description>
				
				Working in Flex this morning and as usual I need to do a search for some information on an AS3 class and I came across this excellent tutorial. It&apos;s mostly a beginners guide but a good refresher if you&apos;ve been away from AS3, Flash or Flex for a while. Sometimes I can go a whole year or more without doing any ActionScripting, because I&apos;m doing a ColdFusion project, then have to jump right into another project requiring AS.

&lt;a href=&quot;http://www.senocular.com/flash/tutorials/as3withflashcs3/&quot; target=&quot;_blank&quot;&gt;Senocular.com&apos;s AS3 tutorial for Flash CS3&lt;/a&gt;
				
				</description>
				
				<category>Flex/Flash/AS3</category>
				
				<category>Resources</category>
				
				<pubDate>Mon, 24 Aug 2009 10:35:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2009/8/24/ActionScript-3-Tutorial-AS3-for-Flash--Flex</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>ColdFusion 9 Beta Hosting Available</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2009/8/7/ColdFusion-9-Beta-Hosting-Available</link>
				<description>
				
				All of my sites are hosted by Crystaltech.com&apos;s ColdFusion plans and I&apos;ve always been on top asking for the next CF version before they&apos;ve gotten it. This time they have beaten me to the punch, offering the new CF 9 in beta for testing before I knew it was out myself, too busy to notice I guess. Hurray for Crystal Tech! Are they the first this time? Here&apos;s the email:

Dear Customer, 
ColdFusion 9 Beta plans are now available! 

This latest iteration from Adobe includes many exciting new features and improvements that will make your life easier, including: 

Adobe&apos;s first ever ColdFusion IDE, ColdFusion&#xae; Builder?

Better application performance with more granular control over code, templates, and applications

Language and database enhancements

And much more

After ordering your FREE Beta Plan, please share your thoughts in our CF9 Beta public forums. As one of the first developers to test-drive CF9 in a full-featured hosting environment, we&apos;ll be anxious to hear what you like as well as what needs improvement. 
We&apos;re thrilled to be the first host fully backed by Adobe to offer CF9 Beta, and hope you&apos;re as eager to experience it as we are to offer it. Please let your colleagues and other industry contacts know - in fact, feel free to tweet it from the virtual rooftops. Simply click the link below, login to your Twitter account, and either use the embedded message or create your own. 

**Please note that the beta plan is only available on new site orders made at http://www.crystaltech.com/coldfusion9.aspx. The free beta is not available for existing site upgrades.

Happy Test-Driving!
-The CrystalTech Team
				
				</description>
				
				<category>Resources</category>
				
				<category>ColdFusion</category>
				
				<category>Announcements</category>
				
				<pubDate>Fri, 07 Aug 2009 04:47:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2009/8/7/ColdFusion-9-Beta-Hosting-Available</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>CFC Method Testing in Coldbox</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2009/5/20/CFC-Method-Testing-in-Coldbox</link>
				<description>
				
				I got tired of trying to get cfUnit working and all I wanted to do was test component methods. I wanted to be able to simply point to it, test it, and enter arguments if required. And I wanted this set up somewhere easy I could use quickly, repeatedly, effortlessly, and painlessly (word?).

In almost all my applications I have a &apos;webmaster&apos; directory where I run test. Lately I&apos;ve found myself getting fancy with setting up a web development control panel of sorts. Whereas web sites generally have administration control for admin users, I&apos;ve been building in webmaster control for developers. Mostly things like server and framework info, links to documentation, framework and site functionality examples, and etc.

Now I&apos;m adding a little CFC Test form where I enter my cfc path, the method name, and arguments. It will pass the event argument so you can also test cfc handlers.

Warning, I just created this a few hours ago. It&apos;s tested to work but I haven&apos;t cleaned it up or put in validation and error handling yet.

views/webmaster/index.cfm (webmaster control panel)
&lt;code&gt;&lt;cfform name=&quot;cfctestform&quot; action=&quot;#cgi.SCRIPT_NAME#&quot; method=&quot;post&quot; format=&quot;html&quot;&gt;
	&lt;cfinput name=&quot;do&quot; type=&quot;hidden&quot; value=&quot;webmaster.panelcontrol.testmethod&quot; /&gt;
	&lt;cfinput name=&quot;sbIsEnabled&quot; type=&quot;hidden&quot; value=&quot;0&quot; /&gt;
	Enter Component Path:&lt;br /&gt;&lt;cfinput name=&quot;cfcpath&quot; type=&quot;text&quot; /&gt;
	&lt;br /&gt;
	Enter Method to Test:&lt;br /&gt;&lt;cfinput name=&quot;cfcmethod&quot; type=&quot;text&quot; /&gt;
	&lt;br /&gt;
	Arguments:(comma seperated list)&lt;br /&gt;&lt;cfinput name=&quot;methodargs&quot; type=&quot;text&quot; width=&quot;80&quot; /&gt;
	&lt;br /&gt;
	&lt;cfinput type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Run Test&quot; /&gt;
&lt;/cfform&gt;&lt;/code&gt;

events/webmaster/panelcontrol.cfc (Coldbox handler)
&lt;code&gt;&lt;cffunction name=&quot;testmethod&quot; access=&quot;public&quot; returntype=&quot;void&quot; output=&quot;true&quot;&gt;
	&lt;cfargument name=&quot;Event&quot; type=&quot;coldbox.system.beans.requestContext&quot;&gt;
	&lt;cfset var rc 		= arguments.event.getCollection()&gt;
	&lt;cfset var ret 		= &quot;&quot;&gt;
	&lt;cfset var cfcObj 	= createObject(&quot;component&quot;,rc.cfcpath)&gt;
	&lt;cfif listLen(rc.methodargs)&gt;
		&lt;cfloop from=&quot;1&quot; to=&quot;#listLen(rc.methodargs)#&quot; index=&quot;i&quot; step=&quot;2&quot;&gt;
			&lt;cfset evaluate(&quot;arguments[&apos;#listGetAt(rc.methodargs,i)#&apos;] = &apos;#listGetAt(rc.methodargs,i+1)#&apos;&quot;)&gt;
		&lt;/cfloop&gt;
	&lt;/cfif&gt;
	&lt;cfinvoke component=&quot;#rc.cfcpath#&quot; method=&quot;#rc.cfcmethod#&quot; argumentcollection=&quot;#arguments#&quot; returnvariable=&quot;ret&quot;&gt;
	&lt;cfscript&gt;
		//Display
		event.setValue(&quot;cfctestresults&quot;,ret);
		event.setValue(&quot;author&quot;,&quot;Clint Willard&quot;);
		event.setView(&quot;webmaster/dspCfcTestResult&quot;);
	&lt;/cfscript&gt;
&lt;/cffunction&gt;&lt;/code&gt;
Basically it loops through the method arguments list you entered in the form setting them as part of the arguments struct. That arguments struct is then passed to the invoked component and method, along with the event object. Then the view is set to output with the test results, whatever the method is set to return.

views/webmaster/dspcfcTestResult.cfm
&lt;code&gt;&lt;cfscript&gt;
	cfcresult = event.getValue(&quot;cfctestresults&quot;,&quot;NA&quot;);
&lt;/cfscript&gt;
&lt;cfoutput&gt;
	#dump(cfcresult)#
&lt;/cfoutput&gt;&lt;/code&gt;
KISS output.

Let me know if this might be a good idea to expand on or should I just LOL learn cfUnit? And the webmaster information and control panel stuff?
				
				</description>
				
				<category>Coldbox 2.6</category>
				
				<category>ColdFusion</category>
				
				<category>Frameworks</category>
				
				<category>Resources</category>
				
				<pubDate>Wed, 20 May 2009 18:31:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2009/5/20/CFC-Method-Testing-in-Coldbox</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Flash SEO</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2008/8/7/Flash-SEO</link>
				<description>
				
				I was ask about Flash SEO today and realized I hadn&apos;t given it much thought, maybe due to working on so many internal projects in the past. But I revisited the topic and did some research.

Although Google, and I think Yahoo, are claiming to be working on new technologies to index Flash content, they admit it would only be static text at best. So don&apos;t count on technology to do the trick anytime soon.

The truth is that you must provide the content via the page displaying the flash content through some means that their spiders will get what you want them to find and index. I offer a few observations here to help you get your Flash application indexed with search engines.

Use a div tag to provide an HTML alternative to browsers without a Flash plugin detected. This will trigger spiders to consume the alternate content, which you should include text and links. Be sure that the alternate content and the Flash application closely matches or you could get banned.

Use Flash page indexing if possible to create more url links to your Flash content within the Flash application. SwfAddress is an excellent resources for providing such capabilities, check it out.

Other than that, if your Flash content is embedded into an HTML page surrounded by other indexable content, then you have less to worry about. But for those who&apos;s entire site is Flash based, I hope my tips will help.
				
				</description>
				
				<category>Flex/Flash/AS3</category>
				
				<category>Resources</category>
				
				<pubDate>Thu, 07 Aug 2008 18:30:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2008/8/7/Flash-SEO</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>UML Sequence Diagrams made easy</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2008/5/21/UML-Sequence-Diagrams-made-easy</link>
				<description>
				
				Web based sequence diagram tool. Enter your logic and out pops the image for your documentation.

&lt;a href=&quot;http://www.websequencediagrams.com/&quot; target=&quot;_blank&quot;&gt;Web Sequence Diagrams&lt;/a&gt;
				
				</description>
				
				<category>OOP/Patterns</category>
				
				<category>Resources</category>
				
				<pubDate>Wed, 21 May 2008 08:21:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2008/5/21/UML-Sequence-Diagrams-made-easy</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Adobe conferencing and new portal</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2007/10/1/Adobe-conferencing-and-new-portal</link>
				<description>
				
				Adobe Developer Center: &lt;a href=&quot;http://www.adobe.com/devnet/&quot; target=&quot;_blank&quot;&gt;http://www.adobe.com/devnet/&lt;/a&gt; - A new consolidated portal with everything you need to build on the Adobe platform and products.

Adobe Acrobat Connect: &lt;a href=&quot;http://www.adobe.com/products/acrobatconnect/&quot; target=&quot;_blank&quot;&gt;http://www.adobe.com/products/acrobatconnect/&lt;/a&gt; - Web conferencing from Adobe, free 15 day trial, $39/month. Unlimited meetings up to 15 ppl. Screen share, phone connect, whiteboard, chat, audio. Flex interface.
				
				</description>
				
				<category>Announcements</category>
				
				<category>ColdFusion</category>
				
				<category>Flex/Flash/AS3</category>
				
				<category>Resources</category>
				
				<pubDate>Mon, 01 Oct 2007 05:22:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2007/10/1/Adobe-conferencing-and-new-portal</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Gabbly.com - Free chat on your site.</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2007/7/24/Gabblycom--Free-chat-on-your-site</link>
				<description>
				
				Google has a pretty cool chat application. I wish I thought of this myself. Place gabbly.com in front of any url address to see a chat text box in the upper right corner. Also has option to make it transparent and I think move it around.

Chat with me here (when I&apos;m available) at: &lt;a href=&quot;http://gabbly.com/www.cfcdeveloper.com&quot;&gt;http://gabbly.com/www.cfcdeveloper.com&lt;/a&gt;

Or just go to &lt;a href=&quot;http://www.gabbly.com&quot; target=&quot;_blank&quot;&gt;http://www.gabbly.com&lt;/a&gt;

One good use I found so far is to send the link to a web site client with the url of a page I want to talk about. Now if only the chat box would stay up for two people while surfing and the browser changes for both at the same time. Surf and chat simultaniously.
				
				</description>
				
				<category>Bits and Bytes</category>
				
				<category>Resources</category>
				
				<pubDate>Tue, 24 Jul 2007 06:49:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2007/7/24/Gabblycom--Free-chat-on-your-site</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>My Latest Web Site Creation</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2007/6/25/My-Latest-Web-Site-Creation</link>
				<description>
				
				&lt;a href=&quot;http://www.purealoebeauty.com&quot; target=&quot;_blank&quot;&gt;Pure Aloe Beauty&lt;/a&gt;

Created for my wife as she wants to get into the cosmetic beauty skin care business.

The thing to note for my developer peers is what I used to create it, &lt;a href=&quot;http://www.cfshopkart.com/&quot; target=&quot;_blank&quot;&gt;CF Shopkart 4.5&lt;/a&gt;. The free open source version is 4.5 and is no longer supported, but is available as a community project. The guy who created it is working on another completely new re-write of the code and is calling his new version CF ShopkartSE, now available as a beta with some features not yet finished. The free 4.5 version though is very much finished and extremely easy to manipulate and recode yourself, take a look at my wife&apos;s &lt;a href=&quot;http://www.purealoebeauty.com&quot; target=&quot;_blank&quot;&gt;Pure Aloe Beauty&lt;/a&gt; site compared to his out-of-the-box default look. It is all ColdFusion based but could use a lot of code rewrite to take advantage of MX capabilities like CFC&apos;s, MVC, and other OOP patterns etc.. So if you need an excellent ColdFusion e-commerce starter kit with barebone parts you can put together, this is a golden find. In regards to features, in my opinion CF Shopkart 4.5 ranks right up there with oscommerce.
				
				</description>
				
				<category>Resources</category>
				
				<category>ColdFusion</category>
				
				<category>Bits and Bytes</category>
				
				<pubDate>Mon, 25 Jun 2007 04:44:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2007/6/25/My-Latest-Web-Site-Creation</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Video Tutorials Coming Soon!!!</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2007/4/20/Video-Tutorials-Coming-Soon</link>
				<description>
				
				Creating web based tutorials has traditionally been done using what I call the linear method of tutorial production. This is simply a text and images style of showing how to do something in steps. This way to me is much too time consuming and way too boring. Enter the 21st century..

The technology for screen and audio recording is available, so why not use it, right? Introducing a new tutorial source right here on CFCDeveloper.com. I can get work done and show you some tricks at the same time, how cool would that be!

The &quot;Creating an MVC ColdFusion OOP Application&quot; tutorial I started here in text form will be discontinued in favor for video and audio.

Stay tuned...
				
				</description>
				
				<category>Announcements</category>
				
				<category>ColdFusion</category>
				
				<category>Flex/Flash/AS3</category>
				
				<category>JavaScript/Ajax</category>
				
				<category>OOP/Patterns</category>
				
				<category>Resources</category>
				
				<pubDate>Fri, 20 Apr 2007 10:20:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2007/4/20/Video-Tutorials-Coming-Soon</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>A regular expression lesson.</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2006/5/16/A-regular-expression-lesson</link>
				<description>
				
				So I&apos;m looking at this text file that has 80,000+ lines of log entries repeating with something like:

&quot;Error&quot;,&quot;jrpp-48&quot;,&quot;04/30/06&quot;,&quot;09:53:08&quot;,&quot;SixBits&quot;,&quot;Element CONTENTDATE is undefined in STOBJECT. The specific sequence of files included or processed is: D:\Sixbits_Spectra\site\reportobject.cfm, line: 17 &quot;
coldfusion.runtime.UndefinedElementException: Element CONTENTDATE is undefined in STOBJECT.
	at coldfusion.runtime.DotResolver.resolveSplitNameInMap(DotResolver.java:98)
	at coldfusion.runtime.CfJspPage._resolve(CfJspPage.java:1011)
	at coldfusion.runtime.CfJspPage._resolveAndAutoscalarize(CfJspPage.java:1123)
	at cfarticle2emeta2ecfm375519496.runPage(D:\Sixbits_Spectra\site\includes\article.meta.cfm:17)
	at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
	at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
	at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1915)
	at cfSixbitsForm2ecfm106390729.runPage(D:\Sixbits_Spectra\customtags\SixbitsForm.cfm:13)
	at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
	at coldfusion.filter.CFVariablesScopeFilter.invoke(CFVariablesScopeFilter.java:63)
	at coldfusion.tagext.lang.ModuleTag.doStartTag(ModuleTag.java:255)
	at cfreportobject2ecfm535651810.runPage(D:\Sixbits_Spectra\site\reportobject.cfm:4)
	at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
	at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
	at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
	at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:209)
	at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
	at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
	at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
	at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
	at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
	at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
	at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
	at coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
	at coldfusion.CfmServlet.service(CfmServlet.java:107)
	at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
	at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
	at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
	at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
	at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
	at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
	at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
	at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

and what I want to do is open this in Excel using a comma delimited list and quote text qualifier. It&apos;s garbage if you open as is. I had two options. One, open the text file and edit by hand deleting lines I didn&apos;t want, which would have taken till Christmas. Or two, find a way to edit the text file using regular expressions. I choose the later and figured a few expressions you might find useful one day.

Fist of all, word, notepad, and wordpad have only a simple form of find and replace not powerful enough for this job. With a search on Google I found the perfect weapon; &quot;&lt;a href=&quot;http://www.divlocsoft.com/&quot; target=&quot;_blank&quot;&gt;Actual Search &amp; Replace&lt;/a&gt;&quot;. I&apos;m not going to go into how to use it or how to use regular expressions. Only that I found a useful tool to share and a few expressions.

I wanted to get this huge file down to just a list of the lines useful for Excel. The one with the qoutes and commas, not the rest. Here&apos;s the expressions I used:

To take out the bulk, all of the lines beginning with the tab and &quot;at&quot; down to the last line before a line with qoutes. Reads (tab-&quot;at&quot;-space-&quot;c&quot;-anything-first &quot;6&quot; encountered-followed by &quot;6)&quot;).
&lt;div id=&quot;code&quot;&gt;\tat\sc.*?66\)&lt;/div&gt;
Use delete instead of Replace.

And what&apos;s left over are some stragglers and empty lines. Lets get rid of the empty lines. Reads (a new line at the end of a line-anything-the first occurance at the beginning of a line of a qoute).
&lt;div id=&quot;code&quot;&gt;(\n)$.*?^(\&quot;)&lt;/div&gt;
Replace with $1$2 (new line and a qoute).

And finally get rid of all empty lines left over. Basically I wanted to do a &quot;delete all except for&quot; expression. Reads (at the beginning of lines-not having with a qoute-anything-first occurance-end of line-not having a qoute).
&lt;div id=&quot;code&quot;&gt;^[^\&quot;].*?$[^\&quot;]&lt;/div&gt;
Use delete instead of Replace.

BTW, under Options in the software I only had &quot;.&quot; Matches Line Separators Too checked. Well, that&apos;s it. Don&apos;t sue me if I&apos;m wrong or incorrect or could have done it easier &quot;this way&quot; instead or if I mispelled something.
				
				</description>
				
				<category>Bits and Bytes</category>
				
				<category>Resources</category>
				
				<pubDate>Tue, 16 May 2006 13:43:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2006/5/16/A-regular-expression-lesson</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Ripping Radio to MP3 on your PC</title>
				<link>http://www.cfcdeveloper.com/index.cfm/2006/4/19/Ripping-Radio-to-MP3-on-your-PC</link>
				<description>
				
				I listen to free online radio streams a lot at home and work. What can I say, I&apos;m cheap. And finding my kind of music (trance) to buy on DVD at the music store is rare. However, I can&apos;t listen to online radio streams on the road. Sure I can find a few downloadable Mp3&apos;s using peer-to-peer and other sources to burn to DVD but it&apos;s just not as good as what&apos;s playing on the net radio. So wouldn&apos;t it be great to record these radio streams and then burn them to DVD? I have the answer. By the way, I&apos;m using a Windows XP Pro system.

First, pull up your volume controls. Go to options/record or options/properties/recording. Check &apos;Stereo Mix&apos;. Now back to your Recording Control select Stereo Mix. If you can do this you a third done.

Second, go get and download a program called &apos;opcode - direct2disk&apos;. I&apos;m not giving out links so I don&apos;t get into trouble but I can use freedom of speech. So this program alone will allow you to record streams to wav file format. But this can be huge, 10Mb for 2min. Read next to record in Mp3s.

Thirdly, on the site you should have downloaded the &apos;opcode&apos; program from they have a link to download the dll encoder (BladeInc.dll) needed. Just extract this into the folder where you installed opcode.

That&apos;s it! Now start up a streaming radio station and opcode. Select where you want the stream saved and how many minutes to record (or how many Mb&apos;s). Click record.

When finished start up your favorite burner and burn that Mp3.

Happy tunes!
				
				</description>
				
				<category>Resources</category>
				
				<pubDate>Wed, 19 Apr 2006 13:29:00 -0700</pubDate>
				<guid>http://www.cfcdeveloper.com/index.cfm/2006/4/19/Ripping-Radio-to-MP3-on-your-PC</guid>
				
			</item>
			
		 	
			</channel></rss>
	

