Alessio Bolognino

Results 7 comments of Alessio Bolognino

https://github.com/aws/aws-cdk/blob/070f5ecebfba8a3f9b5771b251ee9b584aa89b67/packages/%40aws-cdk/aws-iam/lib/private/imported-role.ts#L70 the function addManagedPolicy for ImportedRole only adds a warning `Not adding managed policy: ${policy.managedPolicyArn} to imported role: ${this.roleName}`, is this a missing implementation or an intended behavior? the warning...

example of such function ``` elisp (defun org-msg-tag-addressee() "Completes an email address in the current buffer with an org-mode mailto link" (interactive) (let* ((addressees (append (mail-extract-address-components (org-msg-message-fetch-field "to") t) (mail-extract-address-components...

`mail-extract-address-components` returns (FULL-NAME CANONICAL-ADDRESS), but FULL-NAME can be nil. the code doesn't seem to handle that gracefully as I'm getting `nil` as an option. `completing-read` also doesn't like duplicate options,...

it doesn't seem to work on my machine, I'm not really sure why TBH

The problem I see in implementing this is that subvert itself changes the search register, so it could lead to unexpected result the second time you execute it.

I'm sorry for the wording, there was absolutely no intent to be rude, I was just trying to be terse. I'll try to keep more in mind the point of...

as a workaround, I'm doing something like this (I only care about the side-effect and not about the returned value) ``` elisp (let ((results (org-ql-select (org-agenda-files) '(and (or (deadline :on...