Skip to content

Instantly share code, notes, and snippets.

View adeisbright's full-sized avatar

Adeleke Bright adeisbright

View GitHub Profile
@adeisbright
adeisbright / beginner-python.md
Last active March 12, 2022 19:24
Get started with the basics of python
@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 / 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-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 / 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-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 / paragraph.md
Created August 17, 2021 10:23
Create HMTL paragraphs

PARAGRAPH

A paragraph is a distinct section within a document covering one topic. It must start on a new line, and can contain more than one sentence. Paragraphs can be indented for visual appeal or left unattended to. The paragraph element is used for creating paragraphs in HTML. The character that represents this element is: “p”

To create a paragraph, use the general format below:

Your content

Let us use the example below to demonstrate working with paragraphs.
@adeisbright
adeisbright / html-structure.md
Created August 17, 2021 10:12
How HTML is structured

STRUCTURE OF A WEB DOCUMENT

A web document is structured similarly to how we structure print information. A document must have a descriptive header that helps to clearly inform the reader, a body that explains, and a footer with summarizing information.

Same document model is used for web pages. Let us stop with the talking and create our first page. After that, we will explain what is contained in the document. What next to do?

  • Create a folder (name it html) in your working directory preferably desktop for easy access
  • Open the folder using a text editor (We are using VS code in this lesson)
@adeisbright
adeisbright / introduction-to-html.md
Last active August 17, 2021 09:29
Getting Started with HTML

Introduction to HTML

This is the first course we will be offering in our front end or full stack path. At the end of the course , you should be able to do the following :

  • Understand how the web works
  • Understand how to use and create HTML tags
  • Tell the difference between elements , tags , and attributes
  • Properly create a web page
  • Be able to build a that conforms to web standard

TABLE OF CONTENTS

@adeisbright
adeisbright / nodejs-module.md
Created August 11, 2021 13:48
Create reusable pieces of code

What is a module