Andrey Paramonov
Andrey Paramonov
## Current Behavior Preview export to PDF always saves background rect. ## Expected Behavior There should be an option to have transparent background, like when exporting PNG. ## Your Environment...
With https://github.com/benfred/py-spy/pull/74 it is now possible to output stacks for visualization with `flamegraph.pl` or e.g. [Speedscope](https://www.speedscope.app). The latter respects stack order in the input file ("Time Order") by default. PR...
This change makes stack order deterministic, preserving the order they were first encountered. Then, this "natural" order can be considered when building the actual flame graph. Useful with https://github.com/benfred/py-spy/pull/74
[pymunk.Body](http://www.pymunk.org/en/latest/pymunk.html#pymunk.Body) seems to only support gravitation, but not other types of mechanical forces, e.g. electricity. Is it possible to specify body electric charges? More generally: is it possible to specify...
To reproduce: ````latex \documentclass{beamer} \begin{document} \section{test} \section{another test} \begin{frame} \tableofcontents[pausesections] \end{frame} \end{document} ```` On the first page, PDF viewer displays table of contents consisting of one item "test" (correct). Hovering...
This extends `Client.validate_scopes()` to additionally take `request` argument (and, essentially, `request.user`) so both `scopes` and `user` are available in validation/authorization logic.
Currently, `asks` supports extensible authz/authn: https://asks.readthedocs.io/en/latest/overview-of-funcs-and-args.html#authing https://github.com/theelous3/asks/blob/master/asks/auth.py It is possible to inherit from `AuthBase` to introduce missing auth methods. Unfortunately, `asks.auth.AuthBase` is not compatible with `requests.auth.AuthBase`: http://docs.python-requests.org/en/master/user/authentication/#new-forms-of-authentication It would be...
Generated HTML file fails to render if using some color palettes, e.g. "Set2": https://github.com/hrbrmstr/streamgraph/blob/16aee37644fb115a8b218a7b34e2c19838e70c1f/inst/htmlwidgets/streamgraph.js#L52 Fixed by changing `9` to `8`.
Latest OAuthLib says: `DeprecationWarning: Please switch to the public method populate_token_attributes.` It is proposed to obey and switch from `_populate_attributes()` to `populate_token_attributes()` call.
Currently, user can query arrays by coordinate ranges. However, certain work-flows require processing the entire dataset/array, although not necessarily loading it fully into memory. Tiles represent natural data units for...