Richard Abrich

Results 141 comments of Richard Abrich

It seems to work for at least some english phrases as well, e.g.: > 'the quick brown fox jumps over the lazy dog' ![image](https://user-images.githubusercontent.com/96320670/152665747-b35b5245-6d11-47e6-bebd-8e7f57561df7.png) ![image](https://user-images.githubusercontent.com/96320670/152665751-7424c416-b131-41e1-8885-669b4fbbab89.png) ![image](https://user-images.githubusercontent.com/96320670/152665754-5086fb41-382f-46b2-8ec3-9720c912f7ca.png)

Here's my (unsuccessful) attempt to use @cottrell's https://github.com/cottrell/superbasic: ```Bash pip install git+https://github.com/cottrell/superbasic.git pyarrow ``` ```Python from joblib import Memory import superbasic memory = Memory('__cache__', backend='superbasic') ``` Unfortunately this resulted in...

Any update on this? We are encountering the same issue.

@ftapajos thank you for the suggestion. Any update on this? I am interested in contributing 🙏

Related: https://github.com/kvesteri/sqlalchemy-continuum/issues/271 @tiangolo any thoughts on this would be greatly appreciated! 🙏

See https://github.com/timonweb/django-tailwind/issues/108 for possible solutions

Thanks @vasily-v-ryabov ! What is remaining in order for this to be merged?

Any update on this? Is there a branch we can contribute to? Thank you! 🙏

It looks like this is a problem in https://github.com/chriskiehl/re-wx/blob/main/rewx/widgets.py#L103. A workaround is to modify `rewx/widgets.py::frame()` from this: ``` frame.taskbarIcon = wx.adv.TaskBarIcon(iconType=wx.adv.TBI_DOCK) ``` To this: ``` try: frame.taskbarIcon = wx.adv.TaskBarIcon(iconType=wx.adv.TBI_DOCK) except...

``` pip install git+https://github.com/chriskiehl/[email protected] ```