Uğur Özyılmazel

Results 53 comments of Uğur Özyılmazel

Hmmm... well, we would like to keep **kommit** as simple as it can. It is like a notebook, keep the thoughts somewhere, use it when its time to do commit....

Quick question, TextMate 1 is no longer available. The difference between names such as "TextMate 1" or "TextMate 2" is over. So, I'm keeping the name TextMate... No one calls...

``` pip install -U mlx-audio mlx_audio.tts.generate --text "Hello, world" Error loading model: Module.load_weights() got an unexpected keyword argument 'weights' Traceback (most recent call last): File "/Users/vigo/.virtualenvs/trash/lib/python3.12/site-packages/mlx_audio/tts/generate.py", line 92, in generate_audio...

🥇 hi @arthur-verta , this a big progress... i'm a bit busy at the moment.

hmm... dalf uses built-in list filters by default. like regular; ```python list_filter = ['foo__bar__baz'] ``` should also work. i'll check on it. keep you posted.

the problem is related to builtin ajax autocomplete view. only completes foreign keys. i'll investigate how to implement this feature. i don't want to override django's builtin views. i'll see...

```python list_filter = [('foo_bar_baz', DALFRelatedField)] ``` works. only `DALFRelatedFieldAjax` doesn't work due to built-in auto complete view.

i want to implement it, seems a bit challenging. my main goal was to use all the built-ins shipped with django and kind of wrap around w/o adding or tweaking...

Well, that would be lovely if you implemented it and made a PR. I was following Django's conventions and don't want to override the existing logic. As Django suggests, I...