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
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 failed as much as I have succeeded. But I love my life. I love my wife. And I

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 success

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
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 success

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 r...@photoeye.com wrote: Is there anyway to catch coldfusion programming errors?

Re: Charge for meetings

2011-02-07 Thread Charlie Griefer
accessible 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 wife. And I wish you my kind of success

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

Re: Anyone know anything about this new ColdFusion conference?

2011-01-31 Thread Charlie Griefer
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 -Original Message- From: Charlie Griefer [mailto:charlie.grie...@gmail.com] Sent: Monday

Re: Subtracting two dates

2011-01-28 Thread Charlie Griefer
)# 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. But I love my life. I love my wife. And I wish you my kind

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 package

Re: Coldfusion Hosting

2011-01-28 Thread Charlie Griefer
/ 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 adage of you get what you pay for... then decent and cheap

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 Griefer [mailto:charlie.grie...@gmail.com] Sent: Friday

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 cfqueryparam in your SQL when using dynamic values (yeah, I know... that's

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

2011-01-26 Thread Charlie Griefer
that return up a bit by doing: cfreturn isStudentEmployee.recordcount = 0 / Then no need for the conditional. You could also drop the comparison itself since CF does implicit boolean conversion. cfreturn isStudentEmployee.recordcount / ^That'll do the same thing. -- Charlie Griefer http

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: cfif myCFC.myMethod()do something/cfif ... assuming myMethod returns a numeric

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

2011-01-26 Thread Charlie Griefer
isStudentEmployee.recordcount = 0 / will return true cfreturn isStudentEmployee.recordcount / will return false On Wed, Jan 26, 2011 at 1:43 PM, Charlie Griefer charlie.grie...@gmail.com wrote: On Wed, Jan 26, 2011 at 11:31 AM, Adam Bourg adam.bo...@gmail.com wrote: I solved it with the first

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 e...@cfgrok.com wrote: On Wed, Jan 26, 2011 at 10:43 AM, Charlie Griefer charlie.grie...@gmail.com wrote: cfreturn isStudentEmployee.recordcount = 0 / Unless I'm missing something, this should be: cfreturn isStudentEmployee.recordcount eq 0

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 ow...@threeravensconsulting.com 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

Re: why is cf_builder so expensive?

2011-01-25 Thread Charlie Griefer
/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 ~| Order

Re: why is cf_builder so expensive?

2011-01-25 Thread Charlie Griefer
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 as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind

Re: Is Coldfusion losing it biggest asset?

2011-01-13 Thread Charlie Griefer
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 developers and f*ck Ruby or .NET or whomever else. Just my $0.02 :) -- Charlie Griefer http://charlie.griefer.com/ I have failed as much as I have

Re: Is Coldfusion losing its biggest asset?

2011-01-12 Thread Charlie Griefer
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 as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success

Re: Auto Complete

2011-01-05 Thread Charlie Griefer
://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 my kind of succes

Re: Auto Complete

2011-01-05 Thread Charlie Griefer
, Adrocknaphobia adrocknapho...@gmail.com wrote: It's actually built-in to ColdFusion 8's cfinput tag. cfinput autosuggest=...  / 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 charlie.grie

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? cfdump var=#myStruct1# label=myStruct1 / cfdump var=#myOtherStruct# label=a different struct / On Fri, Dec 24, 2010 at 6:21 PM, Eric Roberts ow...@threeravensconsulting.com wrote: Is there a way to get cfdump to display the struct name when it dumps?  I have

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

2010-12-24 Thread Charlie Griefer
: Charlie Griefer [mailto:charlie.grie...@gmail.com] Sent: Friday, December 24, 2010 19:51 To: cf-talk Subject: Re: Diplaying struct info when you dump an array with strcts in it's elements... You can add the label attribute? cfdump var=#myStruct1# label=myStruct1 / cfdump var=#myOtherStruct

Re: Variable Scoping in CF8, CF9

2010-12-23 Thread Charlie Griefer
), the requirement still remains that you do need to scope these variables properly in order to avoid leakage. -- 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: (ot) jQuery question

2010-12-12 Thread Charlie Griefer
these arguments, but haven't found what I needed to understand. Thanks for any insight you'd share! Rick -Original Message- From: Charlie Griefer [mailto:charlie.grie...@gmail.com] Sent: Saturday, December 11, 2010 10:51 PM To: cf-talk Subject: Re: (ot) jQuery question You're missing

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 enigm...@gmail.com wrote: Be a little

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

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 quackfu...@gmail.comwrote: No comments driving behavior! :-) ~| Order the Adobe Coldfusion Anthology now!

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 moniqueb...@gmail.com wrote: why would

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

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,

Re: Javascript Cfquery

2010-10-12 Thread Charlie Griefer
attribute of the script tag is deprecated in favor of type. -- 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

Re: Simple question

2010-10-07 Thread Charlie Griefer
If it does, you can try cffile action=append file=c:\temp\temp.txt output= / On Thu, Oct 7, 2010 at 12:29 PM, Dan Baughman dan.baugh...@gmail.comwrote: 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

Re: Reading text files

2010-10-01 Thread Charlie Griefer
On Fri, Oct 1, 2010 at 10:14 AM, Larry Lyons larrycly...@gmail.com 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 truly rock. Have you checked Riaforge? -- Charlie Griefer

Re: List Sort help

2010-09-22 Thread Charlie Griefer
What version of CF? On CF9, the following works: cfset appVers = 3.6.1,3.6.5,3.6.3,3.6.10 cfoutput#appVers#br /#listSort( appVers, 'numeric', 'desc' )#/cfoutput On Wed, Sep 22, 2010 at 9:26 AM, Tom Jones tjo...@acworld.com wrote: thanks, but I get an error saying cant convert 3.6.1 to

Re: List Sort help

2010-09-22 Thread Charlie Griefer
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 as much as I

Re: List Sort help

2010-09-22 Thread Charlie Griefer
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 success. ~| Order the Adobe

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 andr...@andyscott.id.auwrote: You can't be serious asking that sort of question, the array Attribute was introduced in ColdFusion

Re: OOP Principles question

2010-08-04 Thread Charlie Griefer
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. ~| Order the Adobe

Need a west coast (US) based CF host

2010-07-29 Thread Charlie Griefer
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! Charlie -- Charlie Griefer http://charlie.griefer.com/ I have

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

2010-07-29 Thread Charlie Griefer
...@sstwebworks.comwrote: Charlie, 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 charlie.grie...@gmail.com wrote: Hey all... I know this topic (can somebody recommend a CF host

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

2010-07-29 Thread Charlie Griefer
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, LLC http://www.ecartech.com http://www.cfgears.com Charlie Griefer wrote: Hey

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

2010-07-29 Thread Charlie Griefer
:40 PM, Scott Stewart webmas...@sstwebworks.comwrote: 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, Jul 29, 2010 at 3:29 PM, Charlie Griefer charlie.grie...@gmail.com

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

2010-07-29 Thread Charlie Griefer
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 is a Railo site (altho we're keeping it CF9 compatible) with a mySQL

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

2010-07-29 Thread Charlie Griefer
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 charlie.grie...@gmail.com wrote: Hey Scott: Hmm... not sure that the current site

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

2010-07-29 Thread Charlie Griefer
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 On Fri, Jul 30, 2010 at 12:02 PM, Charlie Griefer charlie.grie

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: Regex Help

2010-07-26 Thread Charlie Griefer
troublemaker :D On Mon, Jul 26, 2010 at 12:02 PM, Andy Matthews li...@commadelimited.comwrote: 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

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 ch...@asitv.com wrote: I also have a regex I can't seem to

Re: Best conference?

2010-07-13 Thread Charlie Griefer
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 behind them make every effort to ensure that it's both a valuable and fun experience. - Charlie Griefer http://charlie.griefer.com/ I

Re: ordering by lowest price (across two columns)

2010-07-05 Thread Charlie Griefer
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 something like that? -- Charlie

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

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 jeff.gladn...@gmail.comwrote: 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

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 b...@forta.com 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,

Re: CF9 Developer Edition - IP Addresses

2010-06-16 Thread Charlie Griefer
the server are. 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 kind of success

Re: Comma delimited list

2010-05-28 Thread Charlie Griefer
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 have failed as much as I have succeeded. But I love my life. I love my wife

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 cf...@aceligent.com wrote: Having serious problem with a

Re: Coldfusion 9 Windows vs Linux

2010-05-23 Thread Charlie Griefer
On Sun, May 23, 2010 at 11:50 AM, Beru beru.b...@gmail.com wrote: Sad... On 23 May 2010 20:41, Wil Genovese jugg...@trunkful.com wrote: THREE CHEERS FOR THAT Now that both sides have been equally represented, how about we move on? :) -- Charlie Griefer http

Re: idea paint

2010-05-22 Thread Charlie Griefer
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 Coldfusion Anthology now! http

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 lesm...@bellsouth.net 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.

Re: Help With CF8 Regular Expressions

2010-05-05 Thread Charlie Griefer
, 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 my wife. And I wish you my kind of success

Re: Remove multple EXTRA spaces from string

2010-04-23 Thread Charlie Griefer
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/ I have failed as much as I have succeeded. But I love my life. I love my wife

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

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)script\b[^]*.*?/script should do it. cfset newString = rereplaceNoCase( string , '(?m)script\b[^]*.*?/script' , '' , 'all' )

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 funandlrnn...@gmail.comwrote: Hello, This is a a test message. My previous two posts are not displayed on house of fusion

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 dsueltenf...@gmail.comwrote: Does anyone know if the creator of cfdocs.org has plans to update the site

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 les.cft...@gmail.com 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

Re: using cfhttp

2010-04-06 Thread Charlie Griefer
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 community with something

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 chorno...@gmail.com 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

Re: using cfhttp

2010-04-06 Thread Charlie Griefer
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. ~| Want

Re: smush.it

2010-04-01 Thread Charlie Griefer
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. And I wish you my kind of success

Re: ColdFusion Builder Team is on Twitter

2010-04-01 Thread Charlie Griefer
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 http://charlie.griefer.com

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-30 Thread Charlie Griefer
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

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

Re: ColdFusion Builder Released!

2010-03-23 Thread Charlie Griefer
On Tue, Mar 23, 2010 at 6:56 AM, Eric Cobb cft...@ecartech.com 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 potentially

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'

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
. 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 ;) -- Charlie Griefer http://charlie.griefer.com/ I

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
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 hours, you've recovered your investment. Charlie Griefer http://charlie.griefer.com/ I have failed as much as I

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
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 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
, 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 wish you my kind of success. ~| Want to reach the ColdFusion community with something

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
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 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
: The standard edition 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 charlie.grie...@gmail.comwrote: On Mon, Mar 22, 2010 at 1:55 PM, Casey Dougall ca...@uberwebsitesolutions.com wrote

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
=OLS-USloc=en_usview=ols_prodcategory=/Applications/FlashBuilderPremium On Mon, Mar 22, 2010 at 4:24 PM, Charlie Griefer charlie.grie...@gmail.comwrote: You lost me, Jake :) There is no edition of FlashBuilder that I see priced at $299. There's standard ($249), which does not include

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
end the year being up a few bucks. I get that it's not going to be for everybody. It's not going to work for everybody. I just wish folks could be more pragmatic about it and say, yeah, it doesn't work for me... but I can see where they're going with it. Charlie -- Charlie Griefer http

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
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. ~| Want to reach

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
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 succeeded. But I love my life. I love my wife. And I wish

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
actually have given this some thought (gasp)! :) On Mon, Mar 22, 2010 at 3:07 PM, Charlie Griefer charlie.grie...@gmail.comwrote: On Mon, Mar 22, 2010 at 3:01 PM, Rick Faircloth r...@whitestonemedia.comwrote: And, again, Adobe is free to charge whatever they like, but it would be nice to feel

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 r...@whitestonemedia.comwrote: 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.

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
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: Charlie Griefer [mailto:charlie.grie...@gmail.com] Sent: Monday, March 22, 2010 5:55 PM To: cf-talk Subject

Re: ColdFusion Builder Released!

2010-03-22 Thread Charlie Griefer
offering for nothing, you're not getting screwed. You're no worse off than you were yesterday. -- 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
is pretty much saying, Buy FlashBuilder and get CFBuilder for free (or vice-versa). Much better deal than CFStudio for $500 :) -- 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: 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 t...@tonybentley.com 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
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 http://www.boyzoid.com/blog/index.cfm/2007/12/14/How-Do-You-Set-Up-Your-Development-EnvironmentBasically, set up a virtual host thru apache for each site, with a .dev

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

  1   2   3   4   5   6   7   8   9   10   >