Evan Widloski

Results 51 issues of Evan Widloski

Some screenshots would be nice for potential users to evaluate your app.

Adds a keyword argument `axis` allowing to specify which axes to tile: ``` python >>> A = np.arange(3)[None, :] >>> A [[0 1 2]] >>> np.tile(A, (1, 2)) [[0 1...

01 - Enhancement

Lightkurve currently places config and cache in `~/.lightkurve`. Many Linux tools nowadays are moving to follow the [XDG base directory specification](https://xdgbasedirectoryspecification.com/), which suggests putting cache/config files in `~/.cache/lightkurve` and `~/.config/lightkurve`...

:flying_disc: discussion

It seems like the demo widget at https://wamp-proto.org/intro.html#what-can-i-do-with-this is no longer working.

A small quality-of-life improvement would be if the default format string included the name attribute by default. ``` python >>> t = Timer('foobar') >>> t.start() >>> time.sleep(1) >>> t.stop() foobar...

It would be helpful if there was a way to start the timer when it is instantiated, such as `t = Timer().start()` or `t = Timer(now=True)`. This can reduce the...

Any chance this could be release on PyPI?

I was struggling with the scatter example for a bit because datapoints appear appear underneath landmasses by default. The tutorial should mention that setting zorder to 10 is necessary to...

It would be nice if there was an Android .apk available in the releases so people don't have to build the app themselves or who don't have access to the...

Allows user to specify a specific GPG key with `--sign-key KEYNAME` instead of always using the default key.