Dani Hodovic

Results 198 comments of Dani Hodovic

Also, is it possible to use the same global options as fzf, e.g: `let g:fzf_files_options = "--ansi --preview \"bat --style=plain $( echo {} | awk '{print $NF}' )\" --preview-window right:100"`...

@tartley is there any workaround for resetting the color inside of pudb?

Temporary workaround ```python from attachments.admin import AttachmentInlines class AttachmentInlinesWithoutCreator(AttachmentInlines): fields = ('attachment_file',) class MyAdmin(admin.ModelAdmin): inlines = (AttachmentInlinesWithoutCreator,) def save_related(self, request, form, formsets, change): attachment_formset = formsets[0] attachment_form = attachment_formset.forms.pop() message...

I wrote https://github.com/danihodovic/celery-exporter/ to workaround this issue

Any idea on how to get a variable into the i3 / i3blocks process? I store said variables in .zshrc

Are there any forks that are better maintained than this repo?

If you are serious about maintaining it I would start with a fresh repo and not from a fork. People tend to be skeptical when they see forked repos.

I would create a fresh repo and maintain that. Over time people will find out that this repo is unmaintained and perhaps find @da-edra's up-to-date project. You only need a...

86 pull requests open and no merged commits since March 26. It seems like we are back in square 1 :smiley:

Is there no consideration for poetry? With Poetry the project wouldn't need to maintain three files (base, local, production), everything is maintained in one file and built in to the...