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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Nate Ferrell", | |
"label": "Developer Advocate, Systems Architect, Cloud Platform Engineer", | |
"image": "https://ferrell.io/assets/img/128x128.png", | |
"url": "https://ferrell.io/", | |
"email": "[email protected]", | |
"summary": "Nate lives in Allen, TX with his wife, 3 kids and their 2 dogs. He is passionate about non-profits, productivity, DevOps, and enabling everyone around him. Outside of the office and IDE, he's typically building mechanical keyboards, tinkering with synthesizers and drum machines, taking photos with his wife, or exploring both virtual and real worlds with the kids.", | |
"location": { |
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
<# | |
Some proxy commands to add to your profile to force the following functions/cmdlets | |
to use TLS 1.2 without changing the SecurityProtocol for your entire session: | |
- Update-Module | |
- Install-Module | |
- Install-PackageProvider | |
Context: https://twitter.com/Steve_MSFT/status/1248396676017995779 | |
Sample usage: |
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
{ | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"name": "Italics", | |
"scope": [ | |
"comment", | |
"punctuation.definition.comment", | |
"keyword", | |
"storage", |
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
class Backgrounder { | |
[string[]] $Updates | |
Backgrounder(){} | |
[void] AddUpdate([string]$update) { | |
$this.Updates += $update | |
} | |
[void] Update() { | |
1..5 | ForEach-Object { | |
# ThreadJob | |
Start-ThreadJob -Name {$_} -ArgumentList $_ -ScriptBlock { |
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
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"name": "Italics", | |
"scope": [ | |
"comment", | |
"punctuation.definition.comment", | |
"keyword", | |
"storage", | |
"entity.other.attribute-name", |
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( | |
[Parameter(Position = 0)] | |
[String] | |
$ProjectName = $(Split-Path $PWD.Path -Leaf) | |
) | |
$env:_BuildStart = Get-Date -Format 'o' | |
New-Variable -Name IsCI -Value $($IsCI -or (Test-Path Env:\TF_BUILD)) -Scope Global -Force -Option AllScope |
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 Convert-Duration { | |
<# | |
.SYNOPSIS | |
Converts a TimeSpan or ISO8601 duration string to the desired output type. | |
.DESCRIPTION | |
Converts a TimeSpan or ISO8601 duration string to the desired output type. | |
More info on ISO8601 duration strings: https://en.wikipedia.org/wiki/ISO_8601#Durations |
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
<# | |
This is my ever growing collection of PowerShell / workstation configuration bits. | |
#> |
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
try { | |
Import-Module posh-git -ErrorAction Stop | |
} | |
catch { | |
Install-Module posh-git -Scope CurrentUser -Repository PSGallery | |
Import-Module posh-git | |
} | |
function Get-PSVersion { | |
<# | |
.SYNOPSIS |
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
# Recreation of the example found here: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html | |
$ssmDocContent = [PSCustomObject]@{ | |
schemaVersion = "1.2" | |
description = "Join instances to an AWS Directory Service domain." | |
parameters = @{ | |
directoryId = @{ | |
type = "String" | |
description = "(Required) The ID of the AWS Directory Service directory." | |
} |
NewerOlder