Recent content by HybridTF

  1. H

    Amazon question

    I searched around a little bit about this, but couldn't find an answer. Is it against any rules to manage other people's amazon associate accounts?
  2. H

    [TUT] Make Amazon Sites That Convert

    This may be off topic, but it is about amazon. For those of you with sites that try to monetize amazon, how many unique clicks (on average) do you guys get daily on your amazon links?
  3. H

    Truncate Twitter Passowrds in a Certain format

    Python code to do what you wanted. import re f = open('input.txt', 'r') f2 = open('output.txt', 'w') for line in f: port = re.split(': ',line)[0] print(port) f2.write(port) f2.write('\n') f.close() f2.close() Input file: Output file:
Back
Top