- Impact
- 311
Just did a scan of "good letter" CVCV.mobis.
40.8% are taken (2953 of 7225 taken).
Here's a little bit of php code that creates CVCV .mobis. Run it against a bulk domain availability checker, and you can track things yourself.
<?php
$consonants = array("b","c","d","f","g","h","j","k","l","m","n","p","r","s","t","v","w");
$vowels = array("a","e","i","o","u");
$array1 = $consonants;
$array2 = $vowels;
$array3 = $consonants;
$array4 = $vowels;
for ($counter1 = 0; $counter1 < 17; $counter1++) {
for ($counter2 = 0; $counter2 < 5; $counter2++) {
for ($counter3 = 0; $counter3 < 17; $counter3++) {
for ($counter4 = 0; $counter4 < 5; $counter4++) {
echo $array1[$counter1];
echo $array2[$counter2];
echo $array3[$counter3];
echo $array4[$counter4];
echo ".mobi";
echo "<br>";
}
}
}
}
?>
40.8% are taken (2953 of 7225 taken).
Here's a little bit of php code that creates CVCV .mobis. Run it against a bulk domain availability checker, and you can track things yourself.
<?php
$consonants = array("b","c","d","f","g","h","j","k","l","m","n","p","r","s","t","v","w");
$vowels = array("a","e","i","o","u");
$array1 = $consonants;
$array2 = $vowels;
$array3 = $consonants;
$array4 = $vowels;
for ($counter1 = 0; $counter1 < 17; $counter1++) {
for ($counter2 = 0; $counter2 < 5; $counter2++) {
for ($counter3 = 0; $counter3 < 17; $counter3++) {
for ($counter4 = 0; $counter4 < 5; $counter4++) {
echo $array1[$counter1];
echo $array2[$counter2];
echo $array3[$counter3];
echo $array4[$counter4];
echo ".mobi";
echo "<br>";
}
}
}
}
?>















