Pavlo
Pavlo
Why not extract the escaping function and put it with the `print` one? It would be better to have one function instead of a lot of the same ones.
https://github.com/mitchellh/boot2docker-vagrant-box now it IS more than straightforward!
Is there any way forward here? I get similar "permission denied" errors and it's not clear whether it can be fixed in current setup at all. I am using lima...
Clarification: I didn't get permission denied for chown itself for rootful docker installation. Instead I could not connect to docker via sock file created by this: ``` ssh -f -N...
Same for us. clusters are generated using kops, ICMP is allowed, EOFs are still here.
I can easily reproduce it with these targets: ``` { "targets": { "echo": { "inputs": [], "outputs": ["{projectRoot}"], "dependsOn": ["non-cacheable-echo"], "executor": "nx:run-commands", "options": { "command": "true" } }, "non-cacheable-echo": {...
@MaxKless AFAIR, it was not only about generating files. Imagine, that you have .gitignore in package directory and you specify that you cache output of full directory. Then when it...
@davissp14 can you look at this one? It seems my change was not working properly in all cases, as it was mutating metadata, which is passed several layers deep and...
@headius oh nice, thank you. For everyone else you can put this in your `~/.irbrc`: ```ruby if RUBY_ENGINE == 'jruby' && JRUBY_VERSION >= '9.4' IRB.conf[:USE_SINGLELINE] = true end ```
To not create a separate `subscribe_list` method, I'd propose something like this: ``` def subscribe(*topics_or_tpl) if topics_or_tpl.length == 1 && topics_or_tpl.first.is_a?(TopicPartitionList) tpl = topics_or_tpl.first.to_native_tpl else # construct tpl the old...