Add the following lines in the .env files of your project:
SMTP_USERNAME="sender_gmail_address"
SMTP_PASSWORD="app_password"
| <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="254" height="20" role="img" aria-label="Most Active GitHub User in Egypt Rank: 9th"><title>Most Active GitHub User in Egypt Rank: 9th</title><linearGradient id="s" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="r"><rect width="254" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#r)"><rect width="225" height="20" fill="#555"/><rect x="225" width="29" height="20" fill="#e05d44"/><rect width="254" height="20" fill="url(#s)"/></g><g fill="#fff" text-anchor="middle" font-family="Verdana,Geneva,DejaVu Sans,sans-serif" text-rendering="geometricPrecision" font-size="110"><text aria-hidden="true" x="1135" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="2150">Most Active GitHub User in Egypt Rank</text><text x="1135" y="140" transform="scale(.1)" fill="#fff" textLength="2150">Most Active GitHub User i |
Add the following lines in the .env files of your project:
SMTP_USERNAME="sender_gmail_address"
SMTP_PASSWORD="app_password"
This guide explains how to execute a command using cron jobs every time the server starts or restarts on Ubuntu. It also covers how to mitigate the need for sudo in the cron job and ensure the command can run without requiring password input.
This Python script helps manage AWS Elastic Block Store (EBS) snapshots and volumes. It provides functionalities to find unused snapshots and volumes, generate reports, and clean up resources interactively.
| const express = require("express"); | |
| const authController = require("../controllers/authController"); | |
| const userController = require("../controllers/userController"); | |
| const transactionController = require("../controllers/transactionController"); | |
| const router = express.Router(); | |
| router.post("/getVerifyCode", authController.getVerifyCode); | |
| router.post("/signup", authController.check2FACode, authController.signUp); | |
| router.post("/login", authController.logIn); |
| from ebaysdk.finding import Connection | |
| import json | |
| import pickle | |
| import requests | |
| import time | |
| from PIL import Image | |
| import os | |
| import numpy as np | |
| import matplotlib.pyplot as plt |