Go back to all Articles

The Power of Mobile Apps for Small Businesses

GitHub is a great platform that allows developers to share their open-source projects with the world. There are a lot of repositories out there that can help you as a developer by providing great value for you. So no matter what type of developer you are, you should always take the advantage of GitHub.

In this article, I decided to curate some useful GitHub repository that you can benefit from as a web developer. Let’s get right into it.

Description of imgage.
Some long image title

1. Developer Roadmap

The developer roadmap is one of the popular useful repositories that you should know. It has over 153.000 GitHub stars, which means that it’s very useful.

This repository contains a lot of charts and images demonstrating the paths you can take and the technologies you need depending on what type of developer you want to become (backend, frontend, etc). So it’s a web developer’s roadmap that helps you choose your path.

Some bullet template:

  • Bullet title
  • Long bullet title
Description of imgage.
Some long image title

Block example with code that can be copied


            // Validate schema of each item in response
            var results = jsonData["results"];
            for (i = 0; i < results.length; i++) {
            tests["Name in planet exists"] = ("name" in results[i]);
            tests["Rotation in planet exists"] = ("rotation_period" in results[i]);
            tests["Orbital Period in planet exists"] = ("orbital_period" in results[i]);
            tests["Diameter in planet exists"] = ("diameter" in results[i]);
            tests["Climate in planet exists"] = ("climate" in results[i]);
            tests["Gravity in planet exists"] = ("gravity" in results[i]);
            tests["Terrain in planet exists"] = ("terrain" in results[i]);
            tests["Surface water in planet exists"] = ("surface_water" in results[i]);
            tests["Population in planet exists"] = ("population" in results[i]);
            tests["Residents in planet exists"] = ("residents" in results[i]);
            tests["Films in planet exists"] = ("films" in results[i]);
            tests["Created in planet exists"] = ("created" in results[i]);
            tests["Edited in planet exists"] = ("edited" in results[i]);
            tests["Url in planet exists"] = ("url" in results[i]);
            }          
          
Copied!
Description images.
Description images.
Description images.