This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* COMMON STYLES | |
------------------------------------- */ | |
/*--- Screen size code / lg ---*/ | |
@media (min-width: 1281px) { | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pip install --install-option="--include-path=/usr/local/Cellar/graphviz/2.38.0/include/graphviz" --install-option="--library-path=/usr/local/Cellar/graphviz/2.38.0/lib/graphviz" pygraphviz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from http.server import HTTPServer,SimpleHTTPRequestHandler | |
from socketserver import BaseServer | |
import ssl | |
HOSTNAME = 'localhost' | |
HTTPS_PORT = 8443 | |
httpd = HTTPServer((HOSTNAME, HTTPS_PORT), SimpleHTTPRequestHandler) | |
httpd.socket = ssl.wrap_socket(httpd.socket, keyfile='server.key', certfile='server.crt', server_side=True) | |
print('Running https server on port {0}. Check it out with open https://{1}:{0}'.format(HTTPS_PORT, HOSTNAME)) | |
httpd.serve_forever() |