Ben Nadel

Results 18 comments of Ben Nadel
trafficstars

This is awesome Charlie, thank you! Trying it now :)

Woot woot!! It worked 💪 This is the `Dockerfile` I am running: ```Dockerfile FROM adobecoldfusion/coldfusion2021:2021.0.5 # Overwrite the startup script with a modified version that uses an ENV to define...

Also, I didn't understand what you are saying about nginx. I do have nginx running in a container; but, it doesn't have any notion of the webroot - it just...

Circling back to this after a year 😆 thank you for the clarity on the nginx stuff. I think I see what you are saying now. I'm currently trying to...

I know that some JavaScript libraries will use the prefix `original` when they overwrite stuff. Like: ```js var originalSetTimeout = window.setTimeout; window.setTimeout = mockSetTimeout; ``` ... just as prior art.

I _think_ if I define the `$integrateFunctions` method in my root Model / Controller, I can probably create a proof-of-concept for this.

Trying to decide if it would better to have a branded method, like `myTextArea()`, which could then turn around and call `textArea()` ... might be less confusing ... 🧐

The other confusing thing is that you might break an internal workflow. For example, the `$create()` method calls `.findOne()` and expects a certain behavior. If I were to override the...