Re: Regex Question

2011-04-28 Thread Charlie Griefer
Could be as simple as \w{3} Would that do it (searching for 3 consecutive word characters)? -- Charlie Griefer http://charlie.griefer.com I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success. On Thursday, April 28, 2011 at 10:10 AM

Re: who's in charge around here?

2011-03-22 Thread Charlie Griefer
s it has > something to do with having 300 kids! Hey, when one of you slackers does get around to re-doing the web interface, can you add a "Like" button? Because it's a crime that I can't "like" this reply :) -- Charlie Griefer http://charlie.griefer.com I have f

Re: Storing decimal parts of a second & cfqueryparam

2011-02-28 Thread Charlie Griefer
I think your code is fine, but take a look at the precision value for the column in SQL Server. Ensure that it's set to 2. -- Charlie Griefer http://charlie.griefer.com I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of succes

Re: Storing decimal parts of a second & cfqueryparam

2011-02-26 Thread Charlie Griefer
Hi Pete: Have you tried cf_sql_timestamp as the cfsqltype (as opposed to cf_sql_time)? -- Charlie Griefer http://charlie.griefer.com I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success. On Saturday, February 26, 2011 at 2:33 PM

Re: Re: Change in ColdFusion management

2011-02-15 Thread Charlie Griefer
ompany for whom we work, I think people should generally be allowed to express their opinions outside of that, without fear of repercussion. -- Charlie Griefer http://charlie.griefer.com I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of s

Re: coldfusion errors

2011-02-08 Thread Charlie Griefer
There's a whole section on it in the livedocs :) http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24-7fc4.html On Tue, Feb 8, 2011 at 6:30 PM, Richard Steele wrote: > > Is there anyway to catch coldfusion programming errors? > > #999sdflkjsdf;lk# is caugh

Re: Charge for meetings

2011-02-07 Thread Charlie Griefer
ble for clients in terms of > friendly terminology etc. > > And I use git with it. Hey wow. Me too :) -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wif

Re: Anyone know anything about this new ColdFusion conference?

2011-01-31 Thread Charlie Griefer
agree with his take on things. But > regardless, I don't think this thread can be steered anywhere. When > conversations denigrate to emotional rants and accusations and > unsubstantiated sweeping generalizations, that's when I back away. > > --- Ben > > > -Origi

Re: Anyone know anything about this new ColdFusion conference?

2011-01-31 Thread Charlie Griefer
Rather than ignore it... is it worth trying to steer in a more productive direction? Can it be a productive discussion? I've gone on record before as saying I don't think the existence of the alternate engines spells the doom of Adobe ColdFusion. I may be wrong, but lord I hope not. Adobe Cold

Re: Coldfusion Hosting

2011-01-28 Thread Charlie Griefer
the following error: > > Forbidden > You don't have permission to access / on this server. > > Additionally, a 404 Not Found error was encountered while trying to use > an ErrorDocument to handle the request. > > -----Original Message- > From: Charlie Griefe

Re: Coldfusion Hosting

2011-01-28 Thread Charlie Griefer
permission to access/ on this server! > > Steve > > -----Original Message- > From: Charlie Griefer [mailto:charlie.grie...@gmail.com] > Sent: Friday, January 28, 2011 2:03 PM > To: cf-talk > Subject: Re: Coldfusion Hosting > > > Well, if you believe in the old ada

Re: Coldfusion Hosting

2011-01-28 Thread Charlie Griefer
Well, if you believe in the old adage of "you get what you pay for"... then "decent" and "cheap" are mutually exclusive :) That being said... since "decent" is a subjective term (altho I guess "cheap" is as well), a while back I hosted my blog at http://hostingatoz.com/. Their most expensive pac

Re: Subtracting two dates

2011-01-28 Thread Charlie Griefer
/dd/")# > > The other is Now() > Which I also format as: #dateformat(Now(),"mm/dd/")# > > What's the easy way to do this? http://www.cfquickdocs.com/cf9/#datediff -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded

Re: why is cf_builder so expensive?

2011-01-26 Thread Charlie Griefer
You missed the part where he said, "And I'm the sole breadwinner." On Wed, Jan 26, 2011 at 10:32 PM, Eric Roberts wrote: > > I am sure you also make a lot more than I do (combined household that > is...especially if your wife has an MBA...mine is going for her CAN > certificate) Sean ;-) > > ---

Re: Return boolean from a CFC query -- UPDATE: Solved

2011-01-26 Thread Charlie Griefer
On Wed, Jan 26, 2011 at 12:30 PM, Ezra Parker wrote: > > On Wed, Jan 26, 2011 at 10:43 AM, Charlie Griefer > wrote: >> > > Unless I'm missing something, this should be: > > Y'know, I'd bring up the fact that I've been working in script much mo

Re: Return boolean from a CFC query -- UPDATE: Solved

2011-01-26 Thread Charlie Griefer
urns 0 records. > > will return true > > will return false > > > On Wed, Jan 26, 2011 at 1:43 PM, Charlie Griefer > wrote: >> >> On Wed, Jan 26, 2011 at 11:31 AM, Adam Bourg wrote: >>> >>> I solved it with the first couple of posts help.

Re: Return boolean from a CFC query -- UPDATE: Solved

2011-01-26 Thread Charlie Griefer
Well, it will return the actual recordcount... which is a number. But CF implicitly converts numeric values to boolean values. Any non-zero value is true, while any zero value is false. So given the following code: do something ... assuming myMethod returns a numeric value, your page will outp

Re: Return boolean from a CFC query -- UPDATE: Solved

2011-01-26 Thread Charlie Griefer
You could also drop the comparison itself since CF does implicit boolean conversion. ^That'll do the same thing. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I

Re: Return boolean from a CFC query

2011-01-26 Thread Charlie Griefer
Got a few questions about your CFC method... 1) where is the variable DSN coming from? 2) Should your WHERE be: WHERE profileID = #session.profile.profileID# ? (essentially the reverse of what you have) 3) consider using in your SQL when using dynamic values (yeah, I know... that's not a questio

Re: why is cf_builder so expensive?

2011-01-25 Thread Charlie Griefer
eriod that allows you to form your own perspective on it. Asking other people "why should I buy it", without having downloaded it yourself and trying it... doesn't seem like the most judicious use of anybody's time. -- Charlie Griefer http://charlie.griefer.com/ I have failed

Re: why is cf_builder so expensive?

2011-01-25 Thread Charlie Griefer
ut together for you. www.adobe.com/products/coldfusion/whitepapers/pdf/cfb_overview.pdf -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success ~

Re: Is Coldfusion losing it biggest asset?

2011-01-13 Thread Charlie Griefer
ic events? Where's the advertising in the media targeting other developers? I see lots of it for Flex and AIR and "hey let's all go be Android developers and f*ck Apple". Don't see nearly that much time/energy/effort in saying, "hey let's all go be CF develo

Re: Is Coldfusion losing its biggest asset?

2011-01-12 Thread Charlie Griefer
nt years, this still works, and is "valid" CFML: #b# If you were a beginner, I would think that would look more appealing over most other languages :) -- Charlie Griefer http://charlie.griefer.com/ I have failed as much

Re: Auto Complete

2011-01-05 Thread Charlie Griefer
at 2:12 PM, Adrocknaphobia wrote: > > It's actually built-in to ColdFusion 8's tag. > > > > http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_i_07.html > > -Adam > > On Wed, Jan 5, 2011 at 2:42 PM, Charlie Griefer > wrote: > >>

Re: Auto Complete

2011-01-05 Thread Charlie Griefer
ttp://jqueryui.com/demos/autocomplete/ Works a treat. I just implemented it for a customer running CF 7. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you

Re: Diplaying struct info when you dump an array with strcts in it's elements...

2010-12-24 Thread Charlie Griefer
The value for label can be any value you want... literal string or variable. On Fri, Dec 24, 2010 at 7:33 PM, Eric Roberts wrote: > > Any way to ge that dynamically label structures instead of just putting > array or struct? > > -Original Message- > Fro

Re: Diplaying struct info when you dump an array with strcts in it's elements...

2010-12-24 Thread Charlie Griefer
You can add the "label" attribute? On Fri, Dec 24, 2010 at 6:21 PM, Eric Roberts wrote: > > Is there a way to get cfdump to display the struct name when it dumps?  I > have an array that contains a struct and I am having some issues adding some > vars for display so I want to make sure I am

Re: Variable Scoping in CF8, CF9

2010-12-23 Thread Charlie Griefer
hods, so doing this: is functionally equivalent to doing: So while there are now 2 ways to declare a variable as local to a given function (assuming you're on CF 9), the requirement still remains that you do need to scope these variables properly in order to avoid leakage. --

Re: (ot) jQuery question

2010-12-12 Thread Charlie Griefer
the first argument position?  And the > same with the variable that's in the second position? > > I scoured the Internet trying to get a good explanation of using > these arguments, but haven't found what I needed to understand. > > Thanks for any insight you'

Re: (ot) jQuery question

2010-12-11 Thread Charlie Griefer
You're missing a # in your selector for #myTable. Even with the #, couldn't get your code to run... but the following seems to work: $( document ).ready( function() { var staffOrder = ""; $( '#myTable tr' ).each( function( i,o ) { if ( staffOrder.length )

Re: REGEX hell

2010-11-25 Thread Charlie Griefer
... since we're throwing out recommendations for our favorite "so glad this exists because of how badly I suck at reg ex" apps, I've found http://gskinner.com/RegExr/desktop/ to be a -very- valuable tool. On Thu, Nov 25, 2010 at 8:56 AM, Dave Merrill wrote: > > Be a little careful, Regex Coach

Re: Free ColdFusion Hosting

2010-11-24 Thread Charlie Griefer
If this is just a project that you're working on for the sake of honing your skills, and it doesn't have to be publicly accessible, there's no reason you couldn't continue to work on it locally using the developer edition of CF. Free CF hosting is going to be hard to come by. Outside of the reso

Re: cfscript based components formatting

2010-11-15 Thread Charlie Griefer
/* This is me agreeing */ I agree! On Mon, Nov 15, 2010 at 3:35 PM, Matt Quackenbush wrote: > > No comments driving behavior! :-) > > > ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anth

Re: jquery

2010-11-05 Thread Charlie Griefer
Maybe because you recently changed your style sheet? Can you view source and verify that the style you expect to be applied (which I assume is an external .css file) is being included with the correct path? On Fri, Nov 5, 2010 at 9:23 PM, Monique Boea wrote: > > why would my jquery validation

Re: What is wrong with this loop update?

2010-11-02 Thread Charlie Griefer
You say you're trying to update multiple rows... but your WHERE is stating, "WHERE project_id = #URL.projectID#". Since URL.projectID most likely isn't changing during the iteration of that loop, you'll only ever be updating one row 'x' number of times. On Tue, Nov 2, 2010 at 4:28 PM, Rick Colm

Re: ColdFusion Companies in Baltimore/DC/VA

2010-11-01 Thread Charlie Griefer
While I agree with John's suggestion of reaching out to local CFUGs, I can think of 3 companies off the top of my head (but I'm sure there are others). In no particular order... Fig Leaf (http://www.figleaf.com/) AboutWeb (http://www.aboutweb.com/) Teratech (http://www.teratech.com/) On Mon, No

Re: Javascript Cfquery

2010-10-12 Thread Charlie Griefer
On Tue, Oct 12, 2010 at 1:20 PM, fun and learning wrote: > > Hi All - > > I am trying to do the following: > > > function abc(arg1, arg2) { > >select * from table1 where col1 = arg1 > > .. > } > > > > Is it poss

Re: Simple question

2010-10-07 Thread Charlie Griefer
If it does, you can try On Thu, Oct 7, 2010 at 12:29 PM, Dan Baughman wrote: > > So if you set the output to blank it doesn't over write the contents of the > file? > > On Thu, Oct 7, 2010 at 1:13 PM, John M Bliss wrote: > > > > > cffile action="write" file="c:\temp\temp.txt" output="" > > > >

Re: Reading text files

2010-10-01 Thread Charlie Griefer
On Fri, Oct 1, 2010 at 10:14 AM, Larry Lyons wrote: > > >nope! :) > > > >> > >> Oh CF, is there anything you can't do? > >> > > > what about make coffee, and bring my slippers and the morning paper. If it > could do that CF would tru

Re: List Sort help

2010-09-22 Thread Charlie Griefer
numeric value was found. So CF sees x.x.x as a valid numeric value, but apparently not base 10 based on the sorted result above. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of succes

Re: List Sort help

2010-09-22 Thread Charlie Griefer
orked than I would have been had it not. FWIW, sorting by text did not work. Well, it worked as one might have expected it to (putting 3.6.10 and 3.6.1 next to each other), but not in the way that the OP was looking for it to work. -- Charlie Griefer http://charlie.griefer.com/ I have failed

Re: List Sort help

2010-09-22 Thread Charlie Griefer
What version of CF? On CF9, the following works: #appVers##listSort( appVers, 'numeric', 'desc' )# On Wed, Sep 22, 2010 at 9:26 AM, Tom Jones wrote: > > thanks, > but I get an error saying cant convert "3.6.1" to numeric. > > tom > > >ListSort should work: > > > >http://www.cfquickdocs.com

Re: Looping through arrays with structures

2010-09-17 Thread Charlie Griefer
He didn't use the array attribute. He used the exact same index loop that you did (from="1" to="#arrayLen(myArray)#"). On Fri, Sep 17, 2010 at 6:56 PM, Andrew Scott wrote: > > You can't be serious asking that sort of question, the array Attribute was > introduced in ColdFusion 8. So that means

Re: OOP Principles question

2010-08-04 Thread Charlie Griefer
is particularly OO about it... it's just about working smarter and not harder :) -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success. ~~

Re: Need a west coast (US) based CF host

2010-07-29 Thread Charlie Griefer
t makes no difference to the code. > > > Cheers > Mike Kear > Windsor, NSW, Australia > Adobe Certified Advanced ColdFusion Developer > AFP Webworks > http://afpwebworks.com > ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month > > > > &

Re: Need a west coast (US) based CF host

2010-07-29 Thread Charlie Griefer
ion of SQL Server, because timezone data is handled > differently between 2005 and 2008, and if it is 2008 you could likely > fix this issue with some database tweeks. > > On Thu, Jul 29, 2010 at 12:29 PM, Charlie Griefer > wrote: > > > > Hey Scott: > > > >

Re: Need a west coast (US) based CF host

2010-07-29 Thread Charlie Griefer
grate. > > > andy > > -Original Message- > From: Charlie Griefer [mailto:charlie.grie...@gmail.com] > Sent: Thursday, July 29, 2010 2:52 PM > To: cf-talk > Subject: Re: Need a west coast (US) based CF host > > > Nothing against Railo. My main project right now

Re: Need a west coast (US) based CF host

2010-07-29 Thread Charlie Griefer
this particular client right now :\ On Thu, Jul 29, 2010 at 12:40 PM, Scott Stewart wrote: > > Charlie, I think they are exclusively MySQL... I ported over an > implementation of blogCFM and it works fine, Railo's pretty complete > as far as tag support goes.. > > On Thu

Re: Need a west coast (US) based CF host

2010-07-29 Thread Charlie Griefer
matter where they're physically > located. Your site can have it's own time zone independent of the > server time zone. (again, assuming all of the date/time stamps are being > entered via CFML instead of the DB itself) > > Thanks, > > Eric Cobb > ECAR Technologies, L

Re: Need a west coast (US) based CF host

2010-07-29 Thread Charlie Griefer
harlie, > > I think Alurium is located on the West Coast, plus they're cheap and > you can run CFML (Railo) > http://www.alurium.com > > On Thu, Jul 29, 2010 at 3:09 PM, Charlie Griefer > wrote: > > > > Hey all... > > > > I know this topic ("ca

Need a west coast (US) based CF host

2010-07-29 Thread Charlie Griefer
n the west coast. Or at the very least, a server whose clock is set to PST. A quick google turned up Illuminated Hosting ( http://www.illuminatedhosting.com/), but I'm not familiar with them. Does anybody know of this company? Or of any others that have servers set to pacific time? Thanks! Char

Re: Regex Help

2010-07-26 Thread Charlie Griefer
troublemaker :D On Mon, Jul 26, 2010 at 12:02 PM, Andy Matthews wrote: > > http://www.cftagstore.com/tags/cfreextract.cfm > > :) > > -Original Message- > From: Robert Harrison [mailto:rob...@austin-williams.com] > Sent: Monday, July 26, 2010 1:00 PM > To: cf-talk > Subject: Regex Help >

Re: Regex Help

2010-07-26 Thread Charlie Griefer
rereplace( myvar, '-+', '-', 'all' ) On Mon, Jul 26, 2010 at 10:59 AM, Robert Harrison < rob...@austin-williams.com> wrote: > > I want to replace any occurrence of multiple -- in string so the entire > string only contains one - in a row after filtering. > > Something like this does (sort of): >

Re: Extracting part of a string (part 2)

2010-07-20 Thread Charlie Griefer
For that specific string, \$(\S+) seems to work. The \S is any character that is not a whitespace character, so it'd work for $400.01 as well. \$(\w+) should also return the same result. On Tue, Jul 20, 2010 at 8:24 AM, Che Vilnonis wrote: > > I also have a regex I can't seem to get right and

Re: Best conference?

2010-07-13 Thread Charlie Griefer
c" they are. And as far as NCDevCon goes, you can't beat the price. IMO, regardless of which one you may choose to attend, it'll be worthwhile. Of the conferences that I've been fortunate enough to get to (CFUnited, cf.Objective(), and MAX), it's evident that the folks b

Re: ordering by lowest price (across two columns)

2010-07-05 Thread Charlie Griefer
sets a column based on the lowest one: SELECT name, description, normalprice, saleprice, CASE WHEN normalprice < saleprice THEN normalprice ELSE saleprice END AS orderbyprice FROM tablename ORDER BY orderbyprice untested... but someth

Re: CF Shopping carts

2010-06-29 Thread Charlie Griefer
No, the fact that it's not elitist makes it not elitist. Dave's analogy about the auto mechanic and the tools was spot-on (as per usual). If you want to do a job, you're expected to have the tools to do the job. I also agree 100% with what many have said about this particular client. I've deal

Re: Facebook Connect and coldfusion

2010-06-23 Thread Charlie Griefer
Reading between the lines, I think Jeff might want you to share some code :) On Wed, Jun 23, 2010 at 10:47 AM, Jeff Gladnick wrote: > > Kris, > > Would you be willing to share some code? I'm having a hell of a time > interfacing with the API > > > >We're using FBConnect for a site in developmen

Re: php.org is written in ColdFusion

2010-06-21 Thread Charlie Griefer
True, but still kinda have to appreciate the irony :) On Mon, Jun 21, 2010 at 1:52 PM, Ben Forta wrote: > > Does not seem to be a valid site, more of a traffic troll, I think. :-( > > > -Original Message- > From: Andy Allan [mailto:andy.al...@gmail.com] > Sent: Monday, June 21, 2010 4:4

Re: CF9 Developer Edition - IP Addresses

2010-06-16 Thread Charlie Griefer
You can reset them by restarting the CF service, but you can't configure which 2 external addresses they are. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my k

Re: Comma delimited list

2010-05-28 Thread Charlie Griefer
n one swell foop. Something like: SELECT { columns } FROM { tablename } WHERE feature_code IN ( SELECT feature_codes FROM listings WHERE { where condition here } ) -- Charlie Griefer http://charlie.griefer.com/ I

Re: Need CF help- is anyone available

2010-05-25 Thread Charlie Griefer
You'd have a greater likelihood of having more sets of eyes on it (and thus a greater likelihood of getting a solution) if you were to just post the question/code to the list. IMO, of course :) On Tue, May 25, 2010 at 1:47 PM, cfcom wrote: > > Having serious problem with a piece of code > Is t

Re: Coldfusion 9 Windows vs Linux

2010-05-23 Thread Charlie Griefer
On Sun, May 23, 2010 at 11:50 AM, Beru wrote: > > > Sad... On 23 May 2010 20:41, Wil Genovese wrote: > > > THREE CHEERS FOR THAT > Now that both sides have been equally represented, how about we move on? :) -- Charlie Griefer http://charlie.griefer.c

Re: idea paint

2010-05-22 Thread Charlie Griefer
s kind of a cool idea..." :) -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success. ~| Order the Adobe Cold

Re: Is there a way to do an arbitrary sort order on a specific cell?

2010-05-14 Thread Charlie Griefer
case statement in the ORDER BY should work. See http://www.devx.com/tips/Tip/17288 On Fri, May 14, 2010 at 9:24 AM, Les Mizzell wrote: > > Is there a way to do an arbitrary sort order on a specific cell? > > For example, let's say I have a cell "colour". > Possible values: > 1. blue > 2. cyan

Re: Help With CF8 Regular Expressions

2010-05-05 Thread Charlie Griefer
leep in this thing, but if nobody's > interested, the suit is going on the hook. Oh dear God please let him be wearing something under that suit... -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love

Re: Remove multple EXTRA spaces from string

2010-04-23 Thread Charlie Griefer
ot;this has many extra spaces" and return with "this has > many extra spaces" var myString = "this has many extra spaces"; myString = rereplace( myString , \s+ , ' ' , 'all' ); -- Charlie Griefer http://charlie.griefer.com/

Re: Bind / CFC Question

2010-04-13 Thread Charlie Griefer
I haven't done much with binding, but can possibly offer some advice... Presumably, you have an existing method that returns a query with all of the columns from the table. You can go one of two routes that I can think of... 1) create a new method that only queries the table for the single colu

Re: Joni Mitchell and Cold Fusion

2010-04-07 Thread Charlie Griefer
So there's no chance of -not- hosting it with GoDaddy? 'cuz I bet that'd help a bit. On Wed, Apr 7, 2010 at 1:22 PM, Les Irvin wrote: > > Help me, I think I'm falling... here's an odd request for a certain > individual. Joni's official site is hosted on a GoDaddy server (don't > ask) running

Re: CFDocs

2010-04-07 Thread Charlie Griefer
Not familiar with that site. But you could always use http://www.cfquickdocs.com or http://cfmldocs.com/ , both of which contain CF9 docs On Wed, Apr 7, 2010 at 9:31 AM, Dave Sueltenfuss wrote: > > Does anyone know if the creator of cfdocs.org has plans to update the site > to use the latest ve

Re: test

2010-04-07 Thread Charlie Griefer
this one? http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332658 On Wed, Apr 7, 2010 at 7:07 AM, fun and learning wrote: > > Hello, > > This is a a test message. My previous two posts are not displayed on house > of fusion > >

Re: Regex to remove script and style blocks

2010-04-07 Thread Charlie Griefer
See http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec0a38f-7ffb.html for the flag to trigger multi-line capabilities in regex. (?m)]*>.*? should do it. ]*>.*?' , '' , 'all' )> On Tue, Apr 6, 2010 at 9:29 PM, UXB Internet wrote: > > I am at a loss as to how

Re: using cfhttp

2010-04-06 Thread Charlie Griefer
entire body of the site in the filecontent key. > Nice! I did not know that. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success. ~

Re: using cfhttp

2010-04-06 Thread Charlie Griefer
d'oH! yeah, cfhttp.statusCode. not cfhttp.fileStatus. :) On Tue, Apr 6, 2010 at 8:41 AM, Kevin Pepperman wrote: > > Using cfhttp will return a cfhttp.statusCode, which if is "200 OK" you know > the URL has resolved correct. > > > -- > /Kevin Pepperman > > "They who can give up essential libe

Re: using cfhttp

2010-04-06 Thread Charlie Griefer
tains the string "200" -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success. ~| Want to reach the ColdFusion com

Re: ColdFusion Builder Team is on Twitter

2010-04-01 Thread Charlie Griefer
low the @CFBuilder account, but we will retweet > @Flash_Builder with no extra charge! ZING! (too soon?) > That's ridiculous. You created that twitter account on top of Twitter's existing infrastructure. No way did you put the effort in to justify that price. -- Charlie Griefer

Re: smush.it

2010-04-01 Thread Charlie Griefer
wards making this publicly accessible . I'd imagine that when/if they open up the public API, it should be easy enough to do. -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. An

Re: ColdFusion Builder Released!

2010-03-30 Thread Charlie Griefer
I don't think the overall number of CF developers matters. CFBuilder isn't really aimed at -every- CF developer (I don't think... this, of course, is purely conjecture on my part). Not too long ago, Ben F. blogged that only a relatively small number of CF developers even use CFCs. Let's say it'

Re: ColdFusion Builder Released!

2010-03-30 Thread Charlie Griefer
u do something one time... ONE time *sigh* :) -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success. ~| Want to reach t

Re: ColdFusion Builder Released!

2010-03-30 Thread Charlie Griefer
Heh... I know I did my part to contribute to the spiraling thread of death, but I agree. We've long passed the point of diminishing returns here and seem to be stuck in a loop. Somebody... anybody... feel free to call me an asshole so Michael shuts down the thread due to personal attacks :) On

Re: ColdFusion Builder Released!

2010-03-23 Thread Charlie Griefer
On Tue, Mar 23, 2010 at 6:56 AM, Eric Cobb wrote: > > Charlie Griefer wrote: > "Bundling it with FlashBuilder may be their way of trying to increase the > uptake of the language as a whole and thus ultimately sell more server > licenses. By doing this, they're potentia

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
costs $299, comes with FlashBuilder standard. >From http://www.adobe.com/products/coldfusion/buy/#cfb : "Additionally, easily create rich interfaces for your applications with a complimentary copy of Flash Builder 4 Standard included with ColdFusion Builder." So it's not $600 ish

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
t we use and love. A number of us will shell out the $300 for CFBuilder -and- FlashBuilder. A number of us will continue to use CFEclipse or TextMate or Coda or BBEdit or... I just don't think anybody's getting screwed here. If anything, people are getting something for nothing. If yo

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
uld you think if you went to buy a car, but the dealership > refused to sell it to you unless you bought every option available? > > I wouldn't be too happy about being forced to buy a bundle to get the > one product I wanted. > > > -Original Message- > From: Ch

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
Which one was the rational one? I missed it :D On Mon, Mar 22, 2010 at 3:11 PM, Rick Faircloth wrote: > > The "overcharging customers" comment was more a reflection on the > feelings that the $300 cost has generated, rather than a comment > on actual intent or behavior. > > We've all been tryin

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
Adobe may actually have given this some thought (gasp)! :) On Mon, Mar 22, 2010 at 3:07 PM, Charlie Griefer wrote: > On Mon, Mar 22, 2010 at 3:01 PM, Rick Faircloth > wrote: > >> And, again, Adobe is free to charge whatever they like, but it would be >> nice to feel like Adob

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
easing CFBuilder for $100 to the existing developers would make the existing developers happy (kinda... I'm sure somebody would still complain). But exactly would that help its community "thrive"? -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succe

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
and we're throwing in ColdFusion Builder". And that would be "overcharging" how...? -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success. ~~

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
I can just open up the servers pane in CFBuilder, stop one service, start the other. Code insight, extensible via writing extensions in CF (-not- Java)... I think I'd make my $300 back in under a year, and probably end the year being up a few bucks. I get that it's not going to be for e

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
hod=FULL&nr=0#store=OLS-US&loc=en_us&view=ols_prod&category=/Applications/FlashBuilderPremium > > On Mon, Mar 22, 2010 at 4:24 PM, Charlie Griefer > wrote: > > > > > You lost me, Jake :) > > > > There is no edition of FlashBuilder that I see p

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
dition does as well. The one priced at $299. There is one > priced at $249 which does not include Coldfusion Builder > > On Mon, Mar 22, 2010 at 4:02 PM, Charlie Griefer > wrote: > > > > > On Mon, Mar 22, 2010 at 1:55 PM, Casey Dougall < > > ca...@uberwebsiteso

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
mium Edition adds professional testing tools, including profilers, network monitoring, and unit testing support, and includes a license for Adobe ColdFusion® Builder™ software." http://www.adobe.com/products/flex/buy/ -- Charlie Griefer http://charlie.griefer.com/ I have faile

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
as was also suggested on their list, donate your time in helping out the project (doesn't have to be with actually coding the IDE, but maintaining the web site, etc). -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have succeeded. But I love my life. I love my wife. And I

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
se these tools to help us make money. Yet there seem to be a lot of people who get pretty indignant over the fact that we're expected to pay money for these tools (as if they were magically conceived by fairy dust and unicorn farts). -- Charlie Griefer http://charlie.griefer.com/ I

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
or both ColdFusion and Railo. But hey... we digress. This is the coming out party for CFBuilder! So to address your CFBuilder related points... I agree that $299 is not a bad price. It's a great price if you need FlashBuilder... but even if not... if it makes you more productive for a few

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
people who would have thought it was too much. As I said in my initial response... there's no way Adobe (or anybody else) is going to please everybody. If enough people are put off by the price tag, then Adobe won't have much of a choice but to lower it. Gotta sit back and see how it goes

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
Yeah, assuming you have an interest in FlashBuilder. There was no way Adobe was going to please everybody (well, not without outright giving it away... which wouldn't have pleased the shareholders). For those who are interested in FlashBuilder (and I'm one of 'em), this is a pretty smokin' deal.

Re: CF-based picture-gallery

2010-03-16 Thread Charlie Griefer
I guess now it's official :) On Tue, Mar 16, 2010 at 10:28 AM, Tony Bentley wrote: > > http://cfimagemanager.com/downloads/cfimagemanager_5.7.09.4pm.zip > > I never officially released it but it does everything you listed. > > ~~

Re: Local DEV setup, multiple projects/websites

2010-02-25 Thread Charlie Griefer
While I do advocate keeping your development setup as close to the production setup as possible, I've always used Apache locally, even if I was using IIS remotely. Made it easier to do things like multiple sites and setting up the .dev sites as outlined above and in the blog entry i linked above.

Re: Local DEV setup, multiple projects/websites

2010-02-25 Thread Charlie Griefer
I do it like this guy does it: http://www.boyzoid.com/blog/index.cfm/2007/12/14/How-Do-You-Set-Up-Your-Development-Environment Basically, set up a virtual host thru apache for each site, with a .dev

  1   2   3   4   5   6   7   8   9   10   >