If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
| #!/usr/bin/env python | |
| import sys | |
| import subprocess | |
| def print_wiki_options(file) : | |
| subprocess.call("clear") | |
| with open(file, 'r') as f : | |
| for line in f: | |
| sys.stdout.write(line) |
| # http://stackoverflow.com/questions/748675/finding-duplicate-files-and-removing-them/748908#748908 | |
| import sys | |
| import os | |
| import mmh3 | |
| CHUNK_SIZE = 1024*1024 | |
| def check_for_duplicates(paths): |