Re: Off Topic - Open Source
I sent you a note off-list... On Wed, Apr 27, 2011 at 10:45 AM, Jenny Gavin-Wear wrote: > I would very much like to talk with someone who has Open Sourced their > software, if someone is willing to share their knowledge and experience. > > There may be opportunities for collaboration. ~| 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:344025 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm
RE: Off topic SQL question from a novice
Thanks so much I will try it out as soon I am able!! From: Jeff Congdon [mailto:[EMAIL PROTECTED] Sent: Wed 8/4/2004 1:02 PM To: CF-Talk Subject: Re: Off topic SQL question from a novice i'm guessing your "reivew" table schema, so change the B.* names accordingly: select a.HikeName, a.HikeID, a.HikeDate, a.HikeStars, COUNT(b.hikeid) from Hike A INNER JOIN HikeReview B ON A.hikid = B.hikeID group by a.hikename, a.hikeid, a.hikedate, a.hikestars order by HikeDate Desc John Munyan wrote: > Hi, I have 2 tables - the hike table which contains all the per hike > data. The second table is a user review table which is assoicated > with the Hike table by HikeID. > > > At any rate. I use a sql query to generate the left nav. It is > similiar to > > > select HikeName, HikeID, HikeDate, HikeStars > from Hike > order by HikeDate Desc > > > I want to add the count of users reviews to the menu system so people > can see what how many user reviews exist for each hike. This > information is in the UserReviews table. As I said releated by HikeID. > > > If I try a join I will get back mulitple rows since there is > invariably more UserReviews that 1. I want to bring back a count value. > > > It would seem like a sub query or something but I don't get how this > would be crafted. > > > I would like the return to be the above query plus one field which is > the count of reviews for each HikeId. > > > Thus- > > > Pinnacle Peak, HikeID 40, 6/11/03, 5, (count of records in UserReviews > where Hike.HikeId = UserReviews.HikeId) > > > Is this possible? I would prefer this to be agregated in a sql > statement since I am looping over all the records in the original > query and would have to write a second query in the loop and query the > UserReview table for the hike ID bringing back a the count. It would > be possible but I am thinking there must be a quick, more elegant > solution to this that probably someone more enlightened can just > rattle off. Any ideas? > > > Thanks, > > > John > > > Http://www.attrition.ws > [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]
Re: Off topic SQL question from a novice
i'm guessing your "reivew" table schema, so change the B.* names accordingly: select a.HikeName, a.HikeID, a.HikeDate, a.HikeStars, COUNT(b.hikeid) from Hike A INNER JOIN HikeReview B ON A.hikid = B.hikeID group by a.hikename, a.hikeid, a.hikedate, a.hikestars order by HikeDate Desc John Munyan wrote: > Hi, I have 2 tables - the hike table which contains all the per hike > data. The second table is a user review table which is assoicated > with the Hike table by HikeID. > > > At any rate. I use a sql query to generate the left nav. It is > similiar to > > > select HikeName, HikeID, HikeDate, HikeStars > from Hike > order by HikeDate Desc > > > I want to add the count of users reviews to the menu system so people > can see what how many user reviews exist for each hike. This > information is in the UserReviews table. As I said releated by HikeID. > > > If I try a join I will get back mulitple rows since there is > invariably more UserReviews that 1. I want to bring back a count value. > > > It would seem like a sub query or something but I don't get how this > would be crafted. > > > I would like the return to be the above query plus one field which is > the count of reviews for each HikeId. > > > Thus- > > > Pinnacle Peak, HikeID 40, 6/11/03, 5, (count of records in UserReviews > where Hike.HikeId = UserReviews.HikeId) > > > Is this possible? I would prefer this to be agregated in a sql > statement since I am looping over all the records in the original > query and would have to write a second query in the loop and query the > UserReview table for the hike ID bringing back a the count. It would > be possible but I am thinking there must be a quick, more elegant > solution to this that probably someone more enlightened can just > rattle off. Any ideas? > > > Thanks, > > > John > > > Http://www.attrition.ws > [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]
Re: Off Topic: Updating multiple framsets...
yes it is... i use it all the time... this refreshes 3 frames. put it in your action "cfm" file. - Original Message - From: "FlashGuy" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, June 27, 2002 4:22 PM Subject: Off Topic: Updating multiple framsets... > Hello, > > I have three frames setup. > > > | Frame 1 |Frame 2| Frame 3| > > > I have a link in "Frame 2" that when clicked displays a template in "Frame 3" with the filename and a submit button to execute the What I would like to happen automatically is after the delete completes, to have some code that does a "refresh" of "Frame 2" so the file deleted no longer gets listed. > > Is this possible with Javascript? > > > > Code here... > > > > mx > > > __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off Topic: Updating multiple framsets...
Will this work? parent.Frame2.location.href = 'frame2.cfm'; I don't think a reload is needed. Just place the code after the cffile code. Regards, Andrew > -Original Message- > From: FlashGuy [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 27, 2002 3:22 PM > To: CF-Talk > Subject: Off Topic: Updating multiple framsets... > > > Hello, > > I have three frames setup. > > > | Frame 1 |Frame 2| Frame 3| > > > I have a link in "Frame 2" that when clicked displays a > template in "Frame 3" with the filename and a submit button > to execute the What I would like to happen automatically is after the delete > completes, to have some code that does a "refresh" of "Frame > 2" so the file deleted no longer gets listed. > > Is this possible with Javascript? > > > > Code here... > > > > mx > > > __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
SOLVED RE: Off Topic
Mike, That worked! Thanks for all the kind help. Thanks to everyone else who responded as well. :-) Mike -Original Message- From: Michael Wilson [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 3:13 PM To: CF-Talk Subject: RE: Off Topic Hi, If I follow you correctly you want to do it onMouseover... The following will work for IE... I think 4.x and up. It doesn't work in NN 4.x, but I don't know about 6.x versions: Watch me get scared! You can use this for NN 4.x, however I haven't tested it in 6.x: My text link here You could do a browser sniff and use to determine which one to show the user, based on their browser. HTH, Mike > -Original Message- > From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] > Sent: Sunday, November 18, 2001 2:13 PM > To: CF-Talk > Subject: Off Topic > > > Sorry for posting this here but I could not find a CSS list > that had people responding on it.. ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off Topic
Hi, If I follow you correctly you want to do it onMouseover... The following will work for IE... I think 4.x and up. It doesn't work in NN 4.x, but I don't know about 6.x versions: Watch me get scared! You can use this for NN 4.x, however I haven't tested it in 6.x: My text link here You could do a browser sniff and use to determine which one to show the user, based on their browser. HTH, Mike > -Original Message- > From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] > Sent: Sunday, November 18, 2001 2:13 PM > To: CF-Talk > Subject: Off Topic > > > Sorry for posting this here but I could not find a CSS list > that had people responding on it.. ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Off Topic
> I thought maybe > TD.nav:hover{..} might work. I think in CSS2, in theory, you should be able to stick ":hover" after any selector and get the style to apply to mouseovers that element. But only IE4+ and NS6 (and Opera) support ":hover", and only for anchor tags at that. You'd have to use JavaScript to change styles with event handlers, or put ":hover" on the link and make sure the padding of the anchor element pushes out to the limits of the cell. - Gyrus ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off Topic
Sorry, I didn't read closer enough/catch what you were looking for. Here's a couple of examples you might modify to see if they get you what you're after...two ways of getting to the same place really. Likely won't work with NS4 though... 1) Switch Classes onMouseover: onmouseover="className='NEW_CLASS_NAME'" onmouseout="className='ORIGINAL_CLASS_NAME'" 2) Apply specific style attributes onMouseover: onmouseover="this.style.backgroundColor='#f7f7ce'; this.style.Color='#99'; this.style.cursor='hand'; this.style.border='1px solid Black';" onmouseout="this.style.backgroundColor='#ffcc33'; this.style.Color='#00' this.style.cursor=''; this.style.border='1px solid #FFCC33';" Not sure if either of these gets you what you are after. Let me know if not and I'll take another run at it. Ken -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:45 PM To: CF-Talk Subject: RE: Off Topic Ken, What I have is a table with 5 rows. Each row has a link in it. When you mouseover the link (cell) I am tyring to get the background of the entire cell to change not just the background of the text. What I have defined so far in the style is: TD.nav{font-family:Verdana; font-size:12px; font-weight:bold; text-align:left;} I am new to CSS so I am tyring my darndest to understand them, but its getting a bit frustrating with all the properties and possiblities. I thought maybe TD.nav:hover{..} might work. Does this clear my problem up at all? Thanks for the help Mike -Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:39 PM To: CF-Talk Subject: RE: Off Topic The presence of a link in the cell is irrelevant to the cells' BG color. Have you defined a style at the TD level, applied an existing style to that specific TD or defined specific styles at that level? Ken -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:13 PM To: CF-Talk Subject: Off Topic Sorry for posting this here but I could not find a CSS list that had people responding on it.. I signed up at 2 different ones. I am trying to figure out how to change the background color of a cell in a table that has a link in it. I can get the background color of the link itsel to change, but not the entire cell... Anyone know how to do this using CSS? Thanks and again I am sorry for the OT post. Michael T. Tangorre Resident Assistant - Brick Web Applications Developer A.U. Webteam Slave :-) AIM: CrazyFlash4 ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off Topic
Ken, What I have is a table with 5 rows. Each row has a link in it. When you mouseover the link (cell) I am tyring to get the background of the entire cell to change not just the background of the text. What I have defined so far in the style is: TD.nav{font-family:Verdana; font-size:12px; font-weight:bold; text-align:left;} I am new to CSS so I am tyring my darndest to understand them, but its getting a bit frustrating with all the properties and possiblities. I thought maybe TD.nav:hover{..} might work. Does this clear my problem up at all? Thanks for the help Mike -Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:39 PM To: CF-Talk Subject: RE: Off Topic The presence of a link in the cell is irrelevant to the cells' BG color. Have you defined a style at the TD level, applied an existing style to that specific TD or defined specific styles at that level? Ken -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:13 PM To: CF-Talk Subject: Off Topic Sorry for posting this here but I could not find a CSS list that had people responding on it.. I signed up at 2 different ones. I am trying to figure out how to change the background color of a cell in a table that has a link in it. I can get the background color of the link itsel to change, but not the entire cell... Anyone know how to do this using CSS? Thanks and again I am sorry for the OT post. Michael T. Tangorre Resident Assistant - Brick Web Applications Developer A.U. Webteam Slave :-) AIM: CrazyFlash4 ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off Topic
The presence of a link in the cell is irrelevant to the cells' BG color. Have you defined a style at the TD level, applied an existing style to that specific TD or defined specific styles at that level? Ken -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 2:13 PM To: CF-Talk Subject: Off Topic Sorry for posting this here but I could not find a CSS list that had people responding on it.. I signed up at 2 different ones. I am trying to figure out how to change the background color of a cell in a table that has a link in it. I can get the background color of the link itsel to change, but not the entire cell... Anyone know how to do this using CSS? Thanks and again I am sorry for the OT post. Michael T. Tangorre Resident Assistant - Brick Web Applications Developer A.U. Webteam Slave :-) AIM: CrazyFlash4 ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Off Topic
Never mind, I was not reading your post correctly... DB - Original Message - From: "Philip Arnold - ASP" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 11:29 AM Subject: RE: Off Topic > > Sorry for posting this here but I could not find a CSS list that > > had people > > responding on it.. I signed up at 2 different ones. > > I am trying to figure out how to change the background color of a > > cell in a > > table that has a link in it. I can get the background color of the link > > itsel to change, but not the entire cell... Anyone know how to do > > this using CSS? > > Put an onMouseOver on the > > Philip Arnold > Director > Certified ColdFusion Developer > ASP Multimedia Limited > T: +44 (0)20 8680 1133 > > "Websites for the real world" > > ** > This email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed. If you have received this email in error please notify > the system manager. > ** > > > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Off Topic
Hello world Just put this in the class file that is in your TD tag background-color : Black; DB - Original Message - From: "Tangorre, Michael T." <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2001 11:12 AM Subject: Off Topic > Sorry for posting this here but I could not find a CSS list that had people > responding on it.. I signed up at 2 different ones. > I am trying to figure out how to change the background color of a cell in a > table that has a link in it. I can get the background color of the link > itsel to change, but not the entire cell... Anyone know how to do this using > CSS? > > Thanks and again I am sorry for the OT post. > > Michael T. Tangorre > > > Resident Assistant - Brick > Web Applications Developer > A.U. Webteam Slave :-) > AIM: CrazyFlash4 > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off Topic
> Sorry for posting this here but I could not find a CSS list that > had people > responding on it.. I signed up at 2 different ones. > I am trying to figure out how to change the background color of a > cell in a > table that has a link in it. I can get the background color of the link > itsel to change, but not the entire cell... Anyone know how to do > this using CSS? Put an onMouseOver on the Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133 "Websites for the real world" ** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. ** ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: (Admin) RE: Off topic posts was (OT?) TomCat vs JRun
People people volume volume... OT- kidding. the politics too.. can Michael kill those threads also :) that is what makes this palce a community.. the pleasantries, the frustration, politics and inappropriate behavior... :) -paris [finding the future in the past, passing the future in the present] [connecting people, places and things] -Original Message- From: [EMAIL PROTECTED] (Michael Dinowitz) Date: Wed, 05 Sep 2001 10:55:51 -0400 Subject: (Admin) RE: Off topic posts was (OT?) TomCat vs JRun > Discussion about if a post is OT or not should be moved to the > CF-Community > list. Discussion about the differences between JRun and TomCat should > be on > the JRun list. If you want to talk about the JRun tag pack that > simulated > CF in some ways then you can mention it here even though its a JRun > issue. > > > At 10:42 AM 9/5/01, you wrote: > >Hahaha. This is gonna be one of those funky threads, where the > gripe > >about OT posts is actually longer than the original OT post! Kinda > >defeats the purpose, eh? Glad that I was able to contribute :) > > > >--- > >Billy Cravens > >Web Development, EDS > >[EMAIL PROTECTED] > > > > > >-Original Message- > >From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] > >Sent: Tuesday, September 04, 2001 5:39 PM > >To: CF-Talk > >Subject: RE: Off topic posts was (OT?) TomCat vs JRun > > > > > >My thoughts exactly! Sometimes, these OT posts help me out more > that > >posts made to this list about CF (fundamentals, etc.)! > > > >- SVV > > > >-Original Message- > >From: Shawn Grover [mailto:[EMAIL PROTECTED]] > >Sent: Tuesday, September 04, 2001 3:23 PM > >To: CF-Talk > >Subject: RE: Off topic posts was (OT?) TomCat vs JRun > > > >If it's clearly marked as OT, why not? Afterall, where else can one > >find a collective gathering of experts in related fields such as > this > >list provides??? (not claiming to be one of those experts, but they > are > >out there). > > > >I find the topics which are marked OT, are related to some aspect of > web > >development, which may or may not help us all out. > > > >Just my thoughts. > > > >Shawn Grover > > > >-Original Message- > >From: Zac Belado [mailto:[EMAIL PROTECTED]] > >Sent: Tuesday, September 04, 2001 4:07 PM > >To: CF-Talk > >Subject: Off topic posts was (OT?) TomCat vs JRun > > > > > > > (OT?) TomCat vs JRun > > > >No question at all. Its totally OT. > > > >What do people think about the increasing number of off topic posts > on > >this list? Should they be tolerated as long as they are marked as > OT? Or > >should we be actively trying to ensure that the signal to noise > ratio on > >this list stays low by asking that people not post off topic > material? > > > ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts was (OT?) TomCat vs JRun
Where else (aside from a JRun mailing list, of course) would you expect to find more knowledge about JRun than in the community of people built around it's flagship relative - ColdFusion? Not to mention the fact that many on-topic threads eventually deteriorate into off-topic post discussions. -Tyson -Original Message- From: Zac Belado [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 04, 2001 5:39 PM To: CF-Talk Subject: RE: Off topic posts was (OT?) TomCat vs JRun > I for one welcome SOT posts. I've never been one to wear CF blinders. Certainly valid in a general sense but I'm not sure if that is an valid comment for a list whose purpose is the discussion of CF related matters. I'm pretty darned interested in Tomcat myself (to drag this back to the context in which it was originally posted) but is CF-talk the place to be discussing this? Is the community list better? ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
(Admin) RE: Off topic posts was (OT?) TomCat vs JRun
Discussion about if a post is OT or not should be moved to the CF-Community list. Discussion about the differences between JRun and TomCat should be on the JRun list. If you want to talk about the JRun tag pack that simulated CF in some ways then you can mention it here even though its a JRun issue. At 10:42 AM 9/5/01, you wrote: >Hahaha. This is gonna be one of those funky threads, where the gripe >about OT posts is actually longer than the original OT post! Kinda >defeats the purpose, eh? Glad that I was able to contribute :) > >--- >Billy Cravens >Web Development, EDS >[EMAIL PROTECTED] > > >-Original Message- >From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, September 04, 2001 5:39 PM >To: CF-Talk >Subject: RE: Off topic posts was (OT?) TomCat vs JRun > > >My thoughts exactly! Sometimes, these OT posts help me out more that >posts made to this list about CF (fundamentals, etc.)! > >- SVV > >-Original Message- >From: Shawn Grover [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, September 04, 2001 3:23 PM >To: CF-Talk >Subject: RE: Off topic posts was (OT?) TomCat vs JRun > >If it's clearly marked as OT, why not? Afterall, where else can one >find a collective gathering of experts in related fields such as this >list provides??? (not claiming to be one of those experts, but they are >out there). > >I find the topics which are marked OT, are related to some aspect of web >development, which may or may not help us all out. > >Just my thoughts. > >Shawn Grover > >-Original Message- >From: Zac Belado [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, September 04, 2001 4:07 PM >To: CF-Talk >Subject: Off topic posts was (OT?) TomCat vs JRun > > > > (OT?) TomCat vs JRun > >No question at all. Its totally OT. > >What do people think about the increasing number of off topic posts on >this list? Should they be tolerated as long as they are marked as OT? Or >should we be actively trying to ensure that the signal to noise ratio on >this list stays low by asking that people not post off topic material? > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts was (OT?) TomCat vs JRun
It's a question about another Allaire (I STILL can't mutter the word Macromedia) product, so how far off topic is it, really? He marked his post as off-topic. I would recommend that if you can't stand off-topic posts (even though it's not that far off topic), perhaps you should build a filter or a rule that scans messages on this mailing for the case-sensitive string "OT" and files them in the garbage. Better yet, just don't read them. Simple question, simple answer. :) -Tyson -Original Message- From: Zac Belado [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 04, 2001 5:07 PM To: CF-Talk Subject: Off topic posts was (OT?) TomCat vs JRun > (OT?) TomCat vs JRun No question at all. Its totally OT. What do people think about the increasing number of off topic posts on this list? Should they be tolerated as long as they are marked as OT? Or should we be actively trying to ensure that the signal to noise ratio on this list stays low by asking that people not post off topic material? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts was (OT?) TomCat vs JRun
Hahaha. This is gonna be one of those funky threads, where the gripe about OT posts is actually longer than the original OT post! Kinda defeats the purpose, eh? Glad that I was able to contribute :) --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 04, 2001 5:39 PM To: CF-Talk Subject: RE: Off topic posts was (OT?) TomCat vs JRun My thoughts exactly! Sometimes, these OT posts help me out more that posts made to this list about CF (fundamentals, etc.)! - SVV -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 04, 2001 3:23 PM To: CF-Talk Subject: RE: Off topic posts was (OT?) TomCat vs JRun If it's clearly marked as OT, why not? Afterall, where else can one find a collective gathering of experts in related fields such as this list provides??? (not claiming to be one of those experts, but they are out there). I find the topics which are marked OT, are related to some aspect of web development, which may or may not help us all out. Just my thoughts. Shawn Grover -Original Message- From: Zac Belado [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 04, 2001 4:07 PM To: CF-Talk Subject: Off topic posts was (OT?) TomCat vs JRun > (OT?) TomCat vs JRun No question at all. Its totally OT. What do people think about the increasing number of off topic posts on this list? Should they be tolerated as long as they are marked as OT? Or should we be actively trying to ensure that the signal to noise ratio on this list stays low by asking that people not post off topic material? ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts was (OT?) TomCat vs JRun
> It was just too complicated to set up, whereas TomCat is supposed to be a lot easier! You've got to be joking. My experience is exactly the opposite. Certainly for reasonably simple JSP's - that's as far as I've got - JRun works practically straight out of the box. It has a web-based administrator rather like CF. In fact I'd say the ease of use is its main virtue. And the documentation is excellent. With Tomcat you have to mess around with config files and a good dose of trial & error, like Apache. Nick ** Information in this email is confidential and may be privileged. It is intended for the addressee only. If you have received it in error, please notify the sender immediately and delete it from your system. You should not otherwise copy it, retransmit it or use or disclose its contents to anyone. Thank you for your co-operation. ** ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Off topic posts was (OT?) TomCat vs JRun
I hear you ... the Cobol bus is still running also. In a message dated 9/4/01 7:31:55 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: > Well I am happy staying on the CF bus. As a development language to be > compiled? into servlets. > > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts was (OT?) TomCat vs JRun
If things are marked OT people have a discretion not to read them. You can also set a filter on your email client to strip them off or dump them somewhere else. I like most of the OT stuff because it is web related and to think that the only part of the web world is CF is a little naive (no disrespect to anyone). Quite often you have to mix things up to deliver a good quality system. Cleary there have been some posts that are way off the beaten track and they should be stopped but they appear to be in the minority. Kevin Parker Web Services Manager WorkCover Corporation [EMAIL PROTECTED] www.workcover.com p: +61 8 82332548 f: +61 8 82332000 m: 0418 806 166 -Original Message- From: Nick Texidor [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 5 September 2001 8:38:AM To: CF-Talk Subject: Re: Off topic posts was (OT?) TomCat vs JRun And lets face it.. At least this off topic post was still slightly CF related, well, MM related!! I'd actually like to know the answer to the question too.., I looked at Jrun for a while and felt that Allaire had turned it into a bloated product. It was just too complicated to set up, whereas TomCat is supposed to be a lot easier! on 5/9/01 8:22 AM, Shawn Grover at [EMAIL PROTECTED] wrote: > If it's clearly marked as OT, why not? Afterall, where else can one find a > collective gathering of experts in related fields such as this list > provides??? (not claiming to be one of those experts, but they are out > there). > > I find the topics which are marked OT, are related to some aspect of web > development, which may or may not help us all out. > > Just my thoughts. > > Shawn Grover > > -Original Message- > From: Zac Belado [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, September 04, 2001 4:07 PM > To: CF-Talk > Subject: Off topic posts was (OT?) TomCat vs JRun > > >> (OT?) TomCat vs JRun > > No question at all. Its totally OT. > > What do people think about the increasing number of off topic posts on this > list? Should they be tolerated as long as they are marked as OT? Or should > we be actively trying to ensure that the signal to noise ratio on this list > stays low by asking that people not post off topic material? > ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts was (OT?) TomCat vs JRun
not sure why I have to validate myself - probably a losing argument anyway, but the interactive mapping is to be included in a CF site (or several CF sites). This sample was taken from a PHP site, I am going to the same. I haven't gotten too far, but I am told I need to install TomCat (or other) on my server to handle communications to the mapping server. http://www.myservice.com:8080";> As an OT comment - I am impressed so far with www.cquay.com interested in other peoples impressions, and/or recommendations on interactive mapping services. I am most interested in geo-coding my advertisers, and being able to map facilities and other locations. (Note: if I understand correctly the cquay.com service will allow me to syndicate my locations and other data to other services subscribers. ie I may have demographic data by postal code, events by address. etc... example: a real estate relocation site, can tap into information created by my memberbase - half baked ideas - but brainstorming anyway ... Eric Dawson From: "Zac Belado" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> Subject: RE: Off topic posts was (OT?) TomCat vs JRun Date: Tue, 04 Sep 2001 15:39:28 -0700 > I for one welcome SOT posts. I've never been one to wear CF blinders. Certainly valid in a general sense but I'm not sure if that is an valid comment for a list whose purpose is the discussion of CF related matters. I'm pretty darned interested in Tomcat myself (to drag this back to the context in which it was originally posted) but is CF-talk the place to be discussing this? Is the community list better? ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Off topic posts was (OT?) TomCat vs JRun
Well I am happy staying on the CF bus. As a development language to be compiled? into servlets. Eric Dawson From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> Subject: Re: Off topic posts was (OT?) TomCat vs JRun Date: Tue, 04 Sep 2001 18:17:30 EDT I for one welcome SOT posts. I've never been one to wear CF blinders. I'm sure everyone will not agree with this ... but CF marketshare will diminish. It will be encroached on by JSP and J2EE etc. So an OT? on Tomcat vice JRun is just that OT? IMHO Cheers, Bill In a message dated 9/4/01 6:07:24 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: > > No question at all. Its totally OT. > > What do people think about the increasing number of off topic posts on this > list? Should they be tolerated as long as they are marked as OT? Or should > we be actively trying to ensure that the signal to noise ratio on this list > stays low by asking that people not post off topic material? > ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Off topic posts was (OT?) TomCat vs JRun
And lets face it.. At least this off topic post was still slightly CF related, well, MM related!! I'd actually like to know the answer to the question too.., I looked at Jrun for a while and felt that Allaire had turned it into a bloated product. It was just too complicated to set up, whereas TomCat is supposed to be a lot easier! on 5/9/01 8:22 AM, Shawn Grover at [EMAIL PROTECTED] wrote: > If it's clearly marked as OT, why not? Afterall, where else can one find a > collective gathering of experts in related fields such as this list > provides??? (not claiming to be one of those experts, but they are out > there). > > I find the topics which are marked OT, are related to some aspect of web > development, which may or may not help us all out. > > Just my thoughts. > > Shawn Grover > > -Original Message- > From: Zac Belado [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, September 04, 2001 4:07 PM > To: CF-Talk > Subject: Off topic posts was (OT?) TomCat vs JRun > > >> (OT?) TomCat vs JRun > > No question at all. Its totally OT. > > What do people think about the increasing number of off topic posts on this > list? Should they be tolerated as long as they are marked as OT? Or should > we be actively trying to ensure that the signal to noise ratio on this list > stays low by asking that people not post off topic material? > ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts
CF-COMMUNITY... :) its for all the off topic posts..and a whole lot more! Check CF Community and Register TODAY! FREE!FREE! FREE! And if you register NOW! You will receive a Complimentary MUFFIN! YES! That's CFCOMMUNITY for all your OFF Topic needs! -Gel -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] IMHO, I think OT is fine. Even though a focused CF list is nice - I deal with much more than just CF on a daily basis and many OT posts are something I have had a question on myself. I know I am not one of the greatest minds on this list, but I help where I can. Since we all have worked successfully to create this absolutely irreplaceable resource (I can't imagine not having it) I see OT posts as a natural extension. Just my two cents :-3 Tony Gruen ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts was (OT?) TomCat vs JRun
> Afterall, where else can > one find a > collective gathering of experts in related fields such as this list > provides??? And there are any number of effective resources where these questions can be answered as well. In fact there are also some lists that do specifically discuss a broader range of net related topics (the-list for one). I'm not sure if its really fair to be clogging the in-boxes of people with messages about JavaScript etc when these other resources (or even google) exist. ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts was (OT?) TomCat vs JRun
My thoughts exactly! Sometimes, these OT posts help me out more that posts made to this list about CF (fundamentals, etc.)! - SVV -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 04, 2001 3:23 PM To: CF-Talk Subject: RE: Off topic posts was (OT?) TomCat vs JRun If it's clearly marked as OT, why not? Afterall, where else can one find a collective gathering of experts in related fields such as this list provides??? (not claiming to be one of those experts, but they are out there). I find the topics which are marked OT, are related to some aspect of web development, which may or may not help us all out. Just my thoughts. Shawn Grover -Original Message- From: Zac Belado [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 04, 2001 4:07 PM To: CF-Talk Subject: Off topic posts was (OT?) TomCat vs JRun > (OT?) TomCat vs JRun No question at all. Its totally OT. What do people think about the increasing number of off topic posts on this list? Should they be tolerated as long as they are marked as OT? Or should we be actively trying to ensure that the signal to noise ratio on this list stays low by asking that people not post off topic material? ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts
IMHO, I think OT is fine. Even though a focused CF list is nice - I deal with much more than just CF on a daily basis and many OT posts are something I have had a question on myself. I know I am not one of the greatest minds on this list, but I help where I can. Since we all have worked successfully to create this absolutely irreplaceable resource (I can't imagine not having it) I see OT posts as a natural extension. Just my two cents :-3 Tony Gruen -Original Message- >>What do people think about the increasing number of off topic posts on this list? ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts was (OT?) TomCat vs JRun
> I for one welcome SOT posts. I've never been one to wear CF blinders. Certainly valid in a general sense but I'm not sure if that is an valid comment for a list whose purpose is the discussion of CF related matters. I'm pretty darned interested in Tomcat myself (to drag this back to the context in which it was originally posted) but is CF-talk the place to be discussing this? Is the community list better? ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
RE: Off topic posts was (OT?) TomCat vs JRun
If it's clearly marked as OT, why not? Afterall, where else can one find a collective gathering of experts in related fields such as this list provides??? (not claiming to be one of those experts, but they are out there). I find the topics which are marked OT, are related to some aspect of web development, which may or may not help us all out. Just my thoughts. Shawn Grover -Original Message- From: Zac Belado [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 04, 2001 4:07 PM To: CF-Talk Subject: Off topic posts was (OT?) TomCat vs JRun > (OT?) TomCat vs JRun No question at all. Its totally OT. What do people think about the increasing number of off topic posts on this list? Should they be tolerated as long as they are marked as OT? Or should we be actively trying to ensure that the signal to noise ratio on this list stays low by asking that people not post off topic material? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: Off topic posts was (OT?) TomCat vs JRun
I for one welcome SOT posts. I've never been one to wear CF blinders. I'm sure everyone will not agree with this ... but CF marketshare will diminish. It will be encroached on by JSP and J2EE etc. So an OT? on Tomcat vice JRun is just that OT? IMHO Cheers, Bill In a message dated 9/4/01 6:07:24 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: > > No question at all. Its totally OT. > > What do people think about the increasing number of off topic posts on this > list? Should they be tolerated as long as they are marked as OT? Or should > we be actively trying to ensure that the signal to noise ratio on this list > stays low by asking that people not post off topic material? > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
Re: OFF TOPIC - HEALTH INSURANCE
Dan, Thanks for backin my action man. :-) We talked off line already - its all cool. Steve - Original Message - From: "Dan O'Keefe" <[EMAIL PROTECTED]> > He apologized immediately after that as a mistake. Lighten up. > > Dan > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED]
RE: OFF TOPIC - HEALTH INSURANCE
He apologized immediately after that as a mistake. Lighten up. Dan -Original Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 08, 2000 10:27 AM To: CF-Talk Subject: Re: OFF TOPIC - HEALTH INSURANCE Why is this wasting space in MY mailbox? Take it off list please. At 09:26 PM 11/7/00 -0800, Stephen M. Aylor wrote: >John, > >I rec'd the quote(s) back from the broker this afternoon via snail. Im >reviewing them. Couple things come to mind. > >1. Did you guys want me to come over and vist to discuss?? I figure you've >been thru the Health insurance Dawg and Pony a couple times .. > >2. What are some of the things you liked about HealthNet? Price? > >3. Do we have any physicians that are a must? > >4. Whats more important - lower out of pocket costs to employees or choice >of Dr.'s? > >5. What % of the employee premium is "EmployER" paid? Dependent premium? > >6. Out of State Employees? > >All the best, > >Stephen M. Aylor >Aylor Insurance Agency, Inc. >"Specialized insurance for Technology Risks" >[EMAIL PROTECTED] >949.581.2333 voice >949.581.2814 fax > > >--- - >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ >Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED] --- Peter Theobald, Chief Technology Officer LiquidStreaming http://www.liquidstreaming.com [EMAIL PROTECTED] Phone 1.212.545.1232 x204 Fax 1.212.545.0938 To put this contact information into your Palm device, click here: http://www.coola.com/cgi-bin/addinfo.cgi?pid=15803&rid=972879910&type=A Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED] Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED]
Re: OFF TOPIC - HEALTH INSURANCE
Why is this wasting space in MY mailbox? Take it off list please. At 09:26 PM 11/7/00 -0800, Stephen M. Aylor wrote: >John, > >I rec'd the quote(s) back from the broker this afternoon via snail. Im >reviewing them. Couple things come to mind. > >1. Did you guys want me to come over and vist to discuss?? I figure you've >been thru the Health insurance Dawg and Pony a couple times .. > >2. What are some of the things you liked about HealthNet? Price? > >3. Do we have any physicians that are a must? > >4. Whats more important - lower out of pocket costs to employees or choice >of Dr.'s? > >5. What % of the employee premium is "EmployER" paid? Dependent premium? > >6. Out of State Employees? > >All the best, > >Stephen M. Aylor >Aylor Insurance Agency, Inc. >"Specialized insurance for Technology Risks" >[EMAIL PROTECTED] >949.581.2333 voice >949.581.2814 fax > > > >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ >Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message >with 'unsubscribe' in the body to [EMAIL PROTECTED] --- Peter Theobald, Chief Technology Officer LiquidStreaming http://www.liquidstreaming.com [EMAIL PROTECTED] Phone 1.212.545.1232 x204 Fax 1.212.545.0938 To put this contact information into your Palm device, click here: http://www.coola.com/cgi-bin/addinfo.cgi?pid=15803&rid=972879910&type=A Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED]
Re: OFF TOPIC - HEALTH INSURANCE
Can I be any bigger of an arse - damn!!! - Original Message - From: "Stephen M. Aylor" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, November 07, 2000 9:26 PM Subject: Re: OFF TOPIC - HEALTH INSURANCE Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED]
Re: OFF TOPIC - HEALTH INSURANCE
John, I rec'd the quote(s) back from the broker this afternoon via snail. Im reviewing them. Couple things come to mind. 1. Did you guys want me to come over and vist to discuss?? I figure you've been thru the Health insurance Dawg and Pony a couple times .. 2. What are some of the things you liked about HealthNet? Price? 3. Do we have any physicians that are a must? 4. Whats more important - lower out of pocket costs to employees or choice of Dr.'s? 5. What % of the employee premium is "EmployER" paid? Dependent premium? 6. Out of State Employees? All the best, Stephen M. Aylor Aylor Insurance Agency, Inc. "Specialized insurance for Technology Risks" [EMAIL PROTECTED] 949.581.2333 voice 949.581.2814 fax Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED]
Re: Off Topic: Dual Hard drives
What about installing dual boot Win98/Win2K on ONE drive? At 01:04 PM 10/10/00 -0400, Russell Jones wrote: >I've got a dual boot WinME + Win2000 Server on two separate hard drives. > >piece of cake ... I almost didn't even have to be there. > >-- >Russell Jones >Webmaster >ImproveNow.com >Phone: 207.236.0146 >e-mail: [EMAIL PROTECTED] > >> From: "Dave Hannum" <[EMAIL PROTECTED]> >> Reply-To: [EMAIL PROTECTED] >> Date: Tue, 10 Oct 2000 12:01:55 -0400 >> To: CF-Talk <[EMAIL PROTECTED]> >> Subject: Re: Off Topic: Dual Hard drives >> >> Install Win98 FIRST. Win2000 will prompt you asking if you want to set up >> dual boot. Works like a charm for me. Installs very easily this way. >> >> Dave >> >> >> >> = >> "What we need is a list of specific unknown problems we will encounter" >> >> David Hannum >> Web Analyst/Programmer >> Ohio University >> [EMAIL PROTECTED] >> (740) 597-2524 >> >> >> >> - Original Message - >> From: "HappyToad.com" <[EMAIL PROTECTED]> >> To: "CF-Talk" <[EMAIL PROTECTED]> >> Sent: Tuesday, October 10, 2000 11:50 AM >> Subject: Off Topic: Dual Hard drives >> >> >> I am setting up dual hard drives so I can run Win 98 for my personal stuff >> and Win 2000 for development software. Anybody done this? Any pointers? >> Help is appreciated. >> Rich >> >> >> -- >> 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. >> > >-- >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. --- Peter Theobald, Chief Technology Officer LiquidStreaming http://www.liquidstreaming.com [EMAIL PROTECTED] Phone 1.212.545.1232 x204 Fax 1.212.545.0938 -- 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: Off Topic: Dual Hard drives
I've got a dual boot WinME + Win2000 Server on two separate hard drives. piece of cake ... I almost didn't even have to be there. -- Russell Jones Webmaster ImproveNow.com Phone: 207.236.0146 e-mail: [EMAIL PROTECTED] > From: "Dave Hannum" <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > Date: Tue, 10 Oct 2000 12:01:55 -0400 > To: CF-Talk <[EMAIL PROTECTED]> > Subject: Re: Off Topic: Dual Hard drives > > Install Win98 FIRST. Win2000 will prompt you asking if you want to set up > dual boot. Works like a charm for me. Installs very easily this way. > > Dave > > > > = > "What we need is a list of specific unknown problems we will encounter" > > David Hannum > Web Analyst/Programmer > Ohio University > [EMAIL PROTECTED] > (740) 597-2524 > > > > - Original Message - > From: "HappyToad.com" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Tuesday, October 10, 2000 11:50 AM > Subject: Off Topic: Dual Hard drives > > > I am setting up dual hard drives so I can run Win 98 for my personal stuff > and Win 2000 for development software. Anybody done this? Any pointers? > Help is appreciated. > Rich > > > -- > 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. > -- 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: Off Topic: Dual Hard drives
That exaclty why I can't ditch 98. I lose my scanner, flash drive, and a printer. Rich -Original Message- From: Simon Halcrow [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 10, 2000 12:01 PM To: CF-Talk Subject: RE: Off Topic: Dual Hard drives Yep - got Win98 & Win2k on the same machine. No problems...one thing I would suggest though - give Win2k a LOT of space (since you've got 2 HDDs you'll be OK). Install Win98 first, Win2k second, otherwise you have problems with Win98 overwriting system files on 1st HDD. Apart from that - it'll run like a dream. Must admit though, if I could get ALL my hardware/drivers/software working in Win2k, I'd ditch 98...if only Sapphire Technologies Ltd. Secure in the Knowledge Simon Halcrow Web Developer E [EMAIL PROTECTED] T +44 (0)1642 702100 F +44 (0)1642 702119 W www.sapphire.net > -Original Message- > From: HappyToad.com [SMTP:[EMAIL PROTECTED]] > Sent: 10 October 2000 16:51 > To: CF-Talk > Subject: Off Topic: Dual Hard drives > > I am setting up dual hard drives so I can run Win 98 for my personal stuff > and Win 2000 for development software. Anybody done this? Any pointers? > Help is appreciated. > Rich > > -- > > 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. --- Any opinions expressed in this message are those of the individual and not necessarily the company. This message and any files transmitted with it are confidential and solely for the use of the intended recipient. If you are not the intended recipient or the person responsible for delivering to the intended recipient, be advised that you have received this message in error and that any use is strictly prohibited. Sapphire Technologies Ltd http://www.sapphire.net -- 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: Off Topic: Dual Hard drives
Yep - got Win98 & Win2k on the same machine. No problems...one thing I would suggest though - give Win2k a LOT of space (since you've got 2 HDDs you'll be OK). Install Win98 first, Win2k second, otherwise you have problems with Win98 overwriting system files on 1st HDD. Apart from that - it'll run like a dream. Must admit though, if I could get ALL my hardware/drivers/software working in Win2k, I'd ditch 98...if only Sapphire Technologies Ltd. Secure in the Knowledge Simon Halcrow Web Developer E [EMAIL PROTECTED] T +44 (0)1642 702100 F +44 (0)1642 702119 W www.sapphire.net > -Original Message- > From: HappyToad.com [SMTP:[EMAIL PROTECTED]] > Sent: 10 October 2000 16:51 > To: CF-Talk > Subject: Off Topic: Dual Hard drives > > I am setting up dual hard drives so I can run Win 98 for my personal stuff > and Win 2000 for development software. Anybody done this? Any pointers? > Help is appreciated. > Rich > > -- > > 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. --- Any opinions expressed in this message are those of the individual and not necessarily the company. This message and any files transmitted with it are confidential and solely for the use of the intended recipient. If you are not the intended recipient or the person responsible for delivering to the intended recipient, be advised that you have received this message in error and that any use is strictly prohibited. Sapphire Technologies Ltd http://www.sapphire.net -- 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: Off Topic: Dual Hard drives
Install Win98 FIRST. Win2000 will prompt you asking if you want to set up dual boot. Works like a charm for me. Installs very easily this way. Dave = "What we need is a list of specific unknown problems we will encounter" David Hannum Web Analyst/Programmer Ohio University [EMAIL PROTECTED] (740) 597-2524 - Original Message - From: "HappyToad.com" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, October 10, 2000 11:50 AM Subject: Off Topic: Dual Hard drives I am setting up dual hard drives so I can run Win 98 for my personal stuff and Win 2000 for development software. Anybody done this? Any pointers? Help is appreciated. Rich -- 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: OFF topic - Autocad images
>From within versions of AutoCAD 12-2000i there is a function within that application that can create a web enabled drawing file (DWF). After which you can go to AutoDesk's web site www.autodesk.com and pick up a free DWF viewer/web plug in. This viewer will allow you to zoom, pan, print the drawing over the internet. There are other plugins that will allow you view AutoCAD's DWG files natively, but they do cost money. Boris -Original Message- From: Gavin Myers [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 21, 2000 10:49 AM To: CF-Talk Cc: '[EMAIL PROTECTED]' Subject:RE: OFF topic - Autocad images Not exactily autocade. at least to the extent of my knowledge... with Macromedia Director you can get a plugin that allowes you to import 3d studio max images and display them, but taking that and porting it out to the web is another story. Flash deffinatly wont do it. Are you looking to have it just a picture, or a moveable picture, like a real 3d image? -Original Message- From: Michael Gagnon [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 21, 2000 9:18 AM To: CF-Talk Subject: OFF topic - Autocad images Hi! Is there an application out there that would permit me to show Autocad images on the web? Thanks! -- 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. -- 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: OFF topic - Autocad images
Take a look at Voloview: http://www3.autodesk.com/adsk/section/0,,231612,00.html -Original Message- > From: Michael Gagnon [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 21, 2000 9:18 AM > To: CF-Talk > Subject: OFF topic - Autocad images > > > Hi! > > Is there an application out there that would permit me > to show Autocad images on the web? -- 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: OFF topic - Autocad images
Not exactily autocade. at least to the extent of my knowledge... with Macromedia Director you can get a plugin that allowes you to import 3d studio max images and display them, but taking that and porting it out to the web is another story. Flash deffinatly wont do it. Are you looking to have it just a picture, or a moveable picture, like a real 3d image? -Original Message- From: Michael Gagnon [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 21, 2000 9:18 AM To: CF-Talk Subject: OFF topic - Autocad images Hi! Is there an application out there that would permit me to show Autocad images on the web? Thanks! -- 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: Off topic:(?)23 member CF team to back you on projects
Not until you tell us what happened to those 2 guys. -David On Fri, 15 Sep 2000 14:49:23 -0700 Donovan Rittenbach <[EMAIL PROTECTED]> writes: > We have a 25 member team to back you up on any of your projects, for > reasonable rates. Bid only on per project basis. Outsourcing is > the > future for companies that want to grow without a lot of overhead > from > full time employees. Let us help you. > > Donovan Rittenbach YOU'RE PAYING TOO MUCH FOR THE INTERNET! Juno now offers FREE Internet Access! Try it today - there's no risk! For your FREE software, visit: http://dl.www.juno.com/get/tagj. -- 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: Off Topic: News Ticker
This isn't a ticker (I don't think - more a search thing) but is a good service and supports CF (and many others) http://w.moreover.com/ Kevin Parker Service and Communication WorkCover Corporation [EMAIL PROTECTED] ph: +61 8 82332548 fax: +61 8 82332000 -Original Message- From: David Cummins [mailto:[EMAIL PROTECTED]] Sent: Thursday, 17 August 2000 12:27:PM To: [EMAIL PROTECTED] Subject: Re: Off Topic: News Ticker Have a look at 7am.com. They also sell advertising, and cunningly slip the ads between the news... ;) David James Taavon wrote: > > Anybody know where I can download a news ticker that displays news of > the day with updates throughout the day. > > Thanks in advance! > -- > 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. This e-mail is intended for the use of the addressee only. It may contain information that is protected by legislated confidentiality and/or is legally privileged. If you are not the intended recipient you are prohibited from disseminating, distributing or copying this e-mail. Any opinion expressed in this e-mail may not necessarily be that of the WorkCover Corporation of South Australia. Although precautions have been taken, the sender cannot warrant that this e-mail or any files transmitted with it are free of viruses or any other defect. If you have received this e-mail in error, please notify the sender immediately by return e-mail and destroy the original e-mail and any copies. -- 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: Off Topic: News Ticker
Have a look at 7am.com. They also sell advertising, and cunningly slip the ads between the news... ;) David James Taavon wrote: > > Anybody know where I can download a news ticker that displays news of > the day with updates throughout the day. > > Thanks in advance! > -- > 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: Off Topic: News Ticker
If this is not for a website and it is for your desktop go to entrypoint.com James Taavon wrote: > Anybody know where I can download a news ticker that displays news of > the day with updates throughout the day. > > Thanks in advance! > -- > 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: Off Topic: News Ticker
thanks, that is actually the one I was looking for, just forgot the name Howie Hamlin wrote: > > You could try 7am.com. > > Regards, > > Howie > > - Original Message - > From: "James Taavon" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, August 16, 2000 12:33 PM > Subject: Re: Off Topic: News Ticker > > > however, is there one for US, i am going to try to search the ABC, NBC, > > CBS, CNN and TNT for a ticker. > > > > -- > 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: Off Topic: News Ticker
You could try 7am.com. Regards, Howie - Original Message - From: "James Taavon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 16, 2000 12:33 PM Subject: Re: Off Topic: News Ticker > however, is there one for US, i am going to try to search the ABC, NBC, > CBS, CNN and TNT for a ticker. > -- 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: Off Topic: News Ticker
however, is there one for US, i am going to try to search the ABC, NBC, CBS, CNN and TNT for a ticker. James Taavon wrote: > > yep, that is what i meant, thanks. > > Adrian Cooper wrote: > > > > - Original Message - > > From: "Andy Ewings" <[EMAIL PROTECTED]> > > Sent: 16 August 2000 16:54 > > > > > Yep.download from the BBC web site > > > > > > www.bbc.co.uk/newsline > > > > I assume James meant on a Web page. The way I read the above is that it is for > > a PC desktop. > > > > Adrian Cooper. > > > > -- > > 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. -- 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: Off Topic: News Ticker
yep, that is what i meant, thanks. Adrian Cooper wrote: > > - Original Message - > From: "Andy Ewings" <[EMAIL PROTECTED]> > Sent: 16 August 2000 16:54 > > > Yep.download from the BBC web site > > > > www.bbc.co.uk/newsline > > I assume James meant on a Web page. The way I read the above is that it is for > a PC desktop. > > Adrian Cooper. > > -- > 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: Off Topic: News Ticker
I'm not uber-l33t with JavaScript, but I think you could modify the script to make the article array be an included, separate file, and have that file be a CFML template that pulls down news that pulls the articles from an external source (perhaps even implementing WDDX, as Rich Wild mentioned? That would be neat.). Am I completely off my rocker? -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270 www.solutionmasters.com 704.563.5559 x 228 Voice 704.849.9291 Fax -Original Message- From: James Taavon <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Wednesday, August 16, 2000 12:08 PM Subject: Re: Off Topic: News Ticker >that is cool, but i am looking for a current events news ticker with >live news feeds. > >Jamie Keane wrote: >> >> You might try http://www.dynamicdrive.com/dynamicindex2/crosstick.htm >> >> HTH, >> Jamie >> >> -- >> Jamie Keane >> Programmer >> SolutionMasters, Inc. >> 9111 Monroe Rd., Suite 100 >> Charlotte, NC 28270 >> www.solutionmasters.com >> 704.563.5559 x 228 Voice >> 704.849.9291 Fax >> -Original Message- >> From: James Taavon <[EMAIL PROTECTED]> >> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> >> Date: Wednesday, August 16, 2000 11:51 AM >> Subject: Off Topic: News Ticker >> >> >Anybody know where I can download a news ticker that displays news of >> >the day with updates throughout the day. >> > >> >Thanks in advance! >> >--- >> --- >> >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. >--- --- >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: Off Topic: News Ticker
- Original Message - From: "Andy Ewings" <[EMAIL PROTECTED]> Sent: 16 August 2000 16:54 > Yep.download from the BBC web site > > www.bbc.co.uk/newsline I assume James meant on a Web page. The way I read the above is that it is for a PC desktop. Adrian Cooper. -- 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: Off Topic: News Ticker
that is cool, but i am looking for a current events news ticker with live news feeds. Jamie Keane wrote: > > You might try http://www.dynamicdrive.com/dynamicindex2/crosstick.htm > > HTH, > Jamie > > -- > Jamie Keane > Programmer > SolutionMasters, Inc. > 9111 Monroe Rd., Suite 100 > Charlotte, NC 28270 > www.solutionmasters.com > 704.563.5559 x 228 Voice > 704.849.9291 Fax > -Original Message- > From: James Taavon <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> > Date: Wednesday, August 16, 2000 11:51 AM > Subject: Off Topic: News Ticker > > >Anybody know where I can download a news ticker that displays news of > >the day with updates throughout the day. > > > >Thanks in advance! > >--- > --- > >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. -- 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: Off Topic: News Ticker
Or you could use a normal ticker (or no java at all - much nicer :) and feed it with the included HTML-ized results of pre-stored CFHTTP headline grabs or deserialised WDDX packets (eg from moreover.com) updated throughout the day through the liberal use of CFSchedule. Neater, more control over content, own branding, cheaper, more l33t ;) -- Rich Wild Senior Web Designer --- e-mango.com ltd Tel: 01202 587 400 Lansdowne Place Fax: 01202 587 401 17 Holdenhurst Road Bournemouth Mailto:[EMAIL PROTECTED] BH8 8EW, UK http://www.e-mango.com --- This message may contain information which is legally privileged and/or confidential. If you are not the intended recipient, you are hereby notified that any unauthorised disclosure, copying, distribution or use of this information is strictly prohibited. Such notification notwithstanding, any comments, opinions, information or conclusions expressed in this message are those of the originator, not of e-mango.com ltd, unless otherwise explicitly and independently indicated by an authorised representative of e-mango.com ltd. --- -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: 16 August 2000 16:54 To: '[EMAIL PROTECTED]' Subject: RE: Off Topic: News Ticker Yep.download from the BBC web site www.bbc.co.uk/newsline -Original Message- From: James Taavon [mailto:[EMAIL PROTECTED]] Sent: 16 August 2000 16:52 To: [EMAIL PROTECTED] Subject: Off Topic: News Ticker Anybody know where I can download a news ticker that displays news of the day with updates throughout the day. Thanks in advance! -- 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. -- 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: Off Topic: News Ticker
You might try http://www.dynamicdrive.com/dynamicindex2/crosstick.htm HTH, Jamie -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270 www.solutionmasters.com 704.563.5559 x 228 Voice 704.849.9291 Fax -Original Message- From: James Taavon <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Wednesday, August 16, 2000 11:51 AM Subject: Off Topic: News Ticker >Anybody know where I can download a news ticker that displays news of >the day with updates throughout the day. > >Thanks in advance! >--- --- >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: Off Topic: News Ticker
Yep.download from the BBC web site www.bbc.co.uk/newsline -Original Message- From: James Taavon [mailto:[EMAIL PROTECTED]] Sent: 16 August 2000 16:52 To: [EMAIL PROTECTED] Subject: Off Topic: News Ticker Anybody know where I can download a news ticker that displays news of the day with updates throughout the day. Thanks in advance! -- 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: Off Topic - programmers will relate
Yea, Verily... At 9:42 AM -0400 7/5/2000, Russell, Bonnie wrote: >My boss just put this article on my desk, it's enjoyable reading for any web >developer > >http://www.internetworldnews.com/article_bot.asp?inc=070100/7.01UnderDev&iss >ue=7.01 -- Archives: http://www.eGroups.com/list/cf-talk 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.