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
pool: | |
vmImage: windows-latest | |
variables: | |
- name: system.debug | |
value: true | |
stages: | |
- stage: Stage1 | |
jobs: |
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 strict'; | |
/*** | |
Usage: blog2md b|w <BLOGGER/WordPress BACKUP XML> <OUTPUT DIR> | |
*/ | |
const fs = require('fs'); | |
const os = require('os'); |
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
$basepath = "C:\tmp\bmBlog\content" | |
$files = Get-ChildItem -path $basepath -Filter "*.md" -Recurse | % { $_.FullName} | |
foreach ($file in $files) { | |
$f = get-item $file | |
$content = (Get-Content -path $f.FullName) | |
foreach ($l in $content) { | |
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
function Get-AgentPoolForNamedAgent { | |
param | |
( | |
$pat, | |
$url, | |
$agentName | |
) | |
$patToken = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes(":$($pat)")) |
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
param | |
( | |
# The OWASP results XML file | |
$input = "dependancy-results.xml", | |
# The SonarCloud generic issue JSON file | |
$output = "dependancy-results.json", | |
# The file to associate issues with | |
$filename = "c:\folder\file.cs" | |
) |
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
variables: | |
# the variable used to filter the KeyVault secret list | |
# This can be a simple prefix and wildcard e.g. 'Config-*'' | |
# Or a more complex regex expression e.g. ^(?:Config-*|Settings-*) | |
- name: KV-Filter | |
value: '^(?:Config-*|Settings-*)' | |
# the variable used to KeyVault name | |
- name: KV-Name | |
value: 'bm-kv1' |
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
param( | |
$package, | |
$version, | |
$azdoOrg, | |
$feedname, | |
# provide a, Azure DevOps PAT if it a private feed | |
$pat, | |
$DestinationPath = "$package-$version.zip" | |
) |
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
#r "Newtonsoft.Json" | |
using System.Text; | |
using System.Net; | |
using Microsoft.AspNetCore.Mvc; | |
using Microsoft.Extensions.Primitives; | |
using Newtonsoft.Json; | |
using OAuth; | |
public static async Task<IActionResult> Run(HttpRequest req, ILogger log) |
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
version: "3" | |
services: | |
snipe-it: | |
image: snipe/snipe-it:latest | |
volumes: | |
- snipeit:/var/lib/snipeit | |
- snipeit-logs:/var/www/html/storage/logs | |
volumes: |
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
param | |
( | |
$logfile = "TPC\_ApplyPatch.log", | |
$outfile = "out.csv" | |
) | |
# A function to covert the start and end times to a number of minutes | |
# Can't use simple timespan as we only have the time portion not the whole datetime | |
# Hence the hacky added a day-1 second |