Re: Passing arguments into base class

2015-02-06 Thread Nathan Strutz
if not for all of your beans. It's strange that it is not working, maybe this would be a question for the ColdSpring list. Nathan Strutz On Fri Feb 06 2015 at 3:30:14 PM Dean Lawrence dean...@gmail.com wrote: Thanks Nathan, I am familiar with IoC and am using ColdSpring for this very purpose

Re: Passing arguments into base class

2015-02-06 Thread Nathan Strutz
Dean, Byron's suggestion is a good one, and the right way to go unless you use an IoC container. It's an object-oriented programming idea where, when you come to the point of not wanting to instantiate all your objects. You invert the control of creating away from what normally creates them into

Re: postParametersLimit in CF11

2014-12-11 Thread Nathan Strutz
I'm sorry that I don't have an answer to your question or a solution to your problem, but I just have to ask, is it possible that your application just needs to adapt to what is a fairly standard security practice across the industry? It sounds like one of those jokes that ends in just because

Re: Eclipse CFEclipse

2014-12-04 Thread Nathan Strutz
Yeah, you've got to hit the sweep button as soon as you get Inbox to clear out all your old stuff. BTW, I have invites to anyone who wants to try Google Inbox. Yes, you too can have the opportunity to reply to seven year old threads. Nathan Strutz On Thu Dec 04 2014 at 8:57:53 AM Matt

Re: # in variables

2014-02-07 Thread Nathan Strutz
to the browser not the server. If that's the case, then URL encoding on the client would be necessary. The bad news is URL encoding may pass on this because # is a valid URL parameter, just not what you want. In that case, you may have to manually replace # with %23. nathan strutz [www.dopefly.com

Re: best portable db for ColdFusion

2013-09-24 Thread Nathan Strutz
Yeah Evernote is fantastic for this. If you really wanted to make it yourself and you want a portable DB, I like Derby, just for the fact that it's file-based and works really well with CF. nathan strutz [www.dopefly.com] [about.me/nathanstrutz] On Tue, Sep 24, 2013 at 11:44 AM, Cameron

Re: Best way to use LESS CSS with CF?

2013-09-10 Thread Nathan Strutz
I don't think it's recorded anywhere, but if you want me to give it somewhere, let me know. ;) nathan strutz [www.dopefly.com] [about.me/nathanstrutz] On Tue, Sep 10, 2013 at 1:10 PM, Billy Cravens bdcrav...@gmail.com wrote: Surprised I haven't seen info on Nathan Strutz's CF+LESS talk here

Re: ColdFusion 11?

2013-06-18 Thread Nathan Strutz
versions have had. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] On Tue, Jun 18, 2013 at 8:07 PM, Byron Mann byronos...@gmail.com wrote: Ray mentioned CF 11. Is there a published backlog of features and enhancements that might make its way into the product? Something like a Trello

Re: ??

2013-05-17 Thread Nathan Strutz
Yea, we are all in Minneapolis :D www.cfobjective.com Consider coming next year, this is a great conference! nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] On Fri, May 17, 2013 at 2:48 AM, Russ Michaels r...@michaels.me.uk wrote: Cf.objective Regards Russ Michaels

Re: Need RegEx help for unknown/odd characters.

2013-05-17 Thread Nathan Strutz
How about deAccent() ? http://cflib.org/udf/deAccent nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] On Wed, May 15, 2013 at 9:20 AM, Che Vilnonis ch...@asitv.com wrote: Good morning. Occasionally when parsing a RSS feed, I get RSS data I cannot parse. Click for screenshot below

Re: Code Design help

2013-05-09 Thread Nathan Strutz
, often the HoF mail server will let you know that you sent a large post and it didn't appreciate it, but it by no means blocks it. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] On Thu, May 9, 2013 at 7:51 AM, Marty Franklin ma...@assetresearch.comwrote: Hello, It appears my posts do

Re: Trying to check if username exists in table prior to form submit

2013-04-09 Thread Nathan Strutz
(and should) replace this: onchange=chkUsernameUnique(this.value); with this: $(input[name=Username]).on(change, chkUsernameUnique); - this will pass the input in as an argument instead of the value of the input, but it allows you to divorce your javascript from your html. nathan strutz [www.dopefly.com

Re: Hosting A to Z

2013-02-15 Thread Nathan Strutz
I think Matt is on Linux. In that case, the +infinity button should be CTRL+ALT+Backspace, depending on your windowing environment. But still, he's right. +Infinity. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] On Fri, Feb 15, 2013 at 9:19 PM, Mike K afpwebwo...@gmail.com wrote

Re: CFFile Question

2013-01-31 Thread Nathan Strutz
it through #f.serverFile#. Track that name in your database, and the #f.clientFile# original file name as well. In fact, just cfdump var=#f# to see all that cffile has. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] On Thu, Jan 31, 2013 at 9:12 AM, Robert Harrison rob...@austin-williams.com

Re: Severe memory issue

2013-01-30 Thread Nathan Strutz
, Marc Esher's cfconcurrent project discovered some big memory leaks when you do certain things with the cfconcurrent library on CF9. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] On Wed, Jan 30, 2013 at 3:27 AM, Helwig, Till Helge till.hel...@saxsys.dewrote: Hi, I'm working on a very

Re: Extending a Component vs. Passing an Object

2013-01-29 Thread Nathan Strutz
, is called composition. This is a HAS-A relationship. Should your service have a DAO? Yes, probably. Now, if you wanted to remove all the plumbing of initializing and injecting your DAO into your Service, you can use a bean factory like ColdSpring or DI/1. nathan strutz [www.dopefly.com] [hi.im

Re: cfftp with SSL (Coldfusion 8)

2012-12-18 Thread Nathan Strutz
From memory, SFTP support was added to ColdFusion in version 8. So, yes. SSL FTP is available to you. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Tue, Dec 18, 2012 at 11:35 AM, fun and learning funandlrnn...@gmail.comwrote: All - Is it possible to use

Re: Regular Expression - decimal number positive negative

2012-12-14 Thread Nathan Strutz
match a decimal only when it has numbers after it, and this entire group is optional nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Fri, Dec 14, 2012 at 7:59 AM, Paul Giesenhagen p...@quilldesign.comwrote: Heya, I know that some will know this quickly

Re: Anyone using Twitter Bootstrap with CF?

2012-11-20 Thread Nathan Strutz
. Otherwise, view the HTML your CF is generating and make sure the links are all unique, and that you're not calling id=1 on every link to the modal. Disclaimer: I haven't used the modal yet except in playing around, and I've never experienced your issue. nathan strutz [www.dopefly.com] [hi.im

Re: Huge rowcounts in CFCLIENTS database

2012-11-15 Thread Nathan Strutz
it yourself. Also, transitioning away from client variables and into a more specific database structure (as opposed to the vertical storage [1 row per data element] that is used by client vars) would help you out a lot. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz

Re: Anybody seen this hack/exploit?

2012-11-13 Thread Nathan Strutz
prove who did it. Source control (like Git) would do that. For me, this would be a no-brainer, I can see exactly who committed what. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Tue, Nov 13, 2012 at 2:37 PM, Matt Quackenbush quackfu...@gmail.comwrote: It doesn't

Re: Tracing Tool

2012-10-20 Thread Nathan Strutz
to the debugging area if you have that turned on, or straight to the page, and it writes to a log file as well. And as soon as you turn off page debugging, the traces don't fire anymore, so it's safe for production. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Sat, Oct 20

Re: cf-database vs cf-java-database

2012-07-16 Thread Nathan Strutz
do CF because it's the fastest boat on the ocean or because it can haul the biggest loads. I do it because it's the nicest cruising vessel around. She's plenty seaworthy, cap'n. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Mon, Jul 16, 2012 at 11:27 AM, Raymond

Re: cf-database vs cf-java-database

2012-07-16 Thread Nathan Strutz
Right, but what facts are you looking for explicitely? Like, CF can normally make N CFCs per second with M methods in them each. Yes. Have that on my desk by morning. Thanks. Just kidding, man, I don't write your checks. Unfortunately performance and applications is incredibly subjective,

Re: cf-database vs cf-java-database

2012-07-14 Thread Nathan Strutz
be a bad call. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Fri, Jul 13, 2012 at 9:57 PM, PT cft...@gmail.com wrote: Is there any advantage to having a CFC hand off database operations to java or some derivative over letting cfquery handle them itself? I have

Re: cfscript zip example?

2012-06-25 Thread Nathan Strutz
Any particular reason you don't use the cfzip tag from ColdFusion 8+? Sorry, that's probably not helpful, but hey sometimes people don't read the docs. If you're on Adobe software, I think nothing before CF8 is even supported anymore. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz

Re: cfscript zip example?

2012-06-25 Thread Nathan Strutz
Ok, so to clarify, are you using the zip.cfc from https://github.com/CFCommunity/CFScript-Community-Components ? Sorry, I don't think I know Russ, who it looks like authored it. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Mon, Jun 25, 2012 at 1:13 AM, Paul

Re: Re[4]: cfscript zip example?

2012-06-25 Thread Nathan Strutz
Michael, Start a new thread. Start a new subject. Don't hijack ;) nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Mon, Jun 25, 2012 at 6:09 PM, Michael David li...@michaeldavid.comwrote: Ok, I'll bite. :) How is Railo compared, say, to CF9? Is it solid

Re: cfscript zip example?

2012-06-25 Thread Nathan Strutz
use some solid demos. Paul, why not add the missing test case and the missing demos as separate bug reports on github? They're both good ideas. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Mon, Jun 25, 2012 at 6:14 PM, Paul Hastings p...@sustainablegis.comwrote

Re: Best practices

2012-06-19 Thread Nathan Strutz
selectors get double-hash marks, which removes you from your context. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Tue, Jun 19, 2012 at 4:25 PM, Matt Quackenbush quackfu...@gmail.comwrote: Years ago it was much more performant to use the single tag wrapped around

Re: CF10 Tomcat case sensitivity

2012-05-31 Thread Nathan Strutz
trying to visit /cfide/administrator/, which is a 404 on CF10 because it's supposed to be /CFIDE/administrator/. Totally aggravating, but that's the price for a better server. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Thu, May 31, 2012 at 10:25 AM, Chad

Re: best practice on session variable persistence and ssl?

2012-05-15 Thread Nathan Strutz
HTTPS cookies over HTTP, so consider if this risk is ok for you. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Tue, May 15, 2012 at 11:43 AM, Nick Gleason n.glea...@citysoft.comwrote: Hi folks, With our CMS / CRM application, we are looking at moving from

Re: Holy sweet mother of Jeremy Allaire...

2012-05-15 Thread Nathan Strutz
It appeared online last night. I'm expecting some kind of CF10 party at CF.Objective() starting tomorrow in Minneapolis. This release comes on the tail of Adobe CS6 and Creative Cloud, so it is somewhat overshadowed by the big dogs like Photoshop. Shame. nathan strutz [www.dopefly.com] [hi.im

Re: after a long hiatus back to talk about frameworks

2012-05-09 Thread Nathan Strutz
we developers have these days. You can do it without a framework, it's not hard ( www.dopefly.com/techblog/entry.cfm?entry=307 and www.dopefly.com/techblog/entry.cfm?entry=308), and it's much more important than marrying yourself to any specific framework. nathan strutz [www.dopefly.com] [hi.im

Re: after a long hiatus back to talk about frameworks

2012-05-08 Thread Nathan Strutz
options are probably cfwheels and FW/1, but like John Bliss said, go with whichever works with your way of thinking. (I hope I offended everyone with this ;) nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Mon, May 7, 2012 at 9:58 PM, Don danfar...@hotmail.com wrote

Re: From LOW to PWNED [2] ColdFusion

2012-04-24 Thread Nathan Strutz
Where precisely is the download for the fix to this vulnerability? nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Tue, Apr 24, 2012 at 2:22 AM, John M Bliss bliss.j...@gmail.com wrote: no patches exist for 6 7 so if you see CF6 or CF7 its always vuln

Re: From LOW to PWNED [2] ColdFusion

2012-04-24 Thread Nathan Strutz
Oh ok I didn't see that they actually changed CF8's CHF (cumulative hot fix) 4 to include the fix. Does that mean many people may need to reapply that hotfix? And CF9, same for CHF 2 I think. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Tue, Apr 24, 2012

Re: 404 errors in the application log

2012-04-02 Thread Nathan Strutz
IIS has an option to check for existing files before it hands the request off to CF. You could also implement an onMissingTemplate() method in your Application.cfc, which I think is a CF9 feature. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Mon, Apr 2, 2012

Re: Cluster not sending request to second server

2012-03-12 Thread Nathan Strutz
the other clustered instances really aren't getting any traffic. Remove them and re-add them, or reboot the 2nd server. Maybe even the first for that matter. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Mon, Mar 12, 2012 at 7:49 AM, brad f b...@ciswired.com wrote

Re: This actually works!

2012-01-19 Thread Nathan Strutz
Yeah, thanks Rick, good tip. You'll find that working with CF XML nodes is a lot like working with structs and arrays, so most of those array*() and struct*() built-in functions will work with your XML. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Thu, Jan 19

Re: IP analysis by country

2012-01-13 Thread Nathan Strutz
to find. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Fri, Jan 13, 2012 at 3:38 PM, Nick Gleason n.glea...@citysoft.comwrote: We'd be interested in doing some analysis of the country of origin for IPs of requests that we see on some of our sites / servers

Re: StructDelete inside cfc

2012-01-06 Thread Nathan Strutz
Shannon, Check your qrySurveyInfo - it's got a triple-quote. I like to make my unset complex variables to 0 (zero) to avoid ambiguity. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Fri, Jan 6, 2012 at 1:50 PM, Shannon Rhodes shan...@rhodesedge.comwrote

Re: How CF works

2011-10-13 Thread Nathan Strutz
your html, and just spruce things up. If there's something about the page that IE doesn't like (and it wouldn't be the first time), move elements around and play with the stylesheet until it does. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Thu, Oct 13, 2011

Re: ColdFusion 9 Session Replication

2011-10-10 Thread Nathan Strutz
or put it in your database. You can also take advantage of CF's caching engine, Ehcache, which can do clustered cache, in memory, on disk, even state servers, and combinations of these all. Don't use client variables... just... don't. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me

Re: SOT: ColdFusion on .NET Rocks podcast

2011-09-15 Thread Nathan Strutz
Wow Billy, Carl was pretty hostile to CF a few years ago when I stopped listening. Great show, I'm really glad you did it. See you at MAX! nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Thu, Sep 15, 2011 at 12:14 AM, Billy Cravens bdcrav...@gmail.com wrote

How do you compose your dev teams?

2011-09-02 Thread Nathan Strutz
developers who do front-ends and integration work. Regular flow-down meetings help people share ideas and copy adapt similar projects. Mario's team compositon sounds awesome, but he has a lot more people than I do. What do you do? nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me

Re: How do you compose your dev teams?

2011-09-02 Thread Nathan Strutz
of (and i'm willing to take blame if I should). Thanks for your thoughts. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Fri, Sep 2, 2011 at 12:40 PM, Wil Genovese jugg...@trunkful.com wrote: Nathan, I guess I have questions. Usually there is a reason (real

Re: How do you compose your dev teams?

2011-09-02 Thread Nathan Strutz
just enough to stave off management intervention. Good thoughts. Thanks. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Fri, Sep 2, 2011 at 12:50 PM, Roger Austin raust...@nc.rr.com wrote: On 9/2/2011 3:12 PM, Nathan Strutz wrote: So my question to the list

Re: How do you compose your dev teams?

2011-09-02 Thread Nathan Strutz
Thanks, Sean. It's stuff like this I know, but I need to force-feed it to the rest of the group. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Fri, Sep 2, 2011 at 3:11 PM, Sean Corfield seancorfi...@gmail.comwrote: On Fri, Sep 2, 2011 at 12:12 PM, Nathan

Re: How do you compose your dev teams?

2011-09-02 Thread Nathan Strutz
team take the agile pill? Did you (or do you still) have any holdouts? nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Fri, Sep 2, 2011 at 3:24 PM, Tariq Ahmed ta...@dopejam.com wrote: So my question to the list is this: How do you organize your teams

Re: Run a class file generated with CF outside of CF

2011-08-07 Thread Nathan Strutz
said, I can share some of that with you. I plan on talking about this stuff a little bit from my CF Unconference talk at MAX this October, so if you're in the neighborhood... nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Sun, Aug 7, 2011 at 6:37 AM, Brook Davies

Re: timing software

2011-08-07 Thread Nathan Strutz
. It could be that you don't have to have your user install anything. Just a thought. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Sun, Aug 7, 2011 at 6:41 PM, Ben Conner b...@webworldinc.com wrote: Wow. Impressive. Is there somewhere I can disable caching? Can

Re: Run a class file generated with CF outside of CF

2011-08-06 Thread Nathan Strutz
call it via the command line console. I wonder, what is the underlying reason for wanting to call the generated classes? Sort of an odd request. Why are you doing this? Maybe there's a better way to accomplish your end goal. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz

Re: OO ColdFusion, somebody tell me if this is overkill

2011-08-04 Thread Nathan Strutz
to you for seeing a problem, realizing a viable solution, and only later finding out that it's an already-well-known pattern. I think that's the mark of really knowing your stuff (and also that you should read up on your design patterns). nathan strutz [www.dopefly.com] [hi.im/nathanstrutz

Re: OO ColdFusion, somebody tell me if this is overkill

2011-08-04 Thread Nathan Strutz
architecture is exactly what Scott was asking about in the first place, even though he didn't say it directly. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Thu, Aug 4, 2011 at 1:05 PM, Dave Watts dwa...@figleaf.com wrote: Sounds like it's not a terrible idea

Re: Label Printer

2011-08-03 Thread Nathan Strutz
it doesn't really matter what printer you use, as long as the software supports it and you can integrate with that. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Wed, Aug 3, 2011 at 8:50 AM, Chad Gray cg...@careyweb.com wrote: I have an inventory website

Re: application.cfm

2011-06-22 Thread Nathan Strutz
there you cfinclude the requested template, which should be compiled only when execution reaches that include. I always use Ray's Application.cfc reference, for reference: http://www.coldfusionjedi.com/downloads/application.cfc.txt nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me

Re: Homesite 5.5

2011-06-11 Thread Nathan Strutz
can be as efficient at it. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Sat, Jun 11, 2011 at 12:49 PM, Wil Genovese jugg...@trunkful.com wrote: Sticks of RAM? Wow that's new tech! My RAM come on individual IC Chips. I need 8 to get to 64K. Wil Genovese

Re: Where did it go

2011-04-16 Thread Nathan Strutz
http://sqlsurfer.riaforge.org/ ? One of my many pet projects that I never finished, but I use it just about every day. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Sat, Apr 16, 2011 at 6:17 PM, Kevin Parker tras...@internode.on.netwrote: About 6 months or so ago

Re: I hate CFScript and I'm willing to pay for a CFScript -- CFtag parser

2011-04-07 Thread Nathan Strutz
That's funny. Actually I created a tags -- script converter a few weeks ago, kind of for fun, kind of for upgrading to CF9. It works for basic stuff, components, functions, some loops, try/catch, etc, but gets confused with queries or anything else complicated. nathan strutz [http

Re: Do people still name their UPDATE, INSERT DELETE queries?

2011-03-15 Thread Nathan Strutz
If you aren't using any kind of returned data from a query, don't worry about giving the cfquery tag a name attribute. It's a few extra bytes you can save on your fingers. I would even go so far as to recommend you delete it. Less code means less bugs. nathan strutz [http://www.dopefly.com

Re: CFC argument best practice question

2011-03-07 Thread Nathan Strutz
. Follow that, and you've gone from just using components to actual object-oriented programming. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Mon, Mar 7, 2011 at 10:06 AM, Brook Davies cft...@logiforms.com wrote: Hello, Just a quick Best Practices question. I have

Re: Downloading database tables

2011-02-18 Thread Nathan Strutz
baked), and I don't know that there's a real market for it. Umm, I can probably hook you up with a copy, no promises that it will even compile. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Fri, Feb 18, 2011 at 12:32 PM, Rob Voyle robvo...@voyle.com wrote: Hi folks

Re: why is cf_builder so slow? (was: expensive)

2011-01-27 Thread Nathan Strutz
is made outside the IDE. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Thu, Jan 27, 2011 at 12:57 PM, Steve Bryant st...@bryantwebconsulting.com wrote: Nathan, I have experienced quite a bit of slowness in ColdFusion Builder. It will randomly hang, sometimes

why is cf_builder so slow? (was: expensive)

2011-01-26 Thread Nathan Strutz
at the same time a co-worker was working on a new feature (sorry Alan!). That kind of separation earlier in my career would have really cut down on people yelling at me. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Wed, Jan 26, 2011 at 8:02 AM, Gerald Guido gerald.gu

Re: why is cf_builder so slow? (was: expensive)

2011-01-26 Thread Nathan Strutz
So the solution to that one is just to have CF running before you start CFBuilder. Does that affect anything other than Builder's startup time? nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Wed, Jan 26, 2011 at 12:28 PM, Russ Michaels r...@michaels.me.uk wrote: I

Re: why is cf_builder so expensive?

2011-01-25 Thread Nathan Strutz
would probably keep CFE on hand for those special times. Also, I have Notepad++ (with CF plugin) as a quick pick-up editor for one-off things. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Tue, Jan 25, 2011 at 7:00 PM, Michael Firth mfsqlser...@gmail.comwrote: Thoughts

Re: relative path for images

2011-01-21 Thread Nathan Strutz
your images in a web-root-relative path, so your src would always start with a slash. /images/photo.jpg instead of the relative locations images/photo.jpg or ../images/photo.jpg - this way, it doesn't matter where your page is, as long as it's on the same site. HTH nathan strutz [http

Re: Regex to strip out non-numerics but leave decimal point

2011-01-18 Thread Nathan Strutz
[:digit:] seems like a lot of typing to just say \d, and why the extra character brackets around the outside? I would do this: reReplace(str, [^\d\.], , all) less typing = improvement nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Tue, Jan 18, 2011 at 1:04 PM, Jason

Re: Is Coldfusion losing it biggest asset?

2011-01-13 Thread Nathan Strutz
Mission already accomplished by a friend and former CFUG manager: http://www.jumpbox.com/ http://www.jumpbox.com/ nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Thu, Jan 13, 2011 at 11:01 AM, Bryan Stevenson br...@electricedgesystems.com wrote: Great idea.just

Re: Is Coldfusion losing it biggest asset?

2011-01-13 Thread Nathan Strutz
, but I asked him about it and he said there just hadn't been enough interest in a Railo VM. If a few more people ask for it, and would actually pay for it the service, he would probably put a supported VM with Railo up, probably within a couple days. nathan strutz [http://www.dopefly.com/] [http

Re: Issues with session variables

2011-01-13 Thread Nathan Strutz
a cookie issue. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Thu, Jan 13, 2011 at 11:26 AM, Maneesha Aggarwal ma...@columbia.eduwrote: We have an issue with early timeout using session and client variables. We are using ColdFusion 5. We have set up sessiontimeout for 2

Re: Converting JPG/etc to ICO

2011-01-09 Thread Nathan Strutz
myimage.ico You can even batch it :\ convert *.jpg *.ico You can call it via cfexecute, which works great. Don't be fooled into using a CFX object, it won't work as well as the command-line. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Sat, Jan 8, 2011 at 6:02 PM, Rick

Re: More rewrite rule fun

2010-12-22 Thread Nathan Strutz
=displayProductCategoriesmodel=subcategory1/subcategory2/subcat3 Not sure if that's what you're going for, but a bad response is better than no response from the list ;) nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Wed, Dec 22, 2010 at 7:23 AM, Mark A. Kruger mkru...@cfwebtools.comwrote: Ok

Re: More rewrite rule fun

2010-12-22 Thread Nathan Strutz
optional. If you have other characters in your subcategories (like dashes), you can just add those to the [\w/] char group. You could get fancier, and capture the subcategories individually, but it gets trickier, and making that replacement in CF is so much easier. nathan strutz [http://www.dopefly.com

Re: Counting photos on a remote server

2010-12-15 Thread Nathan Strutz
Jerry said, do you have access to that remote server - like can you put a file in the web root to execute it on the other server? That's what I would go for. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Wed, Dec 15, 2010 at 9:08 AM, Dave Long d...@northgoods.com wrote

Re: CF 9 demo videos on adobe.com

2010-12-10 Thread Nathan Strutz
... nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Fri, Dec 10, 2010 at 12:06 PM, Greg Morphis gmorp...@gmail.com wrote: I have tried to view these demos in Chrome, FireFox and out of desperation IE. Sometimes I get sound, no video, sometimes nada.. What gives

Re: UTF-8 Languages

2010-12-09 Thread Nathan Strutz
save them to disk. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Thu, Dec 9, 2010 at 1:01 PM, Leigh cfsearch...@yahoo.com wrote: Both the HTML and CFM pages has UTF-8 content type. Are you using cfprocessingdirective pageEncoding=utf-8 along with the proper font

Re: CF9/Win7 64 bit issues

2010-12-06 Thread Nathan Strutz
. As for debugging, I wonder if your CF server thinks somehow it has a different context root other than just / - you could look for that and who knows, maybe you will find your /inetpub/wwwroot/*.cfm files answer to localhost/cfusion/*.cfm. Weird, but I guess possible. nathan strutz [http

Re: Memory Usage Question

2010-12-04 Thread Nathan Strutz
, cut them down. Oh, and good luck. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Fri, Dec 3, 2010 at 10:51 AM, Brook Davies br...@logiforms.com wrote: Hello, I have a question about a memory usage pattern that I am trying to figure out. I am using seefusion to watch

Re: Dumping VAR Scope?

2010-12-03 Thread Nathan Strutz
this: [pseudocode, writeDump and abort are CF9 specific] function foo(arg, etc) { local = structNew(); local.myLocalVariable = 1234; writeDump(local);abort; } Hope that helps. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Fri, Dec 3, 2010 at 9:15 AM, Rick Root rick.r

Re: Quick Regex Question

2010-10-29 Thread Nathan Strutz
Robert, Actually, the underscore is counted as an alphanumeric in regular expressions. Try just replacing \W with nothing and see what you get. nathan strutz [http://www.dopefly.com/] [http://hi.im/nathanstrutz] On Fri, Oct 29, 2010 at 7:41 AM, Robert Harrison rob...@austin-williams.com

Re: Find city/state by IP Address?

2009-12-04 Thread Nathan Strutz
The classic http://javainetlocator.sourceforge.net/ works. It's a Jar you add to your java classpath, but I think they ship with a CFC... It's been a few years so I don't remember precisely. nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org

Re: How to display LARGE amounts of Data in a Timely Fashion

2009-10-22 Thread Nathan Strutz
a couple pagefuls of data at a time. Consider that last one, sure, but DO those first two, for real. nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Wed, Oct 21, 2009 at 8:22 PM, Rick Colman rcol...@cox.net wrote: I

Re: (ot) Teamwork and comments in code

2009-10-21 Thread Nathan Strutz
Dominic, That's brilliant. Thanks for sharing it. I think there may be a special place on thedailywtf.com for it :) nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Wed, Oct 21, 2009 at 1:23 AM, Dominic Watson

Re: CFC's.. Why use them?

2009-09-08 Thread Nathan Strutz
that everybody will do this, everyone's experiences are different, but it's just a pattern I've seen. nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Tue, Sep 8, 2009 at 10:47 AM, b...@bradwood.com wrote: I'd sure hate to write

Re: CFC's.. Why use them?

2009-09-08 Thread Nathan Strutz
, and multiple server configurations that many of us use. Honestly, I'm just interested in your opinion. Or, are you just saying we throw the word around like candy at a parade and should stop before we hit someone in the eye? What then should we call it? nathan strutz [Blog and Family @ http

Re: (ot) Twitter down

2009-08-06 Thread Nathan Strutz
to what you're saying. A DOSN or DOSNet (Denial of Service Network) is the malware/software behind the attack, in reference to its network. You don't get a DOSN attack, you get a DDOS attack via a DOSNet or you get a DOS attack. nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager

Re: Question re: Reactor

2009-07-27 Thread Nathan Strutz
in the reactor directory) and refreshing your app... nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Mon, Jul 27, 2009 at 4:47 PM, Caroline Wise caracol...@gmail.com wrote: We have a rather old application that uses

Re: Function Encapsulation Gone Too Far? - Opinions

2009-07-21 Thread Nathan Strutz
on cflocation https://; listFirst(arguments.hostName, .) . evansville.edu/ / /cfif But if you are going to need to overwrite that functionality in certain cases or add complexity later on, you might as well separate it out at least a little. nathan strutz [Blog and Family @ http

Re: Function Encapsulation Gone Too Far? - Opinions

2009-07-21 Thread Nathan Strutz
code navigation, faster developer ramp-up speed. (reference: http://gettingreal.37signals.com/toc.php) nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Tue, Jul 21, 2009 at 12:50 PM, Dawson, Michael m

Re: CF based forums ap?

2009-07-15 Thread Nathan Strutz
Did you check out Ray Camden's Galleon forums app? I would bet it's on riaforge.org. Pretty simple to figure out and modify. On Wednesday, July 15, 2009, Paul Henderson pa...@d2phosting.com wrote: I'm trying to find a CF based forums ap, open source preferred but not required. The ones I've

Re: Regex wrapping div tags round img tags

2009-07-02 Thread Nathan Strutz
not a tag closer, + -- for at least one character -- followed by the tag closer ) -- end the subgroup and the replacement: div class='cover'\1/div -- \1 is a backreference to the first (and only) sub-group we captured nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager

Re: AJAX

2009-07-02 Thread Nathan Strutz
. nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Thu, Jul 2, 2009 at 11:32 AM, webmas...@pegweb.com wrote: Thanks a lot Andy. I knew there were different frameworks out there but wasn't sure how that fit in with AJAX. I

Re: pagination and large recordsets (mysql)

2009-06-18 Thread Nathan Strutz
will probably have to make setTotalNumberOfItems() a public method, then also override the private method configureInputs. Let me know if you want any help with that. nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Thu

Re: google style paging navigation

2009-06-15 Thread Nathan Strutz
, including images and css, are included in the download from riaforge. nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Sun, Jun 14, 2009 at 3:34 PM, Ryan Letulle bayous...@gmail.com wrote: Nathan Strutz at http

Re: SOA Coldfusion best practices

2009-06-09 Thread Nathan Strutz
a better resource for that (http://coldspringframework.org). nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Tue, Jun 9, 2009 at 9:55 AM, Tim Oommen toom...@duoconsulting.comwrote: That was actually pretty funny

Re: SOA Coldfusion best practices

2009-06-08 Thread Nathan Strutz
I hate to do this, but, did you try http://tinyurl.com/nx44fe ? nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Mon, Jun 8, 2009 at 2:49 PM, Tim Oommen toom...@playboy.com wrote: Are there any good sites

Re: SOA Coldfusion best practices

2009-06-08 Thread Nathan Strutz
Well, my weekend was no surprise trip to Magic Mountain or anything ;o) I attribute all sass to lack of caffeine, but I think we all know the real reason is that working for the man has made me a cranky person. nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http

Re: Old CF project (1000 .cfm and .cfc), refactor into framework

2009-05-27 Thread Nathan Strutz
will thank yourself repetedly every time you need to update it, and programmers down the line will bless you instead of curse you. nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Wed, May 27, 2009 at 9:17 AM, s. isaac

  1   2   3   4   5   6   7   >