This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static class BulkEditCheckBoxExtensions | |
| { | |
| public static MvcHtmlString BulkEditCheckBoxFor<TModel, TProperty>( | |
| this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression) | |
| where TModel : IBulkEditViewModel | |
| { | |
| var metadata = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData); | |
| var model = htmlHelper.ViewData.Model as IBulkEditViewModel; | |
| var modelPropertyName = metadata.PropertyName; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //This script enables underwater effects. Attach to main camera. | |
| //Define variables | |
| var underwaterLevel = 7; | |
| //The scene's default fog settings | |
| private var defaultFog; | |
| private var defaultFogColor; | |
| private var defaultFogDensity; | |
| private var defaultSkybox; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var accountName = Properties.Settings.Default.StorageAccountName; | |
| var accountKey = Properties.Settings.Default.AccessKey; | |
| var containerName = Properties.Settings.Default.ContainerName; | |
| var blobName = Properties.Settings.Default.Blob; | |
| var credentials = new StorageCredentials(accountName, accountKey); | |
| var account = new CloudStorageAccount(credentials, useHttps: true); | |
| var client = account.CreateCloudBlobClient(); | |
| var container = client.GetContainerReference(containerName); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ************************************************************************************************* | |
| # * Configure-CapacityMetrics * | |
| # ************************************************************************************************* | |
| # * Description: Configures Capacity metrics * | |
| # * Author: Richard Slater <richard.slater@amido.co.uk> * | |
| # * Date: 2013.02.02 * | |
| # * Prerequisites: WAPPSCmdlets (https://www.windowsazure.com/en-us/manage/downloads/) * | |
| # ************************************************************************************************* | |
| Set-StorageServicePropertiesForAnalytics -ServiceName "Blob" -StorageAccountName "<Storage Account Name>" -StorageAccountKey "<Storage Account Key>" -MetricsEnabled -MetricsRetentionPolicyDays 7 -MetricsRetentionPolicyEnabl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $deployments = Get-AzureService | | |
| Select-Object ServiceName | | |
| Get-AzureDeployment | |
| $instances = $deployments | | |
| Select-Object ServiceName,Slot -ExpandProperty RoleInstanceList | |
| $instances | | |
| Select-Object ServiceName,Slot,RoleName | | |
| Group-Object RoleName,ServiceName,Slot -NoElement | | |
| Where-Object {$_.Count -gt 1} | | |
| Select-Object Count,@{Name="RoleName"; Expression={$_.Name.Split(',')[0].Trim()}},@{Name="ServiceName";Expression={$_.Name.Split(',')[1].Trim()}},@{Name="Slot";Expression={$_.Name.Split(',')[2].Trim()}} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Get-AzureService | | |
| Get-AzureRole -Slot Production -InstanceDetails | | |
| ForEach-Object { | |
| Get-AzureRemoteDesktopFile ` | |
| -Name $_.InstanceName ` | |
| -ServiceName $_.ServiceName ` | |
| -LocalPath (Join-Path "C:\RDP" ($_.InstanceName + ".rdp")) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| configuration MongoDB { | |
| param ( | |
| [string[]]$ComputerName = $env:ComputerName | |
| ) | |
| node $ComputerName { | |
| File SetupFolder { | |
| Type = 'Directory' | |
| DestinationPath = "C:\setup" | |
| Ensure = 'Present' | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.ComponentModel; | |
| using System.Globalization; | |
| using Microsoft.VisualStudio.TestTools.WebTesting; | |
| using Newtonsoft.Json.Linq; | |
| namespace Amido.PerformanceTests.Common { | |
| [DisplayName("JSON Extraction Rule")] | |
| [Description("Extracts the specified JSON value from an object.")] | |
| public class JsonExtractionRule : ExtractionRule { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Azure Region: europewest --> | |
| <add ipAddress="157.55.9.112" subnetMask="255.255.255.240" allowed="true" /> | |
| <add ipAddress="157.55.12.0" subnetMask="255.255.255.240" allowed="true" /> | |
| <add ipAddress="157.55.10.0" subnetMask="255.255.255.224" allowed="true" /> | |
| <add ipAddress="157.55.10.32" subnetMask="255.255.255.224" allowed="true" /> | |
| <add ipAddress="157.55.10.64" subnetMask="255.255.255.192" allowed="true" /> | |
| <add ipAddress="65.52.128.0" subnetMask="255.255.224.0" allowed="true" /> | |
| <add ipAddress="94.245.97.0" subnetMask="255.255.255.0" allowed="true" /> | |
| <add ipAddress="137.116.192.0" subnetMask="255.255.224.0" allowed="true" /> | |
| <add ipAddress="157.55.8.64" subnetMask="255.255.255.192" allowed="true" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- AWS Region: US East (Northern Virginia) --> | |
| <add ipAddress="72.44.32.0" subnetMask="255.255.224.0" allowed="true" /> | |
| <add ipAddress="67.202.0.0" subnetMask="255.255.192.0" allowed="true" /> | |
| <add ipAddress="75.101.128.0" subnetMask="255.255.128.0" allowed="true" /> | |
| <add ipAddress="174.129.0.0" subnetMask="255.255.0.0" allowed="true" /> | |
| <add ipAddress="204.236.192.0" subnetMask="255.255.192.0" allowed="true" /> | |
| <add ipAddress="184.73.0.0" subnetMask="255.255.0.0" allowed="true" /> | |
| <add ipAddress="184.72.128.0" subnetMask="255.255.128.0" allowed="true" /> | |
| <add ipAddress="184.72.64.0" subnetMask="255.255.192.0" allowed="true" /> | |
| <add ipAddress="50.16.0.0" subnetMask="255.254.0.0" allowed="true" /> |
OlderNewer