Kevin Patel
Kevin Patel
I think it's best to keep peaclock simple. Do one thing and do it well. Multiple instances in a tiling wm or a terminal multiplexer solves this.
I second @pigmonkey, especially because -no-custom already exists to disallow custom selections. The current behavior of '-multi-select' is what I would expect with '-multi-select -no-custom'. Doing what @pigmonkey suggests would...
Hey I just saw this thread. I did some implementations of Ehler's work a while ago if anyone is interested: ```julia """ Exponential moving average (EMA) """ function ema(pₜ::AbstractVector{T}, α::Real=.07)...
@ideoma where is the list of supported file systems?
> Such `full_seq` function makes sense, but it should be rather added to some utility package rather than DataFrames.jl I think (as it is not related to `DataFrame`). > >...
@igorrivin I'm using Linux and fixed the problem by trying add [email protected], to see what in my environment was preventing the update to the latest version of CUDA. One of...
I second this. I was looking for a good Julia programming group and I couldn't find it on this list, so I googled and found Humans of Julia
Getting `can't convert int to string` error when trying to parse a list of three strings as integers
I tried splitting the first string and got this. So it appears there are some hidden chars in the string: `$bdf.0 | split chars` output: ``` ╭───┬───╮ │ 0 │...
[This package](https://github.com/bmc/Eglob.jl) extends glob.jl to add a a recursive ** pattern
I've noticed that using `StringViews` instead of String does not improve performance for me (actually slightly worse performance and higher alloc). These are in the docs for `String` (julia 1.8.5)....