Re: dragon dictation and CF

2013-03-22 Thread .jonah
What you need is an Amanuensis[1]. I have a friend who's used one for many years. It's actually an awesome opportunity for someone to learn from the guru. [1] http://en.wikipedia.org/wiki/Amanuensis On 3/22/13 12:01 PM, Chad Gray wrote: > Has anyone tried to use Dragon dictation software to

RE: dragon dictation and CF

2013-03-22 Thread Brook Davies
Yeah, I ditched dragon too, what a waste of time. And their sales people can't keep calling me every since... -Original Message- From: Mike Chabot [mailto:mcha...@gmail.com] Sent: March-22-13 2:44 PM To: cf-talk Subject: Re: dragon dictation and CF That program takes a lot of training

Re: dragon dictation and CF

2013-03-22 Thread Mike Chabot
That program takes a lot of training to be able to recognize your voice and is frustrating to use during the learning period. Trying to program with dictation software would result in a huge decrease in productivity compared to a good keyboard with macro keys for all the common code, the benefit o

dragon dictation and CF

2013-03-22 Thread Chad Gray
Has anyone tried to use Dragon dictation software to write CF code? I saw this video and it got my brain going. https://www.youtube.com/watch?feature=player_embedded&v=8SkdfdXWYaI My fingers are developing some numbness and I need to be pro-active. Chad

Re: CF10 - editing jvm.config

2013-03-22 Thread george.e...@ssa.gov george.e...@ssa.gov
> You add it to java.args: > > -Dfile.encoding=UTF8 > > Dave Watts, CTO, Fig Leaf Software > http://www.figleaf.com/ > http://training.figleaf.com/ Thanks, Dave. We figured it out about 10 minutes before you posted your message. The really good news is that it appears to have fixed the majori

Re: CF10 - editing jvm.config

2013-03-22 Thread george.e...@ssa.gov george.e...@ssa.gov
> > Our server admin says he routinely manually modifies the jvm.config > file but he doesn't see where in this file to change the Java > > File Encoding setting. Does anyone know where to do that? > > You add it to java.args: > > -Dfile.encoding=UTF8 > > Dave Watts, CTO, Fig Leaf Software > h

Re: Does AJAX work with Shared SSL

2013-03-22 Thread Byte Me
OK, I got it to work using a widget called AjaxRequest that I read about in the book Ajax Design Patterns. Thanks for the assistance. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology

Re: Does AJAX work with Shared SSL

2013-03-22 Thread Raymond Camden
So use JSON/P or CORS. :) If you Google, you can find multiple blog posts (by myself, and Nadel) on both of these topics. Both are easy to do with ColdFusion. On Fri, Mar 22, 2013 at 9:03 AM, Byte Me wrote: > > >Are you saying your HTML is NOT on the Shared SSL and your Ajax resource > >is

Re: Does AJAX work with Shared SSL

2013-03-22 Thread Russ Michaels
the way shared SSL works is that your host provide a generic acme.comdomain for SSL purposes, and gives you a folder on that domain to store your secure pages so that you do not have to buy your own SSL certificate. so if your domain is yoursite.com, your SSL pages would be redirected to www.acme

Re: Does AJAX work with Shared SSL

2013-03-22 Thread Byte Me
>Are you saying your HTML is NOT on the Shared SSL and your Ajax resource >is? If so, you're going to run into the cross domain security issue. You >can use JSON/P or CORS to get around it. > > > > >> Hi, my html & Ajax resource is not on the same server as the shared ssl server. This is what I g

Re: Does AJAX work with Shared SSL

2013-03-22 Thread Raymond Camden
Are you saying your HTML is NOT on the Shared SSL and your Ajax resource is? If so, you're going to run into the cross domain security issue. You can use JSON/P or CORS to get around it. On Fri, Mar 22, 2013 at 8:30 AM, Byte Me wrote: > > Hi, > my website and shared ssl use different servers (

Does AJAX work with Shared SSL

2013-03-22 Thread Byte Me
Hi, my website and shared ssl use different servers (my site is hosted). Can someone tell me for sure if ajax can work with shared ssl. When I try to use ajax with shared ssl I get a security type error. I could have sworn that this had been working fine, but now I get an error. I am wondering