It a all in one tool that:-
- Manages virtual env for python projects
- Manages dependencies for python projects
- Publish python packages to PyPI
This comprehensive guide covers setting up and managing SSH access to Ubuntu virtual machines running in VirtualBox, including detailed explanations of all commands used.
Before we dive into the setup, let's understand some fundamental Linux commands we'll be using:
sudo (Superuser Do) runs commands with administrative privileges:
Use Homebrew to install and start Redis on macOS
This guide shows you how to install Redis on macOS using Homebrew. Homebrew is the easiest way to install Redis on macOS. If you'd prefer to build Redis from the source files on macOS, see Installing Redis from Source.
How To Install PostgreSQL & pgAdmin On Mac M1/M2 | Easy Installation of PostgreSQL, pgAdmin On MacOS
How to Install pgAdmin On Mac Without Homebrew | Easy Installation of pgAdmin4 On MacOS
How To Uninstall PostgreSQL From Mac M1/M2 | Completely Remove PostgreSQL & pgAdmin From MacOS
If still the ports are not free then
sudo kill -kill $(sudo lsof -t -i :5432)| const scrapeData = () => { | |
| const sections = document.querySelectorAll("#screener-table > section"); | |
| const headingElements = sections[0].querySelectorAll("div[id]"); | |
| const scrapedData = Array.from(headingElements).map(elm => { | |
| const selector = elm.getAttribute("id") === "name" ? "stock-name-col" : elm.getAttribute("id") + "-col"; | |
| const rowElements = sections[1].querySelectorAll("." + selector + " .desktop--only") | |
| return { | |
| column: elm.querySelector(".data-cell .desktop--only").textContent, | 
| #!/bin/bash | |
| ssh-keygen | |
| ls ~/.ssh | |
| eval `ssh-agent` | |
| ssh-add ~/.ssh/id_rsa | |
| cat ~/.ssh/id_rsa.pub | |
| # ssh -T [email protected] | 
| <!doctype html> | |
| <html> | |
| <head> | |
| <style> | |
| .monospace { | |
| font-family: Menlo, Monaco, "Droid Sans Mono", Consolas, "Lucida Console", "Courier New", monospace; | |
| } | |
| .monospace_without_menlo { | |
| font-family: Monaco, "Droid Sans Mono", Consolas, "Lucida Console", "Courier New", monospace; | 
| #!/bin/sh | |
| git commit -am "Save uncommited changes (WIP)" | |
| git branch --delete --force gh-pages | |
| git checkout --orphan gh-pages | |
| git add -f dist | |
| git commit -m "Rebuild GitHub pages" | |
| git filter-branch -f --prune-empty --subdirectory-filter dist && git push -f origin gh-pages && git checkout - |