I hereby claim:
- I am cdhunt on github.
- I am chris_hunt (https://keybase.io/chris_hunt) on keybase.
- I have a public key ASDqctqI9RLH5fhp96Ay1KndIhfhdgq2ODQ9an2I-xgXkwo
To claim this, I am signing this object:
function Show-Calendar { | |
[CmdletBinding()] | |
param ( | |
[Parameter(Position = 0)] | |
[int] | |
$Month = (Get-Date).Month, | |
[Parameter(Position = 1)] | |
[int] | |
$Year = (Get-Date).Year, |
FROM ubuntu:20.04 | |
RUN apt-get update && apt-get install -y wget | |
RUN wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \ | |
dpkg -i packages-microsoft-prod.deb && \ | |
rm packages-microsoft-prod.deb | |
RUN apt-get update && apt-get install -y \ | |
apt-transport-https \ |
[global] | |
ioengine=libaio # sync|libaio|mmap | |
group_reporting | |
thread | |
size=10g # Size of test file | |
cpus_allowed=1 # Only use this CPU core | |
runtime=300s # Run test for 5 minutes | |
[test1] | |
filename=/var/opt/mssql/tmp/fio-test-file |
jobs: | |
setup: | |
name: Setup Workflow Variables | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.matrix.outputs.matrix }} | |
steps: | |
- name: Generate Build matrix |
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- Based on the format.ps1xml file from DirColors | |
https://github.com/DHowett/DirColors --> | |
<Configuration> | |
<SelectionSets> | |
<SelectionSet> | |
<Name>FileSystemTypes</Name> | |
<Types> | |
<TypeName>System.IO.DirectoryInfo</TypeName> |
C:\Users\chunt\AppData\Local\Microsoft\WindowsApps\wt.exe -p "Title" ; new-tab -p "PowerShell" |
{ | |
"guid": "{210e8de2-5833-4c64-b26f-17c59470c5ea}", | |
"hidden": false, | |
"name": "Title", | |
"commandline" : "C:\\Program Files\\PowerShell\\7\\pwsh.exe -c c:\\temp\\title.ps1", | |
"icon" : "ms-appdata:///Local/dashboard_white_36x36.png" | |
}, |
{ | |
"console_title": true, | |
"blocks": [ | |
{ | |
"type": "newline" | |
}, | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"segments": [ |
#Requires -Module Requirements | |
& { | |
@{ | |
Describe = 'SecretManagement is installed' | |
Test = { | |
$module = Get-Module -Name Microsoft.PowerShell.SecretManagement -ListAvailable -ErrorAction SilentlyContinue | |
$module.Version -contains '0.2.1' | |
} | |
Set = { |