Danylo Ulianych
Danylo Ulianych
## Problem The line [456](https://github.com/jjoe64/GraphView/blob/047769ac3fbf06055fef3ab49ae515a0ec8b5322/src/main/java/com/jjoe64/graphview/series/BaseSeries.java#L456) ``` mData.remove(0); ``` of `BaseSeries.appendData` function makes an internal copy of the whole array on each call. This is because `mData` is initialized as an...
Consider adding `app:OnProgressChanged` optional tag feature in xml that triggers the specified function to avoid setting up dummy `setOnProgressChangedListener` listener that redirects `int progress` to the user function.
## Steps to Reproduce (for bugs) 1. `use exploits/routers/linksys/eseries_themoon_rce` 2. set a target 3. `run` 4. (inside a cmd) hit CTRL-D ## Your Environment * RouterSploit Version used: latest (from...
Thank you for providing the object browser. It'd nice to have a search field where one can look for specific methods and fields.
`atmosphere.py` has an impulse response function that I can convolve with the signal to obtain an attenuated signal. How to use the `reflection.py` module? ```python from acoustics.reflection import Boundary signal...
The references in autosummary preview are rendered in long hashes again. Doc: https://pytorch-mighty.readthedocs.io/en/latest/reference/loss.html Source: https://github.com/dizcza/pytorch-mighty/blob/master/mighty/loss/__init__.py The workaround posted in #130, unfortunately, does not help. Now it parses the references in...
Welford's online algorithm for the population mean and variance estimation. Partially addresses #151. The primary idea of this feature, however, is to use the batched computation approach as a part...
`kernprof -o` works well only of `-o output.lprof` comes before `-l /path/to/script.py`. `kernprof -l examples/granger_example.py -o output.lprof` Saves stat file to `granger_example.py.lprof`. Expected to save it to `output.lprof`.
Neo DataObject has the `__deepcopy__` function, but it's slow, compared to cloning the array only: ```python from copy import deepcopy sts = [elephant.spike_train_generation.homogeneous_poisson_process(rate=10*pq.Hz, t_stop=1*pq.s) for _ in range(1000)] %timeit deepcopy(sts)...