Skip to content

Instantly share code, notes, and snippets.

View adeisbright's full-sized avatar

Adeleke Bright adeisbright

View GitHub Profile
@adeisbright
adeisbright / html-heading.md
Created August 17, 2021 10:31
Create Heading in your page

HEADING

Well written documents are hierarchical. The main point or points in the document are abstracted in to concise and easy to understand group of words. To create headings for different sections of our document, HTML offers six heading elements. They are:

  • h1
  • h2
  • h3
  • h4
  • h5
@adeisbright
adeisbright / bigjara-devops.md
Last active December 15, 2021 07:27
A DevOps primer

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 :

  1. How to change our software delivery process
  2. Using DevOps tools
  3. Testing Softwares
  4. Monitoring and Logging
@adeisbright
adeisbright / html-lessons.md
Last active March 8, 2022 13:44
Explanatory videos on HTML

This gist contains the following lessons :

Lesson 1 : Welcome and Familiarization

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.

The lesson link

@adeisbright
adeisbright / data-science-beginner.md
Last active October 4, 2021 13:06
Introduction to Data Science

This gist contains links to our lessons on data science :

Lesson 1 : Understanding Data Science

This lesson is a 42 minutes video.

It also focuses on what we will be learning in the program.

At the end of the lesson , you should understand :

  • What is Data Science
@adeisbright
adeisbright / html-bigjara-blog-project.md
Last active September 17, 2021 17:43
A Project on how to create a blog

Building a Project : Bigjara Blog

This project is focused on showing how you should approach development of any new project.

Lesson 1 : Understanding the project and setting up

Duration 28:17 minutes

The lesson link

Lesson 2 : Linking to External Resources

@adeisbright
adeisbright / beginner-python.md
Last active March 12, 2022 19:24
Get started with the basics of python
@adeisbright
adeisbright / bigjara-javascript-beginner.md
Last active September 19, 2021 04:06
Get started with writing javascript programs
/** 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
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=adenababanla@gmail.com' is parsed into
@adeisbright
adeisbright / bigjara-css.md
Last active October 16, 2021 07:37
Get Started with CSS