This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { createServer } = require("http"); | |
const fs = require("fs"); | |
const fsp = require("fs").promises; | |
let path = require("path"); | |
const { parse } = require("querystring"); | |
/* | |
The querystring module provides utilities for parsing and formatting url query strings | |
The parse method of the query string parses a URL query string into a collection of keys and value pairs. | |
For example , the query string 'name=adeleke&[email protected]' is parsed into |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** CSS SELECTORS | |
-------------------- | |
CSS selectors are the valid ways we can use in selecting elements | |
to apply style on to in our web page. | |
You can use the following as selectors : | |
1. Tag Name e.g p | |
2. ID name e.g #red-color | |
3. Class name e.g .red-color | |
4. Child selecto e .red-color > h3 | |
5. Sibling selector .red-color + .blue-color |
This project is focused on showing how you should approach development of any new project.
Duration 28:17 minutes
This gist contains the following lessons :
This lesson is a 9 minutes video that shows you what and how the resource for learning is composed.
It also focuses on what we will be learning in the front end program.
DevOps is a software delivery philososhpy that increases a teams capabiltity to produce results at high frequency. It is a combination of two words : "Development" and "Operations" which is a term that describes the operation of a team collaborating throughout a software production process.
In this DevOps training , we will focus on :
- How to change our software delivery process
- Using DevOps tools
- Testing Softwares
- Monitoring and Logging