Keyword (anchor tag) Randomizer?

Maddrax

Registered Member
Joined
Jun 26, 2011
Messages
71
Reaction score
12
Hey guys,

When I do my manual link building I would like to have a tool that randomizes my anchor text or keywords that I don't loose track of how often I used certain anchors.

It would be ideal if I could assign percentages to the keywords e.g.

keywords #1 should be used 60% (main keyword)
keyword #2 20%
keyword #3 10%

etc... Whenever I click on "Generate" it spits out the keywords according to their assigned percentages.

How do you manage that, is there a tool for that?

Thanks!
 
I don't know of one but it would be pretty easy to have one made.
 
i could make a tool like that, and give you the option to import a textfile with all your anchors then assign percentages to them or spread it even( say you have 10 items, spread even that would mean 10% for each item) i could have it finished quite fast as i already have some code lying around here that i could use.

only thing i would ask is a small 5$ for the effort pm me if your interested
 
it's not that difficult in php..

Code:
<?PHP 

/////////
//function to grab random line from file
//////


function grabWord($filename) {

$output="";
$file = fopen($filename, "r");
while(!feof($file)) {

    //read file line by line into variable
  $output = $output . fgets($file, 4096);
 
}
fclose ($file); 

$array = explode("\n",$output);

$rand_key = array_rand($array, 1);

return $array[$rand_key];

}

$randomWord = grabWord("path/to/file");

echo $randomWord;

?>
 
that php code works, however i think that the op was looking for a windows application that did this. i just finished coding it,

features:
- add keywords manually inside the app
- load keywords from file
- edit the keywords and there chance/probability
- keep the window on top of other windows
- copy the random selected keyword to clipboard with one click.

downloadlink:
Code:
http://www.mediafire.com/?k8uuja5s7h3gzdj

virustotal:
Code:
File name: rndprobabilitykeywordchooser.zip
Submission date: 2011-09-06 16:30:36 (UTC)
Current status: finished
Result: [COLOR="Red"]0[/COLOR]/ 44 (0.0%)

hope you like it, percentages/chances should be 100% in total for it to be acurate you can still select with a total of less /more then 100% but teh app will inform you that it will be less acurate also the percentages of probability should be entered inside the app without the %

have a nice day and thank me for this lol,

alexj.affiliate
 
Last edited:
i havent got any feedback of the OP.
i would love to hear if the app did what the OP wanted/ was helpfull. or if not i would love to hear suggestions.

take care,

Alexj.affiliate
 
Hi,

I am sorry, I had lost track of this thread because somehow I didn't receive an email.

I'll have a look at your posts tomorrow. Thanks for your effort!
I'll let you know.
 
Hi,

I am sorry, I had lost track of this thread because somehow I didn't receive an email.

I'll have a look at your posts tomorrow. Thanks for your effort!
I'll let you know.

no problem, i had some source code here anyway and wanted to make a similar program myself ;) program is programmed by m ute in c#. its pretty basic but does the things you asked for in your first post

I also want to know about this. thanks

why don you check it out yourself ;) i programmed it and there is a virustotal. give it a try and let me know what you think about it
 
Hey Alex,

Again sorry for the dalay. And thanks for your programming efforts. This tool is exactly what I have been looking for! I have already installed it and am playing around with it now.

Thanks and rep given!
 
Back
Top