PinnedACTIVITY #2 Git Fundamentals DocumentationStep 1: Check Git Version In this step it is all about seeing what git bash version you have in your machine. Step 2: Configure Git In this step we will configure our git bash Author name and email. Step 3: Initialize a Git Repository In this ste...Aug 24, 2024·1 min read
Fork testdeploy Github Repository and deploy it to Render.comStep-by-step guide on how deploy a repository to render.com First i fork this Github Repository Second i check if my fork repository is saved to my Github Repository Third i go to render.com and login my account Four i click the Web Services in m...Oct 25, 2024·4 min read
User Role in MySQL DatabaseIn this article i made a mysql database with role and that role can view, insert and edit the database but cannot delete any data Create a new database Before we create a new role first we need to login to our root database and create a new database...Oct 24, 2024·2 min read
Basic CRUD Python FLask APIPrerequisite Virtual Environment and Python Package Manager Install Python Flask .gitignore for virtual environment Make an app.py file and add this code #import flask LIBRARY from flask import Flask, jsonify, request # call the flask object ap...Oct 22, 2024·3 min read
Solid PrinciplesWhat is Solid Principles? The SOLID Principles are five principles of Object-Oriented class design. They are a set of rules and best practices to follow while designing a class structure. These five principles help us understand the need for certai...Oct 21, 2024·4 min read
PostmanA step-by-step guide on how to install postman and how to use it. (PUT, GET, DELETE, POST) First search on the browser postman download Second Go to the website and click Windows 64-Bit button and it will download Third do this if your laptop or d...Oct 18, 2024·3 min read
Python Flask Data StructurePrerequisite Python Flask IDE or Text Editor Browser First we make the Project Structure like this Second inside the index.html file add this code <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </hea...Oct 18, 2024·4 min read