SMSergey Murtazininsergeystuff.hashnode.dev·Apr 4, 2023 · 1 min readHow to change a time zone in Windows using the command lineSometimes you can't change a time zone using GUI. For example, I don't know why, such an option is not available to me. You can try to do it using a command line. Open the command line as an administrator. Use tzutil /g to check the current time zon...00
SMSergey Murtazininsergeystuff.hashnode.dev·Jan 31, 2023 · 1 min readHow to use RedisJSONInstallation It’s a plugin, thus you should install it first. To install it, it’s necessary to build it from the source code git clone https://github.com/RedisJSON/RedisJSON.git cd RedisJSON # be shure tha Rust is installed cargo build --release Run...00
SMSergey Murtazininsergeystuff.hashnode.dev·Oct 2, 2022 · 1 min readVagrant: copy from/to guest to/from localAt first, you need to install two plugins To do it you need to install vagrant-scp plugin. But it depends on vagrant-vbguest vagrant plugin install vagrant-vbguest vagrant plugin install vagrant-scp Use vagrant global-status to find out the id or nam...00
SMSergey Murtazininsergeystuff.hashnode.dev·Sep 30, 2022 · 2 min readSetup and configure Elasticsearch on local machine with DockerAs written on the official page about how to Install Elasticsearch with Docker you need: Install Docker (of course) Create a new docker network docker network create elastic Start Elasticsearch in Docker. A password is generated each time for a new...00
SMSergey Murtazininsergeystuff.hashnode.dev·Jul 6, 2022 · 1 min readHow to run the specific test in golangSimple answer: go test -run <TEST_NAME> Long answer Keep in mind, that go test -run takes a regexp as a parameter. It means that if you have several two tests: TEST_NAME and TEST_NAME_2. If you want to run only TEST_NAME, you should run go test -run...00