http://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html https://www.youtube.com/watch?v=_wiGpBQGCjU
This file contains 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
/** | |
* :Author: Chad Skeeters | |
* :Contact: [email protected] | |
* Stylesheet for use with Docutils/rst2html. | |
* Example: rst2html --stylesheet=rst2html.css README.rst doc/html/README.html | |
*/ | |
html { | |
font-size: 100%; | |
-webkit-text-size-adjust: 100%; |
This file contains 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
# Use those functions to enumerate all interfaces available on the system using Python. | |
# found on <http://code.activestate.com/recipes/439093/#c1> | |
# WARNING! Only returns interfaces with an address! | |
import socket | |
import fcntl | |
import struct | |
import array |
This file contains 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
<<COMMENT | |
NICE DATES | |
========== | |
I frequently want to make timestamped files. | |
The 'date' command built in formats all contain spaces and | |
colons and things I don't want in a file name. | |
So it is necessary to construct something. | |
I find myself needing to do this again and again, hopefully I can |