• Welcome to DNForum.com - Domain Investor Forum, Free Domain Marketplace and a community for 45+ domain pros
    If you are new to domains and looking to buy, sell and learn about domains then you have come to the right place. DNForum is the oldest global domain name community on the internet and continues to grow every day. There are over 45,000 domainers on DNForum doing everything from buying domains, selling domains, using our free in-house built tools, learning about domains and discussing domains. Take a minute and Register.

LLLL list ?

Status
Not open for further replies.
Long list: 456,976 names total.

Run this from Excel:

Sub AAAA_ZZZZ()
Dim W As Integer, X As Integer, Y As Integer, Z As Integer
Dim r As Long, c As Integer
'Suspend Screen Updates, Calculations, and Events for speed
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Application.EnableEvents = False
For W = 65 To 90
For X = 65 To 90
For Y = 65 To 90
For Z = 65 To 90
Range("A1").Offset(r, c) = Chr(W) & Chr(X) & Chr(Y) & Chr(Z)
r = r + 1
If r = Rows.Count Then: r = 0: c = c + 1
Next: Next: Next: Next
'Resume Screen Updates, Calculations, and Events
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
Application.EnableEvents = True
End Sub
 
Here's how I do it, as simple as it can be:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>LLLL domain names</title>
</head>

<body>
<?php 

$alpha = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'); 
$extension = '.com'; 

for ($i=0; $i<26; $i++) 
{ 
   for ($j=0; $j<26; $j++) 
   { 
      for ($k=0; $k<26; $k++) 
      { 
		   for ($m=0; $m<26; $m++) 
      { 
		
	  
	
         echo $alpha[$i] . $alpha[$j] . $alpha[$k] . $alpha[$m] . $extension . "\n";
	echo "<br />";   

	
      } 
	  }
   } 
}
?>
</body>
</html>


You can change the extension, make different combinations etc... Or you can make custom letter generator (also LLLL but without specific letters - call them premium domains if you want):

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Custom letter LLLL domain names</title>
</head>

<body>
<?php 

$alpha = array('a','b','c','d','e','f','g','h','i','l','m','n','o','p','r','s','t'); 
$extension = '.com'; 

for ($i=0; $i<17; $i++) 
{ 
   for ($j=0; $j<17; $j++) 
   { 
      for ($k=0; $k<17; $k++) 
      { 
		   for ($m=0; $m<17; $m++) 
      { 
		
	  
	
         echo $alpha[$i] . $alpha[$j] . $alpha[$k] . $alpha[$m] . $extension . "\n";
	echo "<br />";   

	
      } 
	  }
   } 
   }
?>
</body>
</html>


Try this on your hosting server, but I'm pretty sure you'll get a "script time limit exceeded" message. That can be bypassed on your localhost server (find that parameter in your php.info and increase the time allowed for scripts to execute).

Other than that, your browser could crash... If you survive everything I mentioned, it works.
 
Status
Not open for further replies.
Back
Top Bottom