Adam Lancaster
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...
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...
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...
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...
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_...
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...