Brian Cardarella

Results 63 issues of Brian Cardarella

Using the Math function for easeOutBack: https://easings.net/#easeOutBack ```ts function easeOutBack(x: number): number { const c1 = 1.70158; const c3 = c1 + 1; return 1 + c3 * pow(x -...

No idea if there is a way to detect this and weight it lower in the sort order

# Implementing ETS Erlang Term Storage (ETS) is built on top of two data structures (depending on the options passed to `ets:new/2`) - an AVL tree in the general case...

runtime
runtime/bifs
help wanted

The current implementation requires you to pass a keyword list as the render opts. However, the JSON API spec says these opts should be controlled via the query params. The...

Towards the end of the hero6.raw sample file there are a few chunks of data that identify of type `'f'` for a 32-bit float but the size is 12 with...

I'd like to use NextDNS to lock out every DNS request but then selectively opt into the domains that are allowed via the Allowlist. From what I understand the only...

✨ feature-request

This rewrite represents a few years of pain and suffering finally being overcome! Unfortunately this will be a major API change and the upgrade path is not yet obvious. Considering...

- [x] compile time fixture parsing - [x] module attribute `@fixture` loading - [x] new fixture dsl - [x] fixture grouping - [x] single DAG creation - [x] proper association...

There is a use case for composite primary keys not currently supported. Associated test in Ecto: https://github.com/elixir-ecto/ecto/blob/6beeda443b8204d8c38113866a8e656d9fa546ed/test/ecto/schema_test.exs#L264-L274

I've been bouncing the idea around in my head on a potential new API. It would look something like this: ``` elixir @fixtures [:foo, :bar] test "some test", context do...