José Valim

Results 187 issues of José Valim

Today I wrote this code: ```elixir defn navigate(tensor) do {size, _} = Nx.shape(tensor) {_, depth, position, _} = while {i = 0, depth = 0, position = 0, tensor}, i...

kind:feature
note:discussion
area:defn

The goal is to improve the clarity over what is imported. Don’t send a pull request for this yet as it requires https://github.com/phoenixframework/phoenix_html/issues/372 to be completed and many helpers to...

Outdated by warnings in the compiler (since v1.4): * name_redeclaration_by_assignment.ex * name_redeclaration_by_case.ex * name_redeclaration_by_fn.ex Outdated by the formatter in Elixir v1.6: * line_endings.ex * space_around_operators.ex * space_in_parentheses.ex * tabs_or_spaces.ex *...

This feature will allow developers to invoke a Broadway pipeline from ad-hoc processes. For example, if you have a Cowboy handler, you may want to use Broadway features from each...

enhancement
help wanted

Issue opened to collect feedback from the community.

Kind:Discussion

Elixir v1.8 will include timezone support, which will allow Timex to shrink a bit. As Elixir calendar support improves, we want to ideally support it by an ecosystem of focused...

RFC
feature/enhancement

The goal is to introduce `filter_with`, `summarize_with`, `mutate_with`, `arrange_with`, and `distinct_with`. ## Attack plan * [x] Support `filter_with` with row-based series operations * [x] Support `summarize_with` with aggregation-based series operations...

The range implementation should be a matter of: take(df, Enum.slice(0..n_rows(df), range))

Ideally we will have a separate test file for testing how each of them works when grouped, removing all of .group calls from data_frame_test.exs. ### Group handling * [x] group_by...