Proyectos Flutter
Contributing to Microsoft Docs
PowerShell Community blog
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
; Caracteres en español usando CapsLock | |
; Con AutoHotkey | |
; Basado en https://gist.github.com/eduardoarandah/512a949e1d6e57d90bd1260ba3bfb062 | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
; mapear la n como ñ | |
CapsLock & n:: | |
If GetKeyState("Shift", "P") | |
Send Ñ |
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
Write-Host $("Creating a custom role...") | |
# Tomando un rol ya existente como base | |
$role = Get-AzRoleDefinition -Name "Monitoring Reader" | |
# Al ser nuevo rol, necesitamos que su ID sea null | |
$role.Id = $null | |
$role.Name = "Monitor viewer" | |
$role.Description = "Monitoring apps!" |
NAUC corresponde a las siglas de "Not Aware Until Confirmation", que correspondería a "No estoy enterada/o hasta confirmación".
Esta iniciativa es una respuesta a una dinámica de trabajo o empresa en la que se producen cadenas de mails con remitentes masivos o demasiadas personas en copia, con el problema adicional de que se da por hecho de que todas las personas que están en ese email se han enterado del mensaje y están de acuerdo, lo que es una peligrosa presunción.
Existen muchos motivos para no dar por hecho esto:
- Personas que se ausentan del trabajo por motivos varios (vacaciones, bajas...) y que todavía no han podido ponerse al día
- Cuestiones de salud física, emocional o mental
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
pool: | |
name: Azure Pipelines | |
steps: | |
- task: NuGetToolInstaller@1 | |
displayName: 'Use NuGet 5.8.0' | |
inputs: | |
versionSpec: 5.8.0 | |
- task: NuGetCommand@2 | |
displayName: 'NuGet restore' |
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
# Task: Terraform init | |
- task: petergroenewegen.PeterGroenewegen-Xpirit-Vsts-Release-Terraform.Xpirit-Vsts-Release-Terraform.Terraform@2 | |
displayName: 'Terraform init' | |
inputs: | |
TemplatePath: '$(System.DefaultWorkingDirectory)/_NombreArtifact/Terraform' | |
Arguments: init | |
InstallTerraform: true | |
UseAzureSub: true | |
ConnectedServiceNameARM: 'Conexión a Azure' |
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
provider "azurerm" { | |
version = "=2.40.0" | |
features {} | |
} | |
resource "azurerm_resource_group" "resgroup" { | |
name = "newfunctionapp-rg" | |
location = "West Europe" | |
} |
NewerOlder