This file contains 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
Run terraform plan -input=false -out=$PLAN | sed -r 's/([[:space:]~+-]*).*(password|secret|key).*/\1****************/gi' | |
Refreshing Terraform state in-memory prior to plan... | |
The refreshed state will be used to calculate this plan, but will not be | |
persisted to local or remote state storage. | |
**************** | |
**************** | |
**************** | |
**************** | |
module.auth0.auth0_client.dacp_frontend: Refreshing state... [id=Qvsk4nxqQ9O8qmyWqiosq52IwC9O4FNj] |
This file contains 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
FROM microsoft/dotnet:2.0-sdk as builder | |
ENV DOTNET_CLI_TELEMETRY_OPTOUT 1 | |
# Optimize for Docker builder caching by adding projects first. | |
RUN mkdir -p /root/src/function | |
WORKDIR /root/src/function | |
COPY ./function/Function.csproj . |
This file contains 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
import {Injectable} from '@angular/core'; | |
import {Http, Headers} from '@angular/http'; | |
@Injectable() | |
export class WebServiceClient { | |
constructor(private http: Http) { } | |
// Creates an Authorization Header | |
createAuthHeader(headers: Headers) { | |
headers.append('Authorization', 'Basic'); |
This file contains 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
#tool nuget:?package=NUnit.ConsoleRunner&version=3.4.0 | |
var target = Argument("target", "Default"); | |
var configuration = Argument("configuration", "Release"); | |
////////////////////////////////////////////////////////////////////// | |
// PREPARATION | |
////////////////////////////////////////////////////////////////////// | |
// Define directories. |
This file contains 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
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. | |
## | |
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore | |
# User-specific files | |
*.suo | |
*.user | |
*.userosscache | |
*.sln.docstates |
This file contains 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
USE [ServerFileLogs] | |
GO | |
/****** Object: Table [dbo].[TempLogs] Script Date: 08/11/2016 14:01:07 ******/ | |
DROP TABLE [dbo].[TempLogs] | |
GO | |
/****** Object: Table [dbo].[TempLogs] Script Date: 08/11/2016 14:01:07 ******/ | |
SET ANSI_NULLS ON | |
GO |
This file contains 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
$ErrorActionPreference = "Stop" | |
function ImportLogFiles([string] $httpLogPath) | |
{ | |
If ([string]::IsNullOrEmpty($httpLogPath) -eq $true) | |
{ | |
Throw "The log path must be specified." | |
} | |
[string] $logParser = "${env:ProgramFiles(x86)}" ` |
This file contains 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; | |
namespace Common.DateTimeHelpers | |
{ | |
public static class DateTimeHelpers | |
{ | |
/// <summary> | |
/// Gets the date of the next specified day. If it's today, return today. | |
/// </summary> | |
/// <param name="from">The date</param> |
This file contains 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.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using ExcelImporter.Util.XmlModel; | |
using OfficeOpenXml; | |
using OfficeOpenXml.Table; | |
namespace ExcelImporter.Util.ExcelReader | |
{ |
NewerOlder