Membership is FREE – with unlimited access to all features, tools, and discussions. Premium accounts get benefits like banner ads and newsletter exposure. ✅ Signature links are now free for all. 🚫 No AI-generated (LLM) posts allowed. Share your own thoughts and experience — accounts may be terminated for violations.

LLLL list ?

Status
Not open for further replies.

JohnnJohnn is verified member.

Level 14
Legacy Exclusive Member
Joined
Apr 13, 2004
Messages
15,995
Reaction score
1,420
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
 

Aleksandar

Level 5
Legacy Platinum Member
Joined
Apr 16, 2009
Messages
441
Reaction score
4
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.
Top Bottom