Re: RegEx to find a date in a string

2007-05-03 Thread Michael Dinowitz
I'd be hesitant to use {1,} as the modifier as it is totally open ended. [0-9]{1,} will match 9, 99 and 999. If a month/date can be one or two numbers then I can see using {1,2}. I used {2} assuming that the month/date would always be a 2 digit number. for those not in the know, {1} is a mo

Re: RegEx to find a date in a string

2007-05-03 Thread Michael Dinowitz
Do you want it 'smart' or just plain? [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9] This simply says 4 numbers followed by a dash followed by 2 numbers followed by a dash followed by 2 numbers then a space then 2 numbers,a colon, 2 numbers, a colon, 2 numbers, a period and then a s

Re: Unsubscribing

2007-04-26 Thread Michael Dinowitz
The issue is one of multiple accounts. You have 3 different email addresses set to three different accounts. You probably have at least one of these accounts as an alias of one of the others so it all looks like its coming to the same account but it's not. Did you click on the unsubscribe link o

(Admin) Please use proper lists

2007-04-23 Thread Michael Dinowitz
Just as a reminder: There are more lists on House of Fusion than CF-Talk and most of them are specialized to a particular subject. Please use CF-Talk for ColdFusion related questions. Use the other lists for questions that are not ColdFusion related. Some perfect examples include: CF-J

Re: Server Down?

2007-04-10 Thread Michael Dinowitz
I was off for holiday and did not see it until an hour or so. The mail server is on a separate box with it's own CF server so mail is not effected. I'm looking into what the problem is and it may well be an issue of overloading. The site traffic is increasing and the logging code I have may be s

Re: (Admin) New OT code problem

2007-04-06 Thread Michael Dinowitz
If you posted in the last 20 or so minutes, please resend so your posts get logged and sent out. Thanks Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: Fusion Authority(http://www.fusionauthority.com) Adobe Community Expert / Advanced Certified

(Admin) New OT code problem

2007-04-06 Thread Michael Dinowitz
The last few posts made to the list were blocked as being OT. This was a mistake based on some bad code. It should be fixed now. Sorry about that. Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: Fusion Authority(http://www.fusionauthority.com) Adobe

Re: Adobe takes UK price hikes to new level with CS3

2007-04-06 Thread Michael Dinowitz
sion.com/signin/lists.cfm Thank you Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: Fusion Authority(http://www.fusionauthority.com) Adobe Community Expert / Advanced Certified ColdFusi

Re: Urchin 5 filtering of ColdFusion Links

2007-04-05 Thread Michael Dinowitz
Could you give an example of what each of those urls would look like post Urchin 5? Is it a Search Engine Safe type of setup or something else? Search Engine Safe SES URLs http://www.fusionauthority.com/Techniques/4226-Search-Engine-Safe-SES-URLs.htm >Hi list, >I have shop-links like these: > >h

(Admin) New Lists

2007-03-29 Thread Michael Dinowitz
/groups/seo/ Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: Fusion Authority(http://www.fusionauthority.com) Adobe Community Expert / Advanced Certified ColdFusion Professional

Re: Is there an Apollo developer's mailing list?

2007-03-29 Thread Michael Dinowitz
If there is enough of a call for an Apollo list on House of Fusion then I'll have no choice but to make the Apollo list 'viewable'. It's already created, just hidden. ~| Deploy Web Applications Quickly across the enterprise with

Re: Digests still working for you?

2007-03-29 Thread Michael Dinowitz
I'll look into it asap (unless Judith goes into labor now). >Over the past 3 - 4 days my cf-talk and cf-community digests first >slowed to a trickle and now they seem to have stopped altogether. I >haven't received either for a couple of days. Is it just me? > >George

Re: Is there an Apollo developer's mailing list?

2007-03-28 Thread Michael Dinowitz
In order to be polite and avoid any conflict, I asked someone at Adobe about it (after creating the list but hiding the link to it). Their response was that Apollo was too new and having more lists than the 'official' one might dilute the focus (which I disagree with). I'm holding off the list f

(ot) forcing lowercase urls

2007-03-23 Thread Michael Dinowitz
it in IIS. Does anyone know if this is possible? Thanks Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: Fusion Authority(http://www.fusionauthority.com) Adobe Community Expert / Advanced Certified ColdFusion Profess

Re: Is there an Apollo developer's mailing list?

2007-03-21 Thread Michael Dinowitz
I'll have one up today. >I couldn't spot one apart from the Adobe forums? > >MD ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & Flex 2 Free Trial http://www.adobe.com/products/coldfusion/flex2/?sd

Re: CFCs and Best Practices

2007-03-18 Thread Michael Dinowitz
If Google Checkout takes it, we take it. We also take paypal but the paypal page is not up due to me being a bit bogged down (Judith will be giving birth in the next few days). If you want to use paypal, email me off list and I'll set you up. >Michael, thanks for the links. > >Do you take amex?

Re: CFCs and Best Practices

2007-03-18 Thread Michael Dinowitz
actices" on the ColdFusion Community Search at the top of every House of Fusion page. Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: Fusion Authority(http://www.fusionauthority.com) Adobe Community Expert / Advanced Certified ColdFusion Professio

Re: Could not unlock the named lock

2007-03-13 Thread Michael Dinowitz
The hotfix can be found here: http://www.adobe.com/go/kb400721 > Was this HotFix ever released? We are having this same issue and are > current with all updaters and hotfixes. ~| Macromedia ColdFusion MX7 Upgrade to MX7 & experi

Re: How to unsubscribe

2007-03-09 Thread Michael Dinowitz
I'll change the language on all of the bars to say Subscribe/Unsubscribe rather than Subscription. >Thank you to all for pointing out the obvious message below. > >However, it should also be easier to find on the website ... > >-Original Message- >From: Ben Doom [mailto:[EMAIL PROTECTED

Re: How to unsubscribe

2007-03-09 Thread Michael Dinowitz
And the subscription link on almost every page of the cf-talk list archive. >Try the link marked "unsubscribe" at the bottom of every email. :-) > >--Ben Doom > >Richard Colman wrote: >> I need to unsubscribe for a month while on vacation. >> >> I went to houseoffusion.com and can't find any way

Re: bad cfc practice but why?

2007-03-08 Thread Michael Dinowitz
This is not a rule of CFCs, just a 'suggestion' from some of the people using them. There logic is to separate the logic of an application from its presentation. This allows for easy change of the presentation without touching the logic. The argument is logical, but not necessarily the rule. I

(Admin) New features and request

2007-02-23 Thread Michael Dinowitz
and let me know. Also, if you find a post interesting, please feel free to use the "Digg It" button to let others know as well. I'll add 1 or 2 other buttons once I find which of these services are the best for what's here. Thanks Michael Dinowitz President: House of Fusion

ColdFusion Community Search

2007-02-16 Thread Michael Dinowitz
e.com/coop/cse?cx=003208873850437307260%3Adbdsbawqu68 Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: Fusion Authority(http://www.fusionauthority.com) Adobe Community Expert / Advanced Certified ColdFusion Profess

Re: Why is House Of Fusion posting email addresses?

2007-02-13 Thread Michael Dinowitz
An hour to fix and implement when I get to it. :) As for google, the site is VERY optimized for them and the pages will be overwritten in their cache within a day or two. Faster if I make an effort for it. Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher

Re: Why is House Of Fusion posting email addresses?

2007-02-13 Thread Michael Dinowitz
wrong, and caching a 'true' object per session is insane when each cached object has 95% the same code. But that's neither here nor there. Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: Fusion Authority(http://www.fusionauthority.co

Re: Why is House Of Fusion posting email addresses?

2007-02-13 Thread Michael Dinowitz
Wonderful. I love seeing things like this that has gotten through my filters. I take it as a challenge. It will be rectified within an hour. There are two items here. The first is a header block that has not been captured and masked. This is a no-no and my code should have handled it. This mea

Re: Why is House Of Fusion posting email addresses?

2007-02-13 Thread Michael Dinowitz
>I've just joined this list, and noticed that on House Of Fusion all email >addresses are published in the archives! Um, I don't see this at all especially as I've written a lot of code to make sure this does not happen. Can you point to a particular place where you see everyones email addresses?

Re: MORE spam...

2007-01-28 Thread Michael Dinowitz
No one would be forced to use the masking email address. It's an option. Actually, I've seen lists where the From is the list address and the to was the person receiving the mail. Having both the from and to set to CF-Talk might be legal. > Michael Dinowitz wrote: >>

Re: MORE spam...

2007-01-27 Thread Michael Dinowitz
I have a standard minimum for House of Fusion as it stands now. 10 million, cash. No stock, no promises, not 1 single penny less than 10. Anyone who is willing to pay that much now really is dedicated to the ColdFusion community. Of course, that number will rise as the site rises and at some po

Re: MORE spam...

2007-01-26 Thread Michael Dinowitz
> > But then, again people would just spam that "special" address and we > would be back where we began. *sigh* > > ~Brad > > -Original Message- > From: Michael Dinowitz [mailto:[EMAIL PROTECTED] > Sent: Friday, January 26, 2007 3:34 PM > To: CF-Tal

Re: MORE spam...

2007-01-26 Thread Michael Dinowitz
The new system will totally obscure the from address of any post sent out through the system. For example, you post will have a FROM line that looks like this: Jochem van Dieten <[EMAIL PROTECTED]> I'd like to ask you if you think that the null@ is a good idea based on the RFC? Will it cause po

Re: MORE spam...

2007-01-26 Thread Michael Dinowitz
I'm neck deep in a comment component that has to be done first. The email address hiding will be the top item on my list after this. > Now I've gotten yet another spam to my lists email address. > > Title is "Placement * Web Site" > > from Marlin Singler : > [EMAIL PR

Re: dynamic valuelist

2007-01-26 Thread Michael Dinowitz
uthority Quarterly Update Vol. 1, Issue 2, page 36 copyright Michael Dinowitz, licensed to Fusion Authority http://www.fusionauthority.com/quarterly/"; This is why Adrian's solution did not need to convert the query. It took advantage of the nature of queries and passed arguments. Note:

Re: dynamic valuelist

2007-01-26 Thread Michael Dinowitz
ask, I'll post it up for public use. >untested: > >ArrayToList(Arguments.Query[Arguments.Unique]) > > >On 26/01/07, Michael Dinowitz <[EMAIL PROTECTED]> wrote: >> ~| Upgrade to Adobe ColdF

dynamic valuelist

2007-01-26 Thread Michael Dinowitz
Here's an interesting one. A CF component method is passed a query and a string who's value is the name of one of the query's columns. I want to use the valuelist() function against the passed query and columnname. I can get it working using this: Arguments.Query is the query being pass

Re: Spam from OnlyWebsites?

2007-01-24 Thread Michael Dinowitz
A spammer got through to the HoF-Features list that way. Forced me to code a new anti-spam rule just for it. And it made someone get all pissy and think I was spamming him on purpose. I'm going to start the work for the masking of post names. The main requirement is to make sure I have a system

Re: Spam from OnlyWebsites?

2007-01-24 Thread Michael Dinowitz
A spammer in such a case would have to be subscribed to harvest email addresses. I've been planning a feature where I give a subscriber the option to 'hide' their email address. In such a case, any mail from them to the list will have a null address instead of a real one. Stops spam but also st

Bouncing spam posts

2007-01-18 Thread Michael Dinowitz
the list software's job easier. Thank you If you feel that having messages with spam headers should not be bounced, please let me know off list and I'll think about automatically removing them from a message subject (which I'm generally against) Michael Dinowitz President:

Re: Another spam filter test

2007-01-18 Thread Michael Dinowitz
cular care in how a message is sent to avoid these issues. Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: Fusion Authority(http://www.fusionauthority.com) Adobe Community Expert / Advanced Certified ColdFusion Professional - Original Message -

Re: Another spam filter test

2007-01-18 Thread Michael Dinowitz
t anyway) Im sure not everyone has that >access though. > >cheers > >-Original Message- >From: Michael Dinowitz [mailto:[EMAIL PROTECTED] >Sent: Thursday, January 18, 2007 9:47 AM >To: CF-Talk >Subject: Re: Another spam filter test > >I sent this information ov

Re: Another spam filter test

2007-01-18 Thread Michael Dinowitz
I sent this information over to Greg at AHPHosting (who have been giving me my hosting for something like 8 years) and he'll look into it. I've also added spam-med to my report list. Anyone posting with spam-low, spam-med, etc. will get a message saying that they should not post with a spam mess

Re: filter test... ignore

2007-01-18 Thread Michael Dinowitz
Please do not post test messages to this list. Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: Fusion Authority(http://www.fusionauthority.com) Adobe Community Expert / Advanced Certified ColdFusion Professional - Original Message - From

Re: Another spam filter test

2007-01-18 Thread Michael Dinowitz
Please do not post test messages to this list. Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: Fusion Authority(http://www.fusionauthority.com) Adobe Community Expert / Advanced Certified ColdFusion Professional - Original Message - From

Re: HoF (CF-Talk) Password Reminder (Not Working)

2007-01-05 Thread Michael Dinowitz
Anyone subscribed in any mode has full access to the lists through the archives. There's even an option to only post from the archives and not receive any mail at all. I'm going to have to write better copy for the list options and abilities. There's a lot more going on then most people know. :)

Re: HoF (CF-Talk) Password Reminder (Not Working)

2007-01-05 Thread Michael Dinowitz
I think that the email is going to a different account than you are expecting. The email was sent (twice today) and I've copied the info and sent it directly as well. I'm responding here because this is a common issue with people who subscribe with more than one posting address (a feature that

Re: Best practices - error handling

2007-01-04 Thread Michael Dinowitz
Let me dig up the ppt and post it up and see if I can do a voice over or something. On a related note, if anyone knows someone in the NY area who can take dictation and wants to hear me talking on a LOT of technical subjects, please contact me off list. I can get 3-4 articles out a week if I c

Re: dmoz

2006-12-27 Thread Michael Dinowitz
>> I'd be happy to compile a collection of all of the ColdFusion related >lists from Google, Yahoo, and independent sources (CFCDev, CFDJ, >> etc.) > >Go for it. I have 3 active yahoo groups lists (one with a lot of spam), the google groups archive for alt.comp.lang.coldfusion and CFCDev. I didn'

Re: dmoz

2006-12-27 Thread Michael Dinowitz
I don't expect every list, but entries for CF-Talk, CF-Community, CF-Jobs, and CF-Newbie would fit as those are the 'main' ColdFusion lists. The idea is just the same as having an entry for coldfusion-howto and coldfusionjobs on yahoo groups rather than just having an entry for yahoo groups. of

Re: dmoz

2006-12-27 Thread Michael Dinowitz
ecifically the ability to suggest >sites for inclusion. Still, I'd like to hear from the CF community >what they feel are the most useful sites for ColdFusion. If Michael >Dinowitz doesn't want that information spammed to this list feel free >to send it to me directly. (Putting "

Re: anyone using the DirectoryWatcher eventgateway?

2006-12-26 Thread Michael Dinowitz
The developer edition is restricted in the amount of threads it'll allow for gateways and probably has a limit on the queue that stores gateway jobs. The queue size on enterprise is 25000, but the stack size for development might be less than 10. If so, 'extra' items/events will be ignored. Fil

Re: anyone using the DirectoryWatcher eventgateway?

2006-12-26 Thread Michael Dinowitz
In the event gateway settings is an option for Event Gateway Processing Threads. What is yours set at? Also, what is your page timeout set at? My mail machine has it set to 4 threads (1 processor) and a requesttimeout of 300 (set in the application.cfc for the directory watcher template. I know

Re: CFMX CFMAIL and message-ID

2006-12-24 Thread Michael Dinowitz
You don't need to set your own message ID to create a tree structure, just compare the reply-to against a past message ID. That's what I do for the House of Fusion list archives and it works perfectly. Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com)

Re: (Feature Request) Thread view RSS of CFTALK

2006-12-18 Thread Michael Dinowitz
threaded along with it's associated messages. There are options for a 'flat' latest first or latest last on a per thread basis. The RSS feeds on the other hand are always a flat latest 50 posts. Michael Dinowitz President: House of Fusion(http://www.houseoffusion.com) Publisher: F

Re: SPAM filters and this list

2006-12-12 Thread Michael Dinowitz
There is a system in place already that will bounce any message with a spam header in the subject with an explanation that the poster should remove it. The last thread that had such a header and got through was one that was not in the list of potential subjects. It's since been added and all sho

Re: Using Iif and De together...

2006-12-07 Thread Michael Dinowitz
Two points. The first is that any variable or function used in the last 2 arguments will be evaluated both before and after the tag runs and DE is used only to quote a variable/function rather than forcing the programmer to do it themselves. That being said, the problem is probably in your secon

(Admin) Fusion Authority Quarterly Update issue 2 shipped

2006-12-05 Thread Michael Dinowitz
s you need to know), visit: http://www.fusionauthority.com/quarterly/ Table of Contents Editorial OOP in Your Toolbox by Judith Dinowitz Columns What's Hot? What's Not? by Raymond Camden, Simeon Bateman, Charlie Arehart, Kurt Wiersma, Michael Dinowitz Tipical Charlie - How do I

Re: Was the Sean Corfield thread deleted from the archives?

2006-12-01 Thread Michael Dinowitz
At the top of the CF-Talk home page is a clear mention that OT posts should be made to the CF-OT list. All I did was write some code to enforce that. Anyone who posts to the thread with a CF-Talk address will find their posts redirected (and bounced if they are not subscribed to CF-OT). Anyone

Re: Sean Corfield, it's time to approve my post

2006-12-01 Thread Michael Dinowitz
This thread is really OT and has been moved to the OT list. Please continue the conversation there. Thank you Michael Dinowitz President: House of Fusion http://www.houseoffusion.com Publisher: Fusion Authority http://www.fusionauthority.com Adobe Community Expert

Re: Jingle Bells

2006-11-29 Thread Michael Dinowitz
In order to keep non-technical conversations off of CF-Talk, I will be writing some code tonight to automatically move any thread that is not of a technical nature over to the CF-OT list and locking it off on CF-Talk. You can help me by trying to keep non-technical conversations off of this tec

Re: LAG on List?

2006-11-17 Thread Michael Dinowitz
I just got in and noticed that we had so much mail that the ram on the mail server was overloaded. I cycled it and all's good again. It's the old 650 box, now dedicated to mail. With the amount I'm sending out, I should cycle it weekly or so. >Hi Michael, > >I got my mails after ~1 hour. Is tat

Re: PDF output :

2006-10-30 Thread Michael Dinowitz
I played with it some and the answer is yes. By having one cfdocumentsection tag for the first page with no header and another for the rest of the document, the header defined in the second cfdocumentsection will apply to all pages other than the first. page1 page 2+ header page2 page3

Re: PDF output :

2006-10-30 Thread Michael Dinowitz
Not that I can see in the documentation. >PDF output : >Is it possible to start header output from page 2? >Thanks for helping. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusio

Re: Suggestion for CF-Talk

2006-10-24 Thread Michael Dinowitz
Now that the FAQU issue 2 is out (pdf to all subscribers until print), I can work on more list features. I'll look into the best way to do code formatting. As noted, it would only be possible for well formatted code samples. As for HTML mail, I dropped that as a feature to keep post size small an

Re: Testing...

2006-10-23 Thread Michael Dinowitz
really off topic. Please do not respond. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusion

(Admin) Fusion Authority Quarterly Update - Fall 2006

2006-10-06 Thread Michael Dinowitz
New Vision for ColdFusion (Hal Helms) What's Hot? What's Not? - What Do You Find Indispensable on Your Bookshelf? (Raymond Camden, Simeon Bateman, Charlie Arehart,Kurt Wiersma, Michael Dinowitz) Tipical Charlie - How do I Call Thee (CFC)? Let Me Count the Ways! (Charlie Arehart) Object-

returntype = component

2006-10-05 Thread Michael Dinowitz
Does anyone know exactly how ColdFusion determines if the data returned from a method is a specific CFC reference? Does it run a metadata check on the reference and compare it to the path in the returntype or something else? Just curious.

Re: CF 8 Upgrade Cycle: What's yours?

2006-10-03 Thread Michael Dinowitz
First stable Beta, as usual. Michael Dinowitz President: House of Fusion http://www.houseoffusion.com Publisher: Fusion Authority http://www.fusionauthority.com Adobe Community Expert > How soon, after release of CF 8, will you upgrade to CF 8? > > Note: This is for research, n

Re: CF vs. .NET presentations?

2006-09-29 Thread Michael Dinowitz
This topic has come up every 2 months since before there even was an Asp. But it's off topic for this technical list. Please move any responses over to the CF-OT (ColdFusion off topic) list, CF-Community (where it will be ridiculed) or even to CF-Jobs-Talk or Biz-Dev (Business Development). It's

Re: need some help with event gateways

2006-09-19 Thread Michael Dinowitz
a permissions issue? > > On 9/19/06, Michael Dinowitz <[EMAIL PROTECTED]> wrote: >> What issues are you having? >> >> >I'm trying to do a basic directory watcher but I'm not having much >> >luck.

Re: need some help with event gateways

2006-09-19 Thread Michael Dinowitz
What issues are you having? >I'm trying to do a basic directory watcher but I'm not having much >luck. Can some one point me to a good tutorial for this? > >Thanks > >-- >Phil ~| Introducing the Fusion Authority Quarterly Update

CFDJ?

2006-09-13 Thread Michael Dinowitz
I was just asked if the CFDJ list was still around. I checked out their site and no dice. Anyone (Simon) have a clue about its status? Michael Dinowitz President: House of Fusion http://www.houseoffusion.com Publisher: Fusion Authority http://www.fusionauthority.com Adobe Community

Re: CFC question

2006-09-13 Thread Michael Dinowitz
Syntax like that is usually used within an init() method to set a passed variable to the CFCs global variable scope to be used by other methods. When a CFC is cached or called outside of a one shot invoke, this is a must to prevent having to pass the variable in again and again. For example, som

Re: How to tell what template called a function?

2006-08-29 Thread Michael Dinowitz
I was asked that question a few weeks back by a friend and the answer was to take the debug template that sits in the cfusionmx/wwwroot/web-inf/debug and play with it some. There is an undocumented factory call there that gives access to all the page info. It is possible to rewrite the whole deb

Re: regex help

2006-08-28 Thread Michael Dinowitz
ColdFusion MX supports positive and negative look aheads. >Try this: > >#REReplaceNoCase( > "word", > "(]*>)((?!]*>)", > "\2", > "ALL" >)# > >That uses a negative look ahead... I can't remember if that is supported in >CF directly or not. If it is not, try this: > >#RERepla

Re: (Admin) New Hardware for House of Fusion

2006-08-28 Thread Michael Dinowitz
Anyone have a spare desk in the NY area for me for the next day or so? >Sweeet :) > >.. >Ben Nadel >www.bennadel.com >Certified Advanced ColdFusion Developer > >Need Help? >www.bennadel.com/ask-ben/ > >-Original Message- >From: Micha

(Admin) New Hardware for House of Fusion

2006-08-28 Thread Michael Dinowitz
The entire House of Fusion website has been moved over to a new machine. This is a dual CPU, 2 gig machine which should handle the increase in traffic I've been seeing. If anyone sees any problems with the site, please email me ASAP so I can make sure it's fixed. Thanks ~~

Re: sub-contract work needed

2006-08-27 Thread Michael Dinowitz
No, the CF-Jobs list on this site: http://www.houseoffusion.com/groups/cf-jobs >http://www.cf-jobs.com? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your pee

Re: Top 100 ColdFusion Programmers

2006-08-24 Thread Michael Dinowitz
Very true. On that note, I have to say that this debate thread is nice and all but is drifting past the point of being a ColdFusion technical thread into being a general tech debate with lots of "me too" type comments. I may have to ask it to be moved to CF-OT soon. > Well to be fair Miket

Re: Cold Fusion growth

2006-08-24 Thread Michael Dinowitz
I'm seeing a broad increase in searches on ColdFusion terms and visits from people looking for ColdFusion content. If you look in the statistics section of the site you'll see the numbers for June with a graph showing site usage. Note the nice spike in usage around mid May. This is not exact sta

Re: Top 100 ColdFusion Programmers

2006-08-24 Thread Michael Dinowitz
The best are well known but in most cases are either taken already or too expensive for most people to hire on full time. Who are the best? Look at who are writing the books/articles and read their material. Look at who are teaching new concepts in a way that you can understand. Look at who's do

Re: Async drive read

2006-08-23 Thread Michael Dinowitz
It's a DVD drive. I've got about 500 CDs and DVDs of comics to index for a job. I didn't think the async idea would be a good one but it was just so cool in theory. I just needed someone elses input to stop me before I do cool things that result in bad things. >> The theory >> is solid but the

Async drive read

2006-08-23 Thread Michael Dinowitz
en hundreds of async directory reads going on be detrimental to the drive or any hardware? Michael Dinowitz President: House of Fusion http://www.houseoffusion.com Publisher: Fusion Authority http://www.fusionauthority.com Ad

Re: broadcasted coldfusion classes

2006-08-21 Thread Michael Dinowitz
I run the local CFUG (NYCFUG) and using the CFUG breeze is ok for a meeting but I'm talking 2-3 times a week for a few weeks. I mean real classes with people in my front room being broadcasted. > I've heard that local CFUGs have free access to breeze...maybe you can > tie this into your local C

broadcasted coldfusion classes

2006-08-21 Thread Michael Dinowitz
d for code would also be a great help. Any ideas? Thanks Michael Dinowitz President: House of Fusion http://www.houseoffusion.com Publisher: Fusion Authority http://www.fusionauthority.com Adobe Community Expert ~| Intro

(Admin) RSS options

2006-08-16 Thread Michael Dinowitz
e which usually covers all of the messages since the last regeneration. Finally, what other features would you like me to add? If you can email me off list, I'd appreciate it but onlist posts to this thread is ok as it's site enhancements. Thanks Michael Dinowitz President:

Re: (Admin) List Slow?

2006-08-14 Thread Michael Dinowitz
It's the lists. I've adjusted it so it should be back fast. I got the digests rolling and that's more mail to the mix. I'm going to see what I can do in the next day or so about getting a dedicated mail box separate from House of Fusion server to handle the volume of page views and mail posts.

(admin) digests

2006-08-14 Thread Michael Dinowitz
If you are getting the lists in digest mode and are having any problems from 5am today on, email me off list. Thanks Michael Dinowitz President: House of Fusion http://www.houseoffusion.com Publisher: Fusion Authority http://www.fusionauthority.com Adobe Community Expert

Re: Fusion Debug Released

2006-08-11 Thread Michael Dinowitz
Email their support address and let them know. It might be the debugger itself, a problem with the set up, a problem integrating with you version of eclipse or with one of the plugins your using. Your feedback to them will probably trigger a response to help get it working which in turn will res

Fusion Debug Released

2006-08-11 Thread Michael Dinowitz
usion-reactor.com/fusiondebug/index.html and if you want to buy it, there's a community discount code for 10% off. Use "CFCOMMUNITY" on the checkout information page when ordering. If anyone wants to mention the discount anywhere else, feel free. :) Michael Dinowitz President: Hous

(Admin) Security bulletin - ColdFusion AdminAPI Authentication Issue

2006-08-11 Thread Michael Dinowitz
mends ColdFusion users apply the following update: http://www.adobe.com/go/287ec799 Michael Dinowitz President: House of Fusion http://www.houseoffusion.com Publisher: Fusion Authority http://www.fusionauthority.com Adobe Community E

Re: All Adobe ColdFusion products to be discontinued

2006-08-10 Thread Michael Dinowitz
Can we please kill this thread so I don't have to do so in the list processing code? Thanks ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivere

Re: coldfusion scam site

2006-08-09 Thread Michael Dinowitz
The person I talked to through Google was clueless and I asked for my issue to be moved up the chain. I know how AdWords are supposed to be served but there is a way of 'hacking it' by using the AdWords search feature and copying the links from that. I'll explain it in detail on Blog of Fusion.

Re: coldfusion scam site

2006-08-09 Thread Michael Dinowitz
You're thinking about onlycoldfusionjobs.com >This is just a WAG, but I remember ColdFusionJobs.com used to be a real >site, with real CF Jobs listed. Looking at this site I thin what we are >seeing is whomever owned the domain let it expire and some A**hole grabbed >it up and is mis-using it. > >

coldfusion scam site

2006-08-09 Thread Michael Dinowitz
want to contact them directly to have my content removed. Thanks (I'll be explaining what they are doing and how later today on Blog of Fusion. it's a bit long and complicated) Michael Dinowitz President: House of Fusion http://www.houseoffusion.com Publisher:

Re: All Adobe ColdFusion products to be discontinued

2006-08-05 Thread Michael Dinowitz
Jokes and trolls should be on CF-Community, not this technical mailing list. Please move discussion with no merit what so ever to that list. Thank you ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hittin

Re: Cost of global CFC variables

2006-08-04 Thread Michael Dinowitz
ne >data variable... No hassle. > >...... >Ben Nadel >www.bennadel.com > > >-Original Message- >From: Michael Dinowitz [mailto:[EMAIL PROTECTED] >Sent: Friday, August 04, 2006 11:37 AM >To: CF-Talk >Subject: Re: Cost of global CFC variables >

Re: Digests

2006-08-04 Thread Michael Dinowitz
Sorry about that. I'm working on it. I've been doing a major overhaul of the site UI and backend and the digests are being moved over to a new setup today. The whole thing was in a single looped template but will be moved over to an async process on a scheduled event. Much more efficient and the

Re: Cost of global CFC variables

2006-08-04 Thread Michael Dinowitz
I'd prefer not to have to worry about passing all of the variables that I do use from the CFX tag back to the function from the cfmodule. It's more of a generic question to see if someone has investigated any overhead. I've already incorporated what I learned about types, required and returntype

Cost of global CFC variables

2006-08-03 Thread Michael Dinowitz
em? What are your thoughts and tests/results? I'll be doing a few myself to find out the answer but the feedback from others is always useful. Michael Dinowitz President: House of Fusion http://www.houseoffusion.com Publisher: Fusion Authority http://www.fusiona

Re: Hourly Digests down again?

2006-08-01 Thread Michael Dinowitz
It's next on my list. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quart

<    1   2   3   4   5   6   7   8   9   10   >