David Janda
David Janda
Is this issue up-for-grabs? If so, I can take a shot at fixing it. I just discovered Teleport this past week and I would love the chance to contribute.
@mickmister Thanks for the feedback you posted on my PR! I'll make those changes and work on getting my environment setup so that I will be able to test changes...
I created a branch to start working on this issue and I'll open a PR once it's ready or if I need to ask questions :smile:
@ukutaht Is something like this what you had in mind? In `lib/plausible/stats/base.ex`: ``` def utc_boundaries(%Query{period: "day"}, _timezone) do last_datetime = NaiveDateTime.utc_now() |> Timex.shift(seconds: 5) first_datetime = NaiveDateTime.utc_now() |> Timex.shift(days: -1)...
Ah I see, that makes sense. The `shift_back` function looks like it handles the month and year periods similarly, so I'll try adding another case for the day period.
Should the UID be hardcoded to a different value other than 1000 or dynamically assigned at runtime?
Would the following be appropriate to move to the `@moduledoc` section of `Membrane.Element`? https://github.com/membraneframework/membrane_core/blob/115eceb34d9b7165748156d511a3524c41b942d8/lib/membrane/element/base.ex#L8-L46
Searching for `use Espec` in this repo resulted in 0 matches. Does this mean that all tests were converted to ExUnit and this issue can be closed?
Hello, I did a bit of research regarding how different HTML elements handle keyboard accessibility. It is possible to add keyboard navigation to the existing `li` elements, but that would...
Hi @diego-escobedo, I would be interested in adding more webhook tests. After taking a look at `backend/metering_billing/tests/test_subscription.py`, I can't find the `TestInvoiceWebhooks` class that was added in #639. It appears...