- WIFI: RTL8822BE
- LAN: Intel I219V Gigabit LAN Intel Dual Band Wireless-AC 8265 ref: https://www.kitguru.net/components/mike-jennings/asus-rog-strix-z370-i-gaming-motherboard-review/
- AUDIO: ALC1220A
export DOMAIN=[whatever domain you are creating a certificate for]
docker run -it --rm -p 443:443 -p 80:80 \
--name certbot \
-v "$(pwd)/letsencrypt/etc:/etc/letsencrypt" \
-v "$(pwd)/letsencrypt/var/lib/:/var/lib/letsencrypt" \
quay.io/letsencrypt/letsencrypt:latest certonly
Builder focuses on constructing a complex object step by step. Abstract Factory emphasizes a family of product objects (either simple or complex). Builder returns the product as a final step, but as far as the Abstract Factory is concerned, the product gets returned immediately.
Builder often builds a Composite. Often, designs start out using Factory Method (less complicated, more customizable, subclasses proliferate) and evolve toward Abstract Factory, Prototype, or Builder (more flexible, more complex) as the designer discovers where more flexibility is needed.
Sometimes creational patterns are complementary: Builder can use one of the other patterns to implement which components get built. Abstract Factory, Builder, and Prototype can use Singleton in their implementations.
Short:
| events { | |
| # nginx requires this section even when applying all default values | |
| } | |
| http { | |
| # Upstream keyword is followed by a url (domain name/IP). This reference encapsulates | |
| # the list of backend servers defined for a virtual proxy. When autnenticating | |
| # a certificate from a backend server, the upstream url is supplied to the | |
| # certificate authentication process instead of the backend server name. See | |
| # the comments associated with proxy_pass below for a detailed discussion. |
| # coding: utf-8 | |
| """Cause git to detect a merge conflict when two branches have migrations.""" | |
| # myapp/management/commands/makemigrations.py | |
| # you'll need myapp/management/commands/__init__.py and myapp/management/__init__.py in PY2, see Django docs | |
| from __future__ import absolute_import, unicode_literals | |
| import io | |
| import os | |
| import six |
EXECUTE sp_set_database_firewall_rule N'Another_Rule', '11.11.11.11', '11.11.11.11';apt install apparmor-utils
aa-complain /usr/sbin/mysqld
cd /tmp/
apt-get download mysql-server-5.7
dpkg --unpack mysql-server-5.7<serious-tab>.deb
rm /var/lib/dpkg/info/mysql-server-5.7.postinst
dpkg --configure mysql-server-5.7
service mysql restart
version: "2"
services:
lumen:
build:
context: .
dockerfile: ./Dockerfile
args:
- PORT=${PORT}cd "C:\Program Files\Oracle\VirtualBox\"
VBoxManage.exe modifyvm "Virtual Machine Name" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff
VBoxManage setextradata "Virtual Machine Name" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3"
VBoxManage setextradata "Virtual Machine Name" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0"
VBoxManage setextradata "Virtual Machine Name" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple"
VBoxManage setextradata "Virtual Machine Name" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"
VBoxManage setextradata "Virtual Machine Name" "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1
This is an unofficial manual for the couchdb Python module I wish I had had.
pip install couchdb