Results 10 issues of Kevin Patel

I humbly request for peaclock to adhere to the [xdg base directory specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html). I request this because it seems like an easy change and the xdg standard very commonly used....

`Indicators.hma(Float64.(.1:.1:10.0))` works, but `Indicators.hma(Float32.(.1:.1:10.0))` throws a dispatch error when it calls `wma`. I think this is because the `wma` is defined, both the input and weight array are of type...

Indicators already has rolling and running (expanding) stats, but having exponentially weighted versions of these would be useful to calculate things like exponentially weighted standard deviation and all the other...

## Description I'm having a problem described in the trouble shooting section of the wiki: "When I switch to Nvidia, the built-in screen of the laptop stays black but I...

bug
display manager ?

I switched my sxhkd keybinding to open a file manager from `lf` to `joshuto`. The sxhkd keybind looks like this: ``` super + f $TERMINAL -e $FILE ``` where `TERMINAL=st`...

### Describe the bug I'm trying to parse a `list` to `list` (hexadecimal) and am getting a "can't convert int to string" error on what appears to be the string...

needs-triage

I like using StructArrays.jl for data manipulation. Converting a `StructVector` to a `NamedTuple` is basically free because of how `StructArray` is implemented. There are a number of Tables.jl types that...

Running `PaddedView(missing, 1:7, (-2:7,))` in the REPL outputs this: ``` 10-element PaddedView(missing, ::UnitRange{Int64}, (-2:7,)) with eltype Union{Missing, Int64} with indices -2:7: missing missing missing 1 2 3 4 5 6...

The current `get_all` does not convert keys to symbols and symbol values stored as strings to actual symbols. As a result, the dictionary returned is not splattable and often not...

I was sad to find Julia doesn't have a TreeSHAP implementation so I ported [FastTreeSHAPv1](https://arxiv.org/abs/2109.09847) for my favorite boosted trees library. This PR is in case others find it useful....