Elliott

Results 10 comments of Elliott

Omaha would be a welcome addition for sure. My first thought would be to make it a ranker param. ``` let whole_hand = Hand::new_from_str("AhKhQhJhThQhJhTh9h8h").unwrap(); let rank = whole_hand.rank_omaha().unwrap(); ``` Something...

So these decks are large enough that copying them in a simulation might be a pretty large mistake. Can you tell me more about why clone is needed here?

This is one of the same problem that seems to be addressed by phoenixframework/phoenix/pull/5000 In that pull request @shamanime added a `attr :selected` to the `:option` slot. [Here](https://github.com/phoenixframework/phoenix/pull/5000/files#diff-95cf43325e324172c956b13560010fe8499188fe7e26c5fff76eaabda50d3e4eR258) That allows...

This got added in another pull request. It should go out in 2.0.0

I would like to suggest a `GenServer` per `K8s.Connection` with a DynamicSupervisor for this first. We can always add an ETS table if the token read throughput is too slow....

> That being said, is anybody willing to implement this? We will. I'll start with the exec and put it up for review.

#302 is my start at this. I or @JTarasovic still need to do a lot before the entire feature is complete.

I prefer keeping that setting safer. I did find that adding: ```elixir {:dialyxir, "~> 1.3", only: [:dev, :test], runtime: false}, ``` into every sub-application worked around everything. See this example...

@denvaar Yep that's what I see as well. I think the warnings are from #502

This is now needed to build AWS SDK v2 (specifically SSO service). Without it, you get an error: ``` > vendor/github.com/aws/aws-sdk-go-v2/service/sso/endpoints.go:12:2: cannot find module providing package github.com/aws/aws-sdk-go-v2/internal/endpoints: import lookup disabled...