Skip to content

Instantly share code, notes, and snippets.

View adeisbright's full-sized avatar

Adeleke Bright adeisbright

View GitHub Profile
@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 / bigjara-javascript-beginner.md
Last active September 19, 2021 04:06
Get started with writing javascript programs
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
/** 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
@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 / 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