Brian Chavez

Results 114 comments of Brian Chavez

Hi @ChristoWolf, thank you for creating an issue. * Do you have a code sample that demonstrates what you are trying to ultimately achieve? A full code example would help....

@ChristoWolf, I think this is what you're looking for; a way to reset the seed deterministically at the `Faker` level with a custom data set. The basic idea is to...

Yeah, I think that makes sense. We should probably add the extra code to the `Food` dataset example. I'll leave this ticket open until we get the work completed. Thanks...

Hi @ChristoWolf, that's a great way to generalize the solution. Maybe, we could add it, but I would need to really think about it. Generally, I don't change the public...

Hi @niklashaetty , yes, this looks like a bug. At least according to: https://fi.wikipedia.org/wiki/Henkil%C3%B6tunnus it looks like the check character needs to use this table for a lookup value. Can...

@niklashaetty nice. glad you have a fix. correct, this repo is protected (by default, on GitHub). to contribute on GitHub: * first you need to fork `bchavez/Bogus` to `niklashaetty/Bogus`; ![image](https://user-images.githubusercontent.com/478118/132769892-239d76ee-590a-42e3-a0bc-399d6d6a2182.png)...

Hi @logiclrd, thank you for the PR. I'll try to review the changes this weekend.

Hi @xadvfh, I think, for now, you'd want to use a C# extension method workaround for readability as demonstrated below: ```csharp void Main() { var account = new Faker() .RuleFor(a...

Hi @levipage Thanks for the suggestion. Your suggestion makes sense, but I'll need some time to think this one through. I'm slightly concerned with the API code smell/inconsistency and semantics....

I absolutely agree, having to specify the `IEnumerable` rule with `Generate(N, X)` would be too clunky. The thought passed through my mind too but wasn't feeling it. My thinking on...