Note
I am no longer actively updating this document.
- Microsoft.Build.NoTargets for building a project that produces no assembly
import re | |
from urllib.parse import urlparse | |
from typing import Generator, Tuple | |
BRACKETS = [ | |
('(', ')'), | |
('[', ']'), | |
('{', '}'), | |
('<', '>'), | |
] |
Note
I am no longer actively updating this document.
This is not my work, but I wanted to share it here because it's a great hack. I found it on this 1Password forum thread. The original author is Sn0wCrack.