Pietro Vertechi
Pietro Vertechi
Label could say `i =123` for example, to avoid having the readout far away.
All widget arguments that are passed to Knockout (e.g. the list of options) should also accept Observables and when upgraded Knockout would automatically update only that part of the widget.
The dictionary should be overloadable by the `WidgetTheme`: this should simplify creating a new backend drastically. It should also allow to customize a theme using user css code or a...
The following simple app fails to be executed: ```julia module MyApp using FFTW function julia_main()::Cint @show FFTW.fftw_provider @show fft(rand(10)) return 0 end end # module ``` I'm on julia 1.7.1...
Currently this gives: ```julia julia> using OffsetArrays julia> VectorOfArray([OffsetArray(rand(2), 0:1)]) ERROR: size not supported for arrays with axes (0:1,); see http://docs.julialang.org/en/latest/devdocs/offset-arrays/ ``` but in principle I guess it could work...
The following is valid Tullio code: ```julia @tullio C[i ÷ 2, k] += A[i, j] * B[j, k] ``` but a naive implementation could incur in a race condition (as...
At the moment we use `select(t, All())` to select everything, and `select(t, All(args...))` to select the union of the selectors in `args`. This is a bit inconsistent, as the empty...
List of things to do concerning the transition to a more `Iterator` based style. Getting rid of inference: - [x] `collect_columns` (https://github.com/JuliaComputing/IndexedTables.jl/pull/135) - [x] port `map` (https://github.com/JuliaComputing/IndexedTables.jl/pull/137) - [x] port...
Tables.jl uses a [lazy row type](https://github.com/JuliaData/Tables.jl/blob/master/src/fallbacks.jl#L8) (basically a custom type that has the original table and the index of the row) instead of materializing the whole `NamedTuple`. I was wondering...
```julia julia> Columns(rand(2), names = [Symbol("false")]) ERROR: TypeError: Type{...} expression: expected UnionAll, got NamedTuples._NT___1__{Bool} Stacktrace: [1] #Columns#15(::Array{Symbol,1}, ::Type{T} where T, ::Array{Float64,1}, ::Vararg{Array{Float64,1},N} where N) at /home/pietro/.julia/v0.6/IndexedTables/src/columns.jl:40 [2] (::Core.#kw#Type)(::Array{Any,1}, ::Type{IndexedTables.Columns}, ::Array{Float64,1})...