RE: PHP versus CF Development Speed?

2003-02-28 Thread Jeremy Allen
Here is a snippet from my PHP book ;) This is done using an pure PHP OO abstraction layer. It is alright as far as interfaces go. (Note.. most people use a DB abstraction layer these days in PHP) long code snippet follows /* Include the database abstraction class */

RE: FREE BlueDragon Server Released! (It is all about competition)

2003-02-21 Thread Jeremy Allen
Will be interesting to see what kind of traction BlueDragon gets in the marketplace. And if it suceeds(sic), what kind of pricing pressure this puts on MM. And one could argue that if it causes sufficient pricing pressure, MM might have to respond in a way that reduces their revenue and

RE: Application.cfm not being included / CFMX

2003-02-02 Thread Jeremy Allen
If it is a Unix server your file should be Application.cfm, the capitalization is important. Even if it isn't a *nix server, you should still name the file Application.cfm :) Jeremy -- Jeremy Allen Application Architect elliptIQ Inc. [EMAIL PROTECTED

RE: RE: How to handle Calendar Scheduling of Recurring Events?

2003-01-15 Thread Jeremy Allen
, but it worked. It should be much easier to do recurrence patterns in a more friendly programming language like Java. (FYI: We were able to implement and support the recurrence patterns of calendar events almost exactly as Outlook does). Good Luck! Jeremy Allen Application Architect elliptIQ Inc

RE: RE: How to handle Calendar Scheduling of Recurring Events?

2003-01-15 Thread Jeremy Allen
Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Jeremy Allen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 8:26 AM To: CF-Talk Subject: RE: RE: How to handle Calendar Scheduling of Recurring Events? Hello, We have implemented

RE: MX Installation: Wrong site being loaded occasionally

2002-10-18 Thread Jeremy Allen
This is actually a known issue that is documented in Technote #23179. We have run into this in load testing CFMX when we were resolving a completely separate bug. Full URL here: http://www.macromedia.com/v1/Handlers/index.cfm?ID=23179Method=Full Jeremy -Original Message- From:

Re: current requests (was: RE: LONG time CF Supporter ...)

2002-10-09 Thread Jeremy Allen
On Linux you can do a kill -3 on cfusion to dump what each thread is doing at any given moment. (Not super-detailed info, but still good info). You can also turn on metrics logging via jrun.xml and get good data on running requests logged to a log file every x seconds (specified in jrun.xml as

Re: SQL Text question from a beginner

2002-10-01 Thread Jeremy Allen
It is the pointer that points to the data that is 16 bytes long :) Jeremy - Original Message - From: Tony Weeg [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 01, 2002 1:30 PM Subject: RE: SQL Text question from a beginner hey, it was late, and I had been

RE: Advanced Statistical Analysis

2002-09-25 Thread Jeremy Allen
While MATLAB costs money, GNU Octave (which does everything MATLAB does, sometimes even better) is free. It would not be difficult to use Octave instead of MATLAB. I have used Octave for some Linear Algebra work and found it just as good in Octave in almost every way. (As in, there was nothing I

Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-20 Thread Jeremy Allen
Native compilation of a Java class is completely different from JIT which is different from straight interpretation. Ideally when a method is called it is compiled just in time to native instructions and then the native instructions are executed, this can often be faster, even on a first run,

RE: FuseBox vs Macromedia Programming Standards

2002-08-29 Thread Jeremy Allen
The coding guidelines are just that, guidelines for code. They are not a standard or the next best thing, just some general suggestions to keep your code sane. Naming conventions, some basic hard and fast rules that should be observed etc. Some of the guidelines are just things to strive for or

RE: FuseBox vs Macromedia Programming Standards

2002-08-29 Thread Jeremy Allen
Might I jump on this post and add a little? Don't mind if I do. With the CF and Java worlds now closely coupled I think it becomes critically important to begin using the proper terminology for what things are in the software development world. Honestly web developers/programmers are not exempt

RE: SQL Full Text Searching

2002-08-29 Thread Jeremy Allen
I have used MS SQL Full-Text indexing. For building fairly intelligent search engines based on data contained in a MS SQL 7, or MS SQL 2000 database it is not a terrible way to go. You can manage the full-text indices via stored procedures so you can fully automate working with the full text

RE: CF vs. ASP

2002-08-27 Thread Jeremy Allen
I know the whole CF and why people are using it issue has been hashed out quite a bit but I would like to add my two cents coming from a different background than most web developers. I started my programmer career with C. In C you have absolute control over everything going on in your program.

RE: What Email Server software is being used

2002-06-14 Thread Jeremy Allen
like a zealot, I am not, qMail just works really well. Here is a good, objective, summarization of what qMail is: http://qmail.org/blurb.html Jeremy Allen elliptIQ Inc. [*] Some Unix knowledge is prerequisite -Original Message- From: Larry Juncker [mailto:[EMAIL PROTECTED]] Sent: Friday

RE: alternatives to MS SQL

2001-12-06 Thread Jeremy Allen
Ben, You might check out Interbase. It is free as in BEER source code included, yet has borland backing it for full support. It is not an enterprise scale database, but for a mid to large sized application it is a good choice. It has pretty GUI client for windows etc. Thanks Jeremy Allen

RE: Request Scope Questions

2001-11-12 Thread Jeremy Allen
. Jeremy Allen elliptIQ Inc. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 10:40 AM To: CF-Talk Subject: RE: Request Scope Questions I don't know if you mean me, but if so, I did not say structcopy is faster. I said it _may_ be faster

RE: *** Complicated SQL riddle

2001-10-30 Thread Jeremy Allen
my recommendation of it repeatedly wrong :) It also shows a few tricks to get around the start with/connect by prior limitations. Instead of using QoQ you can just use a correlated sub query. Good Luck! Thanks Jeremy Allen elliptIQ Inc. -Original Message- From: Jason Blum [mailto

RE: *** Complicated SQL riddle

2001-10-29 Thread Jeremy Allen
procedures which deals with the uglier aspects of trees for you! http://www.codebits.com/ntm/ Also see http://www.dbmsmag.com/9604d06.html The nested set model is an excellent way to deal with hierarchies. Hope this helps! Thanks Jeremy Allen elliptIQ Inc. -Original Message- From

RE: *** Complicated SQL riddle

2001-10-29 Thread Jeremy Allen
SQL trick its probably in there. Thanks Jeremy Allen elliptIQ Inc. -Original Message- From: Rick Osborne [Mojo] [mailto:[EMAIL PROTECTED]] Sent: Monday, October 29, 2001 12:55 PM To: CF-Talk Subject: RE: *** Complicated SQL riddle Jason asked: That's the problem - I need to keep

RE: *** Complicated SQL riddle

2001-10-29 Thread Jeremy Allen
logic that a good afternoon of stored procedure coding and adapting can cure. For a fun thought of the day, try implementing N-Ary trees in JavaScript :) Thanks Jeremy Allen elliptIQ Inc. -Original Message- From: Deanna Schneider [mailto:[EMAIL PROTECTED]] Sent: Monday, October 29, 2001 3

RE: How to prevent Serialization failures?

2001-10-21 Thread Jeremy Allen
the deadlocks can be a real pain since you can't stop it completely. Thanks Jeremy Allen elliptIQ Inc. -Original Message- From: Dave Babbitt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 16, 2001 4:33 PM To: CF-Talk Subject: How to prevent Serialization failures? Hi Guys! Does anybody know

RE: Test Hacking a web site.

2001-10-21 Thread Jeremy Allen
and the most secured systems in the world in the world. But if you can trick someone with privileged access the most strict security measures are completely useless. Jeremy Allen elliptIQ Inc. -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 16, 2001

RE: Check out what Gartner is recommending. Drop IIS!

2001-09-25 Thread Jeremy Allen
these kind of bugs from being proliferated. :-D Thanks Jeremy Allen elliptIQ Inc. -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 25, 2001 4:44 PM To: CF-Talk Subject: RE: Check out what Gartner is recommending. Drop IIS! It comes down

RE: cf and apache

2001-09-21 Thread Jeremy Allen
Apache does not officialy support Apache Web Server on windows. Apache was designed for Unix from the ground up, it is just incredibly portable so it made its way to windows. Consider it (really good) beta quality software. Jeremy Allen elliptIQ Inc. -- http://www.neighborware.com America's

RE: cf and apache

2001-09-21 Thread Jeremy Allen
reliability on a Windows platform. Thanks Jeremy Allen elliptIQ Inc. -- http://www.neighborware.com America's Leading Community Network Software -Original Message- From: Justin Greene [mailto:[EMAIL PROTECTED]] Sent: Friday, September 21, 2001 3:14 PM To: CF-Talk Subject: RE: cf and apache

RE: Apache, Coldfusion, PHP

2001-09-20 Thread Jeremy Allen
Yes. Since PHP and ColdFusion are separate Apache modules. Map your .cfm and .cfml files to the ColdFusion dll and map your .php .whatever files to the PHP DLL. Thats the basics of it.. it is dead easy to do. You can have any number of Apache modules. Thanks Jeremy Allen elliptIQ Inc

RE: XML Parser for CF

2001-09-20 Thread Jeremy Allen
even using Xerces C++ if you must, which would probably be a bit faster than the Java version. Jeremy Allen elliptIQ Inc. -- http://www.neighborware.com America's Leading Community Network Software -Original Message- From: Gary Kraeger [mailto:[EMAIL PROTECTED]] Sent: Thursday, September

RE: Want to make a CFX tag but have only CF language expereience

2001-09-18 Thread Jeremy Allen
the best :) Jeremy Allen elliptIQ Inc. -- http://www.neighborware.com America's Leading Community Network Software -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Monday, September 17, 2001 5:26 PM To: CF-Talk Subject: Re: Want to make a CFX tag but have only CF

RE: Hierarchy

2001-09-12 Thread Jeremy Allen
which details the NTM so that you could easily create your own stored procedures. Mail me off-list if you want the stored procedures. Thanks Jeremy Allen elliptIQ Inc. -- http://www.neighborware.com America's Leading Community Network Software -Original Message- From: John Lucas [mailto

RE: Passing variables in UDF

2001-09-12 Thread Jeremy Allen
the real variable, say that ten times fast. You have to choose whether or not to pass by copy or reference. This can be done via the function definition or the function call, anyhow I digress. Jeremy Allen elliptIQ Inc. -- http://www.neighborware.com America's Leading Community Network Software

RE: Verity and Databases

2001-09-12 Thread Jeremy Allen
a recordset from a Oracle database or a SQL Server database. The recordset object in ColdFusion won't change from DB to DB. Jeremy Allen elliptIQ Inc. -- http://www.neighborware.com America's Leading Community Network Software -Original Message- From: Bruce Sorge [mailto:[EMAIL

RE: The To: line in CF MAIL - are spaces problems?

2001-09-12 Thread Jeremy Allen
if there are any zero length messages in the spool. Jeremy Allen elliptIQ Inc. -- http://www.neighborware.com America's Leading Community Network Software -Original Message- From: Tom Forbes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 12, 2001 3:33 PM To: CF-Talk Subject: The To: line in CF

RE: Stored Procedure

2001-08-31 Thread Jeremy Allen
If you use sp_executesql it will get optimized and the execution plan can be reused in most cases. This means the benefits of stored procedures, plus the query is dynamic. Give it a look. Jeremy Allen elliptIQ Inc. -- http://www.neighborware.com America's Leading Community Network Software

RE: CreateUUID()

2001-04-02 Thread Jeremy Allen
the machines Mac address to make it universally unique so if you do not have a NIC then it can only be guaranteed unique to that one machine. Jeremy Allen elliptIQ Inc. -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Monday, April 02, 2001 4:17 AM To: CF-Talk Subject

RE: CreateUUID()

2001-04-02 Thread Jeremy Allen
This is a misleading statement. It depends on several things hwoever I have seen often enough that they are quite sequential and only off by a few hex numbers per UUID. It is even based on the system clock so again I say that its a bad idea to base security on a UUID. Jeremy Allen elliptIQ

RE: icq, aol, icm

2001-03-27 Thread Jeremy Allen
client isnt a true security hazard. Jeremy Allen elliptIQ Inc. -Original Message- From: Larry W. Virden [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 27, 2001 2:06 PM To: CF-Talk Subject: Re: icq, aol, icm Re: does instant messager create a security hole A mentor once told me 'if you

RE: [Any RegEx wizards about??]

2001-02-27 Thread Jeremy Allen
yield: This is some string **In quotes** :) You did everything right except you are dealing with a ColdFusion string and to escape a double quote in a coldfusion string you must put two of them. A backslash will not really work sinec that will give you an error. Jeremy Allen elliptIQ Inc.

RE: CFX_ZIP on Linux?

2001-02-20 Thread Jeremy Allen
ole command line using a CFEXECUTE or some such and there you go. No Forta tags needed with Unix.. :) Jeremy Allen elliptIQ Inc. -Original Message- From: Michel Vuijlsteke [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 20, 2001 3:54 AM To: CF-Talk Subject: CFX_ZIP on Linux? We're

RE: [CFX_ZIP on Linux?]

2001-02-20 Thread Jeremy Allen
archive of files. Zip like I showed allows you to create a valid archive that is just like a PKZIP archive. try this out at your nearest unix command line.. "man zip" and "man gzip" :) Jeremy Allen elliptIQ Inc. -Original Message- From: Alex [mailto:[EMAIL

RE: SQL Update - Now I'm royally confused

2001-02-20 Thread Jeremy Allen
with that and see if it helps Phillip. Jeremy Allen elliptIQ Inc. -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 20, 2001 9:33 AM To: CF-Talk Subject: SQL Update - Now I'm royally confused OK, after that SP question, and some experimentation

RE: Stored Procedures - Am I going insane?

2001-02-20 Thread Jeremy Allen
Dave medinets has some stored proc's that use dynamic table names. Props to him ;) Check this out.. it aint the prettiest code in the world but it is possible. http://medinets.onproject.com/ntm/ Jeremy Allen elliptIQ Inc. -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL

RE: Extracting WDDX info into CFM

2001-02-20 Thread Jeremy Allen
That is indeed regular XML and not wddx... :) try... http://p.moreover.com/cgi-local/page?c=Sports%3A%20motor%20sports%20newso=w ddx which will return it as a serialized coldfusion recordset (IE: Query object) Good Luck! ;) Jeremy Allen elliptIQ Inc. -Original Message- From

RE: Hey Dave when can we see your email code

2001-02-14 Thread Jeremy Allen
Welcome to America. Anyways, I do agree. Jeremy Allen elliptIQ Inc. -Original Message- From: Shawnea Carter [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 9:53 AM To: CF-Talk Subject: Re: Hey Dave when can we see your email code Folks, It is time for a fact check

RE: converting a number to XXMB

2001-02-06 Thread Jeremy Allen
on there.. voila. Jeremy Allen elliptIQ Inc. -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 10:46 AM To: CF-Talk Subject: RE: converting a number to XXMB I have a file upload application, and i store the size of the file

RE: CF Server on BSD

2001-02-06 Thread Jeremy Allen
in most cases.. not to start a flamewar etc.. but yes its possible.. But... why? I only know about FreeBSD not Open/Net/BSD OS :) Jeremy Allen elliptIQ Inc. -Original Message- From: Won Lee [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 12:29 PM To: CF-Talk Subject: CF Server

RE: 3-dimensional array

2001-02-05 Thread Jeremy Allen
) it does have uses... but if you end up with a 3D array you most likely do not need it. Anyhow... I hope I did not hurt anyones head. Jeremy Allen elliptIQ Inc. -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 1:35 PM To: CF-Talk Subject: RE

RE: Help: WDDX deserialize problem

2001-02-02 Thread Jeremy Allen
just me and the people I had test this behaviors imagination. Jeremy Allen elliptIQ Inc. -Original Message- From: Carol Bluestein [mailto:[EMAIL PROTECTED]] Sent: Friday, February 02, 2001 3:36 PM To: CF-Talk Subject: Help: WDDX deserialize problem I'm sure this is a Friday problem an

RE: Alphabetic List

2001-01-26 Thread Jeremy Allen
* FROM Users WHERE Lower(Left(LName, 1)) = 'p' Just make sure you index either your letter column or the last name column this way your searches will be performed very quickly. Jeremy Allen elliptIQ Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday

RE: Alphabetic List

2001-01-26 Thread Jeremy Allen
I would recommend against using this method even if the field is indexed as this causes a full table scan to occur which will greatly degrade as it is used a lot and as the table grows in size. Jeremy Allen elliptIQ Inc. -Original Message- From: Kevin Schmidt [mailto:[EMAIL PROTECTED

RE: Alphabetic List

2001-01-26 Thread Jeremy Allen
then you just display the letter and no link... :) Jeremy Allen elliptIQ Inc. -Original Message- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] Sent: Friday, January 26, 2001 12:28 PM To: CF-Talk Subject: RE: Alphabetic List What would you suggest ?? :-) Justin -Original Message

RE: Allaire on a Mac?

2001-01-23 Thread Jeremy Allen
it to MacOS) OS X *IS* another Unix.. Jeremy Allen elliptIQ Inc. -Original Message- From: Patricia Lee [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 23, 2001 9:56 AM To: CF-Talk Subject: RE: Allaire on a Mac? I doubt it. Generator Server doesn't work on a Mac, and THAT's a Macromedia

RE: Allaire on a Mac?

2001-01-23 Thread Jeremy Allen
Of course... But why would you buy a mac just to run Linux to finally make it useful? G Jeremy Allen elliptIQ Inc. -Original Message- From: David Livingston [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 23, 2001 11:43 AM To: CF-Talk Subject: RE: Allaire on a Mac? http

RE: Allaire on a Mac?

2001-01-23 Thread Jeremy Allen
Another "fun" thought is that.. once your app is compiled to classes it should be moveable to any JVM ;) So.. production wise it should run almost anywhere.. :-P At least in theory..:) Jeremy Allen elliptIQ Inc. -Original Message- From: JustinMacCarthy [mailto:[EMAIL PROTEC

RE: Allaire on a Mac?

2001-01-23 Thread Jeremy Allen
Hold down a control key and click a mouse button.. ;) (any key will do, depending on how you set it up) Jeremy Allen elliptIQ Inc. -Original Message- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 23, 2001 2:00 PM To: CF-Talk Subject: RE: Allaire on a Mac

RE: Allaire on a Mac?

2001-01-23 Thread Jeremy Allen
Yup, Sorry ;) Jeremy Allen elliptIQ Inc. -Original Message- From: Greg Wolfinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 23, 2001 1:57 PM To: CF-Talk Subject: Re: Allaire on a Mac? CF5 - Java base No, you are thinking on Neo. CF5 will still be based from C. --=@ greg

RE: Allaire on a Mac?

2001-01-23 Thread Jeremy Allen
I was being facetious :) Note the G... Ive played with PPC hardware Just not enuff software support for stuff *I* personally do. Nuff said ;) Jeremy Allen elliptIQ Inc. -Original Message- From: David Livingston [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 23, 2001 2:50 PM

RE: Adam, you got to be kidding?

2001-01-19 Thread Jeremy Allen
w.phrack.com/search.phtml?viewarticle=p54-8" I could keep pasting references like this.. all day long pointing out numerous reasosn for validating data serversideand not trusting the client... but I wont I will leave it to everyone else to draw their own conclusions. Jeremy Allen elliptIQ Inc. -

RE: string to number

2001-01-19 Thread Jeremy Allen
code stays readable so that when you come back to it months later you can still understand what you did (and anyone else who might have the mischance to maintain code they did not write ;) Jeremy Allen elliptIQ Inc. -Original Message- From: Cornillon, Matthieu [mailto:[EMAIL PROTECTED

RE: OT : disable browser back/refresh

2001-01-19 Thread Jeremy Allen
. This is the nature of HTTP.. the user can request a page any time he wants, and the clients are to *dumb* to really know that you dont want this. Jeremy Allen elliptIQ Inc. -Original Message- From: Edward Chanter [mailto:[EMAIL PROTECTED]] Sent: Friday, January 19, 2001 7:03 AM To: CF-Talk Subject

RE: Storing/Encrypting Credit Cards

2001-01-17 Thread Jeremy Allen
..) about this stuff, so you can get a great starting point from some of that documentation. Jeremy Allen elliptIQ Inc. -Original Message- From: Matt Wisdom [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 17, 2001 10:47 AM To: CF-Talk Subject: Storing/Encrypting Credit Cards We need

RE: How do I work with XML?

2001-01-16 Thread Jeremy Allen
discussion ;) Jeremy Allen elliptIQ Inc. -Original Message- From: Rick Lamb [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 16, 2001 11:46 AM To: CF-Talk Subject: How do I work with XML? I'm going to be getting database updates as xml doc's from a third party. Can somebody give me some

RE: How do I work with XML?

2001-01-16 Thread Jeremy Allen
Yes, read some of the specification for it it seemed really handy.. No need for custom XML parsing just yet so Ive held off on doing very much tinkering.. busy with other obligations and have not really palyed around with much lately... :) Jeremy Allen elliptIQ Inc. -Original Message

RE: FirstDayOfMonth problems

2001-01-02 Thread Jeremy Allen
f and it does not really change. You can get that code a bit more effecient.. but it works, and is simple. If you are looking for the first Monday-Fri business week of the month that is still relatively simple, using the same idea. Jeremy Allen elliptIQ Inc. -Original Message- From: [E

RE: Request VS Application scope

2001-01-02 Thread Jeremy Allen
be much faster... And typically if you are doing more reading than writing this is still true, it is just cumbersome to lock everything. Jeremy Allen elliptIQ Inc. -Original Message- From: Greg Wolfinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 02, 2001 4:21 PM To: CF-Talk Subject

RE: DoS in coldfusion passwords

2000-12-28 Thread Jeremy Allen
The easy and obvious way to never have to lose sleep over this one is... Never install administrator on a production system. :) Solves that problem 100% of the time. Jeremy Allen ElliptIQ Inc. -Original Message- From: David Livingston [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: DoS in coldfusion passwords

2000-12-28 Thread Jeremy Allen
Hehe, Its kind of funnybut I read the article and that is the same thing Allaire recommends. Remove the directroy when its not in use. You can add it back and then modify, then delete it. Or you can update the registry if your good with that. Not to big of a deal :) Jeremy Allen elliptIQ Inc

RE: how do i delete client vars?

2000-12-28 Thread Jeremy Allen
Hello, Try cfset DeleteClientVariable("myVariable") ;-) You cant really treat client variables like regular structures. Jeremy Allen elliptIQ Inc. -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 28, 2000 12:53 PM To: CF-Talk Subject

RE: how do i delete client vars?

2000-12-28 Thread Jeremy Allen
You can use the DeleteClientVariable function, not sure which version of CF it was introduced, but its in CF Studio 4.0 documentation so im assuming at least 4.0 :) Jeremy Allen elliptIQ Inc. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 28

RE: how do i delete client vars?

2000-12-28 Thread Jeremy Allen
You know about those "old" internet workers ehh Dave? :-D hehhee, just kidding :) Jeremy Allen elliptIQ Inc. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 28, 2000 1:16 PM To: CF-Talk Subject: RE: how do i delete client vars?

RE: how do I show a range of numbers?

2000-12-28 Thread Jeremy Allen
How about cfif variable GTE 1 AND variable LTE 9 Number is between 1 and 9 /cfif ;-) Jeremy Allen elliptIQ Inc. -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 28, 2000 4:02 PM To: CF-Talk Subject: how do I show a range of numbers

RE: how do I show a range of numbers?

2000-12-28 Thread Jeremy Allen
That statement would qualify as true for nearly any number, from 1-1,000,000 or from 9 to negative1,000,000 :) Testing for a pretty big number range :) Jeremy Allen elliptIQ Inc. -Original Message- From: Brandon Behrens [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 28, 2000 4

RE: figleaf.com

2000-12-27 Thread Jeremy Allen
I know this may sound a little silly, but a lot of companies like to force you to use the www alias for their websites. so just "http://figleaf.com" will not open up.. you should use "http://www.figleaf.com" Least, thats how it is from here, YMMV Jeremy Allen elliptIQ

RE: figleaf.com

2000-12-27 Thread Jeremy Allen
ut I think of it as silly both ways. I just think for redundancy you should map a very common thing such as the root domain, to each their own I know to check both but some people may and do get a lil misdirected at times, as evidenced on the reason this thread was started. Jeremy Allen el

RE: WAY OT: C++ now Java

2000-12-20 Thread Jeremy Allen
our losses and stick with something you can be productive and deliver solid products with. I think ColdFusion and Java are good middle grounds for these :-D Jeremy Allen elliptIQ Inc. ~~ Structure your ColdFusion code with Fusebox. Get the off

RE: dynamically naming variables

2000-12-20 Thread Jeremy Allen
u probably can't do it :) :-) BTW, if you find the cfset line confusing replace it with cfset "#i#DynamicVars" = "Just a plain ole string going into my dynamic variable" Jeremy Allen elliptIQ Inc. -Original Message- From: Jay Brushett [mailto:[EMAIL PROTECTED]] Sent: We

RE: Danger of the +.htr bug

2000-12-19 Thread Jeremy Allen
to just hand out their intellectual property and say "here you go why dont you set up a competative site using our code!!" The code can represent a culmination of hundreds if not thousands of man hours which can just be taken by appending +.htr to a URL. Not Cool. Jeremy Allen el

RE: Danger of the +.htr bug

2000-12-19 Thread Jeremy Allen
of these other issues are peripherial to good programming practice and good business practice. Jeremy Allen elliptIQ Inc. -Original Message- From: Gary McNeel, Jr. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 19, 2000 11:55 AM To: CF-Talk Subject: RE: Danger of the +.htr bug Absolutely

RE: Error 1450

2000-12-18 Thread Jeremy Allen
can. The registry has performance issues among other problems such as what you are encountering. Otherwise try purging your client variables as you are most likely experiencing scalability issues of client variables in the registry. Jeremy Allen elliptIQ Inc. -Original Message- From

RE: Error 1450

2000-12-18 Thread Jeremy Allen
er reasons.. :) Jeremy Allen elliptIQ Inc. -Original Message- From: Milks, Jim [mailto:[EMAIL PROTECTED]] Sent: Monday, December 18, 2000 11:38 AM To: CF-Talk Subject: RE: Error 1450 See http://support.microsoft.com/support/kb/articles/Q237/3/04.ASP Jim -Original Message- From: Marc

RE: ColdFusion vs. ASP.NET

2000-12-11 Thread Jeremy Allen
T was formerly known as ASP+ Jeremy Allen ElliptIQ Inc. -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Monday, December 11, 2000 9:59 AM To: CF-Talk Subject: RE: ColdFusion vs. ASP.NET It's hard to compare an existing product with one that doesn't

RE: Dave Watts please read - Re: BLOCKFACTOR and MAXROWS

2000-11-21 Thread Jeremy Allen
wide open to where its unspecified and CF just dies horribly.. Jeremy Allen ElliptIQ Inc. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 21, 2000 4:41 PM To: CF-Talk Cc: [EMAIL PROTECTED] Subject: RE: Dave Watts please read - Re: BLOCKFACTOR and MAX

RE: Is this possible w/CF???

2000-11-20 Thread Jeremy Allen
e approach. There are a couple other approaches, this is probably the most simple :-) Jeremy Allen ElliptIQ Inc. -Original Message- From: Jeff Fongemie [mailto:[EMAIL PROTECTED]] Sent: Monday, November 20, 2000 8:24 AM To: CF-Talk Subject: Is this possible w/CF??? I have a client that needs a real

RE: Is this possible w/CF???

2000-11-20 Thread Jeremy Allen
at the expense of double the overhead for database work. In an intranet environment this is still quite feasible however. Jeremy Allen ElliptIQ Inc. -Original Message- From: Jeff Fongemie [mailto:[EMAIL PROTECTED]] Sent: Monday, November 20, 2000 8:24 AM To: CF-Talk Subject: Is this possible w/CF

RE: Is this possible w/CF???

2000-11-20 Thread Jeremy Allen
*nods* It was just a suggestion :-) -Original Message- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] Sent: Monday, November 20, 2000 10:07 AM To: CF-Talk Subject: RE: Is this possible w/CF??? Assuming this is not an Access database, one way to make things a bit more effecient is to

RE: Is this possible w/CF???

2000-11-20 Thread Jeremy Allen
It wouldnt, im a goof :-) Jeremy Allen ElliptIQ Inc. -Original Message- From: Rif Kiamil [mailto:[EMAIL PROTECTED]] Sent: Monday, November 20, 2000 9:51 AM To: CF-Talk Subject: RE: Is this possible w/CF??? If u where going to uses a Triggers, how would it know the UserID ? From R

RE: Bad Coding Ethic.....

2000-11-17 Thread Jeremy Allen
structure. :) CFSWITCH is okay Jeremy Allen ElliptIQ Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, November 17, 2000 9:46 AM To: CF-Talk Subject: RE: Bad Coding Ethic. The reasons I would use CFSWITCH: 1) Clear from the fact you're using

OT RE: Certification Exam

2000-11-17 Thread Jeremy Allen
uot; thing if you want to say that your shop has "xyz" Certified Developers or whatever, if its free of cost to you.. might as well. I cant see even in the most highly regarded jobs how certification can be negative. Not needed, likely. Negative, I dont think so :) Anyways... Jerem

RE: Netscape 6 out UGH!!!!

2000-11-15 Thread Jeremy Allen
Yes, there is an option on the downloader that will put all the install files to disk and it will then check for their existence on disk first which means you can still burn it to cdr etc. :-) They are like .xpi files on windows machines. Jeremy -Original Message- From: lsellers

RE: Netscape 6 out UGH!!!!

2000-11-14 Thread Jeremy Allen
in supporting it. Jeremy Allen ElliptIQ Inc P.S. IE won the browser wars, they are over everyone pack up and go home ;) -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 14, 2000 1:01 PM To: CF-Talk Subject: Netscape 6 out UGH Well

RE: Certification Exam

2000-11-10 Thread Jeremy Allen
Warning this post will be moderated, it was not Buzzword compliant. At least 60% of a post must be Buzzwords to not be moderated! ;) Jeremy -Original Message- From: Kevin Schmidt [mailto:[EMAIL PROTECTED]] Sent: Friday, November 10, 2000 5:32 PM To: CF-Talk Subject: Re: Certification

RE: Is Cold Fusion a Typed Language?

2000-11-07 Thread Jeremy Allen
advantages and disadvantages. In a structured programming environment typed variables almost always help out. Jeremy Allen ElliptIQ Inc. -Original Message- From: Warrick, Mark [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 07, 2000 11:22 AM To: CF-Talk Subject: RE: Is Cold Fusion a Type

RE: Input type = arrrrh!

2000-10-31 Thread Jeremy Allen
this is one of the most cross browser ways to achieve this. Definately dont apply border sizes to text fields if they must be consistentfrom browser to browser, consistency is a good thing. Jeremy Allen ElliptIQ Inc. -Original Message- From: Jaime Garza [mailto:[EMAIL PROTECTED]] Sent: Tues

RE: Runtime - Solutions

2000-10-31 Thread Jeremy Allen
Well you can always become a regular allaire partner For around 500$ you get Enterprise versions of CF, JRun, Spectra, the whole nine yards not crippled in any way save they are for development. Pretty nice.. :) Jeremy -Original Message- From: Ryan [mailto:[EMAIL PROTECTED]] Sent:

RE: CF 5.0 Bug Vote is Now Open!

2000-10-27 Thread Jeremy Allen
n it makes sense and is feasible to do so. Anyhow... No Anti/Pro MS flamewars here, I dont really care when I go to sleep at night what the server runs on as long as it is fast and stable. Jeremy Allen [EMAIL

RE: fusebox style: too much disk access?

2000-10-20 Thread Jeremy Allen
es to PCode or using some method of caching or combinations thereof. Anyways someone enlighten us :) Jeremy Allen [EMAIL PROTECTED] -Original Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]] Sent: Friday, October 20, 2000 4:47 PM To: CF-Talk Subject: Re: fusebox style: too much d

RE: fusebox style: too much disk access?

2000-10-19 Thread Jeremy Allen
essor" basically this file expands any macro's includes and include files and prepares the program to actually be compiled. CF does things much the same way so this is why its really not a factor for the small hit it costs, the gains in terms of ease of use and code writing are well worth it. Je

RE: CF-Talk V1 #61

2000-10-15 Thread Jeremy Allen
Thanks for letting us know... Jeremy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Michelle Plahmer Sent: Sunday, October 15, 2000 10:36 PM To: CF-Talk Subject: Re: CF-Talk V1 #61 I will be out of the office Monday, October 16 through Friday,

RE: [Re: [Re: [Re: [RE: Source Control for Linux]]]]

2000-10-13 Thread Jeremy Allen
My experience has been nothing but positive with WinCVS it is a very well designed client :) No need on possibly dampening other peoples opinons just because of a little difficulty. It works really nicely it just takes a little reading and documentation to set it up. -Original Message-

RE: slightly ot: math question, needed for cold fusion programming

2000-10-12 Thread Jeremy Allen
Yes but you have to factor in the frequency of visitors by time as well, the chance increases at a certain time and decreases at another time, unless you are absolutely certain the time distrobution of visitors to your site is exact and a user comes ever 5 minutes on the nose... Jeremy

  1   2   3   >