Skip to content

Instantly share code, notes, and snippets.

View jjuanrivvera99's full-sized avatar
💻
Coding!!

Juan Felipe Rivera González jjuanrivvera99

💻
Coding!!
View GitHub Profile
@jjuanrivvera99
jjuanrivvera99 / recaptcha.py
Created December 8, 2020 04:36 — forked from anton-petrov/recaptcha.py
Solve reCAPTCHA with Selenium + Python
import re, csv
from time import sleep, time
from random import uniform, randint
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import NoSuchElementException
# https://docs.docker.com/engine/admin/systemd/
Many Linux distributions use systemd to start the Docker daemon. This document shows a few examples of how to customize Docker’s settings.
Starting the Docker daemon
Once Docker is installed, you will need to start the Docker daemon.
$ sudo systemctl start docker
# or on older distributions, you may need to use
$ sudo service docker start
If you want Docker to start at boot, you should also: