I hereby claim:
- I am lytedev on github.
- I am lytedev (https://keybase.io/lytedev) on keybase.
- I have a public key ASBL9t_fBPHgHfXDpjdG_WvWrzywmZCE4YFQxEoEjw-dEQo
To claim this, I am signing this object:
| <?xml version="1.0" encoding="utf-8"?> | |
| <colorTheme id="66" name="Sublime Text 2" modified="2011-01-29 11:20:12" author="Filip Minev"> | |
| <searchResultIndication color="#D8D8D8" /> | |
| <filteredSearchResultIndication color="#D8D8D8" /> | |
| <occurrenceIndication color="#000000" /> | |
| <writeOccurrenceIndication color="#000000" /> | |
| <findScope color="#000000" /> | |
| <deletionIndication color="#FF0000" /> | |
| <sourceHoverBackground color="#FFFFFF" /> | |
| <singleLineComment color="#666666" /> |
I hereby claim:
To claim this, I am signing this object:
| sudo apt update | |
| sudo apt install apt-transport-https ca-certificates curl software-properties-common -y | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | |
| sudo apt update | |
| sudo apt install docker-ce -y | |
| sudo apt-get install python3 python3-pip -y | |
| sudo pip3 install docker-compose |
sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
| def change do | |
| # indices omitted | |
| create table(:products) do | |
| add(:name, :string) | |
| end | |
| create table(:product_attributes) do | |
| add(:property, :json) | |
| add(:product_type_id, :id) |
| #!/usr/bin/env bash | |
| # options | |
| TTL="120" | |
| SUBDOMAINS=(host1 host2 host3) | |
| ACCESS_TOKEN="???" | |
| DOMAIN="lyte.dev" | |
| # constants | |
| DNS_ZONE="$(<<< "$DOMAIN" sd "\." "_")" |