Re: Advertising CF as a server side technology

2008-03-07 Thread Ali
Thanks. I will do my best. Ali On Wed, Mar 5, 2008 at 2:43 AM, jalpino [EMAIL PROTECTED] wrote: Hi Ali, Glad to see that you are all about CF and want to share the love, this kind of enthusiasm is great! A lot of the questions you are asking have already been answered, running a few quick

Get RemoteObject from Flex to Railo to work :-(

2008-03-07 Thread Tom Chiverton
[xposted from railo-talk because no one there seems to have the answers] I've got the latest released Railo Comunity edition, with bundled Resin, using mod_caucho to run everything through Apache 2.2 on Ubuntu linux. I've set up what seems like a dead simple test. t.cfc has one remote method,

Re: XML Expert help with namespaces.. (Isaac???)

2008-03-07 Thread Dominic Watson
Yep, I remembered you after I posted my original message Dave; should have posted XML Expert Help (Isaac?? Dave???). :p Is there anyway to map those namespaces in CF do you know? Dominic On 07/03/2008, Dave Watts [EMAIL PROTECTED] wrote: By default namespace are you talking about something

RE: XML Expert help with namespaces.. (Isaac???)

2008-03-07 Thread Dave Watts
Yep, I remembered you after I posted my original message Dave; should have posted XML Expert Help (Isaac?? Dave???). It's just as well you didn't, because I don't know how to reference the default namespace of a child element in XPath, when it differs from the default namespace of the root

Re: XML Expert help with namespaces.. (Isaac???)

2008-03-07 Thread Dominic Watson
It's just as well you didn't, because I don't know how to reference the default namespace of a child element in XPath, when it differs from the default namespace of the root element Lol, I'm guessing it can't be done natively then - I'll look into what can be done, hopefully make a udf or

Coldfusion and Active Directory

2008-03-07 Thread Ian Vaughan
I am using CF 7 Enterprise and I am looking to bulk update active directory with content contained in a .csv file. The csv file contains content such as telephone number, e-mail address, name, job title, section etc. How can I use CFLDAP to bulk update records in Active Directory from the

Outputing MS Word file to PDF using CFDOCUMENT.

2008-03-07 Thread Timmy Tom
Please help , My requirement is - I need to create a PDF file from gif, jpg, png, word and pdf. I able to create PDF taking gif, jpg, png. but when I tried to create for word it is not output word file content to PDF. Sample code I Used. cfdocument format=PDF cfdocumentsection

Re: Hosting Problems

2008-03-07 Thread Richard White
thanks very much i think this is the answer seeing as it has a couple of votes now :) richard ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Hosting Problems

2008-03-07 Thread Richard White
Hi Adam Thanks for your reply. the predominant problem we have had with host my site is mis information. they just seem to want to provide an answer irregardless of whether it is right or wrong. there has been some form of misinformation every week. however, to give you an idea: we got onto

Re: Hosting Problems

2008-03-07 Thread Richard White
so much so that i very often forget who we host with) when we do they're usually pretty responsive. this sounds like paradise :) we will definitely try them out, thanks very much ~| Adobe® ColdFusion® 8 software 8 is the most

Total Amount of a column fields

2008-03-07 Thread Ali
Hi: I have a very basic question. How can I sum all the fields in a database column? For example I need the total amount of the money that everybody donated. Table: table_donations Columns: personID, personName, Donation I want to know the total amount of all donations. How can I add all the

Re: Total Amount of a column fields

2008-03-07 Thread Dominic Watson
SELECT SUM (Donation) as donationsTotal FROM table_donations Do a google on TSQL Aggregate Functions to get more samples of stuff like this (Max, Min, etc) HTH Dominic -- Blog it up: http://fusion.dominicwatson.co.uk ~|

RE: Coldfusion and Active Directory

2008-03-07 Thread Dawson, Michael
I do something very similar every morning. I get a daily download from our main business system that is pushed into SQL Server. I then use CF to make changes, to AD, where needed. Eventually, I will do all of this in SQL Server as an SSIS package, but for now, CF is perfect. First, load your

Re: CFFILE/CFFTP errors - JVM issues?

2008-03-07 Thread J W
This is getting crazy... All that I can figure it was directly related to the Microsoft patches I put in at the end of February. The problems started happening then. No other upgrades were done to either machine. Jeff On Wed, Mar 5, 2008 at 10:00 PM, Gerald Guido [EMAIL PROTECTED] wrote: I

Re: Total Amount of a column fields

2008-03-07 Thread Ali
Oh Thanks I found a very good way thanks to builderau ( http://www.builderau.com.au/architect/database/soa/Query-of-Queries-in-ColdFusion-MX/0,339024547,320275211,00.htm ) I found an easy way. I leave my code here for others who have the same problem. It uses Query of queries. An easy and awesome

Re: Find/Replace for Eclipse

2008-03-07 Thread Matthew Williams
One final note on this. I had to update to the latest version of Aptana to resolve a bug related to drag an drop. It prevented me from accessing CSS/JS files from within Aptana. Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog

Re: CFFILE/CFFTP errors - JVM issues?

2008-03-07 Thread Tom Chiverton
On Thursday 06 Mar 2008, J W wrote: I am getting these all over the place and randomly. Various flavors, appending, ftping, saving, etc and its wreaking havoc on my systems My guess would be a race condition of some sort. Could multiple tasks be accessing the same file at the same time ?

Re: Total Amount of a column fields

2008-03-07 Thread Dominic Watson
If all the first query is for is getting the data ready for the QoQ, you could rewrite it as: cfquery name=testme datasource=#Request.DSN# SELECT Sum(Price) FROM tbl_AccOrders /cfquery cfoutput#testme.pricetotal#/cfoutput Still very simple and readable and no need for the QoQ (QoQ can be flaky

Re: Application UI's

2008-03-07 Thread Gerald Guido
I just ran into this this morning. Very nice icon sets. http://www.smashingmagazine.com/2008/03/06/35-really-incredible-free-icon-sets/ On Thu, Mar 6, 2008 at 4:25 PM, Mike Little [EMAIL PROTECTED] wrote: hi guys, just about to start a business to business web application for a client.

Re: jquery treeview navigation refresh problem

2008-03-07 Thread Paul Ihrig
adam. thats way over my head man... if you can explain how i could do this better, i would so appreciate it. heck maybe there is a better solution. its just a bunch of nested lists. with cfif checking location on what to show. On Thu, Mar 6, 2008 at 11:10 PM, Adam Haskell [EMAIL PROTECTED]

Re: Total Amount of a column fields

2008-03-07 Thread James McCullough
If you just need the output just use the first query and do this : cfoutput#ArraySum(rstest['myPrice'])# Oh Thanks I found a very good way thanks to builderau ( http://www.builderau.com. au/architect/database/soa/Query-of-Queries-in-ColdFusion-MX/0, 339024547,320275211,00.htm ) I found an

Re: jquery treeview navigation refresh problem

2008-03-07 Thread Sonny Savage
I am also a YUI guy, and not jQuery, but here goes... To this element: ul id=navLeft class=treeview-blue treeview Add: style=display: none; In the JavaScript that turns the list into a pretty tree view, set the display of that element to block. jQuery has special functions for that I believe,

RE: Hosting Problems

2008-03-07 Thread Adam Churvis
Was that a CFX tag, or a CF-based custom tag? Respectfully, Adam Phillip Churvis President Productivity Enhancement -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2008 7:44 AM To: CF-Talk Subject: Re: Hosting Problems Hi Adam Thanks

Re: [OT] CFBB

2008-03-07 Thread Rick Root
On 3/6/08, Rick Sanders [EMAIL PROTECTED] wrote: Hey Rick, Thanks for the tip. Do you have a link to cfmbb? Google is your friend. Hopefully you've already hit google to answer that question rather than waiting 24 hours for me to answer www.cfmbb.org Rick -- Rick Root New Brian Vander Ark

Re: jquery treeview navigation refresh problem

2008-03-07 Thread Paul Ihrig
Sonny! awsome! that looks to have worked. but now i have a menu shows up blank for a bit while page loads. not sure how to get the menu to render before every thing else.. would YUI be a better route to go? i have never used it. some other questions.. 1. i have all my pages which call cfinclude

DNS solutions

2008-03-07 Thread Jake Pilgrim
I'm looking to set up a new colocated server. I know I can run my own DNS server, and my provider is willing to set up a secondary nameserver for me on a separate box, but basically both boxes are going to be across the room from each other - I'd like some geographic dispersion (the proverbial

Re: CF7/JRun/Axis and web services

2008-03-07 Thread Tom Chiverton
On Friday 07 Mar 2008, Manuel Ruf wrote: I need to implement a complex web service in ColdFusion which has to be able to deal with complex data types and inheritance. I know how to develop a web service in CF using cfc or jws but they don't provide the flexibility I need. As CF runs on JRun

RE: DNS solutions

2008-03-07 Thread Russ
I just use wherever the domain is bought... (gododdy). Also rackspace. Never had an issue with either. Russ -Original Message- From: Jake Pilgrim [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2008 11:13 AM To: CF-Talk Subject: DNS solutions I'm looking to set up a new

Re: Hosting Problems

2008-03-07 Thread Richard White
Yes it was a cfx tag. i know they have to review them themselves for malicious code especially on a shared server but we only know that now because of the problems we went through. if they had communicated effectively then this would not been a major problem and caused us many hours and much

Re: Hosting Problems

2008-03-07 Thread Gerald Guido
With all the problems ppl are having with hosting companies here I would venture to say that many would be better off slapping Centos Linux on an commodity desktop (w/a gaming MB that supports RAID), compiling and installing ISP Config http://www.ispconfig.org/downloads.htm and Webmin

CF7/JRun/Axis and web services

2008-03-07 Thread Manuel Ruf
I need to implement a complex web service in ColdFusion which has to be able to deal with complex data types and inheritance. I know how to develop a web service in CF using cfc or jws but they don't provide the flexibility I need. As CF runs on JRun and uses Axis I tried to include a

Re: cf8 server monitor on red hat

2008-03-07 Thread Vance Whitehouse
Thanks Adrian. I created a simple test cfchart page in the hopes that if I could get that working I could get the Server Monitor working. My cfchart test page (chart.cfm) does successfully create a .swf in the proper folder, and it appears to leave the proper space for the .swf in the

Re: Hosting Problems

2008-03-07 Thread Richard White
thanks gerald, you would think that with such a competitive market that at least one company would have the foresight to focus on their customer service! thanks ill look into this one richard ~| Adobe® ColdFusion® 8

Re: Hosting Problems

2008-03-07 Thread Mike Kear
Gerald, while it might look to you as though lots of people are having problems with hosting, I'd suggest it's not the case. THere are thousands upon thousands of coldfusion web sites, and millions of non-coldfusion web sites. There are HUNDREDs of hosting companies, large and small. Of

Re: DNS solutions

2008-03-07 Thread Jake Pilgrim
Plausible solution i know, but in my case it just isn't practical. Some of my clients like to keep their registrar accounts in their control (then tend to forget the password on mission critical launch days). The current situation is probably 1000 domains strewn across 50 or so registrars - I'd

Re: jquery treeview navigation refresh problem

2008-03-07 Thread Sonny Savage
I've used YUI alot, it's very different from jQuery. YUI has a flyout-style menu system that I really like: http://developer.yahoo.com/yui/menu/ Your question about once per session could be done, but you'd have to do all your page loads through ajax and content replacement or by using frames.

RE: Get RemoteObject from Flex to Railo to work :-(

2008-03-07 Thread Kevin Aebig
Hey Tom, If you want to simply use a native support for AMF0, you can use the NetConnection class instead. I've successfully used it with old versions of AMFPHP and CF. Cheers, !k -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2008 3:24 AM To:

RE: CF7/JRun/Axis and web services

2008-03-07 Thread Ruf Manuel (SEFH 2)
I have to code a web service with a message oriented architecture which we already use in our .NET and Java apps. It has to have both a ResponseBase and a RequestBase class with a few attributes. Now if my web service wants to send back an image file it would have two classes called

RE: DNS solutions

2008-03-07 Thread Paul Vernon
You might like to look at http://www.everydns.net/ It's not free but it's close. They offer primary and secondary services with 4 geographically diverse DNS servers. Paul ~| Adobe® ColdFusion® 8 software 8 is the most

Re: Hosting Problems

2008-03-07 Thread Richard White
In fact, my second largest client is hosted at hostmysite and we've had no issues with them at all in the 2 years since i inherited the site.Not one. your very lucky. makes me wonder why we are having so many. i actually think this could be down to 2 issues: firstly, you must have a

Re: DNS solutions

2008-03-07 Thread Kenneth Ferguson
http://www.public-dns.org/ ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive:

Re: Hosting Problems

2008-03-07 Thread Mike Kear
You make too many assumptions, Richard. I inherited a site that was developed already. I have the job of maintaining it and building new stuff on it. It's on HostMySite shared space.I also look at things from teh other side of the fence too, because i have a small hosting company of my own,

Re: Hosting Problems

2008-03-07 Thread Richard White
Glad your having good experiences. richard ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive:

Re: Hosting Problems

2008-03-07 Thread Richard White
You make too many assumptions, Richard. for clarification purposes you stated that it was your second largest client. i apologize for the assumption that you were a big company. that was my fault. again, glad your having good experiences though. if they are working for you then thats fantastic

Re: Hosting Problems

2008-03-07 Thread Gerald Guido
Gerald's assertion that anyone in shared hosting would be better off building their own server. Come again? I said what? On Fri, Mar 7, 2008 at 1:34 PM, Mike Kear [EMAIL PROTECTED] wrote: You make too many assumptions, Richard. I inherited a site that was developed already. I have the job

Re: cfc and saas

2008-03-07 Thread Nicholas Stein
Thanks you all. I got it. Here it is, and it is vey cl! Create this cfc on one machine with database access. The output=No is important. The access=remote is important. The returntype=query is important Save it as Vendors.cfc !--- Vendors.cfc --- cfcomponent displayname=Vendors

Re: XML Expert help with namespaces.. (Isaac???)

2008-03-07 Thread s. isaac dealey
A default namespace has no prefix: xmlns=http://somenamespaceURI; Dominic's document has two default namespaces: one at the root element, and one at a child element. The one at the child element controls the default namespace only for its contents. Oh... thanks Dave, makes a lot of sense

Re: Hosting Problems

2008-03-07 Thread Jochem van Dieten
Richard White wrote: however, seeing as it is a global market then hosting companies need to wake up to the concept of 'globalization'. Even though host my site finally agreed it took alot of our time writting emails, getting silly responses etc... just to get them to upgrade our server

Re: XML Expert help with namespaces.. (Isaac???)

2008-03-07 Thread s. isaac dealey
Lol, I'm guessing it can't be done natively then - I'll look into what can be done, hopefully make a udf or something. It doesn't know how to pick up the sub-node's namespace using namespace-uri()? root xmlns=foo sub1 xmlns=bar sub2 / /sub1 /root

Re: Total Amount of a column fields

2008-03-07 Thread Ali
Thank you all. I will try to avoid QoQ when I don't need them. and thanks for the tip for using arrays. That really helps to keep things simple and fluent. Thanks everybody Just another question. Is it better to use SELECT * if I want to select all the columns or better I write each as i did in

Re: Total Amount of a column fields

2008-03-07 Thread Charlie Griefer
On Fri, Mar 7, 2008 at 11:50 AM, Ali [EMAIL PROTECTED] wrote: Just another question. Is it better to use SELECT * if I want to select all the columns or better I write each as i did in the query of this post. if you -really- need them all, then there's probably not quite as much wrong with

Re: Total Amount of a column fields

2008-03-07 Thread Ali
Oh yeah. They are solid reasons. What software do you recommend to write my queries with? I mean a visual query builder that makes things easier. I tried the one(query builder) in CF8 Report builder but it has its own limitations. I really appreciate your replies. thanks Ali On Fri, Mar 7, 2008

Re: Hosting Problems

2008-03-07 Thread Richard White
vps! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive:

Re: Total Amount of a column fields

2008-03-07 Thread Charlie Griefer
On Fri, Mar 7, 2008 at 12:05 PM, Ali [EMAIL PROTECTED] wrote: Oh yeah. They are solid reasons. What software do you recommend to write my queries with? I mean a visual query builder that makes things easier. I tried the one(query builder) in CF8 Report builder but it has its own

Re: Having problems with simple cfgrid test

2008-03-07 Thread Daniel Roberts
OK, THIS IS DRIVING ME CRAZY I tried some examples (such as http://tutorial1.learncf.com/) and they won't work. I did notice that the error in ajax debugger said /componentName.cfc so I threw the test directly into the web root and then it worked. I thought maybe that meant I needed to give

Re: Hosting Problems

2008-03-07 Thread Richard White
Since this is about shared hosting it is only fair to assume there were other clients on that server. And since HostMySite is an American company and CF is better represented in the US then in Europe it is only fair to assume the majority of the clients on that server were American

Re: Hosting Problems

2008-03-07 Thread Richard White
Since this is about shared hosting it is only fair to assume there were other clients on that server. And since HostMySite is an American company and CF is better represented in the US then in Europe it is only fair to assume the majority of the clients on that server were American

Re: Hosting Problems

2008-03-07 Thread Phillip Vector
$7.95 a year for reliable CF7 hosting. www.hostingatoz.com. Tell em LanceLake sent ya. :) On Fri, Mar 7, 2008 at 12:34 PM, Richard White [EMAIL PROTECTED] wrote: Since this is about shared hosting it is only fair to assume there were other clients on that server. And since HostMySite is

Re: Hosting Problems

2008-03-07 Thread Brian Burkett
I would suggest lfchosting.com I've used them for years without any complaints. Great customer service and if there ever has been an issue, its resolved very quickly. Brian. Hi, we have had severe problems with host my site hosting company, can anyone recommend a really good

Re: CFFILE/CFFTP errors - JVM issues?

2008-03-07 Thread J W
I am moving all my code to new file system CF8 functions fileOpen(), fileWriteLine(), fileClose(), etc and see if this helps... Jeff On Fri, Mar 7, 2008 at 9:27 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 06 Mar 2008, J W wrote: I am getting these all over the place and

Re: XML Expert help with namespaces.. (Isaac???)

2008-03-07 Thread Dominic Watson
It doesn't know how to pick up the sub-node's namespace using namespace-uri()? Sure it does. Actually I've been using local-name()=elementName. However, my XPath statement is reasonably complex and is quite unreadable because of this. Wouldn't be so bad using some arbritary prefix that was

What are the Necessary Code Changes for Migrating from 6.1 to 8?

2008-03-07 Thread Nathan Wells
I posted this issue on Adobe's forums a couple of days ago, but I haven't had any (good) responses. I recently started testing our code, which is running on 6.1, on ColdFusion 8. Almost immediately, I started getting errors. It was quickly obviously that it was due to a change in the

Re: What are the Necessary Code Changes for Migrating from 6.1 to 8?

2008-03-07 Thread Cutter (CFRelated)
3,000 template system, and the only change we had to worry about was removing the cfbreak tags inside cfcase blocks. (this did not apply to 'break' inside 'case' script statements, where it is necessary) Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7

Re: What are the Necessary Code Changes for Migrating from 6.1 to 8?

2008-03-07 Thread Adam Haskell
Nate I understand your frustration we have approx 500 Legacy CF application from CF5 we are migrating to CF8, and we've been dealing with daul versions for at least 3 years now... Any rate enough about that, have you taken advantage of the code analyzer in the CF administrator? While not perfect

Re: What are the Necessary Code Changes for Migrating from 6.1 to 8?

2008-03-07 Thread Nathan Wells
Nate I understand your frustration we have approx 500 Legacy CF application from CF5 we are migrating to CF8, and we've been dealing with daul versions for at least 3 years now... Any rate enough about that, have you taken advantage of the code analyzer in the CF administrator? While not perfect

RE: What are the Necessary Code Changes for Migrating from 6.1 to 8?

2008-03-07 Thread Russ
Yea there was a thing recently that I posted where the behavior changed between CF7 and CF8 (without even any documentation I believe), and nobody here even though that it was a bug. I think the only thing to do would be to test you app well on CF8 before migrating and maybe even set up a

Help with cfdiv on mac browser.

2008-03-07 Thread NUGROHO NOTO
I have a 2 related select, which customer choose paytype and shipment type ShipID From these 2 parameters... it calls chooseShipper.cfm to calculate the cost. cfdiv ID=div01

Re: Hosting Problems

2008-03-07 Thread Gerald Guido
Mike, I think you may have mistaken me for the Straw Man. Regards, Gerald -- I am always doing that which I can not do, in order that I may learn how to do it. - Pablo Picasso ~| Adobe® ColdFusion® 8 software 8 is the most

Re: XML Expert help with namespaces.. (Isaac???)

2008-03-07 Thread s. isaac dealey
It doesn't know how to pick up the sub-node's namespace using namespace-uri()? Sure it does. Oh I get what you were asking now... Yeah, I haven't even tried to use XPath to do anything like that outside of XSL. -- s. isaac dealey ^ new epoch isn't it time for a change?

Re: What are the Necessary Code Changes for Migrating from 6.1 to 8?

2008-03-07 Thread s. isaac dealey
I believe there's a what's new in the language reference for each version in both the livedocs and the optional doc set you can install with the server. I'm actually a bit surprised that you're getting errors on QuerySetCell when moving up from 6.1 to 8. I know that they added an argument, I've

Re: Hosting Problems

2008-03-07 Thread Mike Kear
I was just going by this, which you posted here in this thread a few hours ago: [quote] With all the problems ppl are having with hosting companies here I would venture to say that many would be better off slapping Centos Linux on an commodity desktop (w/a gaming MB that supports RAID),

wierd 500 error

2008-03-07 Thread Ray Champagne
I have a co-worker running a T-43 with XP Pro and IIS 5.1/CF8 who is getting a weird 500 error when trying to view any CF site locally that has an Application.cfc file. I don't have the error right in front of me, but it mentions a problem with OnSessionStart in the 500 error output. I have

Re: wierd 500 error

2008-03-07 Thread Matthew Williams
I ran into this about two weeks back whilst trying to test ISAPI_rewrite on my XP laptop as well. I already had Apache installed, but I wanted to test under IIS. I've since given up as it seems 5.1 is a bastard child of IIS 5. Does it need to be IIS? Or will Apache suffice? Maybe your

Re: wierd 500 error

2008-03-07 Thread Crow T. Robot
I *could* have him try the Apache route, yea. The problem is that we want our developers to be running the same server/CF combo that is running on the dev server (which is the same as staging, which is the same as prod, etc), so as to avoid any indiscrepancies in our overall development

query help

2008-03-07 Thread Josh McKinley
I've got three tables like this (simplified): USERS user_id user_name DOCS doc_id doc_name USER_DOCS signoff_id user_id doc_id I need all user names and doc names where the combination doesn't exist in the signoff table USER_DOCS. For example, user 12 hasn't signed of on doc 9 and user 6

Re: query help

2008-03-07 Thread Josh McKinley
By the way, this is a MySQL DB. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive:

Re: Hosting Problems

2008-03-07 Thread Gerald Guido
You make too many assumptions, Mike. :) On Fri, Mar 7, 2008 at 9:39 PM, Mike Kear [EMAIL PROTECTED] wrote: I was just going by this, which you posted here in this thread a few hours ago: [quote] With all the problems ppl are having with hosting companies here I would venture to say that

Re: query help

2008-03-07 Thread Dae
I've never worked in MySQL, but take a look at the below. It should get you in the right direction. BTW, it's a 2 step process. 1st, your combining the User and Docs tables to get a list. Then you take that list and bounce it agaist the USER_DOCS table and show anything where SIGNOFF is NULL.

Misreading

2008-03-07 Thread dontgd
I am fully unsubscribing from these lists because of the amount of semi and non professionals willfully trying to stir up trouble where no trouble exists. I think you need to ask yourselves, am I putting forth the best public image of my company or myself with my posts. If not, then ask

Re: Misreading

2008-03-07 Thread Larry C. Lyons
If you're unsubscribing then why moan and complain? Simply leave the list, Its quite unprofessional in and of itself. Just quit without the sniping. On Fri, Mar 7, 2008 at 9:53 AM, [EMAIL PROTECTED] wrote: I am fully unsubscribing from these lists because of the amount of semi and non

RE: Misreading

2008-03-07 Thread Erika L. Walker
+ A million for Larry ... : -Original Message- : From: Larry C. Lyons [mailto:[EMAIL PROTECTED] : Sent: Friday, March 07, 2008 10:20 AM : To: CF-Jobs-Talk : Subject: Re: Misreading : : If you're unsubscribing then why moan and complain? Simply leave the : list, Its quite unprofessional

Re: Misreading

2008-03-07 Thread Larry C. Lyons
thx Erika. One thing I've noticed about other developer lists I'm on (such as Java and CSS) is that the same stuff happens there, only in many cases its even worse. I do not think that Java, CSS, usability etc in any way can be considered to be examples of industries in trouble. Its just people.

RE: ColdFusion Developer to work on .NET migration

2008-03-07 Thread Steve Blades
I publicly apologize for stirring the pot. I thought it was a valid question, so that the individual posting the position would receive valid responses from people qualified for the work at hand, wanting a position of the nature of the one being offered. It wasn't meant to cause a mess. I,