Daniel Bershatsky

Results 23 issues of Daniel Bershatsky

There is not easy way to test interaction with Telegram Bot API. This should be fixed.

enhancement

Webhook provides simple way to monitor user activity and is usefull for debugging.

Add ability to set up timer in telegram bot in order to recieve regular notifications. It could be solved with crond and bash scripting on client side. However, built-in bot...

enhancement
help wanted

It would be better to restruct code and publish a kind of interface in order to everyone can use it as dependency. There are several issues. 1. Separate entry point...

### Proposed new feature or change: At the moment, print options are initialized with default options and can be changed with either `numpy.set_printoptions` function or `numpy.printoptions` context manager. Sometimes it...

### Bug description Consider the following snippet. ```python class MySpawner(DockerSpawner): async def start(self, *args, **kwargs): self.extra_create_kwargs['environment'] = {'LUPA': 'PUPA'}} return await super().start(*args, **kwargs) ``` The issue is a single-user server...

bug

It does not work is `c.ServerApp.local_hostnames = ['localhost', 'jupyter']` in config. In brower console one can find this. ``` 6774.bundle.js:1 Failed to load resource: the server responded with a status...

bug

```python case = 42 match case: case 42: print('answer') ``` The snippet above will be formatted with `yapf` as follows. ```python case = 42 match case: case 42: print('answer') ```

Package version in `flax.version` is not updated properly on regular basis. This results in impossibility to make a wheel out out git repo (e.g. `SETUPTOOLS_SCM_PRETEND_VERSION=0.7.1 python -m build -nw .`)....

### Expected behavior With PostgreSQL 14/15 RDBS as a storage backend, it is impossible to perform hyperparameter optimization. The issue is that `optuna` uses enum types which should be explicitely...

bug