Rafal W.

Results 253 comments of Rafal W.

I've just tested the latest master by running Drupal locally and it now works for me. Steps to run the app: ``` $ cd docs $ ln -s . php-wasm...

We can separate by a comma. Check the [similar script](https://github.com/FX31337/FX-BT-Scripts/blob/576901de03459541f8730836aa7d61d67ddffd38/dl_bt_dukascopy.py#L379). parser.add_argument("-p", "--pairs", action="store", dest="pairs", help="Pair(s) to download (separated by comma).", default="all") ... pairs = list(all_currencies.keys()) if args.pairs == "all" else...

The same here: ``` ==> mt-test: -- VPC tenancy specification: default ~/.vagrant.d/gems/gems/excon-0.49.0/lib/excon/middlewares/expects.rb:6:in `response_call': The image id '[ami-9abea4fb]' does not exist (Fog::Compute::AWS::NotFound) from ~/.vagrant.d/gems/gems/excon-0.49.0/lib/excon/middlewares/response_parser.rb:8:in `response_call' from ~/.vagrant.d/gems/gems/excon-0.49.0/lib/excon/connection.rb:389:in `response' from ~/.vagrant.d/gems/gems/excon-0.49.0/lib/excon/connection.rb:253:in `request'...

Try adding: config.ssh.pty = true into your `Vagrantfile`. Related: mitchellh/vagrant/issues/6780

The rsync worked for me with: config.ssh.pty = true You may also add this line to your `Vagrantfile` (as per [@eresende post](https://github.com/mitchellh/vagrant-aws/issues/332#issuecomment-68547618)): aws.user_data = 'sed -i\'.bak\' -e \'s/^\(Defaults\s\+requiretty\)/# \1/\' /etc/sudoers'...

I guess, I had to remove synced_folder line at all, because it seems that /vagrant folder is synced automatically for aws provider. So I'm using synced_folder only for virtualbox provider,...

Does it mean the feature won't be implemented?

This for me doesn't work as expected as `split` removes quoted commas: ``` $ echo '1,"2a,2b",3' | jq -Rr '.|split(",")|@tsv' 1 "2a 2b" 3 $ echo '1,"2a,2b",3' | jq -Rr...

Thanks for pointing to the repo. Formats are also described here: - FXT: https://github.com/EA31337/MT-Formats/blob/master/fxt-405-refined.mqh - HST: https://github.com/EA31337/MT-Formats/blob/master/hst-404.mqh Here is the Python script which actually does the conversion from CSV (also...