I hereby claim:
- I am loveduckie on github.
- I am lucshelton (https://keybase.io/lucshelton) on keybase.
- I have a public key ASBTJdzetr_IiqAiNpVnd4N0z1UaEhR2IVdBVFjwnIIzbwo
To claim this, I am signing this object:
| Hi there. |
I hereby claim:
To claim this, I am signing this object:
| <# | |
| Check using a regex pattern whether or not the domain is considered valid. | |
| #> | |
| function Test-WebsiteDomainValid | |
| { | |
| Param([Parameter(Mandatory=$True,HelpMessage="Determine if the domain name for the website is considered valid.")][string]$WebsiteDomainName) | |
| return [Text.Regex]::IsMatch($WebsiteDomainName,"[^a-zA-Z0-9\-]+") | |
| } | |
| <# | |
| Update the hosts file on the system so that it specifies our new website domain name. |
| ''' | |
| Manage installed Visual Studio Code extensions by installing, saving, or performing other operations | |
| ''' | |
| import os, argparse, sys, zipfile, subprocess, logging, functools, logging.handlers | |
| from configparser import ConfigParser, SafeConfigParser | |
| from zipfile import ZipFile | |
| from argparse import ArgumentParser |