Marcus Wood

Results 17 comments of Marcus Wood

@JoeyEremondi I see it as reactive part, it's not variables, it's definitions: ``` > a = 1 1 : number > b = a + 2 3 : number >...

Thank you @Bruuu. Your help is much appreciated.

Haha, this was more like an example issue we plan to add more like this. I'm sure we'll be happy to see `Elixir.Faker.Pokemon.It.location/0` :)

hey, I love the idea. And appreciate the work. I have not dealt with design in OSS, usually, we go through a few iterations. I see the logic in the...

I don't think we can use official logo due to licence. What do you think about this one? https://pixabay.com/photos/bottles-potions-ink-dye-magic-4387824/ > Free for commercial use > No attribution required Feel free...

well, we want to make it right, and I think first we need to do before it, decide how we'll manage langs and locales. Like `en_UK` & `en_US`. it should...

Hi @anthonator I'm not very familiar with this standard, but I would be happy to look at it, we can always prefix it if we decide not to make it...

Hi @popo63301, In the beginning, I had JSON files as data, but it was quite fast dropped as it was magic on top of it (metaprogramming). I have always envisioned...

I think you can achieve this with something similar to what we do in faker tests itself. https://github.com/elixirs/faker/blob/53668128544c7891763531e35c8b1088c15ae8d5/test/test_helper.exs#L2 I'm currently not using `faker`, if you want to give it a...

@anthonator we still use elixir random, it's just to be more extensible wrapped, so you can use old versions or new. You can also write your own implementation to use...