[Rails] Re: Rails and Machine Learning implementation of Python or Ruby

2019-08-16 Thread Adrián Rama Aguilar
And it will be possible to use scientific libraries.?? El viernes, 16 de agosto de 2019, 16:34:16 (UTC-4), Adrián Rama Aguilar escribió: Hi everyone.!! > > I'm working in a ROR app, which manages banks and I'd like to implement > machine learning for predictions such as ip connections, numbe

Re: [Rails] Rails and Machine Learning implementation of Python or Ruby

2019-08-16 Thread 'Jake Niemiec' via Ruby on Rails: Talk
> implement machine learning for predictions such as ip connections, number of transactions or number of sing in users by institucion in the app Do you want to predict user growth over time? You may get further with predictive modelling rather than machine learning. (and with less pain) Best of b

Re: [Rails] Rails and Machine Learning implementation of Python or Ruby

2019-08-16 Thread Walter Lee Davis
Ruby will happily co-exist with python, if you want to "shell out" to that language, you can read the response back in and continue in Ruby. There are at least three ways to do this, from the humble back-tick ` operator to Open3 or the system call. And, hang on, there's Terrapin https://github.

[Rails] Rails and Machine Learning implementation of Python or Ruby

2019-08-16 Thread Adrián Rama Aguilar
Hi everyone.!! I'm working in a ROR app, which manages banks and I'd like to implement machine learning for predictions such as ip connections, number of transactions or number of sing in users by institucion in the app, so I've been reading about linear regresion, but most of the info or how t

[Rails] certbot with passenger/nginx

2019-08-16 Thread fugee ohu
How can i have certbot ignore passenger directives in nginx.conf? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscr...@googlegroup

Re: [Rails] How do I let nginx know I'm using rails?

2019-08-16 Thread Walter Lee Davis
Passenger is an application server that can either run as a plug-in to a web server, just like fastcgi or mod_php, or as a stand-alone server. When it runs as a stand-alone server, it actually uses an embedded copy of nginx as part of its code—but don’t let that confuse you. It’s still an applic

Re: [Rails] How do I let nginx know I'm using rails?

2019-08-16 Thread fugee ohu
On Friday, August 16, 2019 at 6:58:01 AM UTC-4, Walter Lee Davis wrote: > > NGINX on its own cannot "run" Rails, because it is a simple httpd server. > Rails needs an application server -- puma, unicorn, passenger -- to be a > bridge between http and Rack protocols. Rails is a Rack application,

Re: [Rails] How do I let nginx know I'm using rails?

2019-08-16 Thread Walter Lee Davis
NGINX on its own cannot "run" Rails, because it is a simple httpd server. Rails needs an application server -- puma, unicorn, passenger -- to be a bridge between http and Rack protocols. Rails is a Rack application, under all the layers, and cannot host anything all by itself. Don't be confused