This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| import csv | |
| import random | |
| from selenium import webdriver | |
| from selenium.webdriver.chrome.service import Service | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver.support.ui import WebDriverWait | |
| from selenium.webdriver.support import expected_conditions as EC | |
| from selenium.common.exceptions import TimeoutException | |
| from webdriver_manager.chrome import ChromeDriverManager |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| download zen and extract in ~ | |
| nano ~/.local/share/applications/zen.desktop | |
| [Desktop Entry] | |
| Version=1.0 | |
| Name=Zen Browser | |
| Comment=Experience tranquillity while browsing the web without people tracking you! | |
| GenericName=Web Browser | |
| Keywords=Internet;WWW;Browser;Web;Explorer | |
| Exec=/home/abhitruechamp/zen/zen | |
| Terminal=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git config --global user.name "Your Name" | |
| git config --global user.email "[email protected]" | |
| git config --global init.defaultBranch main | |
| ssh-keygen -t ed25519 -C <youremail> | |
| cat ~/.ssh/id_ed25519.pub | |
| #copy the whole output | |
| #Add SSH key to github [https://github.com/settings/keys] | |
| existing: | |
| git clone [email protected]:USER-NAME/REPOSITORY-NAME.git | |
| --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git branch <branch_name> -> Create branchname | |
| git checkout <branch_name> -> Checkout branchname | |
| git branch -> list branches | |
| git merge <branch_name> -> Merge branch with main | |
| git branch -d <branch_name> -> Delete branched merged into main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git config --global user.name "Your Name" | |
| git config --global user.email "[email protected]" | |
| git config --global init.defaultBranch main | |
| ssh-keygen -t ed25519 -C <youremail> | |
| cat ~/.ssh/id_ed25519.pub | |
| #copy the whole output | |
| #Add SSH key to github [https://github.com/settings/keys] | |
| #Copy your repo's SSH url. | |
| git clone [email protected]:USER-NAME/REPOSITORY-NAME.git |