Alexander Plavin

Results 201 issues of Alexander Plavin

this throws KeyError as before when the attribute isn't there (AttributeError in python) when the attribute is present, but its computation throws a python exception, this PR rethrows it in...

Hi! I have a class that does some checking before setting an attribute value, like this (pure Python): ```python class A: def __setattr__(self, name, value): if value == 0: raise...

Hi! Is it possible to automatically convert postgres arrays to julia arrays? E.g. when there is `array_agg` in the query.

Commonly called "range search" (https://en.wikipedia.org/wiki/Range_searching), but NN.jl already has `inrange` that selects points within a circle - so I call the new function `inrect`.

Weighted `mean` gives wrong (conjugated) result for `complex` arrays: `mean([1 + 0.5im], weights([1])) == 1.0 - 0.5im`.

**upd 2025**: _see [Uncertain.jl](https://github.com/JuliaAPlavin/Uncertain.jl) for fast error propagation that ignores correlations_ It looks like this package has a lot of overhead for simple math operations - about 50 times slower...

enhancement
help wanted
performance

**Is your feature request related to a problem? Please describe.** It is already pretty convenient in Obisidan to link dates like as `- [ ] do something on [[2021-05-05]]` or...

enhancement

Please note that I have only used `traitlets` as a part of `ipywidgets`, and not sure how feasible are the suggestions below for its other uses - but for widgets...

I saw several old issues regarding overflow exceptions, but looks like they are considered solved. However, I experience the following: ``` using Unitful, UnitfulAstro julia> 1.0u"GHz^2 * J * c^-2"...

There are many units defined by `Unitful` itself, and as I see it gives no way to disable them. Some of the default units have very short generic names, even...