cfytrok

Results 14 issues of cfytrok

Disconnect method stop working without exception. Condions: 1. Many consumers 2. db access in sync_func Bug doesn't reproduce every time. When there are multiple db access calls and db modification...

bug

What are the difficulties in using the algorithm for games that return reward on each step? And for infitit games? It seems, that you just need to slightly change the...

I want to implement Kuhn poker and create pull request. The documentation says that I have to inherit from classes in rlcard/core.py. However, Leduc poker is implemented by inheriting from...

help wanted

It looks like the scan_level parameter was responsible for this earlier. But it has been deprecated. What can I do to limit depth of crawl?

Automatically attach icon/image to the node based on node text. MindMeister's WunderBild as example.

Ticking is associated with work. Need a checkbox to turn off the ticking sound during the break.

Please add test case, when key_fields=['pk']. bulk_sync. get_field('pk') raises FieldDoesNotExist https://github.com/mathandpencil/django-bulk-sync/blob/8b4dc964e86fbf96d91a86b64343f642f8e311b4/bulk_sync/__init__.py#L87

Replace bulk_create with iteration in atomic transaction in a multi-table inheritance scenario. ```python if is_multitabel_inheritance(self.model): with transaction.atomic(): for obj in objs: obj.save() return objs def is_multitabel_inheritance(cls): for parent in cls._meta.get_parent_list():...