Mark

Results 117 comments of Mark

`poetry run python manage.py run --debug` is quite verbose. The alternative is to activate the virtual environment first with `poetry shell`, which is nicer I suppose, but still not as...

The most detailed documentation we have for it is here https://github.com/python-discord/site/blob/main/manage.py#L29-L41 In the contributing guide it's just abstracted away to the poetry task since for development, contributors will almost always...

Not sure how discoverable the docs are currently. Maybe there is a way to add docs for custom commands so that django displays its docs in the help menu in...

Would removing a reaction opt-out of the reminder? If so, would people spam-toggling the reaction be a concern for the reminders endpoint of our API?

I'm not convinced the linters and type checkers make sense to add. There was a discussion about black here before https://discord.com/channels/267624335836053506/429409067623251969/851901038093140049 > That said, I'm not sure how widely useful...

@onerandomusername No longer disabled since #2080. Do you plan to continue working on this?

I'm a fan of the slimmer design you demonstrated for the role command. Including an image of the colour is a good call. That being said, I believe all the...

Feel free to remove the mention command while you're at it, if that's all obsolete now.

The only way I see a decorator working is if the command returns the message it sends so that the decorator can retrieve it and call `wait_for_deletion`.

Using a decorator feels confusing (because it's less direct and relies on return values, which is kind of implicit). Furthermore, I think it's redundant. Is it really a worthwhile design...