Skip to content

Instantly share code, notes, and snippets.

View adeisbright's full-sized avatar

Adeleke Bright adeisbright

View GitHub Profile
@adeisbright
adeisbright / react-forms.md
Last active August 10, 2021 15:42
Working with Forms in React

Table of Contents

  1. The purpose for forms
  2. How to create React Forms
  3. Handling Events
  4. State Management in React Forms
  5. Use of Fetch API

The Purpose of Forms

Forms are primarily created to allow enable users provide useful data.

@adeisbright
adeisbright / react-routing.md
Last active August 10, 2021 14:32
How to route using react-router
@adeisbright
adeisbright / node-hello-world.md
Created August 9, 2021 15:18
Hello World in Node.js

We are going to write our first node.js code.

@adeisbright
adeisbright / node-start.md
Last active August 9, 2021 15:27
Lesson One : Getting Started with node

What is Node.js

Node.js is an open source and cross platform javascript runtime environment for writing server side applications , command line tools , and other types of application that can run outside the browser. It runs on Google V8 engine.

It was designed and built by Ryan Dhal in 2009.

Why Javascript on the Server ?

Before the advent of NodeJs , Javascript usage was limited mostly to the browser.

Getting Started with Python

Python is a high level and interpreted programming language that is suitable for scientific progamming. It is easy and can be very quick to grasp by beginners. This gist will help you to get a hold on Python

How to Get Python

Python is a free and open source. You can get from Python Download. Download the package suitable for your OS. After successful download , installing python is easy ... Follow the prompts and provide feedback. To confirm if your installation was successful , open your system's terminal and issue this command :

@adeisbright
adeisbright / how-to-learn-react.md
Last active August 3, 2021 14:51
An helpful guide on learning React

How to Learn React

React is an Arsenal in the tools of the modern day front end developer , you cannot work effectively without it How should you approach learning it ?

Before taking on React , ensure you know the following Javascript concepts very well :

  • Functions
  • Objects
  • Array and its method
  • Array and Object Destructuring
  • Pure and Higher Order Functions