(From http://www.anta.net/misc/telnet-troubleshooting/imap.shtml)
openssl s_client -connect _hostname_:993 -quiet
a1 LOGIN MyUsername MyPassword
a2 LIST "" "*"
a3 EXAMINE INBOX
a4 FETCH 1 BODY[]
a5 LOGOUT
(From http://www.anta.net/misc/telnet-troubleshooting/imap.shtml)
openssl s_client -connect _hostname_:993 -quiet
a1 LOGIN MyUsername MyPassword
a2 LIST "" "*"
a3 EXAMINE INBOX
a4 FETCH 1 BODY[]
a5 LOGOUT
This affects [email protected]
clones, which caused me an issue with bower
.
The fix in this case is to cause git
to use https://
rather than git://
by running this command in the working directory:
git config url."https://".insteadOf git://
To revert the setting run:
Verifying that +gilesdring is my blockchain ID. https://onename.com/gilesdring |
#!/usr/bin/env python3 | |
''' | |
Dummy SAML listener to dump the SAMLResponse key from the request body | |
Start with `python3 saml_dump.py` | |
''' | |
import base64 | |
import urllib.parse | |
from http.server import HTTPServer, BaseHTTPRequestHandler |
#!/usr/bin/env bash | |
# Deal with case that we're on the initial commit | |
[[ $(git rev-parse HEAD) == $(git rev-list --max-parents=0 HEAD) ]] || PARENT="HEAD^.." | |
cat <(git log ${PARENT}HEAD --format=format:'# %s - %h - %ai%n%n%b%n') CHANGELOG.md > CHANGELOG.tmp | |
mv CHANGELOG.tmp CHANGELOG.md |
find . -type f | xargs openssl md5 | cut -f2 -d' ' | sort | openssl md5 |