Re: Sanitize input data for SQL

2006-08-01 Thread Dmitrii Dimandt
+1. Don't rely on stripping, regular expressions or any of that (although feel free to do those too); use cfqueryparam in every query and SQL injection is no longer a problem, if your DB genuinely supports bound parameters. The problem is that I've started using Coldfusion On Wheels

Re: Sanitize input data for SQL

2006-08-01 Thread James Holmes
Well, best of luck with that. On 8/1/06, Dmitrii Dimandt [EMAIL PROTECTED] wrote: +1. Don't rely on stripping, regular expressions or any of that (although feel free to do those too); use cfqueryparam in every query and SQL injection is no longer a problem, if your DB genuinely supports

Re: Site feedback

2006-08-01 Thread Neil Middleton
Good spot. It's back now... Cheers Neil On 8/1/06, Dave Carabetta [EMAIL PROTECTED] wrote: On 7/31/06, Neil Middleton [EMAIL PROTECTED] wrote: Well, it's live now. MG:U appears to be running well, and as yet, I haven't hit any big problems. More details on my blog. Look, see ma:

RE: Google Code Project Hosting

2006-08-01 Thread Hugo Ahlenius
| You know, I STILL find it hard to believe someone hasn't created a | website ripper. It should be pretty simple to do, I've done it on a | custom basis, always assuming someone had one out there. You mean like a spider/downloader? wget? httrack? (and loads of other alternatives)

Re: Google Code Project Hosting

2006-08-01 Thread Denny Valliant
No. :-) On 8/1/06, Hugo Ahlenius [EMAIL PROTECTED] wrote: | You know, I STILL find it hard to believe someone hasn't created a | website ripper. It should be pretty simple to do, I've done it on a | custom basis, always assuming someone had one out there. You mean like a

RE: Sharing Sessions between a .Net machine and a CF machine

2006-08-01 Thread Snake
Use cookies -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: 31 July 2006 22:00 To: CF-Talk Subject: RE: Sharing Sessions between a .Net machine and a CF machine You can probably do this quite easily with bluedragon .net Great and for those of us you do not have

Follow-up ADOBE Certification programme materials

2006-08-01 Thread Mike Kear
This is a follow up message to let you know what's happened so far ... You might recall that when Adobe imported the Macromedia certification records into their own database, they lost the fact that some of us had Advanced certification - we were all asked to confirm we had just plain ordinary

Re: How 2 Search on date values

2006-08-01 Thread Mingo Hagen
What do you mean search on date values? inside a text or just a dedicated date column? in case of the date column you can just say (with cfqueryparams ofcourse): WHERE YEAR( myDate ) = #year( myCFDate )# AND MONTH( myDate ) = #month( myCFDate )# AND DAY( myDate ) = #day(

Re: Cfloop timing out.

2006-08-01 Thread Tom Chiverton
On Monday 31 July 2006 21:24, Andy Matthews wrote: I suppose that's possible. I've done data migration that way in the past. It seemed easiest. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a

Re: CFeclipse and RDS

2006-08-01 Thread JediHomer
I have com.adobe.coldfusion.rds.client_0.5.143281 installed and running fine on Eclipse 3.2, try downloading and using the latest RDS client from Adobe Labs HTH On 31/07/06, Chad Gray [EMAIL PROTECTED] wrote: I can't get Eclipse to connect to our CF server with RDS. I copied the folder:

Re: CFeclipse and RDS

2006-08-01 Thread Tom Chiverton
On Tuesday 01 August 2006 03:39, Cutter (CFRelated) wrote: Actually, I'm running 3.2 (so I can run the CFEclipse Beta), and have the RDS plugins working fine. I wrote a 'first impressions' article on my blog, with clarifying responses from Mike Nimer at Adobe. I'm stunned I didn't blog I had

Re: (admin) List Status

2006-08-01 Thread Tom Chiverton
On Monday 31 July 2006 18:49, Rick Faircloth wrote: I'm all for trimming posts and certainly understand the need, but I wish everyone would Post at the bottom like normal people :-) -- Tom Chiverton This email is sent for and on behalf

Re: (admin) List Status

2006-08-01 Thread Mingo Hagen
I feel a fight coming up... Tom Chiverton wrote: Post at the bottom like normal people :-) ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers,

Re: HTTP 301 redirects using CFHTTP?

2006-08-01 Thread Pete Ruckelshaus
OK, thanks James, that was the shove in the right direction that I needed. In case anyone else is looking for the same answer, here's my test code that works: cfscript qryRedirect = queryNew(oldurl,newurl,varchar,varchar); tmp = queryAddRow(qryRedirect); tmp =

Re: Site feedback

2006-08-01 Thread Martin Thorpe
Alright man how is it going. Like the new AJAX-y bit when you click the text and it shows more. What would be cool with this though is if you click the text a second time it goes back to just the snippet of text before you clicked it, to save my finger on the scroll button :-) cheers Martin

RE: (admin) List Status

2006-08-01 Thread Rick Faircloth
Fight! Fight! (Virtual crowd gathers 'round)... -Original Message- From: Mingo Hagen [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 7:38 AM To: CF-Talk Subject: Re: (admin) List Status I feel a fight coming up... Tom Chiverton wrote: Post at the bottom like normal people

RE: (admin) List Status

2006-08-01 Thread Rick Faircloth
I haven't mastered normal yet. Every time I think I've got it figured out, it changes. :o) Rick PS - Good idea for reading messages, but bad for composition... too much time to copy, paste, etc., the previous message content. Not only that, but I've also got to cut other quoted content from

RE: Cfloop timing out.

2006-08-01 Thread Ken Ferguson
Yeah, I would submit to you that there IS a better tool for this specific task, no matter which db you're using. Why put this weight on your web server, even in the middle of the night? Thanks,   Ken Ferguson 214.636.6126 -Original Message- From: Brian Dumbledore [mailto:[EMAIL

Re: (admin) List Status

2006-08-01 Thread Tom Chiverton
On Tuesday 01 August 2006 13:46, Rick Faircloth wrote: Fight! Fight! (Virtual crowd gathers 'round)... You wanna take it outside, do ya ? Right... -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP

Re: (admin) List Status

2006-08-01 Thread Tom Chiverton
On Tuesday 01 August 2006 13:44, Rick Faircloth wrote: too much time to copy, paste, etc., the previous message content. Get A Better Client :-) Not only that, but I've also got to cut other quoted content from the sent message. :oP Same as you have to trim N other top posted comments.

RE: How 2 Search on date values

2006-08-01 Thread Ben Nadel
I have blogged about searching on just date and just time... If you are interested: Only time: http://www.bennadel.com/index.cfm?dax=blog:129.view Only date: http://www.bennadel.com/index.cfm?dax=blog:122.view Averaging date and times: http://www.bennadel.com/index.cfm?dax=blog:175.view Hope

RE: (admin) List Status

2006-08-01 Thread Rick Faircloth
Why wait 'til we get outside? :o) (Virtual crowd grows larger..avatars try to maintain order...) PS - Man, Tom...you've got the longest signature block in history. Takes 2 minutes just to cut that out :o) Rick You wanna take it outside, do ya ? Right... -- Tom Chiverton

Re: (admin) List Status

2006-08-01 Thread Mingo Hagen
As long as we're complaining... I hate those long disclaimers at the bottom of your e-mail... last I heard, normal people don't have those, Tom? ;-) Although as I write this I see Thunderbird has been nice enough to auto snip it off, because it's below two dashes... cool ;) Mingo. Tom

RE: (admin) List Status

2006-08-01 Thread Rick Faircloth
Get A Better Client :-) What do you use? Same as you have to trim N other top posted comments. Bottom posting *forces* you to trim, or your comments end up 'over the fold'. Sorry, not following... Rick -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent:

RE: Cfloop timing out.

2006-08-01 Thread Andy Matthews
I'm using mySQL. I tried yesterday with multiple different levels of query to get this working and never could. Even breaking down the initial query to 1/5th of it's original size I can't get it working. I might have to break down and ask one of my system guys to write a shell script for me.

RE: Follow-up ADOBE Certification programme materials

2006-08-01 Thread Andy Matthews
I'm struggling with this same thing. But I actually TOOK the test in May and they STILL got my certification level wrong. They've got me listed as Advanced MX developer instead of Advanced MX 7 developer. Big difference you know? I opened an incident ticket on the 21st and still haven't even

Re: Site feedback

2006-08-01 Thread Neil Middleton
Funny you should say that... ;-) N On 8/1/06, Martin Thorpe [EMAIL PROTECTED] wrote: Alright man how is it going. Like the new AJAX-y bit when you click the text and it shows more. What would be cool with this though is if you click the text a second time it goes back to just the snippet

RE: (admin) List Status

2006-08-01 Thread Snake
I wonder if companies realise just how worthless those disclaimers are anyway -Original Message- From: Mingo Hagen [mailto:[EMAIL PROTECTED] Sent: 01 August 2006 14:32 To: CF-Talk Subject: Re: (admin) List Status As long as we're complaining... I hate those long disclaimers at the

Re: (admin) List Status

2006-08-01 Thread Mingo Hagen
Apparently, they don't and I don't get why they don't, you would think that they'd get some legal advice on such matters... Assuming that the lawyers do know that they're worthless (the disclaimers, not the lawyers...) Snake wrote: I wonder if companies realise just how worthless those

Re: (admin) List Status

2006-08-01 Thread Kris Jones
In Tom's defense, (although I'm sure he can defend himself), some companies auto-append those disclaimers at the mail server. So Tom's sig may only be 1 line--his name. PS - Man, Tom...you've got the longest signature block in history. Takes 2 minutes just to cut that out :o)

RE: (admin) List Status

2006-08-01 Thread Ken Ferguson
I'm thinking of writing a little disclaimer on all of my cash that says it belongs to Ken Ferguson and if it is found on the sidewalk in front of a bar, that you are not allowed to spend it and must either return it to me or dispose of it. I wonder if that works? --Ferg -Original

RE: Cfloop timing out.

2006-08-01 Thread Andy Matthews
I've never done anything with behind the scenes stuff other than scheduled tasks. I'm using mySQL on a Linux system, and I'd LOVE to hear a better way as I think I'll be doing things like this more often in the future. !//-- andy matthews web developer certified advanced

Re: (admin) List Status

2006-08-01 Thread Tom Chiverton
On Tuesday 01 August 2006 14:50, Kris Jones wrote: In Tom's defense, (although I'm sure he can defend himself), some companies auto-append those disclaimers at the mail server. So Tom's sig may only be 1 line--his name. Indeed. My sig is *two* lines (except when I alter it for comedy value).

Re: (admin) List Status

2006-08-01 Thread Tom Chiverton
On Tuesday 01 August 2006 14:32, Rick Faircloth wrote: Get A Better Client :-) What do you use? KMail at work, Thunderbird at home. Same as you have to trim N other top posted comments. Bottom posting *forces* you to trim, or your comments end up 'over the fold'. Sorry, not

Re: (admin) List Status

2006-08-01 Thread Tom Chiverton
On Tuesday 01 August 2006 14:32, Mingo Hagen wrote: Although as I write this I see Thunderbird has been nice enough to auto snip it off, because it's below two dashes... cool ;) :nods Two dashes rock :-) I've just found 'use smaller font for quoted text' and 'show expand/collapse quote marks'

Advanced Developer Average Salary

2006-08-01 Thread PETER SHEATS
Hey Everyone, I recently took my CF 7 test and got an 88% (I used the CFMX Exam Buster sold by centrasoft.com which really helped in case anyone is planning on taking the test soon). Anyway, I was wondering if anyone can point me to any resources that I can use to show my boss what the average

RE: HTTP 301 redirects using CFHTTP?

2006-08-01 Thread Russ
If there are going to be only 100 URL's, and they are not going to change often, and you have access to the server, I would suggest doing it in apache or even IIS, as that's going to take a lot of load off your cf server... You can generate the rules using cf from the db, write it to a file and

RE: Advanced Developer Average Salary

2006-08-01 Thread Russ
I used salary.com... the salaries there seem pretty reasonable... -Original Message- From: PETER SHEATS [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 10:21 AM To: CF-Talk Subject: Advanced Developer Average Salary Hey Everyone, I recently took my CF 7 test and got

Re: Anyone see anything wrong with this code?

2006-08-01 Thread Claude Schneegans
I'll need to revisit my date handling procedures. See this tag : http://www.contentbox.com/claude/customtags/convertDate/viewConvertDate.cfm It might help, and its free. -- ___ REUSE CODE! Use custom tags; See

RE: Advanced Developer Average Salary

2006-08-01 Thread Andy Matthews
You think so? I thought that they looked on the high side. I checked my field there, for my area and I don't know anyone who says they're making those figures. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED]

RE: (admin) List Status

2006-08-01 Thread Rick Faircloth
Is there a way to set up some kind of reply formatting in Outlook like in Thunderbird? Rick -Original Message- From: Mingo Hagen [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 9:32 AM To: CF-Talk Subject: Re: (admin) List Status As long as we're complaining... I hate those

Hourly Digests down again?

2006-08-01 Thread RADEMAKERS Tanguy
Hello, I haven't received an hourly digest for cf-talk since... last thursday morning. I have verified my subscription settings on houseoffusion.com and all seems well. Is the problem on my side? Or yours? Regs, /t ~|

RE: Advanced Developer Average Salary

2006-08-01 Thread Snake
Search the job sites for coldfusion jobs and see what they are paying. -Original Message- From: PETER SHEATS [mailto:[EMAIL PROTECTED] Sent: 01 August 2006 15:21 To: CF-Talk Subject: Advanced Developer Average Salary Hey Everyone, I recently took my CF 7 test and got an 88% (I used

Re: CF substring?

2006-08-01 Thread Tom Donovan
is there any substring function for CF? http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0463.htm#1104504 FindNoCase Mean people suck. ~|

Re: CF substring?

2006-08-01 Thread Mingo Hagen
Yeah they do, but substring wouldn't that be mid()? Tom Donovan wrote: is there any substring function for CF? http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0463.htm#1104504 FindNoCase Mean people

RE: Hourly Digests down again?

2006-08-01 Thread Jagos, Allan
ditto -Original Message- From: RADEMAKERS Tanguy [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 10:44 AM To: CF-Talk Subject: Hourly Digests down again? Hello, I haven't received an hourly digest for cf-talk since... last thursday morning. I have verified my subscription

Re: CF substring?

2006-08-01 Thread Dave Carabetta
On 8/1/06, Tom Donovan [EMAIL PROTECTED] wrote: is there any substring function for CF? http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0463.htm#1104504 FindNoCase Actually, it's the mid() function.

RE: CFIDE not accessible - I think???

2006-08-01 Thread Steve LaBadie
Hi Laura, I followed the instructions and created a VD, still have ticking clock. I also created a brand new DB with 1 table, 2 columns, 5 text records. Data will not populate cfselect as flash format, but will populate as HTML, XML? Steve LaBadie, Web Manager East Stroudsburg University 200

Re: CF substring?

2006-08-01 Thread Charlie Griefer
isn't this thread like 5 1/2 years old? :) On 8/1/06, Dave Carabetta [EMAIL PROTECTED] wrote: On 8/1/06, Tom Donovan [EMAIL PROTECTED] wrote: is there any substring function for CF?

RE: CF substring?

2006-08-01 Thread Ben Nadel
And don't forget about Left() and Right() if you want a substring at the ends of a string. ... Ben Nadel www.bennadel.com -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 10:56 AM To: CF-Talk Subject: Re: CF substring?

RE: Advanced Developer Average Salary

2006-08-01 Thread Jim Davis
-Original Message- From: PETER SHEATS [mailto:[EMAIL PROTECTED] Sent: 01 August 2006 15:21 To: CF-Talk Subject: Advanced Developer Average Salary Hey Everyone, I recently took my CF 7 test and got an 88% (I used the CFMX Exam Buster sold by centrasoft.com which really helped in

RE: Advanced Developer Average Salary

2006-08-01 Thread Eric Roberts
It's either careerbuilder.com or monster.com...one of the 2 has salary estimator. Eric -Original Message- From: PETER SHEATS [mailto:[EMAIL PROTECTED] Sent: Tuesday, 01 August 2006 09:21 To: CF-Talk Subject: Advanced Developer Average Salary Hey Everyone, I recently took my CF 7 test

RE: Advanced Developer Average Salary

2006-08-01 Thread Kevin Aebig
Well monster.com is actually based on the average of the area. They've probably have either used census data or surveyed a small sample group. And if I was making what they say I should be making I'd be one happy camper... Cheers, !k -Original Message- From: Eric Roberts [mailto:[EMAIL

Re: Is ColdFusion a Servlet?

2006-08-01 Thread Barney Boisvert
Depends on what you mean by runtime. You can register extra servlets in web.xml like any other J2EE web app, and they'll pick up after the next reload of the context/server restart. The Friendly URLs that FarCry uses (from Spike) operates this way. I'd imagine some web comtainers allow you to

Re: Advanced Developer Average Salary

2006-08-01 Thread Matt Williams
If people are interested, willing and not offended, I'll set up a quick anonymous poll so people here could enter their annual salary, city, state, country, years with CF, and comments. It wouldn't be scientific by any means, but it could be some interesting data. A few yes's and I'll get it

RE: Advanced Developer Average Salary

2006-08-01 Thread Ben Nadel
I would be interested. ... Ben Nadel www.bennadel.com -Original Message- From: Matt Williams [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 11:23 AM To: CF-Talk Subject: Re: Advanced Developer Average Salary If people are interested, willing and not

Re: Hourly Digests down again?

2006-08-01 Thread Martin Thorpe
Yeah me too, I have not been receiving the 2 hourly ones all week. cheers Martin Hello, I haven't received an hourly digest for cf-talk since... last thursday morning. I have verified my subscription settings on houseoffusion.com and all seems well. Is the problem on my side? Or yours? Regs,

RE: CF substring?

2006-08-01 Thread Snake
FindNoCase() will find a sub-string inside a string. Mid() will extract whatever is from/to the specified positions in the string. -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: 01 August 2006 15:56 To: CF-Talk Subject: Re: CF substring? On 8/1/06, Tom

RE: Advanced Developer Average Salary

2006-08-01 Thread Ken Ferguson
I'll answer it if it'll help someone out. --Ferg -Original Message- From: Matt Williams [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 10:23 AM To: CF-Talk Subject: Re: Advanced Developer Average Salary If people are interested, willing and not offended, I'll set up a quick

Re: Advanced Developer Average Salary

2006-08-01 Thread Cutter (CFRelated)
I'll go 'yes' on that one. Be good to see general stats... Cutter ___ http://blog.cutterscrossing.com Matt Williams wrote: If people are interested, willing and not offended, I'll set up a quick anonymous poll so people here could enter their annual salary, city, state, country,

RE: Advanced Developer Average Salary

2006-08-01 Thread Ken Ketsdever
Yes -Original Message- From: Matt Williams [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 8:23 AM To: CF-Talk Subject: Re: Advanced Developer Average Salary If people are interested, willing and not offended, I'll set up a quick anonymous poll so people here could enter their

RE: Advanced Developer Average Salary

2006-08-01 Thread Snake
ok -Original Message- From: Matt Williams [mailto:[EMAIL PROTECTED] Sent: 01 August 2006 16:23 To: CF-Talk Subject: Re: Advanced Developer Average Salary If people are interested, willing and not offended, I'll set up a quick anonymous poll so people here could enter their annual

Re: Site feedback

2006-08-01 Thread Martin Thorpe
And really cool if the loading bit was relevant on the screen to the onclick event!!! So you can see the loading when you are half way down the page. Easy enough. looking good though. cheers Martin Funny you should say that... ;-) N On 8/1/06, Martin Thorpe [EMAIL PROTECTED] wrote:

Re: Advanced Developer Average Salary

2006-08-01 Thread Mingo Hagen
How many yes's would you like, I got a couple to get you started: yes yes yes yes yes yes. Mingo. Matt Williams wrote: If people are interested, willing and not offended, I'll set up a quick anonymous poll so people here could enter their annual salary, city, state, country, years with CF,

RE: Advanced Developer Average Salary

2006-08-01 Thread Ryan, Terrence
I'm in. Terrence Ryan Senior Systems Programmer Wharton Computing and Information Technology E-mail: [EMAIL PROTECTED] -Original Message- From: Matt Williams [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 11:23 AM To: CF-Talk Subject: Re: Advanced

RE: Advanced Developer Average Salary

2006-08-01 Thread Andy Matthews
Sure..I'll answer. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Matt Williams [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006

bracket access for a query result?

2006-08-01 Thread Andy Matthews
I've got a query named getproj which returns columns named a1-a12. I've got a series of drop downs corresponding to the above column names which display values from 100-20 in descending order. I'm trying to acccess the value of each colum using bracket notation but I'm getting an error on the

Re: Advanced Developer Average Salary

2006-08-01 Thread Matt Williams
Alright, I'm working on it. Link coming soon... Matt On 8/1/06, Andy Matthews [EMAIL PROTECTED] wrote: Sure..I'll answer. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737

Re: Site feedback

2006-08-01 Thread Neil Middleton
Are you using IE or firefox? It's OK for me in Firefox 2 N On 8/1/06, Martin Thorpe [EMAIL PROTECTED] wrote: And really cool if the loading bit was relevant on the screen to the onclick event!!! So you can see the loading when you are half way down the page. Easy enough. looking

RE: bracket access for a query result?

2006-08-01 Thread Ian Skinner
Here's the statement I'm using: cfif getproj[a#t#] IS i selected/cfif This does not access a single value, you need to also provide a row reference. cfif getProj[a t][row] IS I -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | |

Re: Advanced Developer Average Salary

2006-08-01 Thread Aaron Rouse
True, plus you have whether doing 1099, W-2, or whatever work. I know when I was W-2 I made a bit less yearly but the money in my pocket at the end of the year was more than I get doing 1099 right now due to the tax monster. On 8/1/06, Ken Ketsdever [EMAIL PROTECTED] wrote: I think it would be

Re: Advanced Developer Average Salary

2006-08-01 Thread Robertson-Ravo, Neil (RX)
Isn't that what frappr is for? This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is

RE: Advanced Developer Average Salary

2006-08-01 Thread Everett, Al \(NIH/NIGMS\) [C]
http://www.frappr.com/cfdevelopers -Original Message- From: Dan Plesse Sent: Tuesday, August 01, 2006 12:13 PM To: CF-Talk Subject: Re: Advanced Developer Average Salary It seems like a lot of employers are still very interested in the location of CF developers. Is there a google map

RE: Advanced Developer Average Salary

2006-08-01 Thread Kevin Aebig
Here's a few more things to consider. - Cost of living I can move to another city, double my salary, but the cost of real estate is insane and would alter my monthly spending habits. - Current exchange rate Though I'm sure many subscribers to the list are American, there are a number of us

Unofficial CF Developer Salary Survey

2006-08-01 Thread Matt Williams
Come one, come all... An anonymous salary survey is available at http://keysym.org/cfs I didn't bother with any validation, so if you try to break it, you probably will. :) I'll leave it up for a few days so people will have time and for those in other time zones, etc. Matt On 8/1/06, PETER

Re: Advanced Developer Average Salary

2006-08-01 Thread Rick Root
Kevin Aebig wrote: Well monster.com is actually based on the average of the area. They've probably have either used census data or surveyed a small sample group. And if I was making what they say I should be making I'd be one happy camper... No doubt. I put in web software developer, Sr.

Re: Advanced Developer Average Salary

2006-08-01 Thread Rick Root
Matt Williams wrote: Alright, I'm working on it. Link coming soon... I'll respond too.. be interested in seeing the results too. =) rick ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,

RE: Site feedback

2006-08-01 Thread Andy Matthews
Beta is out for FF 2. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006

Re: Advanced Developer Average Salary

2006-08-01 Thread Mingo Hagen
http://www.frappr.com/cfdevelopers Dan Plesse wrote: It seems like a lot of employers are still very interested in the location of CF developers. Is there a google map where you can plug in your location for this very purpose? Would this help with the employment matching process?

Strange caching problem

2006-08-01 Thread Snake
OK I have this site that randomly decided to start showing a non existent custom error page (error.cfm). It seems this page was deleted long ago, but somehow CF has got hold of a cached version and started using it. I created a new error.cfm and then deleted it, and all started working normally

Re: Site feedback

2006-08-01 Thread Neil Middleton
http://developer.mozilla.org/devnews/index.php/2006/07/12/firefox-2-beta-1-milestone-released/ On 8/1/06, Ray Champagne [EMAIL PROTECTED] wrote: FF2? Neil Middleton wrote: Are you using IE or firefox? It's OK for me in Firefox 2 N On 8/1/06, Martin Thorpe [EMAIL PROTECTED]

RE: Advanced Developer Average Salary

2006-08-01 Thread Ben Nadel
Is this the one?? http://www.frappr.com/cfdevelopers ... Ben Nadel www.bennadel.com -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 12:26 PM To: CF-Talk Subject: Re: Advanced Developer Average Salary There is a google

Re: Unofficial CF Developer Salary Survey

2006-08-01 Thread Charlie Griefer
is it just for those who hold advanced cf certs? (since that's what the original poster was looking for) :) On 8/1/06, Matt Williams [EMAIL PROTECTED] wrote: Come one, come all... An anonymous salary survey is available at http://keysym.org/cfs I didn't bother with any validation, so if

RE: Extracting binary multipart MIME attachments from webservice

2006-08-01 Thread Ian Skinner
Is it corrupted or do you just need to turn it back into a binary? I have this proof of concept I did recently that reads a PDF file converts into a binary string in a CFC. This is then passed to a CFM file that converts the string back into binary and writes the file to the disk. Hopefully

Re: Site feedback

2006-08-01 Thread Robertson-Ravo, Neil (RX)
Yep, in Beta. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for the

Re: Is ColdFusion a Servlet?

2006-08-01 Thread Barney Boisvert
I've got no help for you on this one. The J2EE spec doesn't have any provisions for adding/defining Servlets at runtime, so anything that allows it is a custom vendor extension. You can certainly reach down from CF and access JRun where JRun chooses to expose itself, but what facilities are

Re: Advanced Developer Average Salary

2006-08-01 Thread Rick Root
Mingo Hagen wrote: http://www.frappr.com/cfdevelopers It's unfortunate that frappr (thanks to google) is so painfully slow. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion

Re: Advanced Developer Average Salary

2006-08-01 Thread Robertson-Ravo, Neil (RX)
Makes no sense for people outside the US :) This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be

RE: Advanced Developer Average Salary

2006-08-01 Thread Eric Roberts
I certainly get a lot of calls about contract gigs outside the Chicago area...despite my note about not being interested in positions outside the Chicago area (I guess reading English is not a requirement for being a tech recruiter these days heheh) Eric -Original Message- From: Dan

RE: Unofficial CF Developer Salary Survey

2006-08-01 Thread Andy Matthews
Looks like the state is either not being saved, or not being displayed. Just FYI. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Matt

Re: Advanced Developer Average Salary

2006-08-01 Thread Barney Boisvert
I guess I was hoping for anything more specific to CF programming since the recent certification is my biggest ammo. I think you'll find that a certification doesn't get you as much as you might hope. All it says is that you memorized a book; it doesn't speak anything about how you apply that

Re: Hourly Digests down again?

2006-08-01 Thread Michael Dinowitz
It's next on my list. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year.

RE: Advanced Developer Average Salary

2006-08-01 Thread Brad Wood
Yeah, there was a froogle map a while back -Original Message- From: Dan Plesse [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 11:13 AM To: CF-Talk Subject: Re: Advanced Developer Average Salary It seems like a lot of employers are still very interested in the location of CF

Comparing Form Fields

2006-08-01 Thread Steve LaBadie
Does CF have the capability to compare to form fields or do I just us JavaScript? I am not validating input to a database just want to make sure that the email address is entered properly. Can I use the Compare Function to do this? Steve LaBadie, Web Manager East Stroudsburg University

cfparam in cfc?

2006-08-01 Thread Johnny Le
Does cfparam work well in CFC? Occasionally I get errors that say a variable is not defined even though I have cfparam right above it to define the variable. Does anyone know what is going? Should I change all my cfparam to cfif statement to define my variables within CFCs? Johnny

Re: Unofficial CF Developer Salary Survey

2006-08-01 Thread Matt Williams
Had an issue with state. I fixed it and added in what I could based on City. On 8/1/06, Andy Matthews [EMAIL PROTECTED] wrote: Looks like the state is either not being saved, or not being displayed. Just FYI. !//-- andy matthews web developer certified advanced

Re: Unofficial CF Developer Salary Survey

2006-08-01 Thread Matt Williams
I didn't do any cost of living stuff as you can research that based on location. On 8/1/06, Matt Williams [EMAIL PROTECTED] wrote: Had an issue with state. I fixed it and added in what I could based on City. On 8/1/06, Andy Matthews [EMAIL PROTECTED] wrote: Looks like the state is

Re: Advanced Developer Average Salary

2006-08-01 Thread Charlie Griefer
wait...there are people outside the US? whoa :) On 8/1/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Makes no sense for people outside the US :) -- Charlie Griefer ...All the world shall be your enemy, Prince with a Thousand Enemies,

RE: Unofficial CF Developer Salary Survey

2006-08-01 Thread PETER SHEATS
I personally don't care if it's just advanced - from what it looks like right now almost everyone who has responded makes more than me =) Peter Sheats Webmaster Palm Beach Atlantic University [EMAIL PROTECTED] 561.803.2033 Maturity comes from obedience to Christ, not necessarily from age. --

Re: Comparing Form Fields

2006-08-01 Thread Charlie Griefer
CF can do it after the form is submitted. CF lives on the server. Knows nothing of the client. On 8/1/06, Steve LaBadie [EMAIL PROTECTED] wrote: Does CF have the capability to compare to form fields or do I just us JavaScript? I am not validating input to a database just want to make sure

  1   2   3   >