- Clone the repo
git clone --mirror https://github.com/vuejs/vue
cdinto the cloned repo- Create a bundle file in the parent directory
git bundle create ../vuejs_vue.bundle --all
| sublime_project_template='{ | |
| "folders": | |
| [ | |
| { | |
| "path": "." | |
| } | |
| ], | |
| "file_exclude_patterns":[ | |
| "*.sublime-*" | |
| ] |
| """Sort a list of dicts using multiple keys | |
| Also be able to have the different keys sort in different orders | |
| """ | |
| from pprint import pprint | |
| unsorted_data_a = [{'title': 'Foo Beta', | |
| 'date': '2018-06-03', | |
| 'value': 5}, |
| import logging | |
| import requests | |
| import urllib | |
| import urllib.parse | |
| from parsel import Selector | |
| logging.basicConfig(level=logging.INFO, | |
| format='%(asctime)s - %(name)s - %(levelname)s - %(message)s') | |
| logger = logging.getLogger(__name__) |
| import json | |
| import time | |
| import requests | |
| from selenium import webdriver | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver.common.keys import Keys | |
| from selenium.webdriver.support.ui import WebDriverWait | |
| from selenium.webdriver.support import expected_conditions as EC | |
| from selenium.webdriver.firefox.options import Options as FirefoxOptions | |
| from webdriverdownloader import GeckoDriverDownloader |