- Update HISTORY.md
- Commit the changes:
git add HISTORY.md
git commit -m "Changelog for upcoming release 0.1.1."
- Update version number (can also be minor or major)
bumpversion patch
// This is the official Selenium documention endorsed method of waiting for elements. | |
// This method is ineffective because it still suffers from | |
// the stale element exception. | |
public static void clickByLocator ( final By locator ) { | |
WebElement myDynamicElement = ( new WebDriverWait(driver, 10)) | |
.until( ExpectedConditions.presenceOfElementLocated( locator ) ); | |
myDynamicElement.click(); | |
} |
git add HISTORY.md
git commit -m "Changelog for upcoming release 0.1.1."
bumpversion patch
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
#!/usr/bin/python | |
"""Copy published precise PPA packages to quantal raring saucy. | |
Typical usage: | |
- build a gtimelog package for precise | |
- dput ppa:gtimelog-dev gtimelog_0.8.1-0ppa0_source.changes | |
- wait for it to be built | |
- run ppa-gtimelog-copy-packages |
sudo apt install curl gnupg2 ca-certificates lsb-release | |
echo "deb http://nginx.org/packages/ubuntu `lsb_release -cs` nginx" | sudo tee /etc/apt/sources.list.d/nginx.list | |
curl -fsSL https://nginx.org/keys/nginx_signing.key | sudo apt-key add - | |
sudo apt update | |
NGINX_VERSION=$(apt show nginx | grep "^Version" | cut -d " " -f 2 | cut -d "-" -f 1) | |
# take note of the nginx version in the "stable" release. e.g. 1.14.2 | |
echo NGINX version $NGINX_VERSION | |
wget https://hg.nginx.org/pkg-oss/raw-file/default/build_module.sh | |
chmod a+x build_module.sh |
[tool.poetry] | |
name = "owncloudemulator" | |
version = "0.1.0" | |
description = "" | |
authors = ["Florian Apolloner <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "^3.7" | |
starlette = "^0.13.0" | |
uvicorn = "^0.10.8" |
{{define "content"}} | |
<div id="results"> | |
{{if or .Notice .Error}} | |
{{if .Error}} | |
<div | |
class="alert flex rounded-lg border border-error px-4 py-4 text-error sm:px-5" | |
> | |
{{.Error}} | |
</div> | |
{{else}} |