I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
import os, csv | |
def split_csv(input_file, row_limit=1000, output_name_template='output_%05d.csv', output_path='.', delimiter=',', keep_headers=False): | |
""" | |
Splits a CSV file into multiple files. | |
""" | |
def get_csv_writer(i): | |
path = os.path.join(output_path, output_name_template % i) |
# Requires https://github.com/sparklemotion/mechanize | |
import mechanize, urllib2, time, datetime | |
ROUTER_URL = 'http://192.168.50.1/' | |
ROUTER_PASSWORD = 'xxx' | |
def get_mech_browser(): | |
b = mechanize.Browser(factory=mechanize.RobustFactory()) |
#!/bin/bash | |
for file in *; do | |
[[ -f $file ]] && mv "$file" "`date -r "$file" "+%Y-%m-%d-%H:%M:%S"`_$file" | |
done |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.