jtrakk
jtrakk
My Android phone has a dedicated "back" button. In most apps, it cancels modal dialogs or goes back to the parent page. Currently in Nomie it does nothing or closes...
Currently the mood tracker interface is a slider like this  This has some problems: - There is a default value that might bias my inputs. - When I want...
Hello, I'm writing to mention that there is an [issue being discussed at VSCode GitHub](https://github.com/microsoft/vscode/issues/107989) about supporting files with multiple embedded languages. The question is whether it would be useful...
@tkf [wrote](https://discourse.julialang.org/t/partitionby-retaining-key/62820/4) > Unfortunately, stateful transdcuers like `Unique` cannot be used after parallelizable transdcuer like `ReducePartitonBy`. It’s kind of a cost of parallelizability. There can be a better design to...
A thought inspired by https://github.com/JuliaFolds/Transducers.jl/issues/481: > Take(n) > > Take n items from the input sequence. This makes me think `1:3 |> Take(10)` would error. To make the behavior more...
```jl julia> 5 |> @chain identity 5 julia> 5 |> @chain (x->x) ERROR: LoadError: Can't insert a first argument into: begin #= REPL[5]:1 =# x end. First argument insertion works...
`describe()` doesn't give much information about Dates. ``` DataFrames.describe(Dates.Date.(2000:2005)) Summary Stats: Length: 6 Type: Dates.Date Number Unique: 6 ``` whereas `describe(1:4)` gives more info. ``` Summary Stats: Length: 4 Missing...
If I'm on the v1.5 Filesystem docs and I click on the v1.6 link in the bottom-left corner, it goes to the home page https://docs.julialang.org/en/v1.6/, not the Filesystem page, which...
In this example, one of the cases is a typo and always matches. I would like to get a an error for this. ```jl using MLStyle using MLStyle.AbstractPatterns: literal MLStyle.is_enum(::T)...
Sometimes I want to match on an enum. ```jl using MLStyle @enum Var left middle right @match right begin left => 0 middle => 1 right => 2 end ```...