Chulki Lee
Chulki Lee
What about using URL with tags instead of master branch? Like https://github.com/open-telemetry/opentelemetry-specification/blob/v0.7.0/specification/trace/api.md
@rf- using `begin` or `(` does not work - pry is trying to run shell command even in begin block or method definition. Is there a way to turn off...
This is because react-rails always require execjs - see https://github.com/reactjs/react-rails/blob/v2.4.7/lib/react/jsx.rb#L1
I haven't investigated far enough. Even react-rails try to avoid loading `execjs`, it would need a change to use server side rendering I guess. @AirWick219 you may use multi stage...
I'm hitting this problem while wrapping existing charts for customization (e.g. disabling some features by default, etc.). As helm 3 does not support passing variables down to subcharts programmatically out-of-box,...
@kav I'm already using that to provide default values from parent charts, and then override values with values on parent chart. It works, but it has many drawbacks: - Expose...
For the plan - Can helm contributors (who have better understanding of internals) give some assessment of this? e.g. Can this be implemented without breaking changes? For the demand -...
Oh good catch - I'm making tables with same width columns, so I couldn't catch that.
See [6. Key Identification](https://tools.ietf.org/html/rfc7515#section-6) and [Appendix D. Notes on Key Selection](https://tools.ietf.org/html/rfc7515#appendix-D). Note that `x5t` is another possible value for selecting the key. And plese note: not `kid` but `{kid, alg}`...
BTW you can do this using `transform_by/2` ```elixir ~x"./first/text()" |> transform_to_boolean() defp transform_to_boolean(arg) do transform_by(arg, fn 'false' -> false 'true' -> true "" -> nil end) end ```