Skip to content

Instantly share code, notes, and snippets.

View Ayon-SSP's full-sized avatar
coffee?

AYON Ayon-SSP

coffee?
View GitHub Profile
hello = () => ({
name: 'Ayon-SSP',
website: 'https://ayon-ssp-portfolio.netlify.app/',
twitter: 'AyonSsp'
});

cover

What is the tree command?

The tree command is a utility tool in Linux that displays the directory structure in a tree-like format. It displays all the subdirectories and files in a hierarchical manner, making it easier to understand the organization of your files and directories.

Installing the tree command

sudo apt-get install tree

🚀 Node.js-Setup

image This readme will guide you through the process of installing Node.js and setting up a Node.js development environment using Visual Studio Code.

Prerequisites

Before you begin, ensure that you have the following software installed:

  • Node.js (version 12 or higher)
  • Visual Studio Code
@Ayon-SSP
Ayon-SSP / PostgreSQL Connecting.md
Created March 4, 2023 08:42
Connecting to a PostgreSQL database🛢️ from Python.

connecting to a PostgreSQL database from Python.

Installation:

  • Install PostgreSQL, If you haven’t installed it.
  • We need to install the psycopg2 library to connect to a PostgreSQL database. Open the command prompt and run the below command to install psycopg2
pip3 install psycopg2

Creating a Database

You can create a Database in 2 Ways:

  1. Using pgAdmin 4 UI
@Ayon-SSP
Ayon-SSP / Importing-Files.md
Created March 4, 2023 08:38
Importing Files📁 from different Folder🗃️

Importing Files📁 from different Folder🗃️

Folder structure

GitHub Repo Practical project

Folders
├── Folder1
   ├── subFolder1
       └── File2.py 
 ├── File1.py