Michael Chrisco

Results 69 comments of Michael Chrisco

Any updates on this issue or do we need to compile it ourselves?

I am seeing something similar with UUIDs: ``` $ python manage.py dump_object receiving.Inventory '*' Traceback (most recent call last): File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\lib\site-packages\django\db\models\fields\__init__.py", line 2392, in to_python return...

Found out what the issue was: Error: `python manage.py dump_object app.model '*'` No Error: `python manage.py dump_object app.model *`

I was able to get this working by referencing the branch/git commit explicitly: requirements.txt: ``` -e [email protected]:davedash/django-fixture-magic.git@466fa35c075009e4a1974f6e588471dd9e720e53#egg=django_fixture_magic ``` That is set to the most recent git commit on the master...

Thank you so much for your work over the years! After the redesign of reddit, I put rtv on almost all of my systems because of the clean interface.

Same here, Would love to see the --soft-fail command as I would like to warn people of errors within a couple of scripts but not make the script fail.

Im having the same issue on a `composer update` after using `- uses: php-actions/composer@v6`

Interesting, I was able to get this (potentially) working by doing the following: ```python client = SwaggerClient.from_url('https://raw.githubusercontent.com/michaelachrisco/accelapy/main/api-auth.json') ``` In other words, something is different between getting the api via the...

The gem did not register ``` Ruby gem 'twitter-bootstrap-rails', git: 'https://github.com/seyhunak/twitter-bootstrap-rails.git', branch: 'bootstrap3' ``` correctly. Not a huge deal on my side, but may need a fix later on.

```python from bark import SAMPLE_RATE, generate_audio, preload_models from IPython.display import Audio #import gc #gc.collect() #torch.cuda.empty_cache() # download and load all models #preload_models() preload_models( text_use_small=True, coarse_use_small=True, fine_use_gpu=True, fine_use_small=True, ) # generate...