Azure Storage Explorer

https://azure.microsoft.com/en-us/features/storage-explorer/ Azure Storage Explorer Free tool to easily manage your Azure cloud storage resources anywhere, from Windows, macOS, or Linux Secure access to storage accounts Every request to Azure Storage must be authorized. Azure Storage supports the following authorization methods: Azure Active Directory (Azure AD) integration for blob and queue data. Azure Storage supports authentication and... » read more

Azure Storage SDK

Visual Studio Nuget Manager PM>Install-Package WindowsAzure.Storage Samples: https://azure.microsoft.com/en-us/resources/samples/storage-blobs-dotnet-webapp/

Azure Storage Pricing

https://azure.microsoft.com/en-us/pricing/details/storage/ Blob storage is much less than file storage. Block Blobs Scalable object storage for documents, videos, pictures, and unstructured text or binary data. Choose from Hot, Cool, or Archive tiers. Prices for locally redundant storage (LRS) Archive Block Blob start from:$0.001/GB per month See Pricing Azure Data Lake Storage Combines the power of a... » read more

BitBucket

Source control from Atlassian. https://bitbucket.org/ Sources: https://bitbucket.org/product/pricing

TSQL String Split

Examples A. Split comma-separated value string Parse a comma-separated list of values and return all non-empty tokens. STRING_SPLIT will return empty string if there is nothing between separator. Condition RTRIM(value) <> ” will remove empty tokens. B. Split comma-separated value string in a column Product table has a column with comma-separate list of tags shown... » read more

Gmail, Add Additional Email Alias

Gmail Admin https://admin.google.com Add an email alias for a G Suite user You can add up to 30 aliases for each user. Sign in to your Google Admin console. From the Admin console Home page, go to Users. In the Users list, find the user. If you need help, see Find a user account. Click the user’s name to open their account page. Click User information  Email... » read more

Consuming a WCF Host

WCF Endpoint http://localhost:57945/Service1.svc Use the following to generate a service reference in your Connected Services client application… http://localhost:57945/Service1.svc?singleWsdl After you have generated the service reference objects, you can call the service directly from within your client application. If you have more that one end points, you will need to specify which end point to use.

Simple WCF Application

When you create a WCF application in Visual Studio. The project creates 2 classes for you. It also link it to the WCF Test Client. Interface and Data Contract class (.cs) Both Interface and Data Contact. The Data Contact can be its own separate class. Service Class (.svc) Implements IService1 Interface. WCF Test Client