ln -sv "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl
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
# standard | |
import asyncio | |
import logging | |
# thirdparty | |
import aiohttp | |
import attr | |
from attr.validation import instance_of | |
LOGGER_FORMAT = "%(asctime)s %(messages)s" |
New-AzureRmKeyVault -VaultName vaultofdaniel -ResourceGroupName myResourceGroup -Location eastus -EnabledForDeployment -EnabledForTemplateDeployment
az keyvault create --resource-group myResourceGroup --name danielvault
az ad sp show --id
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 requests | |
from bs4 import BeautifulSoup | |
client = requests.Session() | |
HOMEPAGE_URL = 'https://www.linkedin.com?allowUnsupportedBrowser=true' | |
LOGIN_URL = 'https://www.linkedin.com/uas/login-submit?allowUnsupportedBrowser=true' | |
html = client.get(HOMEPAGE_URL).content | |
soup = BeautifulSoup(html) |
NewerOlder