4Geeks logo
4Geeks logo
About us

Learning library

For all the self-taught geeks out there, here our content library with most of the learning materials we have produces throughout the years.

It makes sense to start learning by reading and watching videos about fundamentals and how things work.

Full-Stack Software Developer

Data Science and Machine Learning - 16 wks

Search from all Lessons

Social & live learning

The most efficient way to learn: Join a cohort with classmates just like you, live streams, impromptu coding sessions, live tutorials with real experts, and stay motivated.

← Back to Projects

Continue learning for free about:

Domain Name Generator

Goal

4Geeks Coding Projects tutorials and exercises for people learning to code or improving their coding skills

Difficulty

easy

Repository

Click to open

Video

Not available

Live demo

Not available

Average duration

4 hrs

Technologies

The Domain Name Generator

Finding a domain name is hard, so why not automate it? :)

🌱 How to start this project

Do not clone this repository because we are going to be using a different template.

We recommend opening the vanillajs boilerplate using a provisioning tool like Codespaces (recommended) or Gitpod. Alternatively, you can clone it on your local computer using the git clone command.

This is the repository you need to open or clone:

https://github.com/4GeeksAcademy/vanillajs-hello

πŸ‘‰ Please follow these steps on how to start a coding project.

πŸ’‘ Important: Remember to save and upload your code to GitHub by creating a new repository, updating the remote (git remote set-url origin <your new url>), and uploading the code to your new repository using the add, commit and push commands from the git terminal.

Then follow these steps:

  1. Create one app.js javascript file.
  2. Add your code inside your app.js file.
  3. You have to use console.log("Any string"); to show something on the console.
  4. Run your code by typing: $ node app.js, if you run it locally, make sure you have node.js

πŸ“ Instructions

Create 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

πŸ’‘ Hint

You'll need to use nested for loops in order to mix the different values together.

Your tools: For loop, string concatenation.

😎 Feeling confident?

  • Add several types of extensions: .com, .net, .us, .io, etc.

  • Add domain hacks, for example: instead of lastOfUs.com you can use the .us domain like this: lastOf.us

A bit of history about the project

Before the domain market was centralized and converted into a mafia controlled by Godaddy, Enom, and others. Normal people like you and me are able to buy a .com domain relatively easily.

In fact, this project was originally built in 2002 by one of the 4Geeks teachers while he was trying to find domain names to buy for several projects.

This and many other projects are built by students as part of the 4Geeks Academy Coding Bootcamp by Alejandro Sanchez and many other contributors. Find out more about our Full Stack Developer Course, and Data Science Bootcamp.

Goal

4Geeks Coding Projects tutorials and exercises for people learning to code or improving their coding skills

Difficulty

easy

Repository

Click to open

Video

Not available

Live demo

Not available

Average duration

4 hrs

Technologies