Alice Zoë Bevan–McGregor

Results 87 comments of Alice Zoë Bevan–McGregor

Ah, an idea; it would be nice if these were exposed as a callback executed whenever a new title is set; this would allow for animation (i.e. temporary hiding of...

I've been using Automator, with The Unarchiver for extraction of virtually everything (`cbz`, `cbr`, `cb7`, …), piped through ImageOptim, then re-packed as an insanely over-compressed `cb7` archive which shaves off...

Additional heuristic: in code blocks which contain viable executable code _theoretically_ applicable to the problem, bare / outside the scope of a declared function, isolate the initial literal assignment(s) (which...

Only the original author can answer the question at this point, however I often guide people this way as a satirical example implementation of a broader-known joke concept. Where a...

Additional directly related feature request: the ability to exclude from notifications or home (or other) timelines posts which can not be replied to by the active user. Some are here...

It's not "eating" exceptions, it's transforming them. https://github.com/marrow/mailer/blob/3995ef98a3f7feb75f1aeb652e6afe40a5c94def/marrow/mailer/transport/smtp.py#L125-L129 Admittedly, this folds `SMTPSenderRefused` and `SMTPRecipientsRefused` into a single `MessageFailedException` whose `args[0]` references the actual exception that occurred. Additionally, it logs a...

Been doing the rounds updating issues here; so glad to finally have a chance to do this during work hours. https://github.com/marrow/mailer/issues/66#issuecomment-1749135127 referencing this issue points out that this correction has...

@seventhridge Notably, a diagnostic level / debug flag can't be set prior to connection initiation if a host is explicitly passed; this is the key point I've mentioned across all...

Closing as ancient; futures-based managers require the backport of [`futures`](https://pypi.org/project/futures/) to function prior to Python 3. Python 2 is dead and unsupported.

Without feedback, and upon retrospective review, the configuration is incorrectly structured. ```py { 'manager.use': 'immediate', #'futures' 'manager.workers': 5, } ``` Note the distinction of appending `.use` to the key name...