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
AUS Central Standard Time | 001 | Australia/Darwin | |
---|---|---|---|
AUS Central Standard Time | AU | Australia/Darwin | |
AUS Eastern Standard Time | 001 | Australia/Sydney | |
AUS Eastern Standard Time | AU | Australia/Sydney Australia/Melbourne | |
Afghanistan Standard Time | 001 | Asia/Kabul | |
Afghanistan Standard Time | AF | Asia/Kabul | |
Alaskan Standard Time | 001 | America/Anchorage | |
Alaskan Standard Time | US | America/Anchorage America/Juneau America/Metlakatla America/Nome America/Sitka America/Yakutat | |
Aleutian Standard Time | 001 | America/Adak | |
Aleutian Standard Time | US | America/Adak |
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
/// <summary> | |
/// A debounce rate limitor for Hangfire background jobs. This puts a | |
/// timeout lock on the action when it is first enqueued and schedules it | |
/// for the end of the lockout. Any further calls within the lock period are discarded. | |
/// </summary> | |
/// <remarks> | |
/// General references: | |
/// https://gist.github.com/odinserj/334fdb7d18bd63451f2f34546985f639 | |
/// https://gist.github.com/odinserj/a8332a3f486773baa009 | |
/// </remarks> |
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
$ResourceLocation = "Global" | |
$ResourceGroup = "RESOURCE GROUP" | |
$ResourceName = "DOMAIN NAME" | |
$PropertiesObject = @{ | |
'Consent' = @{ | |
'AgreementKeys' = @("DNPA","DNTA"); | |
'AgreedBy' = 'IP ADDRESS'; | |
'AgreedAt' = '2017-04-23T04:07:00.0000000Z'; | |
}; | |
'authCode' = 'AUTH CODE'; |
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
/// <summary> | |
/// Implementation of the IServiceLocator. | |
/// Mostly from https://github.com/autofac/Autofac.Extras.CommonServiceLocator, | |
/// minus the dependencies. | |
/// </summary> | |
public class AutofacServiceLocator : IServiceLocator | |
{ | |
/// <summary> | |
/// The <see cref="Autofac.IComponentContext"/> from which services | |
/// should be located. |
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
;// | |
// Popup extension. | |
// Sets up kendo popups (used in all sorts of widgets) to check if the widget | |
// is being included in a bootstrap modal. If so, the popup should append to | |
// the modal instead of the page body. | |
// | |
// For the most part, popups work fine without this. However, DropdownList with | |
// a filter option does not. This is because the filter attempts to focus on | |
// filter input, which is outside the modal By default, Bootstrap modal will | |
// block this. It has an option to allow, but then it must be remembered to add |
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
################################################## | |
# | |
################################################## | |
param( | |
[Parameter(Mandatory = $true)][String]$subscriptionId, | |
[Parameter(Mandatory = $true)][String]$storageAccountName, | |
[Parameter(Mandatory = $true)][String]$affinityGroupName, | |
[Parameter(Mandatory = $true)][String]$imageName = 'MSFT__Windows-Server-2012-Datacenter-201208.01-en.us-30GB.vhd', | |
[Parameter(Mandatory = $true)][String]$adminPassword, |
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
# Server and Project configs. | |
$CollectionUrl = "https://[TEAM FOUNDATION SERVER]/[PROJECT COLLECTION]" | |
$projects = ("[PROJECT 1]", "PROJECT 2") | |
# Work Item Locations | |
$baseLocation = Split-Path -parent $PSCommandPath | |
$witdLocation = $baseLocation + "\Core.Process\WorkItem Tracking\TypeDefinitions" | |
# Admin Import Command | |
$WitAdmin = "${env:ProgramFiles(x86)}\Microsoft Visual Studio 12.0\Common7\IDE\witadmin.exe" |
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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Package"> | |
<PropertyGroup> | |
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir> | |
<Configuration Condition="$(Configuration) == ''">Release</Configuration> | |
<Platform Condition="$(Platform) == ''">AnyCPU</Platform> | |
<BuildDir>bin\$(Configuration)\</BuildDir> | |
<OutputPath>bin\$(Configuration)\</OutputPath> | |
<ProjectName Condition="$(ProjectName) == ''"></ProjectName> | |
<ProjectFile>$(ProjectName).csproj</ProjectFile> |
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
/// <reference path="typings/jquery/jquery.d.ts" /> | |
/// <reference path="typings/kendo.all.d.ts" /> | |
interface JQuery { | |
kendoNotification(options: any): JQuery; | |
} | |
module core { | |
/** |
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
/* Copyright (c) 2010 Marcus Westin | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* | |
* The above copyright notice and this permission notice shall be included in |
NewerOlder