Git commands : 1. Git configuration :git config --global user.name "<Your-Full-Name>" // Sets your name for all Git repositories.git config --global user.email "<your-email-address>" // Sets your email for all Git repositories.2. Git repository management :git init // Initializes a new Git repository in...
Wednesday, 22 January 2025
Tuesday, 21 January 2025
undefined
undefined
Docker: Accelerated Container Application Development1. Developers can deploy, run, and manage applications.2. Deploy applications quickly.3. Docker is a containerization platform that simplifies the process of deploying and managing applications. Applications run along with their dependencies. Docker Images...
undefined
undefined
Gmail : SMTP : Simple Mail Transfer Protocol1. Go to google Gmail account setting → Go to Forwarding and POP/IMAP → Enabled IMAP access.2. After go to : manage your google account → Go to security page → Less secure option is...
undefined
undefined
AWS SES : Simple Email Service1. Download access key and secret key excel file.2. Go to verified identity -> Create Identity -> Verify email received in email account and verified.3. npm install aws-sdkconst AWS = require("aws-sdk");const awsConfig = { accessKeyId: AWS_ACCESS_KEY_ID, secretAccessKey:...
undefined
undefined
Difference between MySQL and PostgreSQL.1. MySQL: Relational database. Case-insensitive. Limited basic data type support. Uses indexes: R, B, Hash. Concurrency control.2. PostgreSQL: Object-relational database...
undefined
undefined
JavaScript Hoisting :1. Functions, variables, and class definitions are hoisted to the top.2. let and const are initialized only after they are used.3. The most important concepts in JavaScript.4. To avoid bugs, always declare all variables at the beginning of every sco...
Monday, 20 January 2025
undefined
undefined
JavaScript Pure and Impure Functions.1. JavaScript Pure Functions. JavaScript Pure Function Without modifying value return. like predictable out value.function add(x) { return x + 1;}console.log(add(10)); // output : 11console.log(add(11)); // output : 12console.log(add(12)); // output...