4Geeks Coding Projects tutorials and exercises for people learning to code or improving their coding skills
Difficulty
easyRepository
Click to openVideo
Not available
Live demo
Not available
Average duration
4 hrs
Technologies
Finding a domain name is hard, why not automate it? :)
Do not clone this repository.
The first step to start coding is cloning the vanillajs boilerplate on your local computer or opening it using gitpod.
a) If using Gitpod (recommended) you can clone the boilerplate by clicking here.
b) If working locally type the following command from your command line: $ git clone https://github.com/4GeeksAcademy/vanillajs-hello
.
💡 Important: Remember to create a new repository, update the remote (git remote set-url origin <your new url>
), and upload the code to your new repository using add
, commit
and push
.
app.js
javascript file.console.log("Any string");
to show something on the console.$ node app.js
, if you run it locally, make sure you have node.jsCreate a script that generate all the possible domain name combinations from a list of pronouns, adjectives and nouns, for example:
1 let pronoun = ['the','our']; 2 let adj = ['great', 'big' ]; 3 let noun = ['jogger','racoon'];
Should generate something like:
1thegreatjogger.com 2thegreatracoon.com 3ourgreatjogger.com 4ourgreatracoon.com 5thebigjogger.com 6thebigracoon.com 7ourbigjogger.com 8ourbigracoon.com
You'll need to use nested for loops in order to mix the different values together.
Your tools: For loop, string concatenation.
lastOfUs.com
you can use the .us
domain like this: lastOf.us
Before the domain market was centralized and converted into a mafia controlled by Godaddy, Enom and some others. Normal people like you and me were able to buy a .com domain relatively easy.
In fact, this project was originally built in 2002 by one of 4Geeks teachers while he was trying to find domain names to buy for several projects.
4Geeks Coding Projects tutorials and exercises for people learning to code or improving their coding skills
Difficulty
easyRepository
Click to openVideo
Not available
Live demo
Not available
Average duration
4 hrs
Technologies