Re: Scheduled task isn't running the item in the url

2010-05-16 Thread Maureen
You have notification misspelled in the url. Is the page name daily_notifcation.cfm or daily_notification.cfm On Wed, Apr 21, 2010 at 7:48 AM, daniel kessler dani...@umd.edu wrote:         url=http://sph.umd.edu/home/facilities_request/email/daily_notifcation.

Resources for contracting out work/services/freelancing?

2010-05-16 Thread Eric .
I've had a few nibbles before and have always hesitated when it came to bigger freelance work due to the politics and administration needed to successfully manage things. Has anyone run into blogs, books, forums, or anything else that could be used to help a CF dev freelance successfully?

Re: Resources for contracting out work/services/freelancing?

2010-05-16 Thread Scott Stewart
I did 1099/telecommute almost all of last year. I worked through recruiters. The problem that I found was that you wind up spending an extra four hours a day marketing and lining up your next assignments. Telecommute jobs ebb and flow, depending on alot of factors. Be wary of the the sites that

Re: SOT: most important CFML framework

2010-05-16 Thread John M Bliss
So I thought I'd revisit this three months later (SEE OP for context): Integers are number of explicit hits on indeed.com: - Framework - 11/16 hits - 2/21 hits - 5/16 hits - FuseBox - 76 - 130 - 161 - Mach-ii - 72 - 42 - 51 - Model-Glue - 61 - 27 - 38 - ColdBox - 13 - 5 - 38 - CFWheels - 0 - 0

Re: listgetat problem...

2010-05-16 Thread Christian Heutger
Hi, I currently have the same problem. Any solution regarding this? Regards, Christian ~| Order the Adobe Coldfusion Anthology now!

Re: SOT: most important CFML framework

2010-05-16 Thread Carey Duryea
So I thought I'd revisit this three months later (SEE OP for context): Integers are number of explicit hits on indeed.com: - Framework - 11/16 hits - 2/21 hits - 5/16 hits - FuseBox - 76 - 130 - 161 - Mach-ii - 72 - 42 - 51 - Model-Glue - 61 - 27 - 38 - ColdBox - 13 - 5 - 38 - CFWheels - 0 - 0

Re: listgetat problem...

2010-05-16 Thread Claude Schnéegans
I currently have the same problem. Same as what? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive:

Re: listgetat problem...

2010-05-16 Thread Brian McCairn
replace commas with another arbitrary separator? cfset lstText = 'this is one, this is another one, this should be second item' / cfoutput#listLen(replacenocase(lsttext,',','||'), '||')#/cfoutput ~| Order the Adobe

Re: SOT: most important CFML framework

2010-05-16 Thread David McGuigan
It's the total number of people who have ever heard of them. On Sun, May 16, 2010 at 11:04 AM, Carey Duryea ca...@keepingitgreen.netwrote: So I thought I'd revisit this three months later (SEE OP for context): Integers are number of explicit hits on indeed.com: - Framework - 11/16

Re: SOT: most important CFML framework

2010-05-16 Thread John M Bliss
Integers are number of explicit hits on indeed.com On Sun, May 16, 2010 at 12:04 PM, Carey Duryea ca...@keepingitgreen.netwrote: So I thought I'd revisit this three months later (SEE OP for context): Integers are number of explicit hits on indeed.com: - Framework - 11/16 hits - 2/21

Re: Resources for contracting out work/services/freelancing?

2010-05-16 Thread Chris .
Can you give me a site you had good luck with? I've tried bidding before and you're absolutely right, it's just not a market for folks like me. I'd make more with a night job bagging groceries :) I am more interested in the steps needed to do it outside of recruiters. I'd like to advertise

RE: Resources for contracting out work/services/freelancing?

2010-05-16 Thread Eric Roberts
One of the best things is to spruce up your linkedin profile. My dad does tech recruiting (and has done so for many years) was telling me that Monster, Careerbuilder, etc...are becoming nominally useful and that most jobs(both perm and contract) are found via networking and word of mouth. Eric

Re: listgetat problem...

2010-05-16 Thread Sean Corfield
On Sun, May 16, 2010 at 10:07 AM, Brian McCairn brian.mcca...@medicapp.eu wrote: replace commas with another arbitrary separator? Doesn't solve the problem. cfset lstText = 'this is one, this is another one, this should be second item' / cfoutput#listLen(replacenocase(lsttext,',','||'),

Re: SOT: most important CFML framework

2010-05-16 Thread Sean Corfield
On Sun, May 16, 2010 at 6:34 AM, John M Bliss bliss.j...@gmail.com wrote: So I thought I'd revisit this three months later (SEE OP for context): Integers are number of explicit hits on indeed.com: I think it just proves how unscientific any use of indeed.com can be :) - Framework - 11/16

Re: Resources for contracting out work/services/freelancing?

2010-05-16 Thread Sean Corfield
On Sun, May 16, 2010 at 12:40 PM, Eric Roberts ow...@threeravensconsulting.com wrote: One of the best things is to spruce up your linkedin profile.  My dad does tech recruiting (and has done so for many years) was telling me that Monster, Careerbuilder, etc...are becoming nominally useful and

Re: SOT: most important CFML framework

2010-05-16 Thread Joe Rinehart
Coldspring is easily the most important ;). Most good Fusebox, Model-Glue, Mach-ii, ColdBox, and FW/1 apps use it, and Model-Glue even uses it internally. -Joe ~| Order the Adobe Coldfusion Anthology now!

Re: SOT: most important CFML framework

2010-05-16 Thread Judah McAuley
Coldspring is very important, though I haven't run into a situation (personally) using Coldbox where I've needed anything other than Luis' built in DI framework (which just got the name WireBox). I'm sure they exist and then Coldspring is the answer, I just haven't run into those situations yet.

Multi file upload variables

2010-05-16 Thread Terry Troxel
If I have a form with two form fields pic1 and pic2, how do I get a return variable cffile.serverfile for each after a successful upload? Terry ~| Order the Adobe Coldfusion Anthology now!

Re: Multi file upload variables

2010-05-16 Thread Jason Fisher
One way is to set vars after each upload: cffile action=upload fileField=pic1 / cfset fileName1 = cffile.serverFile / cffile action=upload fileField=pic2 / cfset fileName2 = cffile.serverFile / The other way (if you're not on CF6.1 still) is to use the result param: cffile action=upload

RE: Multi file upload variables

2010-05-16 Thread Terry Troxel
Thank you Jason. I am on cf8 and these solutions will work just fine. Terry -Original Message- From: Jason Fisher [mailto:ja...@wanax.com] Sent: Sunday, May 16, 2010 7:12 PM To: cf-talk Subject: Re: Multi file upload variables One way is to set vars after each upload: cffile

Re: SOT: most important CFML framework

2010-05-16 Thread Maureen
Which is meaningless. I've heard of all of them. The only one I'm currently using is FW/1 and a lot of peeps who used to use others are moving that way as well. On Sun, May 16, 2010 at 10:24 AM, David McGuigan davidmcgui...@gmail.com wrote: It's the total number of people who have ever heard