• 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.

How can I get the list of all LLL.com combinations

Status
Not open for further replies.

DN BROKER

New Member
Legacy Exclusive Member
Joined
Oct 12, 2005
Messages
5,697
Reaction score
235
1+1=2
 
Last edited:
1+1=2
 
Last edited:
Shorter and easier to type php script:

Code:
<?php
$alphabet = "abcdefghijklmnopqrstuvwxyz";
$letters  = str_split($alphabet,1);
foreach ($letters as $l1) {
    foreach($letters as $l2) {
        foreach($letters as $l3) {
            // replace <br/> by \n if executed from the command line
            echo "$l1$l2$l3.com<br/>"; 
        }
    }
}
 
Shorter and easier to type php script:
Shorter but single-purposed. Wtih the "more complicated" script you can, with slight modification, do LNL, LNN, NNL, LLN, NNN, NNL, LL, LN NL, NN etc as well as CVCV, VCVC, CVVC, VCCV etc. combos.
 
Shorter but single-purposed. Wtih the "more complicated" script you can, with slight modification, do LNL, LNN, NNL, LLN, NNN, NNL, LL, LN NL, NN etc as well as CVCV, VCVC, CVVC, VCCV etc. combos.

Just add some other arrays and modify each foreach{} loop to use whatever you want in that position. Nest another foreach for four characters or leave one out for two. Just as versatile.

Let me show you what I mean:

Code:
<?php
$alphabet = "abcdefghijklmnopqrstuvwxyz";
$letters    = str_split($alphabet,1);
$vowels = str_split("aeiou", 1);
$consonants = str_split("bcdfghjklmnpqrstvwxyz", 1);
$numbers = str_split("0123456789", 1);
...
now we have arrays representing letters, consonants, vowels, numbers. Add whatever you want

Let's use this to find all NLL.COM :

Code:
..
foreach ($numbers as $l1) {
    foreach($letters as $l2) {
        foreach($letters as $l3) {
            echo "$l1$l2$l3.com<br/>"; 
        }
    }
}

Or use this code instead to find all CVCV.COM:

Code:
..
foreach ($consonants as $l1) {
    foreach($vowels as $l2) {
        foreach($consonants as $l3) {
            foreach($vowels as $l4) {
                echo "$l1$l2$l3$l4.com<br/>"; 
            }
        }
    }
}

As flexible and versatile as it gets. Just add a string containing the characters you need (vowels, consonants, numbers, odd numbers, even numbers, etc.), and use it.

You never get this flexibility if you stuff all characters in one big array.
 
Now it is no more "short".
 
Now it is no more "short".
It still is but I think you don't understand. Anyway we are way offtopic now. I'd love to discuss this with you but let's do it in the coding/programming forum instead. If you want to just open a topic on this, notify me by u2u and I will respond.
 
Please don't send out mass LLLL.com spam; we have enough as it is. Good luck in your search.
 
Anyway we are way offtopic now.
Well OP got his answer so who cares :)

It still is but I think you don't understand.
Well I do understand, I am no big coder, my first language was BASIC so I still like clear definition and clear loops. You like it different. We can both achieve same. The only different whos script would be taking more resources, which in this case is not improtant anyway.
 
Greg won't be pleased but oh well :D
 
Wooh :) whatever we got some cool code thanks Theo, Denny and Leo .....
 
please dont spam more people trying to scam LLL.com owners out of good domains for little money, its F&%$ annoying..there are already a bunch here on the forum that emailed every LLL.com owner at least 5 times..
 
domainah said:
more people trying to scam LLL.com owners out of good domains for little money,

How can offering someone money for their domain be a scam?
 
thanks for the script - i'm a php newb and this really helped clarify some things for me.
 
I need the list of all combinations of lll.com's

from aaa to zzz

anyone know?

plz n ty

Last time I requested this, Fearless called me a spammer. :lol: I see domainah jumped right up to the task this round.
 
It is just the goodwill of people who shared their code we should thank them. Different people will use this newborn skill in different ways, I don't think LLL.com owners are that dumb anyways :)

It is not a scam to contact someone inquiring about a name, at the same time if you send an email to a LLL.com owner who happens to be a domainer it suck :) he/she feels that sender is a scammer trying to flick my valuable name for peanuts! its quite natural. If the receiver of the offer is a novice there is a chance that he sells it for under $1000 and the lucky buyer comes to forums ask appraisal :D

All in all it is happening and it continues happen in the future... It is just that seller beware know the value of your stuff. Buyer is not on the wrong side at all!
 
and the lucky buyer comes to forums ask appraisal

Do Not Presume you know who that was. :D We all know it was Colonel Mustard in the study with the candle stick.

** I got to quit coming to this forum drunk ** :lol:
 
Status
Not open for further replies.
Back
Top Bottom