RE: Allaire Certification Program

2000-07-08 Thread Jordan McDonald

Oh an Sean, You are really great.  I would love working with someone like
you.

Please expand on the "gimme some code" board.  This CF-Talk not
CF-Ego/Argue.

-Original Message-
From: Sean Renet [mailto:[EMAIL PROTECTED]]
Sent: Saturday, July 08, 2000 4:34 PM
To: [EMAIL PROTECTED]
Subject: Re: Allaire Certification Program


> The ability to recognise a function and its purpose is what makes a good
> programmer
This ideal is what is dangerous about the test.  Retention of functions and
attributes doesn't make a good programmer, application does.

I know the 10 commandments, but I wouldn't consider myself religious.

Oh an Jordan, this test affects our whole community, and I have spoken with
atleast 20 CFer's that have no idea any of this is going on.  So if you want
a "gimme some code" board I suggest you create your own.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Allaire Certification Program

2000-07-08 Thread Jordan McDonald

Can we go offline with this.  Do not need the emails.  Obiously you have
each others email addresses.  Stop programming and go have some drinks.


-Original Message-
From: Seth Petry-Johnson [mailto:[EMAIL PROTECTED]]
Sent: Saturday, July 08, 2000 3:33 PM
To: [EMAIL PROTECTED]
Subject: Re: Allaire Certification Program


> >>if you were to really call yourself a proffesional then you would no the
> commands anyway<<
>
> And I would disagree heavily. I program actively* in six languages, I
always
> keep a function reference close at hand so I can check function arguments
> and parameters. There's no way I can memorize every parameter of every
> function in all of those languages.

I have to agree with Mike here.  I work primarily with CF (mostly 4.01 but a
little bit of version 3 code as well), Javascript, and a little bit of Java.
Between those three languages (including multiple versions and/or platforms
of each) I have a hard time memorizing the exact paramter lists and which
functions are available for each.

I hardly think that needing to *quickly* refer to a reference for the
parameter definitions of an infrequently used function or tag should cause
someone to fail the certification test.  I've been writing CF for 2 years,
and I've done some decently impressive things. In spite of that I couldn't
recite, from memory, the parameters for CFTREE, CFUPDATE, CFFTP, CFPOP, etc
if my life depended on it.  I know they EXIST, I know WHAT they do, and I
know WHERE to find their documentation if I need it.  I just don't have them
memorized.  Does this mean that I'm a poor programmer?  I like to think that
it doesn't .

IMHO, the value of a certification is based directly on how well the exam
tests an applicant's ability to function in a typical, real life situation.
I don't write code locked in a hot room, with no references, and a stopwatch
ticking, so why should I be tested that way?  I took a number of tests in
both high school and college that were structured to allow us students to
use the class text and notes during the exam.  The idea was that if a
student didn't already know how to do a problem, having the book there
wouldn't really help that much given the time constraints and question
design.  However, a student that knew the proper approach to use to solve
the question would be able to quickly find needed information (formulas,
terms, etc) that they needed.  It seems to me that ANY programming language
certification exam should be somewhat similar.

Seth Petry-Johnson
Argo Enterprise and Associates


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



creating tables in Access

2000-07-08 Thread Jordan McDonald

Can someone please tall me why this will not work?

The first piece of code tries to create a table New.

The second piece trys to set the primary key.  However, it does not even
make it past the create table query.

Thanks for any input in helping me create new tables.   I cannot use a
custom tag for this.





CREATE TABLE NEW
(id INTEGER NOT NULL,
Quantity INTEGER NULL,
Price DECIMAL(8,2) NULL,
CardName CHAR(75) NULL,
Name CHAR(50) NULL);




CREATE UNIQUE INDEX OID_IDX ON New (id);




Jordan

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.