Djones A. Boni
Djones A. Boni
That would be nice 2 On Vim we can do it adding this to vimrc: ```vimrc " Back to NORMAL mode when terminal window loses focus autocmd FocusLost * call...
The same compilation error described above happens if we use std::nothrow with new, to get a NULL pointer instead of throwing an exception. ```c // No throw new int *ptr...
+1 It would be nice to have the option to not group the windows, so we can click directly on what we need. The possibility to reorder the group, or...
Additionally, it would be useful to add linker options in build.zig. We are missing something like `exe.linkAdditionalOptions("--coverage");` When trying to generate coverage data the linker fails because there are symbols...
Note that the return value from `lookup('ansible.builtin.password', '/dev/null', length=4, chars='hexdigits')` has type `ansible.utils.unsafe_proxy.AnsibleUnsafeText`.
Hi, I tried the code below (old and suggested lookups): ```yaml --- - name: Not creating user with random password from variable hosts: test-ubuntu vars: mariadb_user_password1: "{{ lookup('ansible.builtin.password', '/dev/null', length=4,...
Yes the users are created: ``` # echo "select user,host,password from user;" | mysql -u root mysql User Host Password mariadb.sys localhost root localhost invalid mysql localhost invalid database_user1 localhost...