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
/** | |
* Text-underline-animation | |
*/ | |
a { | |
font-size: 500%; | |
text-decoration: none; | |
background: linear-gradient(currentColor, currentColor) bottom / 0 .1em no-repeat; | |
transition: 1s background-size; | |
} |
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
""" | |
This script finds the total size of an ftp directory by recursively opening directories | |
@author: Albert Wang ([email protected]) | |
September 18, 2010 | |
""" | |
""" | |
Changes made by Himanshu Shekhar (https://github.com/himanshub16) | |
----------------------------------------------------------------------- | |
* OptionsParser added instead of sys.argv | |
* Support for port added for ftp client |