Re: CF version of JIRA?

2015-03-23 Thread Roger Austin

It is usually good advice to not reinvent the wheel, but there is a 
place for new projects. Sometimes you want to roll your own ticket 
system and I have done that for a variety of reasons such as flexibility 
or integrating with a code base. It really depends on how complex of a 
system you need and what sorts of systems you want to connect to it.

-- 
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog:  http://RogerTheGeek.wordpress.com/

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360287
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF Builder 3

2015-03-03 Thread Roger Austin

I would let it expire and see if you need the license. I use the expired trial 
and it does everything I need. It isn't worth spending the $300 unless you use 
the extra tooling.

 William Seiter will...@seiter.com wrote: 
 
 Good Afternoon,
 
 I have been playing with the mobile abilities of CF11 recently and just
 noticed that my trial copy of the CFB is coming to an end soon.
 
 Does anyone have an extra license for CFB 3 that they would be willing to
 part with?
 
 I don't want to pay the full retail price for something I am just 'playing
 with' yet.
 
 Thanks,
 William
 
 
 --
 William Seiter 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360186
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Advise in optimizing an application

2014-11-15 Thread Roger Austin

Any chance to have the database engine do all that record logic? That would be 
the first thing I would try. Stored procedures are great for things like this. 
I don't know what RDMS you are using, but most have SQL that can do this. 
Complex database stuff is usually better off doing within the database as it 
can scale.

1 store the four Excel fields in a temporary table in the database
2 Use SQL to weed out all the records against the current tables. Google for 
examples.
3 Dump the parsed records into the production table.

2 and 3 probably are one step in the database engine, but the SQL might be 
tedious so my first thought is to separate it.

Good luck, Roger

 Les Mizzell lesm...@bellsouth.net wrote: 
 
 Evening,
 
 I'm still fighting with my Excel Import application a bit. Basically, it 
 works pretty well, as long as there's a limited number of records being 
 imported.
 Problem is, the client tried to import a list with almost 15,000 
 addresses today, and it eventually timed out or the server reset the 
 connection before it finished the import. Then my phone rings...
 
 The app does several things:
 1. Import 4 columns from an excel sheet [email][first name][last 
 name][company] into an array
 2. Check the email address to see if it's valid. If not, delete that row 
 from the array
 3. Check the email address to see if it's been previously unsubscribed 
 from the list and delete that row from the array
 4. Check the list against other email addresses already in the database 
 for that list, and delete that row so as to not import it if it's 
 already there.
 5. After all that, write the record
 
 Running some test with the 15,000 address sheet
 Reading the Excel sheet in and running steps 1 through 4 above is taking 
 well over 10 minutes by itself.
 Writing the record after that, enough extra time to be sure it borks up.
 Smaller list (several hundred addresses) seem to import fine - MUCH 
 faster than the former POI based app.

-- 
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60 
Twitter:  http://twitter.com/RogerTheGeek 
Blog:  http://RogerTheGeek.wordpress.com/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359649
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Advise in optimizing an application

2014-11-15 Thread Roger Austin

You might try something like this

SELECT *
FROM t1 
WHERE NOT EXISTS
 (SELECT * FROM t2 WHERE t1.email = t2.email);

Without being more familiar with your use case, it is very difficult to suggest 
much.

 Les Mizzell lesm...@bellsouth.net wrote: 
 
 On 11/15/2014 12:42 PM, Roger Austin wrote:
  Any chance to have the database engine do all that record logic?
 
 After killing myself on this, I finally realiaed I was doing it ALL 
 WRONG! All those loops and everything to filter the array, then do the 
 insertwas taking forever.
 I'm revising - BULK IMPORT EVERYTHING to a temp table. No filters. Then, 
 run the filters against the database and write to the final table.  A 
 LOT faster. Duh..
 
 Still got one problem, and it's the duplicates filter.
 
 So, I need to filter the inserted records and kill any duplicate email 
 addresses.
 First, I need to be sure I'm filtering ONLY the addresses that belong to 
 the specific group, as folks might be subscribed to more than one group:
 
 cfquery name=getFULLLIST
 SELECT groups_id, email_id from nl_catREL
 WHERE groups_id = cfqueryparam value=#req.thisGROUPID# 
 cfsqltype=CF_SQL_INTEGER  /
 /cfquery
 cfset fullLIST = #ValueList(getFULLLIST.email_id)# /
 
 Now, let's see if I can return JUST the duplicates. Once that works, 
 it's no big deal to delete them...
 cfquery name=findDups
 SELECT distinct a.email_id
 FROM nl_mailgroups a, nl_mailgroups b
 WHERE a.ml_id in (cfqueryparam value=#fullLIST# 
 cfsqltype=CF_SQL_INTEGER list=yes  /)
 AND a.email_id  b.email_id
 AND a.ml_email = b.ml_email
 ORDER BY a.email_id
 /cfquery
 
 That doesn't work. It returns everything ... and it takes a really long 
 time, even with only 150 addresses or so.
 Ideas?
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359651
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: ColdFusion / authorize.net question

2014-08-18 Thread Roger Austin

I might try 
cfset lastname=form.lastname
instead of 
cfset lastname=cfoutput#form.lastname#/cfoutput
 Eric Bourland ebwebw...@outlook.com wrote: 
 
 http://nnvawi.org/sample2.cfm
 
 When I use the code, below, then the Last Name field in the authorize.net 
 page gets populated with:
 
 cfoutput/cfoutput
 
 So it looks like something is ... erasing the value of #form.lastname#:
  
 cfset lastname=cfoutput#form.lastname#/cfoutput  !--- set value of 
 lastname from #form.lastname#---
 
 An easier option would be to just rename your LastName field to 
 x_last_name and not have to deal with the javascript at all.
 
 This makes a tremendous amount of sense ... and I did try it -- I am pretty 
 sure I did ... around 3 this morning. I was pretty tired then, so I will try 
 it again and let you know how it goes.
 
 But, it seems like this code should work, yes? Thank you again for your help. 
 Eric
 
 [code]
 cfsetting enablecfoutputonly=true
 cfoutput
 
 !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN 
   http://www.w3.org/TR/html4/loose.dtd;
 HTML lang='en'
 HEAD
 TITLE Sample SIM Implementation /TITLE
 /HEAD
 BODY
 
 
 !-- This section generates the Submit Payment button using Coldfusion 
 --
 /cfoutput
 !--- set default values for other user-editable fields ---
 cfparam name=form.lastname default=
 
 cfset lastname=cfoutput#form.lastname#/cfoutput  !--- set value of 
 lastname from #form.lastname#---
 
 
 !--- the parameters for the payment can be configured here ---
 !--- the API Login ID and Transaction Key must be replaced with valid values 
 ---
 cfset loginID=86G3UkHsuB
 cfset transactionKey=4feP455vF62EzS87
 cfset amount=19.99
 cfset description=Sample Transaction
 cfset label=Submit Payment !--- This the label on the 'submit' button 
 ---
 cfset testMode=false
 
 !--- By default, this sample code is designed to post to our test server for
 developer accounts: https://test.authorize.net/gateway/transact.dll for real
 accounts (even in test mode), please make sure that you are posting to:
 https://secure.authorize.net/gateway/transact.dll ---
 cfset posturl=https://secure.authorize.net/gateway/transact.dll;
 
 
 !--- an invoice is generated using the date and time ---
 cfset invoice=DateFormat(Now(),mmdd)  TimeFormat(Now(),HHmmss)
 
 !--- a sequence number is randomly generated ---
 cfset sequence=RandRange(1, 1000)
 
 !--- a timestamp is generated ---
 cfset timestamp=DateDiff(s, January 1 1970 00:00, 
 DateConvert('local2UTC', Now())) 
 
 !--- The following lines generate the SIM fingerprint ---
 cf_hmac data=#loginID#^#sequence#^#timestamp#^#amount#^ 
 key=#transactionKey#
 cfset fingerprint=#digest#
 
 cfoutput !--- begin CFOUTPUT ---
 
 !--- Print the Amount and Description to the screen.---
 pAmount: #amount# br /
 Description: #description#/p
 
 !--- Create the HTML form containing necessary SIM post values ---
 FORM method='post' action='#posturl#' 
 !--- Additional fields can be added here as outlined in the SIM integration
 guide at http://developer.authorize.net ---
 
 pEnter Last Name: INPUT type=text NAME=lastname value= //p
 
 INPUT type='hidden' name='x_login' value='#loginID#' /
 INPUT type='hidden' name='x_amount' value='#amount#' /
 INPUT type='hidden' name='x_description' value='#description#' /
 INPUT type='hidden' name='x_invoice_num' value='#invoice#' /
 INPUT type='hidden' name='x_fp_sequence' value='#sequence#' /
 INPUT type='hidden' name='x_fp_timestamp' value='#timeStamp#' /
 INPUT type='hidden' name='x_fp_hash' value='#fingerprint#' /
 INPUT type='hidden' name='x_test_request' value='#testMode#' /
 INPUT type='hidden' name='x_show_form' value='PAYMENT_FORM' /
 input type='submit' value='#label#' /
 INPUT type='hidden' name='x_last_name' value='#lastname#' /!--- 
 populate field 'x_last_name' with value #lastname#---
 /FORM
 !-- This is the end of the code generating the submit payment button.
 --
 
 /BODY
 /HTML
 !-- The last line is a necessary part of the coldfusion script --
 /cfoutput !--- close CFOUTPUT ---
 
 [/code]
 
 
 
 
 
 
 
 ***
 
 Eric Bourland
 
 Internet Project Development
 
 Washington DC
 
  kind | creative | reliable
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359149
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: ColdFusion / authorize.net question

2014-08-18 Thread Roger Austin

You don'tneed the double quotes around form.lastname in a cfset statement.
 Eric Bourland ebwebw...@outlook.com wrote: 
 
 Dear Roger,
 
 Thanks for that. However,
 
 cfset lastname=form.lastname  !--- set value of lastname from 
 #form.lastname#---
 
 inserts value form.lastname in the Last Name field in the authorize.net 
 form. I think I need the outputs. I am also wondering why any value that 
 occurs between the outputs gets .. stolen. Gone.
 
 I'll try this next:
 
  An easier option would be to just rename your LastName 
 field to x_last_name and not have to deal with the javascript at all.

-- 
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60 
Twitter:  http://twitter.com/RogerTheGeek 
Blog:  http://RogerTheGeek.wordpress.com/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359154
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Lanyrd Site for NCDevCon

2014-07-13 Thread Roger Austin

The NCDevCon team announced that they set up a Lanyrd site for the September 
13-14, 2014 conference. Lanyrd Site: http://lanyrd.com/2014/ncdevcon/

There will be a ColdFusion track as well as JS, HTML/CSS, design, security, and 
others. The sessions include great speakers from the Adobe team, nationally 
known speakers, as well as regional and local speakers. Each year it is a 
little different, but always full of great content on web and mobile 
development. More Info: http://ncdevcon.com/

The event is conveniently located in Raleigh, NC at the College of Textiles 
facility on the Centennial Campus of North Carolina State University. 
http://www.tx.ncsu.edu/

There is a FAQ page on the web site if you have questions. Please contact the 
NCDevCon team through the web site if your questions aren't answered on the 
FAQs. I hope to see you at the event. Thanks, Roger
-- 
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60 
Twitter:  http://twitter.com/RogerTheGeek 
Blog:  http://RogerTheGeek.wordpress.com/

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358864
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Generating Section 508 Compliant PDFs from CF

2014-06-25 Thread Roger Austin

I have always thought that CF should have the full PDF API available.
I haven't seen the ability to automatically generate and fully tag PDFs for ADA 
compliance, but I hope someone has a positive answer.

 Scott Stewart webmas...@sstwebworks.com wrote: 
 
 Has anyone implemented a solution that will allow ColdFusion 9, 10, 11 to
 generate a PDF that is fully section 508 compliant? Including tagging...
 
 Thanks in advance
 
 Scott Stewart
 
 -- 
 --
 Scott Stewart
 Adobe Certified Instructor, ColdFusion 8  9
 Adobe Certified Expert, ColdFusion 8  9
 
 Blog: http://www.sstwebworks.com
 Email: webmas...@sstwebworks.com
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358760
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF User group around Tallahassee Florida

2014-06-20 Thread Roger Austin

On 6/19/2014 2:53 PM, Rick Dennis wrote:

 I am curious if there is a ColdFusion user group meeting or located near 
 Tallahassee, Florida?

 If not where are other CF groups located near by?

I hope you find a CFUG near your area as user groups can be great for 
sharing knowledge.

Please also consider coming up to Raleigh for NCDevCon September 13-14. 
http://ncdevcon.com/ It is a reasonable price for an excellent learning 
experience.

Enjoy, Roger
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/


-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 2014.0.4592 / Virus Database: 3972/7712 - Release Date: 06/20/14


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358754
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


FYI: NCDevCon Early Bird and Call for Speakers

2014-04-23 Thread Roger Austin

NCDevCon has been announced for September 13-14, 2014 in Raleigh. 

Early bird tickets are available to the first lucky folks who act quickly. 

The call for speakers is open now so go for it. 

See http://www.ncdevcon.com/ for more info.

Enjoy, Roger
-- 
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60 
Twitter:  http://twitter.com/RogerTheGeek 
Blog:  http://RogerTheGeek.wordpress.com/

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358392
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: The long tail of ColdFusion fail

2014-03-28 Thread Roger Austin

 Maureen mamamaur...@gmail.com wrote: 
 
 Honestly, if you are selling a software product that requires
 additional lock down after installation, you might could get the
 attention of those hiding in their cubicle by putting a large notice
 of such at the beginning of the installation instructions.  No one
 should have to find out about software security issues from CNN.

I would change the argument over to what happens when installing competing 
middleware. Are the alternatives to ACF any safer to install? What sorts of 
things do they do to minimize security issues on installation? How can ACF 
modify the installation process to maximize the security profiles up front?

The ACF installation security profile doesn't matter if massive breach 
publicity makes large datacenters, government agencies, and ISPs to abandon the 
product. In public relations, logic isn't the primary driver.

-- 
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60 
Twitter:  http://twitter.com/RogerTheGeek 
Blog:  http://RogerTheGeek.wordpress.com/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358173
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Quick Survey

2014-03-26 Thread Roger Austin

Surveys are interesting, but caution must be used in looking at the results. A 
lot of the analysis on what to learn depends on the developer's background, 
location, industry, age, etc. For example, someone nearing retirement would 
look at it differently than a 30 year old person. Someone in RTP, SV, NYC, 
Austin, or Boston would look at it differently than someone in Montana or 
Tulsa. If all you know is web development the answer might be different than 
someone with a deep CS education.

I guess if I had to pick one, I would move to Python or some functional 
language like Clojure. (Wait, that's not just one.) If all I was after is 
money, I might look at moving to a job as a DBA or moving into the MS space as 
those are advertised a lot. While I plan on staying with CF, I'm also learning 
a lot of other things since that is what developers do.

 John M Bliss bliss.j...@gmail.com wrote: 
 
 P.S. None / sticking with CFML for now people need not take survey.  :-)
 
 This is just for people who're specifically learning a new, non-CFML
 language for income reasons. For those people only, I'm wondering, which
 one(s)?
 
 
 On Tue, Mar 25, 2014 at 10:43 PM, John M Bliss bliss.j...@gmail.com wrote:
 
  https://www.surveymonkey.com/s/5XYDGRG
 
  One question, You've used CFML as your primary source of income for one
  or more years. Now / soon you are learning / will learn which of the
  following because you believe it may be / become a better source of income?
 
  Please let me know if this survey (or similar) has already been done in
  the last six months or so.
 
  I will share results next week.
 
  https://www.surveymonkey.com/s/5XYDGRG
 
  --
  John Bliss - http://www.linkedin.com/in/jbliss
 
 
 
 
 -- 
 John Bliss - http://www.linkedin.com/in/jbliss
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358097
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: The long tail of ColdFusion fail

2014-03-26 Thread Roger Austin

 Dave Watts dwa...@figleaf.com wrote: 
 In the case where everything's locked down by default, nothing works,
 and admins need to learn how to remove security to allow access to a
 web application.

This reminds me of finding a scientific server where everyone in the department 
was an administrator. When I asked about why the heck everyone was in the 
administrators group, the people told me the specialized software wouldn't work 
if a user wasn't in the administrators group. My assumption was all they needed 
was access to a temp folder, but I wasn't in the position to go all crazy on 
them. Hey, but it worked! Academic software developers aren't always concerned 
with security.

So, I'm not sure locking down initially would help that much since many unaware 
installers would just undo all the security to make it work. How do other 
enterprise middleware systems do it?

-- 
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60 
Twitter:  http://twitter.com/RogerTheGeek 
Blog:  http://RogerTheGeek.wordpress.com/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358122
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: The long tail of ColdFusion fail

2014-03-18 Thread Roger Austin

 Gerald Guido gerald.gu...@gmail.com wrote: 
 
 On Mon, Mar 17, 2014 at 3:18 PM, Robert Harrison rob...@austin-williams.com
  wrote:
 
  their IT departments are flat out refusing CF technology.
 
 
 What is the deal with the bias and, at times, the flat out bigotry toward
 CF? Could someone explain this to me?
 
 I deal with this all the time. CF is a tool to get a job done. CF is one of
 the many tools in my tool belt so, to me, hating Cf is like hating hammers.
 It boggles my mind why is there such a severer bias against CF.

The data centers running Microsoft OSs look at ColdFusion as an outlier that is 
expensive to purchase and maintain. To them, it does nothing more than .NET. 
Many of the CIOs are under pressure from the suits to cut costs so something as 
expensive as ColdFusion is an easy target. Add in the extra sysadmin costs that 
are different than MS and you get the obvious reaction.

I don't know much about LAMP shops so I won't speculate how they might react; 
however, the people I know from the open source community are not so keen on 
Adobe.

It is the developer that likes ColdFusion, not so much the data center folks.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358013
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF to groovy, awe man wth...

2014-03-17 Thread Roger Austin

Of course you want to learn it. I'll skip the discussion on whether it is a 
good idea to rewrite everything in a new language or not since business 
decisions don't have to make sense. The man with the gold makes the rules.

The standard procedure in most industries is to decide to write all new 
applications in another language, then proceed. They keep the legacy people 
around for maintenance and hire a bunch of kids to write the new stuff. Then, 
they fire all the old people and keep the kids who now are in legacy mode. As a 
geezer, you have to jump into the new stuff when you get half of a chance even 
if you have to learn it on your own dime. Having them pay for you to learn the 
new stuff is gold.

Moral of story: Try not to be one of those legacy devs. (Of course, you already 
know this if you are a geezer geek and have made it this far.)

 morchella morchella.delici...@gmail.com wrote: 
 
 so we have some people at the top here wanting us to switch from cf to
 groovy.
 i have no control other then will support all apps until this thing happens.
 
 so was curious if any one here has done any groovy stuff, and what advice
 they could give to a old man who has done cf since 1998.
 
 i don't want to learn it. but have to.
 so any good books or resources that you know of?
 
 hoping it doesn't happen, or that i find another cf shop before it does.
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357954
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: The long tail of ColdFusion fail

2014-03-17 Thread Roger Austin

I'm a plank, you're a plank, everyone's a plank, plank...

 Adam Cameron dacc...@gmail.com wrote: 
 
 But I will swing back towards Adobe (and Macromedia before them) being to
 blame here for engendering this idea that one can be a plank and still use
 CF. So now we have a community full of planks (and we *seriously* do). It
 was/is irresponsible for Macromedia/Adobe to commercially exploit this. IMO.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357989
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: setting up team games

2014-02-04 Thread Roger Austin

You also need to add in the constraints of who is home team and who has to 
bring the beer.

 Chad Gray cg...@careyweb.com wrote: 
 
 So like on Friday night
 Team1 vs. Team2
 Team3 vs.Team4
 Team5 vs.Team6
 Team7 vs. Team8
 Team9 vs.Team10
 
 On Saturday
 Team1 vs. team3
 Team2 vs  this is where I choke...  :)
 
 There has to be a way to loop over this and add one or something then when 
 you hit 11 reset that to 1
 
 See where I am going?
 
 
 
 -Original Message-
 From: Robert Harrison [mailto:rob...@austin-williams.com] 
 Sent: Tuesday, February 04, 2014 11:06 AM
 To: cf-talk
 Subject: RE: setting up team games
 
 
 I assume you're using a data base and some sort of random generator program 
 to match up the teams.  If this is the case, just keep a history table of who 
 has played who, then when you run the random play generator, check the 
 history and do not allow repeats.  
 
 If you're going to get 10 teams to play each other, it's going to take more 
 than 10 games to get them to play each other... I think that would take 90 
 games... unless not everyone is playing everyone.
 
 Robert Harrison
 Director of Interactive Services
 
 Austin  Williams
 Advertising I Branding I Digital I Direct
 125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   
 F 631.434.7022 http://www.austin-williams.com
 
 Blog:  http://www.austin-williams.com/blog
 Twitter:  http://www.twitter.com/austin_williams 
 
 -Original Message-
 From: Chad Gray [mailto:cg...@careyweb.com]
 Sent: Tuesday, February 04, 2014 11:00 AM
 To: cf-talk
 Subject: setting up team games
 
 
 I am working on a website to keep track of baseball teams.  once section will 
 be to take like 10 teams and set them up to play each other over 10 games.
  
 I would like to figure out a way to programmatically to take the 10 teams and 
 match them up with the other teams over the 10 games so they only play each 
 other once over the course of the 10 games.
  
 Make sense?  I am sure it is something simple, but I can't get my head 
 wrapped around it.
  
 Thanks!
 Chad
 
 
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357584
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: setting up team games

2014-02-04 Thread Roger Austin

Google Round Robin scheduling
 Chad Gray cg...@careyweb.com wrote: 
 
 Ya rounds...  like there will be 10 days that all 10 teams will play each 
 other on that day
 
 I need to pair up the teams so they don't repeat playing each other over the 
 course of the 10 days of games.

--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog:  http://RogerTheGeek.wordpress.com/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357591
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Roger Austin

On 9/10/2013 2:05 PM, =?ISO-8859-1?Q?Claude_Schn=E9egans wrote:

   How would you perform CSS pre-processing with CF?

 Well, if the job is just to create dynamic CSS, CF can do the same way it can 
 create dynamic HTML.
 It can either create static .CSS files whenever styles muste be changed. For 
 instance, in my CMS I have a styles editor with all parameters stored in a 
 database.
 It can also create 100% dynamic CSS, like in
 LINK HREF=myStyles.cfm...
 although in that case CSS files cannot be cached on client side, but I 
 suppose it will be the same with LESS files.

The LESS files are processed to get your CSS files. LESS=source; 
CSS=compiled. Probably a bad analogy. :)

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356750
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CreateODBCDate()

2013-09-06 Thread Roger Austin

On 9/6/2013 5:10 PM, Leigh wrote:

 Here's the message it sent me:

 Detail: [Macromedia][SequeLink
 JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver]
 Syntax error (missing operator) in query expression 'd '20141-04-30'}'
 It shows the query:  ..., DuesExpire = {d '20141-04-30'}, ...


 What is the complete error message and generated SQL?

Access will not process 20141 as a valid year in a date field. It only
goes up to . Dates are stored as double floating point fields with
the fraction holding the time and the value representing the date.

Access code will take dates as #mm/dd/# format so
DuesExpire = #04/30/2014#, would be valid in your UPDATE
query.

I would not assume the limits on IsDate() or createODBCDate()
and the internal database engine date/time representation to be
working off the same rules.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356724
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Getting output into a div using cfdocument

2013-08-29 Thread Roger Austin

 Bruce Sorge sor...@gmail.com wrote: 
 
 I'm starting to figure that out. I even included the JS library in the 
 cfdocument tag and still nada. This sucks. If I were on my own server I'd 
 have no issues downloading BBQ or something like that, but since I am on a 
 hosted server I am pretty much limited in what I can do.

It seems to me that the plugin is generating the CSS client side so the backend 
cfdocument will never have it to generate it to include in the PDF file on the 
server. It would work on your browser since jQuery is running there locally. 
That is why the Java solutions (backend) work. 

For simple barcode symbology, you might be able to generate the CSS for all the 
characters, and start and stop symbols. You could hard wire that inside your 
cfdocument CSS (if all you were using were 0-9 chars.) That would be painful, 
but probably very useful. I would think that something like 3 of 9 could be 
done that way.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog:  http://RogerTheGeek.wordpress.com/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356664
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: scientific notation with significant figures

2013-07-15 Thread Roger Austin

 Keith McGee kpmc...@frontiernet.net wrote: 
 
 http://cflib.org/udf/scientificFormat
 
 
 On Fri, Jul 12, 2013 at 8:41 AM, Keith McGee kpmc...@frontiernet.netwrote:
 
 
 
 This didn't help, Thanks for the link though.

The last time I had to deal with significant figures was in Pascal or Fortran. 
My 
approach was to write a procedure that would take the real value and the 
number of significant figures. I would multiply by 10*sigfigs, truncate, then 
create the string representing the decimal value. I would test the number of 
values from the decimal point and pad with 0s if needed.
All I needed was the resulting text sort of like a Hollerith in Fortran. It has 
been 
25+ years ago, but I think that's what I did. Note that real numbers are stored 
in logarithmic format so you need to pass strings after you convert.

It gets complicated if you need to have the real value back so you can do math. 
I remember having code that would do basic math functions (+-*/) on two string 
values of numbers and calculate the proper number of sig figs when the two 
numbers 
had varying significant figures (i.e., 1.89325 * 10.1. That was freaky.

There could be a Java package somewhere you could use, but I don't know of one.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://RogerTheGeek.wordpress.com/

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356190
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


NCDevCon Date Change

2013-05-17 Thread Roger Austin

Due to the scheduling of the International Bluegrass Music Association
convention in Raleigh, the NCDevCon organizers had to reschedule the
event to September 21-22, 2013. There wasn't a hotel room within sight
for the original weekend. I may rent out a room or two myself. ;)
http://ncdevcon.com/post.cfm/ncdevcon-date-change
The TACFUGers hope to see you all in September. Enjoy, Roger
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355752
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


NCDevCon 2013 Call For Speakers Open

2013-05-03 Thread Roger Austin

NCDevCon conference just opened up the call for speakers on Google
Docs. There are multiple tracks on various topics.
https://docs.google.com/spreadsheet/viewform?formkey=dDc4M1VmUmtUZVVkQnVnQ2g4ek9abWc6MQ

The conference is in Raleigh, NC at the Textile School on the
North Carolina State University Centennial Campus. Dates are
September 28-29, 2013. Early bird tickets are going fast (22
left as of now.) http://ncdevcon.com/
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355648
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


NCDevCon Early Bird Tickets

2013-04-27 Thread Roger Austin

NCDevCon 2013 early bird tickets are on sale now. Save $100 by registering 
before the early bird tickets run out. There are multiple tracks again this 
year including the ColdFusion track. See http://ncdevcon.eventbrite.com/ to 
register or http://ncdevcon.com/ for more information. 
Enjoy, Roger
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355617
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Coldfusion 10 Hotfix 9

2013-04-11 Thread Roger Austin

 Rick Root rick.r...@gmail.com wrote: 
 
 Tried to install CF10 hotfix 9 today.  Failed.  Using the CF Updates from
 the CF Administrator.  Broke the administrator, among other things.
 
 Also tried to install the hotfix manually by running the jar file ... it
 seems to hang trying to stop the server - which is already stopped.
 
 Running Windows Server 2003 64 bit.  Logged in using an account with local
 administrator privileges.
 
 Anyone else tried to install this update?

I installed it on my development machine, but it never finalized and reset. 
When I restarted the laptop, the administrator said there were no available 
updates. I assume it must have took. 
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355359
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Curmudgeon painted in a corner

2013-03-18 Thread Roger Austin

On 3/18/2013 2:02 AM, .jonah wrote:

 Sounds like you need Linux!


 On 3/17/13 8:41 PM, Dave Long wrote:
 I want to own the machine, not have the machine own me.

One thing you could do is to upgrade to more modern machine,
swap in a SSD, and install Linux and your development
environment. That way, you can always pop in the original
HD if you weren't happy with the setup.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355064
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF running out of steam

2013-03-17 Thread Roger Austin

As fun as a discussion like this is, I would caution people to
avoid basing your career off of one product or system. No matter
who you work for, you are a small business with one employee.
Make decisions about your capabilities with that in mind. Be
objective about decisions that are out of your control. You
should have at least one plan B. Never stop learning new things
inside and outside of programming.

I remember the discussion when CF changed from very low cost
to an enterprise price (V3-V4?). I gave it up and went with
ASP since it was free. The same discussions about price were
happening back then. I don't know the answer, but CF has had a
lot of resilience. (I ended up back in CF once I started using
corporate servers.)

The main thing anyone can do is be active in the CF community,
but be realistic. Nothing lasts forever. What would realistically
happen to CF developers if Adobe canned ColdFusion? Most
enterprises that use it would keep it running for a while and
employ people to rewrite applications eventually. I don't know
how long Adobe will keep ColdFusion, but I assume for some time
in the future.

Don't let something out of your control define your future (or
at least hedge your bets.) The development landscape changes
every few years. You have time to deal with it if you stay
informed on trends.
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355047
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Issue with Session scope

2013-03-15 Thread Roger Austin

On 3/15/2013 11:43 AM, fun and learning wrote:

 I am converting a hidden variable to session variable. I am setting a session 
 variable when a page loads. The page consists of a form

 cfset session.host = cgi.remotehost

 When the form is submitted, the session variable is saved to a file. The form 
 submits to the same page except there is a condition,

 cfif isdefined(form.submit)
cfinclude template=savetofile.cfm
 /cfif

 The problem is when I submit the form on my computer, the session variable 
 exists and form submission works fine. But when I asked some other people at 
 my office to test, they get 'Element host is undefined in session' on form's 
 submission.Looks like it is failing in savetofile.cfm. Why could this be 
 happening?

CGI.REMOTE_HOST? Not sure you have to have an underscore, but that is 
what I thought.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355029
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adding Salt and Password Hash to existing acocunts

2013-03-12 Thread Roger Austin

 Torrent Girl moniqueb...@gmail.com wrote: 

 Thanks. Is there any benefit to using SHA512 over anything else? 

What is the risk profile of the site?
What regulations do you have to meet if any?
 i.e., FIPS-140-2? http://en.wikipedia.org/wiki/FIPS_140
 http://csrc.nist.gov/publications/fips/fips140-2/fips1402.pdf

What does it cost to use higher level encryption? (Probably very little)

Any reason not to use the best encryption? (Probably not with modern systems)

MD5 should not be used. Use SHA-512

--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354941
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adding Salt and Password Hash to existing acocunts

2013-03-07 Thread Roger Austin

 Torrent Girl moniqueb...@gmail.com wrote: 

 Did you have a problem with timeouts or out of memory errors?
 
 I have quite a bit of records 

This is why I suggested that you pre-expire everyone and have them update their 
credentials on next log in. 
It spreads out the load and you have to have the code anyway. You might check 
for a blank password field 
and then send them to change their password to the new salted hash version. 
Then, blank out the password 
field at the same time.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354880
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adding Salt and Password Hash to existing acocunts

2013-03-05 Thread Roger Austin

 Torrent Girl moniqueb...@gmail.com wrote: 
 
 Hello all
 
 I am implementing salt/password hash to an application that is being 
 redeveloped. 
 
 Adding salt/hash to newly created accounts is going well but of course there 
 are hundreds of existing accounts.
 
 What would be the best practice for adding salt/hash to all of the existing 
 records?

Do you have a password reset routine? If so, convert that to the salted hash 
and 
force everyone to change their password at the next session.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354810
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adding Salt and Password Hash to existing acocunts

2013-03-05 Thread Roger Austin

On 3/5/2013 7:15 AM, Torrent Girl wrote:

 Hello all

 I am implementing salt/password hash to an application that is being 
 redeveloped.

 Adding salt/hash to newly created accounts is going well but of course there 
 are hundreds of existing accounts.

 What would be the best practice for adding salt/hash to all of the existing 
 records?

A field for PasswordExpiration or MustResetPassword in the database is
helpful for this and other things. You can check on login to see if it
is set and force a password change. I've used both in different
situations. That way, you can force the issue once you have your
salt-hash function set up.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354824
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


2 Tickets left for NCDevCon Conference in Raleigh Next Weekend

2012-09-21 Thread Roger Austin

There are only two tickets left for NCDevCon next weekend.
You could be the owner if you hurry. http://ncdevcon.com/

This is not just a ColdFusion conference, but has a number
of other tracks and some great hands-on sessions.

The conference will cover a wide variety of web development
and design topics including:
  Web / HTML5
  Mobile
  Javascript / jQuery
  ColdFusion
  CSS

Additionally, there are several hands on classes available at
no extra charge:
  Introduction to Mobile Applications with PhoneGap/Cordova
  Building Applications With HTML5/CSS3/JavaScript
  GIT: Choosing Workflows That Make Sense
  JQuery Mobile 101
  Authentication Using Twitter, Google, Facebook, And More

Register here: http://ncdevcon.eventbrite.com/

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:352707
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


NCDevCon Conference in Raleigh, NC September 29-30, 20120

2012-08-01 Thread Roger Austin

NCDevCon is the largest developer conference in North Carolina. NCDevCon 
2012 will be held on September 29 – 30 in Raleigh at Centennial Campus.

Registration is $200. There are 44 different sessions run in 4 track 
categories. Attendees have their choice of 4 different sessions for each 
of the 11 time slots so there is always something interesting going on. 
At no extra cost, attendees receive lunch at the conference location on 
both Saturday and Sunday.

Unlimited snacks, soda, juice and refreshments will be provided 
throughout the conference.

Plus, attendees get access to the Saturday Night After-party held on the
conference site with free food, beverages and opportunities to network 
with their fellow conference attendees.

*Hands On Classes*
NCDevCon also includes several instructor led hands-on classes at no
additional charge for attendees. The hands-on classes are conducted in a
Bring Your Own Laptop format. An instructor leads the class participants
through practical application of a technology. This is a great way to 
learn a new technology fast.

*The current hands-on class list is:*
- Introduction to Mobile Applications with PhoneGap/Cordova
- Building Applications With HTML5/CSS3/JavaScript
- GIT: Choosing Workflows That Make Sense
- JQuery Mobile 101
- Authentication Using Twitter, Google, Facebook, And More

If you would like more information about NCDevCon, visit the website at:
http://ncdevcon.com/
If you want to see the sessions, visit the session page at:
http://www.ncdevcon.com/page.cfm/sessions
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/11735790589273120036

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:352027
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Somewhat OT....Making us look bad...For the adobe engineers on the list..

2012-04-28 Thread Roger Austin

On 4/28/2012 9:18 AM, Raymond Camden wrote:

 I spoke to a guy yesterday who still has several (old) clients using
 Access. It works fine for them so they haven't seen a need to change.
 I used to run DeathClock.com on it (4M views per month), but I cached
 the hell out of -everything- I did. I still think Access had the
 easiest way to create tables. No visual editor I've used yet has come
 close - even Aqua Data Studio.

I sort of cringe when people bad mouth Access. I made a lot of money
using Access as a backend with CF 1.5 - 3.1 in the old days. I agree
100% on the interface, they did a great job. I don't use it for the
backend DBs now, but we really shouldn't hammer on older tech since
that is where the ideas of our current systems were fleshed out.

One of the best uses of the newest Access is to link to SQL Server
tables for now technical people. I help some people get started who
know little about relational databases and end up doing some fairly
sophisticated things eventually. The SQL view really helps people
learn to query databases.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350875
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: PSA - Daylight Savings Time

2012-03-12 Thread Roger Austin

 Dave Watts dwa...@figleaf.com wrote: 
 
  And in theory, CF10's scheduled task service should allow you to
  handle that with it's onMisfire support.
 
 If the hour for the scheduled task never arrives, that's not really a
 misfire is it?

What would happen if you set up a scheduled task for 02:30 on the 
day that we return to standard time since there would theoretically be 
two 02:30's for that morning? Would it run twice?

This seems to be a good reason to never set up scheduled tasks anywhere 
near 02:00 through 03:00.

This would be a great blog post for some Adobe engineer.

--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350379
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) Places to post a CF opening

2012-03-06 Thread Roger Austin

 Gerald Guido gerald.gu...@gmail.com wrote: 
 
 We have an opening for someone with CF Experience. We advertised it as a
 DBA with CF Experience and posted on some free sites and Craig's list and
 have not had any bites locally. The powers that be do not want to nut up to
 post it to Monster or career builder.
 
 I know that there is the CF-Jobs list but where else can we post for free
 that will get us more coverage?
 
 As always many TIA.
 
 G!
 
 -- 
 Gerald Guido
 http://www.myinternetisbroken.com

You might put it on the LinkedIn CF groups under Jobs.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350264
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: ridiculously cheap CFML conference next month

2012-01-20 Thread Roger Austin

 andy matthews li...@commadelimited.com wrote: 
 
 But will NCDevCon be taking place this year? I've heard different stories.

I'm not the official spokesperson, but I doubt any decision has been made one 
way or another. We are not that organized. (Don't tell Dan or Jim I said that.)

A big factor is when our wonderful host, North Carolina State University 
College 
of Textiles, can schedule the facility for our use. Another big factor is 
whether 
Adobe will continue to support ColdFusion. (Note the very effective use of a 
highly volatile diversionary tactic there. ;)

Thanks from all of us in TACFUG for the show of support.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349564
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Very disappointing statis

2011-12-14 Thread Roger Austin

On 12/14/2011 12:39 PM, Raymond Camden wrote:

 *checks watch*
 Yep, about time for another CF is dead thread.
 *goes back to work*

OMG Adobe has made Ray the PR guy since he was the noob.
OMG CF is doomed. :)
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349154
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe Abandons Flex

2011-11-17 Thread Roger Austin

Many companies will make policy on standard browsers. They write 
those standards in the specs for applications when they buy or write 
them. Back during the time of IE6, it was commonly the standard 
browser for businesses so developers created applications using IE6 
only techniques like COM and/or ActiveX objects.

This is still happening. Making applications work in all browsers is 
a specification that adds to costs. We might think that apps working 
in all browsers is a no-brainer, but many people in businesses look 
at it differently.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348783
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Adobe drops Flsh for mobile devices

2011-11-11 Thread Roger Austin

Someone is wrong on the Internet!
Let's move on and let this thread die (until next year.)
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348637
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Create CSV and TAB docs

2011-11-05 Thread Roger Austin

On 11/4/2011 11:39 PM, Torrent Girl wrote:

 On 11/4/2011 8:59 AM, Torrent Girl wrote:

 Hi All. I need to give users the ability to download a CSV and TAB
 file. While I found a neat little function to create a CVS file
 (http://www.cflib.org/index.cfm?event=page.udfbyidudfid=1197) I am
 having a problem with dates values.

 the problem is the file will be created on the fly by remote
users who will import the data and won't have time to manipulate
it by hand.

Do you need the time? If not, just send the -mm-dd format
and see if that will open up automatically in Excel as date.

I don't know a way to specify a date time automatically in Excel
from a CSV file opening. If someone knows, please let us know.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348470
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Create CSV and TAB docs

2011-11-04 Thread Roger Austin

On 11/4/2011 8:59 AM, Torrent Girl wrote:

 Hi All. I need to give users the ability to download a CSV and TAB file. 
 While I found a neat little function to create a CVS file 
 (http://www.cflib.org/index.cfm?event=page.udfbyidudfid=1197) I am having a 
 problem with dates values.

 Here is my date: 6/20/2009  7:15:03 PM  but in the file it shows up as this: 
 15:03.0

In Excel, highlight the column and format it to date.
Alternatively, save as a txt file and then open in Excel using the
filter. You can set each column to proper format that way so leading
zeros on number-text fields are preserved.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348427
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: encrypted files

2011-10-10 Thread Roger Austin

On 10/10/2011 10:41 AM, James Holmes wrote:

 Don't do anything else without your lawyer going over the original contract
 under which the software was supplied. The original devs may be correct and
 for all you know your current clients may be attempting to have you violate
 copyright.

This is great advice for all developers when dealing with clients.
The client may feel they are in the right, but the contract may say
otherwise.

No matter what, it looks like you could be the man in the middle
of a legal mess if you would decrypt the source and provide it back
to the client.

My suggestion, run away!
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348041
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Paypal integration

2011-09-27 Thread Roger Austin

There was a presentation at NCDevCon by Sidney Maestre of PayPal. 
The url to all the presos is http://go.ncsu.edu/ncdevcon2011 
You will need Silverlight to view them. Click on the Web presentations and 
look for his talk if you want some inside on current and new features.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347752
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 20USD/Hour Seriously?

2011-09-22 Thread Roger Austin

 Integration Developer tyrsbl...@gmail.com wrote: 
 
 I'm bit confused why so cheap? Just 6 months ago I was hiring out at 
 50-75USD/hour. 
 If this is typical cf-jobs side work rate now I am disappointed. 

I think we should hesitate on discussing rates on a public site. There are too 
many variables to 
consider in evaluating rates.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347601
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How do you compose your dev teams?

2011-09-02 Thread Roger Austin

On 9/2/2011 3:12 PM, Nathan Strutz wrote:

 So my question to the list is this: How do you organize your teams of
 developers successfully? Please let me know what you do, or what you have
 seen that actually works.

Sounds like you guys could use some sort of internal social media
thing to stay in tune with each other. You didn't say what the
actual locations were so it is hard to say. If they are completely
separate locations, it would be different than all in one building.

I curious as to how the cross project fertilization works small
groups. In general, you have to own your project (or at least
your part of it) to do your best work. Having someone back you
up is an expense that most companies won't want to sustain. It is
only a backup plan which is rarely needed.

I would say that more important is to get the bigger picture
stuff sorted out like general guidelines, source control,
testing, documentation, etc. sorted out across the team. If
someone leaves, those remaining would know where to look for
things.

You also might want to build a library of primitive functions
for the group. That way, people are using the same building
blocks if that is possible.

There are other ways to keep in touch, but most developers that
I have met were very busy so the communication is tough.

The hit by the bus thing was mentioned to me at an annual
review. I just asked if they could afford another developer.
It was never mentioned again.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347196
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How do you compose your dev teams?

2011-09-02 Thread Roger Austin

On 9/2/2011 4:01 PM, Nathan Strutz wrote:

 Projects are generally over-documented, CMMI style, so a lot of fluff and
 specifics, but not always something that says here's the system, here's how
 it works, you are up to speed in 15 minutes. It's like we have application
 silos, but we should be one single silo. I like the wiki idea.

Wow, what level CMMI did you achieve? Maybe you are over documenting
and just creating make-work for developers. It might be worth stepping
back so you have time to communicate. How many support staff are
supporting your CMMI initiative? Maybe management needs to get y'all
some help so you have more time.

Looks like management wants a business continuity plan in case of a
disaster (proverbial bus.) I suggest looking at it from that direction
without starting some communications plan that will just piss off the
help.
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347200
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How do you compose your dev teams?

2011-09-02 Thread Roger Austin

On 9/2/2011 4:10 PM, Nathan Strutz wrote:

 Roger,

 Spot on - all of us are completely remote. Some from our various sites
 around the country, some from our homes centered around the Phoenix area.
 We've been making an effort to get closer with monthly meetings, code
 reviews and tech insertion presentations, but a lot of that ends up being
 just enough to stave off management intervention.

One thing you could do right away is set up Google+ hangouts and
discuss with everyone ideas for doing this. Sort of like a stand
up meeting thing on Monday mornings. You could do some brainstorming
to come up with ideas.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347201
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How do you compose your dev teams?

2011-09-02 Thread Roger Austin

On 9/2/2011 4:10 PM, Nathan Strutz wrote:

 Roger,

 Spot on - all of us are completely remote. Some from our various sites
 around the country, some from our homes centered around the Phoenix area.
 We've been making an effort to get closer with monthly meetings, code
 reviews and tech insertion presentations, but a lot of that ends up being
 just enough to stave off management intervention.

One other thing that I think is critical is to get an inventory
of all the applications and who is working on them. That should be
used to set up a risk assessment as to what is the most critical to
have backup. You might even get management's thoughts on what they
think are critical or most important. Then, you have an idea of
what steps to take. You might get away with only having backup
to a few systems rather than every single one.

Not everything people work on will destroy the company. Loss of
one developer could wipe out a quarter of earnings when another
developer leaving might just annoy people temporarily.
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347203
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: (ot) Recover Data from External Hard Drive

2011-08-29 Thread Roger Austin

 Bryan Stevenson br...@electricedgesystems.com wrote: 
 
 Carbonite eh.I've seen it mentioned a few timessaw a commercial
 for it over the weekend for the 1st time.
 
 Perhaps I didn't understand the offer, but it sure seemed like online
 (i.e. the cloud) was the repository??
 
 If so, I'm curious why the cloud is seen as a  safe backup solution?
 
 The only use I can see for cloud based backups is a secondary backup in
 case of say a fire at home (where you may not have  a fire safe)...or
 perhaps a flood.  To use it as primary backup seems even more prone to
 problems than a kid yanking on cords (given that it's beyond your
 controlbut it would be safe from your own kids...hehe).

The cloud is one way to backup. The advantage to it is that it can be 
set up to work independently and automatically. You can also set up local 
media to do the same or use some sort of removable media and store off-site.

The easiest way to backup means you are more likely to do it. In that way, 
a cloud backup may be the easiest after it is set up. Restores also should 
be thought out since restoring large backups could be an issue in a pinch.

The only thing that I backup are files I can't reproduce like photo files or 
old email I have POPed off the server. There are also a few other files that 
I have created and are not on a server somewhere. I archive photos semiannually 
to DVDs and CDs and store them in a safe deposit box. I also have them on 
a disk locally. I backup my files to a separate disk semi-automatically in 
case of hard disk failure.

The bigger issue for me is the loss of a working environment if a laptop or 
desktop image goes mental. In that case, cloning a drive may be an idea. It 
takes forever to get back to work if you lose a development environment.

--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347104
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion Peformance Blog Down

2011-08-26 Thread Roger Austin

On 8/26/2011 3:42 PM, David McGuigan wrote:

 This has been down for the last few days: http://www.cfwhisperer.com/

 Anyone have a quick way of getting ahold of Mike?

@cfwhisperer on Twitter

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347040
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion Builder 2 Question

2011-08-24 Thread Roger Austin

 Hunsaker wrote: 

 I recently upgraded to ColdFusion Builder 2 and I'm having a problem with 
 projects.  I have 12 projects (websites) in CF Builder 2 and it looks like 
 they automatically close when I exit the application.  When I open CF Builder 
 2, all of the projects are closed so I need to open them.  Now here comes the 
 problem!  When I try to open the project, it tells me it cannot find the 
 .project file.  After some research, CF Builder 2 thinks all of my network 
 drives are disconnected so it cannot access any of my existing projects.

I had something similar happen when I take my laptop from internal network, 
then 
open CFB2 again through VPN. It tells me it can't open the files. I found that 
if I open one directly (i.e., FileOpen File ...) once, I can then open the 
project files and everything is peachy from that point on.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346984
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Improving Performance

2011-08-18 Thread Roger Austin

 Rick Root rick.r...@gmail.com wrote: 
 
 Can anyone suggest ways that might incrementally improve the performance of
 this code?
 
 I'm using the JavaCSV library to generate a CSV file.  It works pretty well,
 but has some difficulty outputting extremely large files (50,000+ records,
 1800 columns or so)

Any way to move this off-line? Do you really need CF to do this? Could it be 
performed by the database system?

--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346833
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


NCDevCon Posts the Schedule

2011-08-15 Thread Roger Austin

The NCDevCon crew has posted a schedule of the sessions and 
tracks for the September 17-18 conference in Raleigh, North 
Carolina for those that are interested. http://ncdevcon.com/

It was also announced that the new ColdFusion product manager 
will be in attendance as well as a bunch of other Adobe folks 
like Ray Camden, Terry Ryan, and Josh Adams.

As usual, there are a number of times that there are two 
sessions that I would really like to attend in the same slot, 
but the lineup looks great.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346758
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion 10 and beyond

2011-08-09 Thread Roger Austin

On 8/9/2011 1:00 PM, Richard Steele wrote:

 I'm concerned that at some point Adobe will pull the plug on CF as free PHP 
 continues to grow its user base. I know that there is an open source version 
 of CF, but I'm not sure if it has Enterprise features such as the ability to 
 create load balanced multiple instances. What's the general feeling about 
 this? Should I be concerned?  Is there any work being done on ColdFusion 10?

At RIACon in Rockville just this last weekend, there were six(?)
members of the CF team from Bangalore including the Product Marketing
Manager and security czar. There was a lot of content on Zeus in the
presentations. They also stated that it would be out next year. (No
I don't know if that meant Dec 2012 or Jan 2012.)

 From everything I saw and heard, ColdFusion 10 is going to be a
great improvement and in ways that may not be obvious at first.
There are many new security tags. There is a huge improvement in
the administrator that we saw including one-click hot fixes. These
things were in the presentations and no one had to sign NDAs so
I assume the information is out in the wild.

I got a great feeling of relief in meeting and talking with the
team from Adobe. I was wondering the same thing you were before
and wondering if this move to Bangalore was the first step in the
demise of the product. Now, I am looking ahead at many more years
of developing in my favorite system. The Adobe engineering and
marketing team were very impressive.

In September, the new product manager and other staff will be at
NCDevCon in Raleigh http://ncdevcon.com/ You should be there to
hear the news for yourself. It's going to be fun.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346630
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


NCDevCon Speakers/Topics List

2011-08-02 Thread Roger Austin

NCDevCon registration is open at http://ncdevcon.eventbrite.com/
They are still working on the schedule, a list of speakers/topics has 
been posted on the conference web site at
http://ncdevcon.com/post.cfm/ncdevcon-2011-speaker-topic-list
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Google+:  https://plus.google.com/117357905892731200369

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346468
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


NCDevCon Call for Presentations

2011-07-14 Thread Roger Austin

  NCDevCon has been announced for September 17-18, 2011. The call
for presentation is underway so please submit something if you would
like to be considered. The URL of the blog on presentations is at:
http://ncdevcon.com/post.cfm/ncdevcon-call-for-presentations-now-open
Presentations from new speakers would be very welcome as well as the
more experienced so don't be shy.

Registration is open too. There will be an admission charge this year
of $60 which is different than in the past. That covers all the lunches, 
t-shirt, and drinks/snacks. There is an explanation of why
there is a charge this year on the site.

There will be a number of tracks including the normal Adobe stack
stuff, but also some additional tracks including web, mobile,
front-end, etc.

http://ncdevcon.com/ for more information. See you in Raleigh!

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346227
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe Solution?

2011-07-13 Thread Roger Austin

 Scott Spurlock spurlock.sc...@yahoo.com wrote: 
 
 I apologize in advance since this isn't a CF question, but I'm desperate and 
 hoping this is at least an Adobe question.  A client of mine wants to create 
 a form for users to fill out electronically.  He then wants to take their 
 responses (attached via email) and upload the data to an Access 2007 
 database.  He absolutely does not want this to be web-based.  He ideally 
 wanted me to create an interactive form in PDF.  I thought, Sure, no 
 problem.  The problems I'm running into?  Importing PDF data into Access 
 appears to involve an extra step (converting the PDF to text or XML or Excel) 
 which he/the client would have to do (since he's the one getting the returned 
 forms).  Worse is that he wants some multi-select drop-down lists in the form 
 and I'm not seeing a way to do this in a PDF (I've played around with both 
 Acrobat Pro and LiveCycle Designer).  And without VBA skills I don't have, 
 I'm not even seeing how to do this in an Excel or Word
  form.  I'm getting stuck and turn to you kind sirs for your advice.  How 
 would you do this?

So, he wants the people to fill out a PDF form and email the form to him. Then
he wants to be able to scrape the form field data off and into Access DB.
Does that sound like the issue?

There probably is a better solution using Visual Basic. You might be able 
to write something in VB to use an Acrobat component to read the PDF and fish 
out the form data and put it in the database table for each PDF. You might even 
be able to do this in batch form. There would need to be a lot of PDF forms to 
make it worth doing though.

There is a reason that web/database work is so popular.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
http://www.misshunt.com/ Home of the Clean/Dirty Magnet


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346219
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF vs. Java Web Developer

2011-06-25 Thread Roger Austin

On 6/25/2011 1:04 PM, Dave Watts wrote:

 In my experience, there are more distractions in the office than at
 home. I think that's true for a lot of people. I'm much more
 productive in my home office than I was at work.

I would agree, but I guess it can go either way. You need a good
place to work at home and decent equipment and supplies. I tend
to be focused so distractions don't bother me as much as some other
folks.

It also depends on the type of work you do. Many are assuming 100%
development activities which don't take as much meatspace activity.
My job includes a lot of interaction with people throughout the
day so working at home everyday isn't possible.

If I ever moved to mostly development activities, I would be very
happy to work from home. I think I have the discipline to be as
productive at home as in the office with development activities.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345692
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF vs. Java Web Developer

2011-06-23 Thread Roger Austin

 Russ Michaels r...@michaels.me.uk wrote: 
 
 LOL, well unless u have stats it is nothing more than opinion, but common
 sense tells you that distractions stop you form working effectively.
 And the only way to avoid those distractions is to be away from them.

There are disciplines that you need for working remotely that don't come 
into play at the office. The office is the most common way to work so some 
issues with productivity are muted by the fact that the boss saw you there 
working and knew you weren't just goofing off. If you are out of the office, 
many bosses wonder if you are actually working. That said, there are people 
working in offices that get very little accomplished. 

Everyone is different, but I think there are some ideas that allow home 
working to be as productive or more than office work. One is that you need 
the proper setup and environment to do good work. For many people, that is 
a separate space with the equipment setup that allows for work. If you are 
working on the kitchen table, you might have a problem concentrating as 
people eat their cereal.

Another difficulty can be all the little issues that pop up that auto-magically 
get taken care of by office managers and other office staff. You order your 
own supplies, answer your own calls, make your own coffee, etc.

I work at home at least one day a week and it is great, but there I'm still 
trying to get my setup fleshed out so it is as productive as the office. Some 
tasks are no different from home to office. Others are more complicated by 
being away. Most of these are not related to software development though. (Many 
of us who do CFML development wear multiple hats.) I think I would be very 
happy working at home full time.

--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
http://www.misshunt.com/ Home of the Clean/Dirty Magnet


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345571
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: application.cfm

2011-06-23 Thread Roger Austin

 This is the first time it happens in about 10 years I've bee using this 
 method.
 I thought the template would never be compiled because of CFABORT in 
 application.cfm, now I see it is not the case.

Since the problem has happened once in 10 years, I would try to open the PDF in 
Acrobat Pro 
and do a Save As while reducing the size or updating some of the tags. See if 
you can get the 
cf to go away in this one file. That might get you through this one issue 
long enough to 
plan a different file strategy.

--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345580
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Homesite 5.5

2011-06-13 Thread Roger Austin

 Peter Boughton bought...@gmail.com wrote: 
 
  After punching all that data in I was walking to the 
  card reader with them in one huge stack and I tripped... 
 
 I've heard a similar story a few times, and I don't get it.
 
 If I had a large stack of cards, especially one that had to stay ordered, I'd 
 get a piece of string and make a quick bundle, and then you remove the risk 
 of them separating in transit.
 Alternatively, a simple box would probably work - I assume cardboard boxes 
 had been invented back then? :P
 
 Of course, the less high-tech solution is to just look where you're going and 
 not be clumsy. ;) 

I always had them in boxes. You didn't want to tie them up or use too 
many rubber bands or sometimes they wouldn't go through the readers 
properly. Paper tape from the teletypes were similarly sensitive at 
times, but much more forgiving than cards. I still have a paper tape 
reader in my office in case there is something in our regulatory 
archive on paper tape.

As a side note, the paper used for cards was really nice card stock.
Used cards and the dots from the paper tape punch offered incredible 
opportunities for pranks. You never left your windows cracked in the 
Summer if there was a prankster in your office.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345231
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Recordcount not working????

2011-05-19 Thread Roger Austin

On 5/19/2011 7:57 AM, Phillip Vector wrote:

 cfquery name=OpenedUpSeats  dbtype=ODBC datasource=TrainingBE
   Select *
   from OpenedUpSeatsView
   where account='cfset zz=writeoutput(session.account)'
 /cfquery

 cfif OpenedUpSeats.RecordCount

 First of all.. This isn't my code, so I know it's pretty bad. The Query 
 doesn't error, but when it hits the recordcount, I get the Element 
 RECORDCOUNT is undefined in OPENEDUPSEATS.

 Huh? Isn't recordcount ALWAYS a part of the query? Any ideas how to fix this?

 For the record, I've also tried this..

 cfquery name=OpenedUpSeats datasource=TrainingBE
   Select *
   from OpenedUpSeatsView
   where account='#session.account#'
 /cfquery

 cfdump var=#OpenedUpSeats.RecordCount#

Run it without the Where clause in the SQL and see what happens.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344650
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF Builder setup - plugin or standalone?

2011-05-04 Thread Roger Austin

On 5/4/2011 9:54 AM, Rachel Lehman wrote:

 I've been running the CF Builder 2 Beta as a plugin to my Eclipse Helios 
 install. I also have Aptana, CFEclipse (from before), Mylyn/Foglyn and 
 MercurialEclipse running as part of my core work environment. I feel like CF 
 Builder doesn't run very well in this configuration, whenever I try to run it 
 as a plugin it is difficult to find and enable lots of the features and some 
 things don't seem to work consistently.

 I'm thinking of rebuilding my environment using the CFB standalone, then 
 installing Mylyn /Foglyn (Mylyn may be included in CFB, not sure) and 
 MercurialEclipse as plugins. Has anyone done this and how well does it work?

 Trying to avoid rebuilding multiple times :) TIA for any thoughts!

Forgive the obvious question, but don't you have a house geek that
knows more about this than the list? ;)

I always use standalone Eclipse for each new product. I can't tell
you why, but I feel more comfortable having each plugin in a separate
Eclipse. CFEclipse, CFB2, CCW, and I don't know what else. I have
each of them separate in case Eclipse decides to go mental.

Love to hear what your experiences turn out to be.
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344238
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Printing Envelopes

2011-04-16 Thread Roger Austin

On 4/15/2011 9:11 PM, Scott Williams wrote:

 Hi all --

 I have a question that's vaguely ColdFusion related. I want to print #10 
 envelopes with information pulled from a database. That's the CF part, and 
 that's easy.

 The hard part is getting the text to appear where I want it on the page. I 
 tried using a 4.125 x 9.5 table (which is the size of a #10 envelope), 
 multiplying the number of inches by 72 to figure out how many pixels wide and 
 tall the table cells should be. It looks proportionately correct, but it's 
 smaller than the size I wanted.

 Does anybody know how to get tables to print the size you want them to?

Set up a CSS for print media with those measurements. I would probably
print to PDF and then to the envelopes since it would allow for better
control.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343780
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: OWASP ColdFusion security links

2011-03-23 Thread Roger Austin

 Dave Watts dwa...@figleaf.com wrote: 
 
 This looks like a pretty good set of CF security links:
 http://www.owasp.org/index.php/ColdFusion_Security_Resources

OWASP has local chapters also if people have one near them. I have 
attended some meetings of our local chapter and you get an excellent 
perspective on web security overall.

ISSA chapters are also available in a lot of locations which covers 
a lot of things about security. Our local ISSA chapter puts on a 
one day information security conference each year which has been 
very informative. 

--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343236
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Storing decimal parts of a second cfqueryparam

2011-02-28 Thread Roger Austin

On 2/26/2011 10:08 PM, Pete Ruckelshaus wrote:

 OK, just not my night with decimal values.

 Trying to store distances (for throwing and jumping events), which are
 measured in feet and inches.  In order to maintain proper sort order, I
 decided to convert feet and inches (with fractions of an inch as decimal
 value) to inches with fractions of an inch as decimal values.

 Again, database is SQL Server 2008, and I'm using cfqueryparam.  Data type
 for the column in question is decimal(18, 4), and I'm using CF_SQL_DECIMAL
 as the cfsqltype value.  I can see in the debug output that the decimal
 portion of the value is part of the value to be inserted, for instance,
 825.25, but looking at the database table, the stored value is  825.

Why not store two fields; one for feet and one for inches. That seems
like the easiest way to do it other than just use one float for both.
The decimal issue is probably more a database issue than a CF issue.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342617
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Re: Change in ColdFusion management

2011-02-15 Thread Roger Austin

 Brian Kotek brian...@gmail.com wrote: 
 
 And to add to that, I can say that *if* I did have deep knowledge of what is
 going on with CF X, I *might* say that when people see what is coming, the
 naysayers are going to feel really silly.
 
 Really, really silly.

Thanks for that teaser Brian. ;) I would love to get to CF9, but I'm trying 
to talk the datacenter into skipping to CF X since it takes so long for 
them to move to a newer version. 

I sure hope it comes before my corporate data center dumps ColdFusion 
permanently. That is where the battles are fought for many enthusiasts. 
Once CF is gone from my datacenter, I am probably gone from the community 
no matter how much I appreciate the tool.

I really don't care where the product manager is located. I didn't even 
know there was a marketing manager for CF, but I wasn't paying that much 
attention either.

I commented on John's blog and will make the same point here. I would have 
liked for the announcement to be made by the new management team along with 
Adam. The director level person should have introduced themselves and laid 
out their future plans. That would help us when we discuss CF with our CIO 
types who want to see someone at a higher level make announcements. It seems 
to give them a tingly feeling or something.

I understand that my experiences may be very different than those at other 
corporate type places. It probably has no relationship to people in other 
types or scales of companies.

--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
http://www.misshunt.com/ Home of the Clean/Dirty Magnet


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342283
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: why is cf_builder so expensive?

2011-01-26 Thread Roger Austin

Die thread, die, die, die, ...
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
http://www.misshunt.com/ Home of the Clean/Dirty Magnet


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:341374
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Anyone know anything about this new ColdFusion conference?

2011-01-18 Thread Roger Austin

 Donna Bing bingdo...@ymail.com wrote: 
 
 Ever since CFUnited closed up shop, I've been looking around for an 
 affordable 
 substitute.  I'm local in the Northern Virginia area, so I saved on lodging 
 and 
 travel.

That conference looks like it would be fun, but I have limited funds for those 
sorts of things so I won't be there. That conference is oriented to open source 
CFML which is an interesting idea. I tend to look first for things in my area 
of North Carolina (Research Triangle Park) which is rich in meetups and 
different 
local conferences.

You may want to look into NCDevCon which has been free in the past and is 
located 
within driving distance from NoVa. It has been a two day conference that had 
nationally known presenters, many who used it as a test for their CFUnited 
talks. 
We had a number of visitors from up there so you could always plan to carpool 
with other NoVa folks. Talk with attendees from CFinNC in 2009 and NCDevCon in 
2010 to get the lowdown on it. I can not be an unbiased source as a member of 
the 
host organization TACFUG.

No date has been set for NCDevCon 2011 assuming it is held. There will be 
plenty 
of publicity including messages here if and when something happens.

--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
http://www.misshunt.com/ Home of the Clean/Dirty Magnet


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340957
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is Coldfusion losing it biggest asset?

2011-01-14 Thread Roger Austin

  I am enjoying the conversation on this as I think it is healthy.

  Adobe is very gracious to the developer community. They
provide funds for user groups and local conferences all the
time. They groom the CF ACP people to be evangelists for the
product. Preaching to the choir is important, but does it
grow the developer base if our corporate datacenters won't
support CF? Spend some money on marketing to the CIOs.

  @RogerTheGeek

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340873
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Is Coldfusion losing it biggest asset?

2011-01-13 Thread Roger Austin

 Will Swain w...@hothorse.com wrote: 
 For those who have run through this book, how much time at a minimum did
 they find they needed to spend on each language? 

I would totally agree that learning new languages is an essential part of 
being a professional developer (if that is what someone wants to be.) There 
is nothing wrong with being a CF developer other than it puts your career 
in a bind if CF goes down the tubes.

I don't have anything against the 7 languages book. The question in my mind 
is whether it is the best use of someones time. If you are like me, I have 
very little spare time so I want to maximize the value of what I am learning. 
It makes sense to me to decide what languages would be the best for my
long term career and dive into those. The use of the 7 languages book could 
be a start, but I wouldn't say you know how to code afterward.

I am using the Prag Prog approach and learning one language a year or at least 
targeting one. Get proficient rather than just hit to highlights. This year, 
I am working on clojure and getting better at javascript/jquery/whatever. I 
am also learning .NET languages since I can use those in my work life.

Sorry for the stream of conscientiousness. Enjoy learning, Roger
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
http://www.misshunt.com/ Home of the Clean/Dirty Magnet


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340758
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Working with cfqueryparam

2010-11-14 Thread Roger Austin

On 11/14/2010 1:52 PM, David Moore wrote:
 I find this easier to read:
 null=#yesNoFormat(len(trim(form.contributed)))#

What about using null=#isDate(form.contributed)# ?
It looks like you are assuming a valid date or an empty
string. What if someone puts in foo into the form field?
Perhaps you are doing something else to validate the field
that I am not following.
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339203
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Countries Select Box

2010-11-11 Thread Roger Austin

 Rick Colman rcol...@cox.net wrote: 
 
 I need to provide world-wide country postal abbreviations in a drop-down 
 select box.

I don't know of one already to go. Since countries can change, I 
use the UN country code list as the starting point. It isn't that 
hard with cut-n-paste to knock one out. Good luck, Roger
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
http://www.misshunt.com/ Home of the Clean/Dirty Magnet


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339126
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: cfinsert/cfupdate

2010-09-24 Thread Roger Austin

 Russ Michaels r...@michaels.me.uk wrote: 
snip
 It is also easier from a self containment and portability point of view to
 keep SQL within the application. Stored Procs written for MSSQL clearly wont
 run on MySQL.

I hear this sometime and wonder how many times you have to port something 
to another DBMS. I have never had to do so. I guess I have had to assure 
that code ran properly when we got a new version of MS-SQL Server though.

I wondered about it since DBMS portability is given as a reason to code 
certain ways. I usually have the database transactions in specific modules
so I can go back to the code easily. I don't abstract the SQL so it works in 
a SQL ISO standard. That seems limiting and not worth the trouble.

Is it common for systems to be ported between different DBMSs?
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
http://www.misshunt.com/ Home of the Clean/Dirty Magnet


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:337494
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFParam vs. IsDefined

2010-09-01 Thread Roger Austin

 Michael Grant mgr...@modus.bz wrote: 
 
 I prefer to CFParam my vars with a default value of a zero len string or a 0
 for numeric values. Then I skip the isdefined and just test against the
 value. Well recently someone I know said that it's better to test if it's
 defined. Is there a pro or con to doing it my way vs. IsDefined ?

I would use cfparam out of convenience and flow. If you use the incoming 
parameter several times, you don't have to test it but once with cfparam.
I'm lazy.
--
LinkedIn: http://www.linkedin.com/pub/roger-austin/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
Blog: http://rogerthegeek.wordpress.com/
http://www.misshunt.com/ Home of the Clean/Dirty Magnet


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:336721
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: development and testing server

2010-07-13 Thread Roger Austin

On 7/13/2010 3:36 PM, Won Lee wrote:

 Thanks.  I did tell him that I got the post from Adam, who is the product
 manager, and the evangelist's blog.  he understands that we can create a dev
 and staging server for each key we own.  The EULA is clear about that.  He
 wants, in writing, that the process is to just use the production key.  We
 operate in a GxP environment and our process must be documented for audits.

Get the nice people at Adobe to send you the boxed copy of CF 9. You
are going to need the original disks for GLP, GCP or cGMP validations
and installation qualification anyway. That way, you will have an
official copy of the EULA with all the fine print. Auditors love fine
print. It should also include all the official manuals that you can
wave at quality assurance auditors.

For those who don't know about the preclinical and clinical world,
the auditing for GxP is not the same as a license audit, but comes
from the governmental regulatory agencies and internal company QA
departments that demand detailed records of all components of the
system and a detailed plan for testing the system for use. If you
change a component (hardware or software) you have to document
that the system is fit for use with a tedious pile of paperwork.
You also have to have piles of standard operating procedures detailing
exactly what you do.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)
NCDevCon: http://ncdevcon.com/ 2010 Raleigh ColdFusion Conference

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335324
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Looking for a CF Recipe script!

2010-07-09 Thread Roger Austin

On 7/8/2010 10:30 PM, denstar wrote:
 A snippet from a favorite song:

 If my words did glow with the gold of sunshine
 And my tunes were played on the harp unstrung
 Would you hear my voice come through the music
 Would you hold it near as it were your own?

 It's a hand-me-down, the thoughts are broken
 Perhaps they're better left unsung
 I don't know, don't really care
 Let there be songs to fill the air

 Not that it really helps you, but it all makes sense from in here.  :-)

Wore out two American Beauty LPs before CDs came out. One of my favorites.


-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)
NCDevCon: http://ncdevcon.com/ 2010 Raleigh ColdFusion Conference

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:335209
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Date range with a date in the past

2010-06-13 Thread Roger Austin

On 6/13/2010 9:30 PM, Kevin Parker wrote:

 Greatly appreciate another set of eyes looking at this please.

 Picking events from a table based on dates so that only current or future
 events show up. Date values can not be NULL.

 (EventStartDate= #now()#) AND (EventFinishDate= #now()#)

 Let's say an event runs from 17/6 to 19/6 things work OK today but on the
 18/6 this event will drop off the calendar even though it's still running.

 Greatly appreciate any insight - TIA

Why do you have the first condition?

Anyway, wouldn't this be an OR?

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)
NCDevCon: http://ncdevcon.com/ 2010 Raleigh ColdFusion Conference

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334519
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: PDF multi-line input

2010-06-02 Thread Roger Austin

On 6/1/2010 3:42 PM, Chad Gray wrote:
 Apprently chr(13)  chr(10) represents a Windows newline.

Carriage return-linefeed is what was used in teletype systems. It
isn't a Windows thing specifically, but was the norm for many moons
before other OS systems were developed.

If you try to send just a CR to a teletype (just saying), it
will print every printed line over the top of the last. I
have direct experience in doing that. :)

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)
NCDevCon: http://ncdevcon.com/ 2010 Raleigh ColdFusion Conference

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334226
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Web Programming Cert

2010-05-06 Thread Roger Austin

 Sean Corfield seancorfi...@gmail.com wrote: 
 A certificate doesn't say zip about whether you can get work done. The
 courses might be useful for the O.P. but they don't tell an employer
 anything so the certificate itself is worthless, IMO.

 As in most things, it depends. A certificate might not be worth the 
paper and ink in reality, but it can be the difference between getting 
in the door. Many hiring decisions are not made on reality, but on 
perception.

 Many corporate job search criteria are not set up by knowledgeable 
people in the field. HR people do a lot of it and certifications are 
one way they break ties. They can put your resume in play where it would 
be in the reject pile otherwise. I would not discount them completely. 
I have seen many job announcements with certifications as necessary 
though most of them were in Microsoft based systems. (MS has made a lot 
of money on certifications.)

 It is also true that corporate organizations look for ways to show 
differences between employees. Getting certified is measurable. (All 
the MBAs love to measure stuff.) Getting a certification can get you 
a raise or promotion in many places. Of course, many independent 
developers probably have no use for certifications since they are 
irrelevant in the real world. 

 I would encourage anyone to continue to take classes and even teach 
them in your field. We have all benefited from the hard work people 
put into teaching, books, blogs, user groups, etc. 
--
http://www.linkedin.com/pub/roger-austin/8/a4/60
http://twitter.com/RogerTheGeek
http://www.misshunt.com/ Home of the Clean/Dirty Magnet
http://www.ncdevcon.com/ TACFUG 2010 Conference in North Carolina


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:333414
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: DateAdd value different on different servers

2010-04-22 Thread Roger Austin

In CF8

cfset myDate = createDate(2010,3,14) /
cfdump var=#myDate# /br /
UTCcfdump var=#GetHttpTimeString(myDate)# /br /br /

cfset myDate2 = DateAdd('s',1271779666,myDate) /
cfdump var=#myDate2# /br /
UTCcfdump var=#GetHttpTimeString(myDate2)# /br /br /

cfset myDate = createDate(2010,3,15) /
cfdump var=#myDate# /br /
UTCcfdump var=#GetHttpTimeString(myDate)# /br /br /

cfset myDate2 = DateAdd('s',1271779666,myDate) /
cfdump var=#myDate2# /br /
UTCcfdump var=#GetHttpTimeString(myDate2)# /br /br /

Output was:

{ts '2010-03-14 00:00:00'}
UTC Sun, 14 Mar 2010 05:00:00 GMT

{ts '2050-07-01 17:07:46'}
UTC Fri, 01 Jul 2050 21:07:46 GMT

{ts '2010-03-15 00:00:00'}
UTC Mon, 15 Mar 2010 04:00:00 GMT

{ts '2050-07-02 16:07:46'}
UTC Sat, 02 Jul 2050 20:07:46 GMT 

 Tom McNeer tmcn...@gmail.com wrote: 
 
 Okay,
 
 So - it wasn't a JVM issue. Updating it did not change the results.
 
 And Steve was right, in a way. But I still don't understand why it should be
 this way.
 
 First, Steve, I understand what you're saying about whenever you display a
 time. But in practice, I'm not displaying a time at all. I'm simply
 creating a date/time value and adding a number of seconds to it, then
 inserting into a database.
 
 So to my way of thinking - and according to every doc I've ever read - the
 dateAdd function should do exactly what you tell it to do: just add the
 increments to the original date.
 
 But what's happening DOES involve DST - though not the time zone. I don't
 know why. It shouldn't. But it does, at least in CF9.
 
 Try this for yourself: Daylight Savings Time began at 2:00 AM Eastern on
 March 14, 2010. So run the following:
 
 cfset myDate = createDate(2010,3,14) /
 cfdump var=#myDate# /brbr
 cfset myDate2 = DateAdd('s',1271779666,myDate)
 cfdump var=#myDate2# /brbr
 
 myDate is two hours _before_ DST went into effect. On two different CF9
 servers, one on EDT, the other on CDT, the result for myDate2 was:
 {ts '2050-07-01 17:07:46'}
 
 Now change the createDate to (2010,3,15) - _after_ DST went into effect. On
 the same servers, the result was:
 {ts '2050-07-02 16:07:46'}
 
 The original date was changed by a day. But the result of the dateAdd
 statement changed by 23 hours.
 
 I wish I could test this on CF8 and/or 7, but the only servers with those
 versions to which I have access are in Arizona, where they don't use DST.
 Those servers return the 16:07:46 timestamp. But without having the machines
 set to DST, I can't tell if CF is acting differently or not.


--
http://www.linkedin.com/pub/roger-austin/8/a4/60
http://twitter.com/RogerTheGeek
http://www.misshunt.com/ Home of the Clean/Dirty Magnet
http://www.ncdevcon.com/ TACFUG 2010 Conference in North Carolina


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:333092
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Anyone else have the latest CFBuilder crashing constantly?

2010-04-15 Thread Roger Austin

 I have the same cut-n-paste memory issues in the production version. I am 
giving 
it my 60 day trial before deciding on CFB vs CFE. This cut-n-paste lockup bug 
is 
very annoying. I find that I am retyping things rather than cut-n-paste 
frequently
due to the bug.

 Jason Durham jdur...@cti-stl.com wrote: 
 
 I'm having the same problem on Win7 64-bit.  Build date of CFB shows Feb 27, 
 2010.
 
 -Original Message-
 From: Andrew Scott [mailto:andr...@andyscott.id.au]
 Sent: Friday, March 12, 2010 2:59 AM
 To: cf-talk
 Subject: RE: Anyone else have the latest CFBuilder crashing constantly?
 
 
 Cutting and pasting chews through memory very quickly, it was raised as a
 bug and Adobe just closed it straight away.
 
 Now that either means it is fixed or they are not going to fix it so let's
 see.
 
 But as I described to Adobe, I went from 77mb of heap space and after
 copying and pasting about 5 to 10 times from another file my heap space had
 grown out to 250mb before ColdFusion Builder then crashed.
 
 There are a lot of memory leaks with ColdFusion Builder, that just ends up
 chewing through memory way to fast.
 
 
 
 -Original Message-
 From: Roger Austin [mailto:raust...@nc.rr.com]
 Sent: Friday, 12 March 2010 2:51 AM
 To: cf-talk
 Subject: RE: Anyone else have the latest CFBuilder crashing constantly?
 
 
  For me, CFB beta 3 has been unstable to a point where I went
 back to text editors to get work done. There is a problem
 when I cut and paste a lot. Every paste would set off something
 in CFB which seemed to need to time out before it came back to
 life.
  Also, there were problems when I would type a double
 quote and CFB would go numb on me for a while. I definitely
 had to watch the screen as I typed since I had no idea when it
 would go mental on me.
  I ended up turning off all the helpers in the system
 which turns it into a fancy text editor and allows me to get
 work done. I sure hope they fix all these problems before it
 goes into production. I assumed that there would be another
 beta, but that may not happen.
 
 
 
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332910
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Dynamic SQL Column Names

2010-04-14 Thread Roger Austin

On 4/14/2010 8:39 PM, Doug Ford wrote:

 Hi Folks -

 I am wracking my brain trying to figure out how to get the results I am 
 looking for.

 Here's the background -

 I am dealing with dynamic environment allowing losers, I mean users, to enter 
 in field names.  This is a business product so anything is possible.

 When a user of the product creates the columns, they have no knowledge of 
 coldfusion or sql, so if a person enters in VIN # as a piece of information 
 they wish to capture, VIN # becomes a column header.

 Now then, on any given random form my system would be creating, I won't know 
 how many fields or their names.

 If a person creates 5 or 500 fields, I have no clue, and I won't know what 
 column names they could ultimately create.

 I have been toying with getColumnList() to display the column titles, but how 
 would I get the actual data out of it?

 I have tried using evaluate on the field names, but when it comes across VIN 
 #, the system blows up.

 Any and info is appreciated.

 Thanks,

 Doug

  Consider abstracting the database schema. Hold the column names in a
table with an ordinal key. Store the column contents in another table
with a foreign key back to the columns. Never trust user input.
  That is how I would start to break it down.
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)
NCDevCon: http://ncdevcon.com/ 2010 Raleigh ColdFusion Conference

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332898
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: FileExists using variable - not working

2010-04-08 Thread Roger Austin

 Fred Grainger i...@fredgrainger.com wrote: 
 
 Yep - If it type in a literal into the variable it is working.  When I build 
 the file path from the database fields it will not work.  When I manually cut 
 and paste the cfoutput of the variable I build with the database fileds into 
 the fileexists function it finds it.  It does not like something about the 
 variable that is created with the query value.  

Have you tried checking the length of the string? Sometimes, you get a 
CR/LF at the end with Excel.

--
http://www.linkedin.com/pub/roger-austin/8/a4/60
http://twitter.com/RogerTheGeek
http://www.misshunt.com/ Home of the Clean/Dirty Magnet
http://www.ncdevcon.com/ TACFUG 2010 Conference in North Carolina


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332792
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOT: external css not displaying

2010-04-06 Thread Roger Austin

On 4/6/2010 7:23 PM, Dave Watts wrote:

 On Tue, Apr 6, 2010 at 14:07, Greg Morphisgmorp...@gmail.com  wrote:

 If it helps any this is a PDF we're displaying for the user.
 Thelink tag is within thecfdocumentsection tag..
 cfdocument ...
 cfdocumentsection ...
   link rel=stylesheet ...

 I recommend that you use CFINCLUDE to include the contents of the
 stylesheet within an HTML STYLE tag. Linking to stylesheets is always
 problematic when using CFDOCUMENT.

I agree with this. I have never gotten linked style sheets to work
properly with cfdocument. I even had to duplicate them inside of the
headers and footers at times to get proper styles.

I was using CF7 at the time. I hope Adobe fixes this in the future
versions. I have not experimented with cfdocument in CF8 or CF9 so
I can't say for certain if these issues persist.

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)
NCDevCon: http://ncdevcon.com/ 2010 Raleigh ColdFusion Conference

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332671
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion 9 WACK

2010-04-03 Thread Roger Austin

On 4/3/2010 10:33 AM, Raymond Camden wrote:

 Remember that the book is for beginners, so a 'rehash of the basics'
 is a bit unfair. If you _know_ CF, then you probably want to wait till
 the 3rd volume where more advanced topics are. If you _dont_ know CF,
 then I think the 1st volume is excellent. Of course, I'm fairly
 biased.

I have great admiration to someone who is so knowledgeable about a
subject (any subject) in depth, but can write a beginner book on the
subject that makes sense to a beginner.

Some of the worst instructors I have had have been experts in the
field I was studying. One physical chemistry prof comes to mind. And
a quantum physics prof was a colleague of Fermi and he was an idiot
when it came to instruction. Ray seems to be one of the good ones
for ColdFusion who can explain stuff without making you feel like an
idiot. [Either that or he has a great editor. ;)]

Thanks to all authors who publish on ColdFusion and related topics.
Writing a book (or an article) is a labor of love.
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)
NCDevCon: http://ncdevcon.com/ 2010 Raleigh ColdFusion Conference

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332558
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: ColdFusion Builder Released!

2010-03-30 Thread Roger Austin

This whole discussion has gotten tedious and needs to go off-line. 
Adobe software has never been cheap. Acrobat, Photoshop, etc. People 
purchase the packages because they need them and have no other 
choices, or because they believe they are a good value for their 
situation.

I don't plan on purchasing CFBuilder any time soon since I don't 
believe it is ready at version 1. I have been using CFEclipse 
lately and it does almost everything that I need. I may change 
my mind later when corporate IT allows us to use CF9. Or, maybe 
Josh Adams will convince me tonight at the TACFUG event in RTP. 
--
http://www.linkedin.com/pub/roger-austin/8/a4/60
http://twitter.com/RogerTheGeek
http://www.misshunt.com/ Home of the Clean/Dirty Magnet
http://www.ncdevcon.com/ TACFUG 2010 Conference in North Carolina


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332448
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


NCDevCon (CFinNC 2.0) Call for Speakers and Registration

2010-03-25 Thread Roger Austin

 The Triangle Area ColdFusion Users Group (TACFUG) is holding 
another conference like the highly successful CFinNC in 2009.

 NCDevCon will be held May 22-23, 2010 at the NC State University 
Centennial Campus College of Textiles complex in Raleigh, North 
Carolina. The call for speakers and registration are now open.
 http://ncdevcon.com/

 This is a free conference. That's right, it's free to attendees. 
How can we do this? We can due to very generous sponsors. You or 
your company could also be a sponsor and we would be very pleased 
if you would. Please see the sponsorship information on the web 
site.

 The change in name reflects new tracks including web design, 
Javascript/CSS/AJAX as well as the ColdFusion, AIR, Flex tracks.
There will also be hands-on training during the event.

 See the web site at http://ncdevcon.com/ for information and 
links.
--
http://www.linkedin.com/pub/roger-austin/8/a4/60
http://twitter.com/RogerTheGeek
http://www.misshunt.com/ Home of the Clean/Dirty Magnet
http://www.ncdevcon.com/ TACFUG 2010 Conference in North Carolina

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332262
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion Builder Released!

2010-03-23 Thread Roger Austin

 Mary Jo Sminkey mary...@cfwebstore.com wrote: 
 Having said that, I really am thrilled to hear that they are giving it for 
 free for educational use. That certainly is a big step in the right direction 
 and that along with educational use of the server really shows that they are 
 starting to see that bringing in more developers is really critical for the 
 future of ColdFusion. 

 Most of the schools I know about are teaching Java. Sounds to me 
like an uphill battle, but it is in Adobe's interest and long overdue.
I would like to hear more about how Adobe plans to market to education 
institutions. Is the ColdFusion Server actually going to be free to 
education systems? I had not heard that.

--
http://www.linkedin.com/pub/roger-austin/8/a4/60
http://twitter.com/RogerTheGeek
http://www.misshunt.com/ Home of the Clean/Dirty Magnet
http://www.ncdevcon.com/ TACFUG 2010 Conference in North Carolina


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332126
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion Builder Released!

2010-03-22 Thread Roger Austin

Mary Jo Sminkey wrote:
 As mentioned, the bottom line is whether the price is worth the 
productivity you get from the product. For me, it's not even a close
call. The list of bugs that are as yet unresolved and have greatly
slowed me down while using it easily outweighs any advantages I
might gain using it.

  That is one reason I want to give CFEclipse a try before I go any
further with CFBuilder. I am not going to see CF9 for a long while so
the features in CFB for ORM, etc., are irrelevant to me at this point.
Also, the beta was so buggy that I was going to give up on it. I look
on this new product as a $99 beta version which includes a $200 Flash
Builder product that I don't particularly need (at this time.)

  Don't get too caught up in the community and lose focus on the big
picture of development. A lot of tools can be used to develop dynamic
web sites. Don't get locked into one language or company. New
technologies are always coming out and we need to be able to adapt.
-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)
NCDevCon: http://ncdevcon.com/ 2010 Raleigh ColdFusion Conference


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332091
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF9 and MS SQL DSN Creation Errors

2010-03-19 Thread Roger Austin

DURETTE, STEVEN J (ATTASIAIT) wrote:
 MS SQL 2005 and 2008 deny ip Connections by default, you have to go into
 the settings (don't remember how off the top of my head) and allow tcpip
 connections.

Don't you use the SQL Server Client Network Utility to do that?

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)
NCDevCon: http://ncdevcon.com/ 2010 Raleigh ColdFusion Conference

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331899
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF-Based Content Management Systems

2010-03-18 Thread Roger Austin

 Peter Donahue pdonah...@sbcglobal.net wrote: 
 
 Good afternoon everyone,
 
 I just got off of the phone with a client that is considering using a 
 content management system (CMS) to manage her Web site. The developer she 
 hired to redesign her pages suggested using an Adobe product to insure that 
 the CMS is robust and to be sure all features are accessible by disabled 
 site visitors and managers. She also wishes to include a site blog as well. 
 I believe there is CF blogging software and would appreciate some 
 recommendations and sources for obtaining CF cms and blogging packages. 
 Thanks in advance for your assistance.

I can't speak to the CF tools part of your question, but is sounds like 
they want something 508 compliant. You would need to do some analysis of 
the packages to see how they meet the accessibility regulations. Writing 
for the disabled isn't something a lot of prepackaged systems do well.
--
http://www.linkedin.com/pub/roger-austin/8/a4/60
http://twitter.com/RogerTheGeek
http://www.misshunt.com/ Home of the Clean/Dirty Magnet
http://www.ncdevcon.com/ TACFUG 2010 Conference in North Carolina


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331868
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Anyone else have the latest CFBuilder crashing constantly?

2010-03-11 Thread Roger Austin

 For me, CFB beta 3 has been unstable to a point where I went 
back to text editors to get work done. There is a problem 
when I cut and paste a lot. Every paste would set off something 
in CFB which seemed to need to time out before it came back to 
life.
 Also, there were problems when I would type a double 
quote and CFB would go numb on me for a while. I definitely 
had to watch the screen as I typed since I had no idea when it 
would go mental on me.
 I ended up turning off all the helpers in the system 
which turns it into a fancy text editor and allows me to get 
work done. I sure hope they fix all these problems before it 
goes into production. I assumed that there would be another 
beta, but that may not happen.

 Rick Faircloth r...@whitestonemedia.com wrote: 
 
 Thanks for the tip, Gabriel...
 
 I did that upon startup this time and so far, so good.
 We'll see what happens after more time.
 
 Rick
 
 -Original Message-
 From: Dorioo [mailto:dor...@gmail.com] 
 Sent: Thursday, March 11, 2010 10:08 AM
 To: cf-talk
 Subject: Re: Anyone else have the latest CFBuilder crashing constantly?
 
 
 Go to the preferences, Coldfusion  Server Settings and uncheck build
 server settings. I'd also uncheck Coldfusion  Startup build CFC's
 in project on startup.
 
 It worked better for me with those disabled.
 
 - Gabriel
 
 On Thu, Mar 11, 2010 at 10:01 AM, Rick Faircloth
 r...@whitestonemedia.com wrote:
 
  I've been re-testing CFBuilder over the last week and *every* time I run
 it,
 
  it locks up after a few minutes of normal use.  It just decides to stop
  working
 
  even when I'm just editing files.
 
 
 
  I'm running Win7 Home Premium 64-bit.  It's responding well (when it's
  running)
 
  on my new development machine, but the crashing is driving me crazy.
 
 
 
  I'll try a delete and re-install, too.  Anyone know of any issues running
  CFB on 64-bit Win7?
 
 
 
  Thanks,
 
 
 
  Rick
 
 
 
 
 
  
 
 
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331590
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Anyone else have the latest CFBuilder crashing constantly?

2010-03-11 Thread Roger Austin

 Thanks Scott. I did do that some time ago and it made almost 
no difference. I did install the standalone CFB version and some 
folks have suggested that I get Eclipse and then download the 
add on CFB version. I just haven't had the time and don't think 
that I will until the final CFB version is released.

This brings up an issue that I think is common in the Eclipse 
world that I have not seen in other areas. People seem to 
expect to constantly update their editor. I don't expect that 
and perhaps that is a problem that I will need to overcome. 
I want to spend my time working on code, not on the tool.

 I got spoiled with Visual Studio. I also did most of my non 
MS work in a text editor only so this is one of my first 
experiences in IDEs except for VS. This may not be a problem 
with younger folks who are familiar with Eclipse based tools 
from school.

 CFBuilder is beta software so I can't complain a lot, but I 
am going to try out CFEclipse before I spring for it.

 scott stewart sstwebwo...@bellsouth.net wrote: 
 
 In addition to this check out this stackoverflow thread on optimizing Eclipse
 http://stackoverflow.com/questions/142357/what-are-the-best-jvm-settings-for-eclipse
 
 The caveat is that it assumes that you're using Eclipse 3.5 + 
 Once you have Eclipse's memory handling tweaked you should see better 
 performance and  stability.

--
http://www.linkedin.com/pub/roger-austin/8/a4/60
http://twitter.com/RogerTheGeek
http://www.misshunt.com/ Home of the Clean/Dirty Magnet
http://www.ncdevcon.com/ TACFUG 2010 Conference in North Carolina


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331594
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Two CFQUERY statements?

2010-03-11 Thread Roger Austin

 Steven Sprouse sspro...@ccboe.com wrote: 
 If one of the databases was converted into a table and placed into the other 
 database, I'd have no problem with this, but for some reason I'm getting 
 tripped up with the different data sources.

More than likely, this is a permissions issue on the other datasource or the 
datasource is not set up properly.
--
http://www.linkedin.com/pub/roger-austin/8/a4/60
http://twitter.com/RogerTheGeek
http://www.misshunt.com/ Home of the Clean/Dirty Magnet
http://www.ncdevcon.com/ TACFUG 2010 Conference in North Carolina


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331614
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


NCDevCon (CFinNC 2.0) Call for Speakers and Registration

2010-03-01 Thread Roger Austin

 The Triangle Area ColdFusion Users Group (TACFUG) is holding 
another conference like the highly successful CFinNC in 2009.

 NCDevCon will be held May 22-23, 2010 at the NC State University 
Centennial Campus College of Textiles complex in Raleigh, North 
Carolina. The call for speakers and registration are now open.
 http://ncdevcon.com/

 This is a free conference. That's right, it's free to attendees. 
How can we do this? We can due to very generous sponsors. You or 
your company could also be a sponsor and we would be very pleased 
if you would. Please see the sponsorship information on the web 
site.

 The change in name reflects new tracks including web design, 
Javascript/CSS/AJAX as well as the ColdFusion, AIR, Flex tracks.
There will also be hands-on training during the event.

 See the web site at http://ncdevcon.com/ for information and 
links.
--
http://www.linkedin.com/pub/roger-austin/8/a4/60
http://twitter.com/RogerTheGeek
http://www.misshunt.com/ Home of the Clean/Dirty Magnet
http://www.ncdevcon.com/ TACFUG 2010 Conference in North Carolina

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331222
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: IDE for coldfusion 9

2010-02-10 Thread Roger Austin

Adrocknaphobia wrote:
 Brandon,
 
 What would you consider an arm and a leg?
 
 We originally started work on ColdFusion Builder as a feature of ColdFusion
 9. In fact it was a the highest requested feature for CF9 despite the
 existence of CFEclipse, Dreamweaver and HomeSite. But as our vision for a
 comprehensive ColdFusion IDE grew, it made more sense to turn it into it's
 own product. What I mean to say is that we built this for the community, not
 to supplement ColdFusion revenue. Adobe isn't looking for a pay day on CB so
 you shouldn't expect to have to part with your appendages. :-)
 
 -Adam
 
 
 
 On Wed, Feb 10, 2010 at 12:02 PM, Brandon brandonregis...@gmail.com wrote:
 
 I tried CFBuilder for several months and finally got fed up with glitchy
 code-folding.  Plus, I don't want to get too used to a tool that's going to
 end up costing an arm and a leg.  Eclipse + plugins seems to handle
 everything I need, without beta-testing bugs.

Adam, I think the main issue for many is that CFBuilder ORM capabilities
are the real selling point over CFEclipse. Once people migrate to CF9,
there will be a real reason to buy it. At this point, most of us are
stuck with CF8 or less so CFB that much better than the alternative.

  I am using CFB beta 3 and it isn't ready for prime time yet. I hope
Adobe engineers are hard at work updating b3 into b4 and are not going
to rush the boxed version out the door yet. I sure hope that those
engineers weren't on a RIF list.

  I want Adobe to make money so they can keep employees on the payroll
and support us developers with documentation and training. My hope is
that they will have a beta 4 that will fix the significant issues with
beta 3. I think that $150 to 200 for CFB would be a fair price if it
relieves me of having to reinstall CFEclipse and mess with a bunch of
plug-ins, etc. If the funds would go to an active development team, I
would be very happy. You probably would be too.

  Right now, I consider a price of $250 like Flex Builder to be too much
for most people outside of high end companies. I did put it in my budget
for 2010, but that was before I used it extensively.

  Thanks, Roger

-- 
LinkedIn: http://www.linkedin.com/pub/8/a4/60
Twitter:  http://twitter.com/RogerTheGeek
MissHunt: http://www.misshunt.com/ (Home of the Clean/Dirty Magnet)
CFinNC:   http://cfinnc.com/ ColdFusion Conference in Raleigh

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330573
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


  1   2   >