Adam Lancaster

Results 33 issues of Adam Lancaster

### Environment * Elixir & Erlang/OTP versions (elixir --version): elixir 1.10.2 erlang 22.2.8 * Operating system: unix ### Current behavior When I try this: ```sh mix archive.install https://github.com/riverrun/phauxth_installer/raw/master/archives/phauxth_new.ez ``` I...

bug

I have this factory: ```elixir def thing_factory() do %Thing{name: Ecto.UUID.generate()} end ``` name is a column with a unique index. When I do this: ```elixir for _

I think it would be worth removing the ability to configure through Application config, as it should be discouraged (that's not what application config is for) and it currently wont...

refactor

This adds a working example for setting a phoenix 1.5+ liveview app with Tailwind.

Currently there is an issue with Poison in this library. Is it possible to switch to using [jason](https://github.com/michalmuskala/jason). It is faster, has become the default for lots of elixir libraries...

type: feature request

In the app engine Docs it says things like: > Cloud Client Libraries will automatically find and use the service account credentials. Is that true for this environment? I need...

type: question

When I make a query to BQ on a column that is a utc datetime I am returned a string that looks like this: ```elixir %GoogleApi.BigQuery.V2.Model.TableCell{v: "1.561017697269367E9"} ``` I _think_...

type: feature request

Hey 👋 I wondered if you have a benchmark to compare to this approach to a persistent term?

Right now we have `validate_nested_changeset` where we have defined an interesting traversal for changesets. It 1. Ensures each step in the given path is a changeset 2. will handle has_many...

Using ecto_morph as a factory in tests allows us to leverage changesets to create valid data structures. We should demo how this can be nice for factory functions: ```elixir def...