ytti

Results 163 comments of ytti

Yes it would be possible to add such support, but I'm at least not incentivized to work on this, perhaps someone else is.

I think your group may have been boolean true, instead of a string.

What does this print in shell: ```shell ruby -rresolv -e 'p Resolv.new.getaddress("ytti.fi")' ```

And `resolve_dns` is set to true (default)? Then node.ip should be set to that, and SSH should be using that. Otherwise node.ip should be the name, which then would be...

I would expect IPv6 as well, and don’t have good answer, I’d need to dig deeper but I don’t have appetite to try to reproduce on my end. If you...

I think you're running different ruby in shell and different ruby for Oxidized. If you change your Oxidized to run under the ruby you're using in shell, it should start...

It is probably good idea to be able to force this anyhow, but let's punt that to later date when we are sure someone actually wants it.

I'm going to change your question. a) Is it possible now, without touching code or model: No b) Is it possible by touching code: Yes, I hope, obviously. On avenue...

> We could provide a method and/or variable for the models do disable metadata, so that users ca disable the feature if they don't want it. I'm thinking something like:...

You have few options. ```ruby string.encode("UTF-8", invalid: replace, undef: replace, replace: '?') string.b ``` The first returns the string asUTF-8 replacing non-UTF-8 with ?. The second returns binary string, which...