• Как включить JavaScript в макросе на VBA?

    @6ReD6 Автор вопроса
    Понятно, спасибо! Я понимаю, что VBA это не лучшее решение, но у нас политикой организации запрещено ставить сторонний софт.
    Написано
  • Почему увеличивается разрядность дробной части после округления в pandas?

    @6ReD6 Автор вопроса
    подскажи пожалуйста в какой момент его надо отформатировать строкой, а то у меня почему-то всё равно получается знаков после запятой больше чем нужно. А число после вычислений нужно вернуть в dash_bootstrap_components.Card и получается не красиво, когда у него такой длинный хвост.
    Написано
  • Возможно ли изменить угол круговой диаграммы dash.plotly?

    @6ReD6 Автор вопроса
    Максим Припадчев, Наверное я не правильно выразился, то есть повернуть её, по часовой или против часовой стрелки. В Excel есть такая возможность, я подумал, что может быть есть и в dash.
    Написано
  • Как настроить полноэкранный режим гостевой машины virtualbox?

    @6ReD6 Автор вопроса
    CityCat4, Про другую машину не скажу. Попробую поставить win 7, посмотрим что получится)
  • Как настроить полноэкранный режим гостевой машины virtualbox?

    @6ReD6 Автор вопроса
    CityCat4, Да. То есть после перехода в полноэкранный режим мышка сначала работает, но стоит сделать один клик (не важно куда, просто по рабочему столу или по какому-нибудь ярлыку, левой кнопкой или правой) и больше она на клики не реагирует, двигать мышкой можно и всё. Причём клавиатура ведёт себя адекватно. Я уже подумал прислушаться к совету и вместо VirtualBox поставить kvm, а то вроде бы и мелочь но всё равно работать не удобно)
  • Как настроить полноэкранный режим гостевой машины virtualbox?

    @6ReD6 Автор вопроса
    CityCat4, Да, работает. Они в полноэкранном режиме двигается, но на клики не реагирует.
  • Как настроить tor browser в ubuntu?

    @6ReD6 Автор вопроса
    Да, нужно было сделать файл исполняемым, и доступ в настройках везде сделал "нет", а у владельца "только чтение".
  • Как настроить tor browser в ubuntu?

    @6ReD6 Автор вопроса
    Разобрался. Спасибо!
  • Как настроить tor browser в ubuntu?

    @6ReD6 Автор вопроса
    Подскажите ещё пожалуйста, я поместил его в указанную паку, но tor с него всё равно не запускается. Максимум что я могу с ним сделать, это открыть этот файл в текстовом редакторе. И почему при запуске через /browser/start-tor-browser/ запускается терминал?
  • Почему не запускается vagrant?

    @6ReD6 Автор вопроса
    Если убираю настройку

    config.vm.box_url = "vagrant"

    то выдает ошибку

    An error occurred while downloading the remote file. The error
    message, if any, is reproduced below. Please fix this error and try
    again.

    Couldn't open file C:/Users/dvgol/linux/focal64.box
  • Почему не запускается vagrant?

    @6ReD6 Автор вопроса
    Теперь стал выдавать ошибку; An error occurred while downloading the remote file. The error
    message, if any, is reproduced below. Please fix this error and try
    again.

    Couldn't open file D:/Dima/programs/linux/vagrant

    Вот так выглядит vagrantfile

    # -*- mode: ruby -*-
    # vi: set ft=ruby :

    # All Vagrant configuration is done below. The "2" in Vagrant.configure
    # configures the configuration version (we support older styles for
    # backwards compatibility). Please don't change it unless you know what
    # you're doing.
    Vagrant.configure("2") do |config|
    boxname = 'focal64.box'
    basedir = ENV.fetch('USERPROFILE', '')
    basedir = ENV.fetch('HOME', '') if basedir == ''
    basedir = basedir.gsub('\\', '/')
    config.vm.box_url = "file://#{basedir}/linux/#{boxname}"
    # The most common configuration options are documented and commented below.
    # For a complete reference, please see the online documentation at
    # https://docs.vagrantup.com.

    # Every Vagrant development environment requires a box. You can search for
    # boxes at https://vagrantcloud.com/search.
    config.vm.box = "laravel/homestead"

    # The url from where the 'config.vm.box' box will be fetched if it
    # doesn't already exist on the user's system.
    config.vm.box_url = "vagrant"

    # Create a forwarded port mapping which allows access to a specific port
    # within the machine from a port on the host machine. In the example below,
    # accessing "localhost:8080" will access port 80 on the guest machine.
    # NOTE: This will enable public access to the opened port
    config.vm.network "forwarded_port", guest: 80, host: 8080

    # Create a forwarded port mapping which allows access to a specific port
    # within the machine from a port on the host machine and only allow access
    # via 127.0.0.1 to disable public access
    # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"

    # Create a private network, which allows host-only access to the machine
    # using a specific IP.
    # config.vm.network "private_network", ip: "192.168.33.10"

    # Create a public network, which generally matched to bridged network.
    # Bridged networks make the machine appear as another physical device on
    # your network.
    # config.vm.network "public_network"

    # Share an additional folder to the guest VM. The first argument is
    # the path on the host to the actual folder. The second argument is
    # the path on the guest to mount the folder. And the optional third
    # argument is a set of non-required options.
    # config.vm.synced_folder "../data", "/vagrant_data"

    # Provider-specific configuration so you can fine-tune various
    # backing providers for Vagrant. These expose provider-specific options.
    # Example for VirtualBox:
    #
    # config.vm.provider "virtualbox" do |vb|
    # # Display the VirtualBox GUI when booting the machine
    # vb.gui = true
    #
    # # Customize the amount of memory on the VM:
    # vb.memory = "1024"
    # end
    #
    # View the documentation for the provider you are using for more
    # information on available options.

    # Enable provisioning with a shell script. Additional provisioners such as
    # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the
    # documentation for more information about their specific syntax and use.
    # config.vm.provision "shell", inline: <<-SHELL
    # apt-get update
    # apt-get install -y apache2
    # SHELL
    end
  • Почему не запускается vagrant?

    @6ReD6 Автор вопроса
    сергей кузьмин, в браузере ссылка открывается нормально. А подскажите как запустить из файла?
  • Почему не запускается vagrant?

    @6ReD6 Автор вопроса
    сергей кузьмин, возникает та же ошибка:
    The box 'ubuntu/xenial64' could not be found or
    could not be accessed in the remote catalog. If this is a private
    box on HashiCorp's Vagrant Cloud, please verify you're logged in via
    `vagrant login`. Also, please double-check the name. The expanded
    URL and error message are shown below:

    URL: ["https://vagrantcloud.com/ubuntu/xenial64"]
    Error: The requested URL returned error: 404
  • Почему не запускается vagrant?

    @6ReD6 Автор вопроса
    сергей кузьмин, не знаю на сколько читаем скрин. Это происходит при вводе команды vagrant up.
  • Почему не запускается vagrant?

    @6ReD6 Автор вопроса
    сергей кузьмин,
    # -*- mode: ruby -*-
    # vi: set ft=ruby :

    # All Vagrant configuration is done below. The "2" in Vagrant.configure
    # configures the configuration version (we support older styles for
    # backwards compatibility). Please don't change it unless you know what
    # you're doing.
    Vagrant.configure("2") do |config|
    # The most common configuration options are documented and commented below.
    # For a complete reference, please see the online documentation at
    # https://docs.vagrantup.com.

    # Every Vagrant development environment requires a box. You can search for
    # boxes at https://vagrantcloud.com/search.
    config.vm.box = "ubuntu/focal64"

    # Disable automatic box update checking. If you disable this, then
    # boxes will only be checked for updates when the user runs
    # `vagrant box outdated`. This is not recommended.
    # config.vm.box_check_update = false

    # Create a forwarded port mapping which allows access to a specific port
    # within the machine from a port on the host machine. In the example below,
    # accessing "localhost:8080" will access port 80 on the guest machine.
    # NOTE: This will enable public access to the opened port
    config.vm.network "forwarded_port", guest: 80, host: 8080

    # Create a forwarded port mapping which allows access to a specific port
    # within the machine from a port on the host machine and only allow access
    # via 127.0.0.1 to disable public access
    # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"

    # Create a private network, which allows host-only access to the machine
    # using a specific IP.
    # config.vm.network "private_network", ip: "192.168.33.10"

    # Create a public network, which generally matched to bridged network.
    # Bridged networks make the machine appear as another physical device on
    # your network.
    # config.vm.network "public_network"

    # Share an additional folder to the guest VM. The first argument is
    # the path on the host to the actual folder. The second argument is
    # the path on the guest to mount the folder. And the optional third
    # argument is a set of non-required options.
    # config.vm.synced_folder "../data", "/vagrant_data"

    # Provider-specific configuration so you can fine-tune various
    # backing providers for Vagrant. These expose provider-specific options.
    # Example for VirtualBox:
    #
    # config.vm.provider "virtualbox" do |vb|
    # # Display the VirtualBox GUI when booting the machine
    # vb.gui = true
    #
    # # Customize the amount of memory on the VM:
    # vb.memory = "1024"
    # end
    #
    # View the documentation for the provider you are using for more
    # information on available options.

    # Enable provisioning with a shell script. Additional provisioners such as
    # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the
    # documentation for more information about their specific syntax and use.
    # config.vm.provision "shell", inline: <<-SHELL
    # apt-get update
    # apt-get install -y apache2
    # SHELL
    end

    624840b41635b206303067.jpeg