Skip to content

Instantly share code, notes, and snippets.

View adeisbright's full-sized avatar

Adeleke Bright adeisbright

View GitHub Profile
@adeisbright
adeisbright / rabbitmq-beginner.md
Last active February 1, 2022 16:15
Integrate RabbitMQ into your application faster and easily

RabbitMQ is a message queueing system also know as a message broker. It is a queue that applications can connect in order to to transfer a message or messages or consume from it. RabbitMQ is a queuing system that is mostly used for building event driven systems. In this Gist, I will share some snippets of code and idea on how to go about MQ assuming you are just getting started.

Table of Contents

  1. Understanding RabbitMQ
  2. Downloading and Installing RabbitMQ
  3. Understanding our project
  4. User Service
@adeisbright
adeisbright / bigjara-css.md
Last active October 16, 2021 07:37
Get Started with CSS
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 / bigjara-javascript-beginner.md
Last active September 19, 2021 04:06
Get started with writing javascript programs
@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