Tim Cooper

Results 15 comments of Tim Cooper

@achempion do you have an example of how to do that?

I don't know if there is a proper way but I'd do something like: ```elixir {:ok, jobs} = Exq.Api.jobs(Exq.Api, "your-queue") job_you_care_about = Enum.find(jobs, fn j -> j.class == "Elixir.Module.Name" &&...

The other thing to keep in mind is that exq seems to guarantee "at least once" job execution so you should be writing your jobs for idempotence.

I got tired of this also so I implemented the following for absinthe: ```elixir defmodule GraphQL.Enum do defmacro ecto_enum(name, ecto_enum) do values = Keyword.keys(Macro.expand(ecto_enum, __CALLER__).__enum_map__()) quote do enum(unquote(name), values: unquote(values))...

@ono thanks for sharing that example - this evening I watched your ElixirConf presentation from earlier this year to see if you mentioned the approach you take, unfortunately you didn't...

Thanks for following up @philn - I just want to clarify some points: >I think upstream buildroot has proper WPE recipes nowadays. The repos you found are one outdated overlay...

I am probably projecting my own wishes on this PR but `ExUnit.Assertions` are great due to how much information is available when the assertion fails. One of the hardest things...

@alfert I can't imagine the assert code changing any time soon so copy pasting seems fine given that it is implemented as macros. I'm more unsure how'd you go about...

@sedlalu2 only the fdo (wayland) backend is supported on rpi4 - I got this error when I _also_ included the DRM backend in the build options. Regarding your command, I...

@aperezdc that doc is great - thanks.