So here is my second try to publish this tool..
It basically reads a Text File and spins the words randomly and puts that out in another Text File.
This would be useful if you are cloning content and you don't want to get the "duplicate content" message by google and get deranked due to that.
You can run the executable with "spinner.exe yourfilename.txt"
An example of the output is in the image below:
original file: test.txt
output file: out.txt
I guess most of you guys don't have python installed so i created an executable. You can scan, sandboxie, whatever it. It's clean
Download:
https://www.sendspace.com/file/73jv35
Virustotal Scan: https://www.virustotal.com/de/file/9d07d4aa79bf0684a9f8907e4644eab334d38165bb911fe4d0edcfdd79429af3/analysis/1425313850/
For those of you who do have python installed here is the source code, very simple, very small:
Hope i helped someone!
It basically reads a Text File and spins the words randomly and puts that out in another Text File.
This would be useful if you are cloning content and you don't want to get the "duplicate content" message by google and get deranked due to that.
You can run the executable with "spinner.exe yourfilename.txt"
An example of the output is in the image below:
original file: test.txt
output file: out.txt
I guess most of you guys don't have python installed so i created an executable. You can scan, sandboxie, whatever it. It's clean
Download:
https://www.sendspace.com/file/73jv35
Virustotal Scan: https://www.virustotal.com/de/file/9d07d4aa79bf0684a9f8907e4644eab334d38165bb911fe4d0edcfdd79429af3/analysis/1425313850/
For those of you who do have python installed here is the source code, very simple, very small:
Code:
import random
import sys
words = list()
out = open('out.txt','w')
with open(sys.argv[1],'r') as f:
for line in f:
for word in line.split():
words.append(word)
random.shuffle(words)
for i in words:
out.write(i+' ')
out.close()
Hope i helped someone!
Last edited: