(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- | |
| WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING | |
| WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING | |
| WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING | |
| The settings used within this ClusterManifest are expressly for use only | |
| within a developer single-box environment. Any use of these settings outside | |
| of that environment are highly likely to produce incorrect, and misperforming |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #NOTE: This script is based on the Microsoft provided guidance example at | |
| # https://www.windowsazure.com/en-us/develop/net/common-tasks/continuous-delivery/. | |
| Param( | |
| [parameter(Mandatory=$true)] | |
| $serviceName, | |
| [parameter(Mandatory=$true)] | |
| $storageAccountName, | |
| [parameter(Mandatory=$true)] | |
| $storageAccountKey, |