├── .gitignore ├── 2019-01-31 - Scottish PS UG - REST APIs ├── Code.ps1 └── README.md ├── 2019-04-29 - PowerShell Summit - Curl2PS Lightning Demo ├── Curl2PS_Prez.pptx └── Prez.ps1 ├── 2020-01-30 - MTX Portland - AD User Lifecycle ├── Demos │ ├── 00 - Lab Notes.ps1 │ ├── 01 - Creating Users from a Spreadsheet and Template.ps1 │ ├── 01 - UserUpdate.xlsx │ ├── 02 - Standardizing attributes.ps1 │ ├── 03 - Cleaning up Stale Accounts.ps1 │ ├── 04 - Finding Expiring Accounts and Notifying the Manager.ps1 │ └── 05 - Disabled and Retaining.ps1 └── MTX Portland - Automating AD User Lifecycle.pptx ├── 2020-01-30 - MTX Portland - REST APIs ├── Demos │ ├── 01 - Data.json │ ├── 01 - Working with json.ps1 │ ├── 02 - Invoke-RestMethod Syntax.ps1 │ ├── 03 - Interpreting Curl Syntax.ps1 │ └── 04 - Making API cmdlets.ps1 └── MTX Portland - REST APIs.pptx ├── 2020-02-10 - Mississippi PS UG - Module Building Modules ├── Demos │ ├── 01 - Plaster.ps1 │ ├── 02 - PlatyPS.ps1 │ ├── 03 - InvokeBuild.ps1 │ └── 04 - PSDeploy.ps1 ├── MSPSUG - Module Building Modules.pptx └── README.md ├── 2021-04-29 - PowerShell Summit 2021 - Practically Regexing ├── Demos │ ├── 1. 5 Minute PowerShell Regex Overview.ps1 │ ├── 2. AD DN.ps1 │ ├── 3. Log file example.ps1 │ ├── 4. VS Code Regex.ps1 │ ├── 5. Regex vs. Alternatives.ps1 │ ├── 6. What not to regex.ps1 │ ├── SampleLog.txt │ └── SanitizedLog.txt └── PowerShell Summit 2021 - Practically Regexing.pptx ├── 2022-01-05 - Research Triangle PS UG - Runway ├── README.md └── assets │ ├── action-chain.png │ ├── define-job.png │ ├── dl-job-results.png │ ├── job-w-connector.png │ ├── platformoverview.png │ └── results-chain.png ├── 2022-04-12 - Chicago PS UG - Runway ├── README.md └── assets │ ├── connector-examples.png │ ├── dl-job-results.png │ └── platformoverview.png ├── 2022-04-26 - aC the world! As Code for Anything ├── 00 configs │ └── README.md ├── 01 first example │ ├── MfpAccounts │ │ ├── 01 │ │ │ ├── Sites.txt │ │ │ ├── cicd.yaml │ │ │ └── script.ps1 │ │ └── 02 │ │ │ ├── Sites.txt │ │ │ ├── cicd.yaml │ │ │ ├── config.json │ │ │ └── script.ps1 │ └── README.md ├── 02 second example │ ├── DDLs │ │ ├── cicd.yaml │ │ ├── definitions │ │ │ ├── config.json │ │ │ └── regionbased.json │ │ └── script.ps1 │ └── README.md ├── PowerShell Summit 2022 - aC the World!.pptx └── README.md ├── 2022-04-28 - AutoRest The Module Generator ├── 01 setup │ └── README.md ├── 02 sample │ ├── README.md │ └── swagger.json ├── 03 build │ ├── README.md │ └── src │ │ └── README.md ├── 04 auth │ ├── README.md │ └── src │ │ ├── README.md │ │ └── custom │ │ └── Module.cs ├── 05 adding cmdlets │ ├── README.md │ └── src │ │ ├── README.md │ │ └── custom │ │ ├── Connect-Runway.ps1 │ │ ├── Get-RwConnectionByName.ps1 │ │ └── Module.cs ├── 06 directives │ ├── README.md │ └── src │ │ ├── README.md │ │ └── custom │ │ ├── Connect-Runway.ps1 │ │ ├── Get-RwConnectionByName.ps1 │ │ └── Module.cs ├── PowerShell Summit 2022 - AutoRest.pptx └── README.md ├── 2023-04-26 - Building a serverless Discord bot ├── 01 - Azure Function Workflow │ ├── 01 - Profile.ps1 │ ├── 02 - HTTPStart.ps1 │ └── 03 - Orchestrator.ps1 ├── 02 - Frostbite │ └── 01 - Monitor.ps1 ├── 03 - Function App │ ├── .funcignore │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── HttpStart │ │ ├── function.json │ │ └── run.ps1 │ ├── host.json │ ├── monitor │ │ ├── function.json │ │ └── run.ps1 │ ├── orchestrator │ │ ├── function.json │ │ └── run.ps1 │ ├── profile.ps1 │ └── requirements.psd1 ├── 04 - Manage Bot Commands │ └── 01 - Add Commands.ps1 ├── PowerShell Summit 2023 - Serverless Discord bot.pptx └── README.md ├── 2023-04-27 - Making Kubectl PowerShell friendly ├── 01 - Parsing │ ├── 01 - Sample.ps1 │ ├── 02 - k.ps1 │ └── 03 - Gotchas.ps1 ├── 02 - Formats │ ├── 01 - formats.json │ └── 02 - formatUpdater.ps1 ├── 03 - Filter Left │ └── 01 - Filter Left.ps1 ├── PowerShell Summit 2023 - Making Kubectl PowerShell friendly.pptx └── README.md ├── 2023-10-11 - Pacific PSUG - .NET Object in PowerShell ├── 00 - Understanding Types.ps1 ├── 01 - Discovery.ps1 ├── 02 - Importing.ps1 ├── 03 - Usage.ps1 ├── 04 - Using.ps1 ├── 05 - Generics.ps1 ├── 06 - Other Places.ps1 ├── Pacific PSUG - PowerShell and .NET.pptx └── README.md ├── 2024-04-10 - PSCustomObject[] vs Hashtables ├── 01 - Create │ ├── Hashtable.ps1 │ └── PSCustomObject.ps1 ├── 02 - Update │ ├── Hashtable.ps1 │ └── PSCustomObject.ps1 ├── 03 - Output │ ├── Hashtable.ps1 │ ├── PSCustomObject.ps1 │ └── SampleView.ps1xml ├── 04 - Iterate │ ├── Hashtable.ps1 │ └── PSCustomObject.ps1 ├── Case Study │ └── User Matching.ps1 ├── MOCK_DATA.json ├── PowerShell Summit 2024 - PSCustomObjects vs Hashtables.pptx └── README.md ├── 2025-01-08 - From Pets to Cattle Learning to let go and automate └── Summit 2025 - From Pets to Cattle.pptx ├── 2025-04-09 - Getting started with dev containers ├── 01 - Using a template │ └── README.md ├── 02 - Edited PowerShell only config │ └── .devcontainer │ │ └── devcontainer.json ├── 03 - Adding PowerShell to config │ ├── .devcontainer │ │ └── devcontainer.json │ ├── go.mod │ └── main.go ├── 04 - Integrating multiple containers │ └── networkSetup.ps1 └── Summit 2025 - Getting Started With Dev Containers.pptx ├── 2025-06-11 - Getting into .NET ├── 00 - Understanding Types.ps1 ├── 01 - Discovery.ps1 ├── 02 - Importing.ps1 ├── 03 - Usage.ps1 ├── 04 - Using.ps1 ├── 05 - Generics.ps1 └── 06 - Other Places.ps1 ├── LICENSE.txt └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ~$*.* -------------------------------------------------------------------------------- /2019-01-31 - Scottish PS UG - REST APIs/Code.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2019-01-31 - Scottish PS UG - REST APIs/Code.ps1 -------------------------------------------------------------------------------- /2019-01-31 - Scottish PS UG - REST APIs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2019-01-31 - Scottish PS UG - REST APIs/README.md -------------------------------------------------------------------------------- /2019-04-29 - PowerShell Summit - Curl2PS Lightning Demo/Curl2PS_Prez.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2019-04-29 - PowerShell Summit - Curl2PS Lightning Demo/Curl2PS_Prez.pptx -------------------------------------------------------------------------------- /2019-04-29 - PowerShell Summit - Curl2PS Lightning Demo/Prez.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2019-04-29 - PowerShell Summit - Curl2PS Lightning Demo/Prez.ps1 -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - AD User Lifecycle/Demos/00 - Lab Notes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - AD User Lifecycle/Demos/00 - Lab Notes.ps1 -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - AD User Lifecycle/Demos/01 - Creating Users from a Spreadsheet and Template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - AD User Lifecycle/Demos/01 - Creating Users from a Spreadsheet and Template.ps1 -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - AD User Lifecycle/Demos/01 - UserUpdate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - AD User Lifecycle/Demos/01 - UserUpdate.xlsx -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - AD User Lifecycle/Demos/02 - Standardizing attributes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - AD User Lifecycle/Demos/02 - Standardizing attributes.ps1 -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - AD User Lifecycle/Demos/03 - Cleaning up Stale Accounts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - AD User Lifecycle/Demos/03 - Cleaning up Stale Accounts.ps1 -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - AD User Lifecycle/Demos/04 - Finding Expiring Accounts and Notifying the Manager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - AD User Lifecycle/Demos/04 - Finding Expiring Accounts and Notifying the Manager.ps1 -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - AD User Lifecycle/Demos/05 - Disabled and Retaining.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - AD User Lifecycle/Demos/05 - Disabled and Retaining.ps1 -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - AD User Lifecycle/MTX Portland - Automating AD User Lifecycle.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - AD User Lifecycle/MTX Portland - Automating AD User Lifecycle.pptx -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - REST APIs/Demos/01 - Data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - REST APIs/Demos/01 - Data.json -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - REST APIs/Demos/01 - Working with json.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - REST APIs/Demos/01 - Working with json.ps1 -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - REST APIs/Demos/02 - Invoke-RestMethod Syntax.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - REST APIs/Demos/02 - Invoke-RestMethod Syntax.ps1 -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - REST APIs/Demos/03 - Interpreting Curl Syntax.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - REST APIs/Demos/03 - Interpreting Curl Syntax.ps1 -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - REST APIs/Demos/04 - Making API cmdlets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - REST APIs/Demos/04 - Making API cmdlets.ps1 -------------------------------------------------------------------------------- /2020-01-30 - MTX Portland - REST APIs/MTX Portland - REST APIs.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-01-30 - MTX Portland - REST APIs/MTX Portland - REST APIs.pptx -------------------------------------------------------------------------------- /2020-02-10 - Mississippi PS UG - Module Building Modules/Demos/01 - Plaster.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-02-10 - Mississippi PS UG - Module Building Modules/Demos/01 - Plaster.ps1 -------------------------------------------------------------------------------- /2020-02-10 - Mississippi PS UG - Module Building Modules/Demos/02 - PlatyPS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-02-10 - Mississippi PS UG - Module Building Modules/Demos/02 - PlatyPS.ps1 -------------------------------------------------------------------------------- /2020-02-10 - Mississippi PS UG - Module Building Modules/Demos/03 - InvokeBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-02-10 - Mississippi PS UG - Module Building Modules/Demos/03 - InvokeBuild.ps1 -------------------------------------------------------------------------------- /2020-02-10 - Mississippi PS UG - Module Building Modules/Demos/04 - PSDeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-02-10 - Mississippi PS UG - Module Building Modules/Demos/04 - PSDeploy.ps1 -------------------------------------------------------------------------------- /2020-02-10 - Mississippi PS UG - Module Building Modules/MSPSUG - Module Building Modules.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-02-10 - Mississippi PS UG - Module Building Modules/MSPSUG - Module Building Modules.pptx -------------------------------------------------------------------------------- /2020-02-10 - Mississippi PS UG - Module Building Modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2020-02-10 - Mississippi PS UG - Module Building Modules/README.md -------------------------------------------------------------------------------- /2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/1. 5 Minute PowerShell Regex Overview.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/1. 5 Minute PowerShell Regex Overview.ps1 -------------------------------------------------------------------------------- /2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/2. AD DN.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/2. AD DN.ps1 -------------------------------------------------------------------------------- /2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/3. Log file example.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/3. Log file example.ps1 -------------------------------------------------------------------------------- /2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/4. VS Code Regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/4. VS Code Regex.ps1 -------------------------------------------------------------------------------- /2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/5. Regex vs. Alternatives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/5. Regex vs. Alternatives.ps1 -------------------------------------------------------------------------------- /2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/6. What not to regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/6. What not to regex.ps1 -------------------------------------------------------------------------------- /2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/SampleLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/SampleLog.txt -------------------------------------------------------------------------------- /2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/SanitizedLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2021-04-29 - PowerShell Summit 2021 - Practically Regexing/Demos/SanitizedLog.txt -------------------------------------------------------------------------------- /2021-04-29 - PowerShell Summit 2021 - Practically Regexing/PowerShell Summit 2021 - Practically Regexing.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2021-04-29 - PowerShell Summit 2021 - Practically Regexing/PowerShell Summit 2021 - Practically Regexing.pptx -------------------------------------------------------------------------------- /2022-01-05 - Research Triangle PS UG - Runway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-01-05 - Research Triangle PS UG - Runway/README.md -------------------------------------------------------------------------------- /2022-01-05 - Research Triangle PS UG - Runway/assets/action-chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-01-05 - Research Triangle PS UG - Runway/assets/action-chain.png -------------------------------------------------------------------------------- /2022-01-05 - Research Triangle PS UG - Runway/assets/define-job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-01-05 - Research Triangle PS UG - Runway/assets/define-job.png -------------------------------------------------------------------------------- /2022-01-05 - Research Triangle PS UG - Runway/assets/dl-job-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-01-05 - Research Triangle PS UG - Runway/assets/dl-job-results.png -------------------------------------------------------------------------------- /2022-01-05 - Research Triangle PS UG - Runway/assets/job-w-connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-01-05 - Research Triangle PS UG - Runway/assets/job-w-connector.png -------------------------------------------------------------------------------- /2022-01-05 - Research Triangle PS UG - Runway/assets/platformoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-01-05 - Research Triangle PS UG - Runway/assets/platformoverview.png -------------------------------------------------------------------------------- /2022-01-05 - Research Triangle PS UG - Runway/assets/results-chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-01-05 - Research Triangle PS UG - Runway/assets/results-chain.png -------------------------------------------------------------------------------- /2022-04-12 - Chicago PS UG - Runway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-12 - Chicago PS UG - Runway/README.md -------------------------------------------------------------------------------- /2022-04-12 - Chicago PS UG - Runway/assets/connector-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-12 - Chicago PS UG - Runway/assets/connector-examples.png -------------------------------------------------------------------------------- /2022-04-12 - Chicago PS UG - Runway/assets/dl-job-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-12 - Chicago PS UG - Runway/assets/dl-job-results.png -------------------------------------------------------------------------------- /2022-04-12 - Chicago PS UG - Runway/assets/platformoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-12 - Chicago PS UG - Runway/assets/platformoverview.png -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/00 configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/00 configs/README.md -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/01/Sites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/01/Sites.txt -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/01/cicd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/01/cicd.yaml -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/01/script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/01/script.ps1 -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/02/Sites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/02/Sites.txt -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/02/cicd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/02/cicd.yaml -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/02/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/02/config.json -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/02/script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/01 first example/MfpAccounts/02/script.ps1 -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/01 first example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/01 first example/README.md -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/02 second example/DDLs/cicd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/02 second example/DDLs/cicd.yaml -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/02 second example/DDLs/definitions/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/02 second example/DDLs/definitions/config.json -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/02 second example/DDLs/definitions/regionbased.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/02 second example/DDLs/definitions/regionbased.json -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/02 second example/DDLs/script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/02 second example/DDLs/script.ps1 -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/02 second example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/02 second example/README.md -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/PowerShell Summit 2022 - aC the World!.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/PowerShell Summit 2022 - aC the World!.pptx -------------------------------------------------------------------------------- /2022-04-26 - aC the world! As Code for Anything/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-26 - aC the world! As Code for Anything/README.md -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/01 setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/01 setup/README.md -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/02 sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/02 sample/README.md -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/02 sample/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/02 sample/swagger.json -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/03 build/README.md: -------------------------------------------------------------------------------- 1 | # Build 2 | 3 | ```powershell 4 | autorest README.md 5 | ``` -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/03 build/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/03 build/src/README.md -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/04 auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/04 auth/README.md -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/04 auth/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/04 auth/src/README.md -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/04 auth/src/custom/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/04 auth/src/custom/Module.cs -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/05 adding cmdlets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/05 adding cmdlets/README.md -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/05 adding cmdlets/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/05 adding cmdlets/src/README.md -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/05 adding cmdlets/src/custom/Connect-Runway.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/05 adding cmdlets/src/custom/Connect-Runway.ps1 -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/05 adding cmdlets/src/custom/Get-RwConnectionByName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/05 adding cmdlets/src/custom/Get-RwConnectionByName.ps1 -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/05 adding cmdlets/src/custom/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/05 adding cmdlets/src/custom/Module.cs -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/06 directives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/06 directives/README.md -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/06 directives/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/06 directives/src/README.md -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/06 directives/src/custom/Connect-Runway.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/06 directives/src/custom/Connect-Runway.ps1 -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/06 directives/src/custom/Get-RwConnectionByName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/06 directives/src/custom/Get-RwConnectionByName.ps1 -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/06 directives/src/custom/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/06 directives/src/custom/Module.cs -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/PowerShell Summit 2022 - AutoRest.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2022-04-28 - AutoRest The Module Generator/PowerShell Summit 2022 - AutoRest.pptx -------------------------------------------------------------------------------- /2022-04-28 - AutoRest The Module Generator/README.md: -------------------------------------------------------------------------------- 1 | # Additional links 2 | 3 | - **Recording**: https://www.youtube.com/watch?v=g6K7yvELCR8 -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/01 - Azure Function Workflow/01 - Profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/01 - Azure Function Workflow/01 - Profile.ps1 -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/01 - Azure Function Workflow/02 - HTTPStart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/01 - Azure Function Workflow/02 - HTTPStart.ps1 -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/01 - Azure Function Workflow/03 - Orchestrator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/01 - Azure Function Workflow/03 - Orchestrator.ps1 -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/02 - Frostbite/01 - Monitor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/02 - Frostbite/01 - Monitor.ps1 -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/.funcignore -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/.gitignore -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/.vscode/extensions.json -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/.vscode/launch.json -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/.vscode/settings.json -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/.vscode/tasks.json -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/HttpStart/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/HttpStart/function.json -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/HttpStart/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/HttpStart/run.ps1 -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/host.json -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/monitor/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/monitor/function.json -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/monitor/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/monitor/run.ps1 -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/orchestrator/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/orchestrator/function.json -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/orchestrator/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/orchestrator/run.ps1 -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/profile.ps1 -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/03 - Function App/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/03 - Function App/requirements.psd1 -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/04 - Manage Bot Commands/01 - Add Commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/04 - Manage Bot Commands/01 - Add Commands.ps1 -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/PowerShell Summit 2023 - Serverless Discord bot.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-26 - Building a serverless Discord bot/PowerShell Summit 2023 - Serverless Discord bot.pptx -------------------------------------------------------------------------------- /2023-04-26 - Building a serverless Discord bot/README.md: -------------------------------------------------------------------------------- 1 | # Additional links 2 | 3 | - **Recording**: https://www.youtube.com/watch?v=ucAEzjV0yuA -------------------------------------------------------------------------------- /2023-04-27 - Making Kubectl PowerShell friendly/01 - Parsing/01 - Sample.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-27 - Making Kubectl PowerShell friendly/01 - Parsing/01 - Sample.ps1 -------------------------------------------------------------------------------- /2023-04-27 - Making Kubectl PowerShell friendly/01 - Parsing/02 - k.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-27 - Making Kubectl PowerShell friendly/01 - Parsing/02 - k.ps1 -------------------------------------------------------------------------------- /2023-04-27 - Making Kubectl PowerShell friendly/01 - Parsing/03 - Gotchas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-27 - Making Kubectl PowerShell friendly/01 - Parsing/03 - Gotchas.ps1 -------------------------------------------------------------------------------- /2023-04-27 - Making Kubectl PowerShell friendly/02 - Formats/01 - formats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-27 - Making Kubectl PowerShell friendly/02 - Formats/01 - formats.json -------------------------------------------------------------------------------- /2023-04-27 - Making Kubectl PowerShell friendly/02 - Formats/02 - formatUpdater.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-27 - Making Kubectl PowerShell friendly/02 - Formats/02 - formatUpdater.ps1 -------------------------------------------------------------------------------- /2023-04-27 - Making Kubectl PowerShell friendly/03 - Filter Left/01 - Filter Left.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-27 - Making Kubectl PowerShell friendly/03 - Filter Left/01 - Filter Left.ps1 -------------------------------------------------------------------------------- /2023-04-27 - Making Kubectl PowerShell friendly/PowerShell Summit 2023 - Making Kubectl PowerShell friendly.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-04-27 - Making Kubectl PowerShell friendly/PowerShell Summit 2023 - Making Kubectl PowerShell friendly.pptx -------------------------------------------------------------------------------- /2023-04-27 - Making Kubectl PowerShell friendly/README.md: -------------------------------------------------------------------------------- 1 | # Additional links 2 | 3 | - **Recording**: https://www.youtube.com/watch?v=QnvQAafsIck -------------------------------------------------------------------------------- /2023-10-11 - Pacific PSUG - .NET Object in PowerShell/00 - Understanding Types.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-10-11 - Pacific PSUG - .NET Object in PowerShell/00 - Understanding Types.ps1 -------------------------------------------------------------------------------- /2023-10-11 - Pacific PSUG - .NET Object in PowerShell/01 - Discovery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-10-11 - Pacific PSUG - .NET Object in PowerShell/01 - Discovery.ps1 -------------------------------------------------------------------------------- /2023-10-11 - Pacific PSUG - .NET Object in PowerShell/02 - Importing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-10-11 - Pacific PSUG - .NET Object in PowerShell/02 - Importing.ps1 -------------------------------------------------------------------------------- /2023-10-11 - Pacific PSUG - .NET Object in PowerShell/03 - Usage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-10-11 - Pacific PSUG - .NET Object in PowerShell/03 - Usage.ps1 -------------------------------------------------------------------------------- /2023-10-11 - Pacific PSUG - .NET Object in PowerShell/04 - Using.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-10-11 - Pacific PSUG - .NET Object in PowerShell/04 - Using.ps1 -------------------------------------------------------------------------------- /2023-10-11 - Pacific PSUG - .NET Object in PowerShell/05 - Generics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-10-11 - Pacific PSUG - .NET Object in PowerShell/05 - Generics.ps1 -------------------------------------------------------------------------------- /2023-10-11 - Pacific PSUG - .NET Object in PowerShell/06 - Other Places.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-10-11 - Pacific PSUG - .NET Object in PowerShell/06 - Other Places.ps1 -------------------------------------------------------------------------------- /2023-10-11 - Pacific PSUG - .NET Object in PowerShell/Pacific PSUG - PowerShell and .NET.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2023-10-11 - Pacific PSUG - .NET Object in PowerShell/Pacific PSUG - PowerShell and .NET.pptx -------------------------------------------------------------------------------- /2023-10-11 - Pacific PSUG - .NET Object in PowerShell/README.md: -------------------------------------------------------------------------------- 1 | # Additional links 2 | 3 | - **Recording**: https://www.youtube.com/watch?v=i6kJiDkqpIA -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/01 - Create/Hashtable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/01 - Create/Hashtable.ps1 -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/01 - Create/PSCustomObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/01 - Create/PSCustomObject.ps1 -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/02 - Update/Hashtable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/02 - Update/Hashtable.ps1 -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/02 - Update/PSCustomObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/02 - Update/PSCustomObject.ps1 -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/03 - Output/Hashtable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/03 - Output/Hashtable.ps1 -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/03 - Output/PSCustomObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/03 - Output/PSCustomObject.ps1 -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/03 - Output/SampleView.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/03 - Output/SampleView.ps1xml -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/04 - Iterate/Hashtable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/04 - Iterate/Hashtable.ps1 -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/04 - Iterate/PSCustomObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/04 - Iterate/PSCustomObject.ps1 -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/Case Study/User Matching.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/Case Study/User Matching.ps1 -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/MOCK_DATA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/MOCK_DATA.json -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/PowerShell Summit 2024 - PSCustomObjects vs Hashtables.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2024-04-10 - PSCustomObject[] vs Hashtables/PowerShell Summit 2024 - PSCustomObjects vs Hashtables.pptx -------------------------------------------------------------------------------- /2024-04-10 - PSCustomObject[] vs Hashtables/README.md: -------------------------------------------------------------------------------- 1 | # Additional links 2 | 3 | - **Recording**: https://www.youtube.com/watch?v=DtMEI4xXC8w -------------------------------------------------------------------------------- /2025-01-08 - From Pets to Cattle Learning to let go and automate/Summit 2025 - From Pets to Cattle.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-01-08 - From Pets to Cattle Learning to let go and automate/Summit 2025 - From Pets to Cattle.pptx -------------------------------------------------------------------------------- /2025-04-09 - Getting started with dev containers/01 - Using a template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-04-09 - Getting started with dev containers/01 - Using a template/README.md -------------------------------------------------------------------------------- /2025-04-09 - Getting started with dev containers/02 - Edited PowerShell only config/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-04-09 - Getting started with dev containers/02 - Edited PowerShell only config/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /2025-04-09 - Getting started with dev containers/03 - Adding PowerShell to config/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-04-09 - Getting started with dev containers/03 - Adding PowerShell to config/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /2025-04-09 - Getting started with dev containers/03 - Adding PowerShell to config/go.mod: -------------------------------------------------------------------------------- 1 | module theposhwolf/helloWorld 2 | 3 | go 1.23.4 4 | -------------------------------------------------------------------------------- /2025-04-09 - Getting started with dev containers/03 - Adding PowerShell to config/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-04-09 - Getting started with dev containers/03 - Adding PowerShell to config/main.go -------------------------------------------------------------------------------- /2025-04-09 - Getting started with dev containers/04 - Integrating multiple containers/networkSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-04-09 - Getting started with dev containers/04 - Integrating multiple containers/networkSetup.ps1 -------------------------------------------------------------------------------- /2025-04-09 - Getting started with dev containers/Summit 2025 - Getting Started With Dev Containers.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-04-09 - Getting started with dev containers/Summit 2025 - Getting Started With Dev Containers.pptx -------------------------------------------------------------------------------- /2025-06-11 - Getting into .NET/00 - Understanding Types.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-06-11 - Getting into .NET/00 - Understanding Types.ps1 -------------------------------------------------------------------------------- /2025-06-11 - Getting into .NET/01 - Discovery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-06-11 - Getting into .NET/01 - Discovery.ps1 -------------------------------------------------------------------------------- /2025-06-11 - Getting into .NET/02 - Importing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-06-11 - Getting into .NET/02 - Importing.ps1 -------------------------------------------------------------------------------- /2025-06-11 - Getting into .NET/03 - Usage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-06-11 - Getting into .NET/03 - Usage.ps1 -------------------------------------------------------------------------------- /2025-06-11 - Getting into .NET/04 - Using.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-06-11 - Getting into .NET/04 - Using.ps1 -------------------------------------------------------------------------------- /2025-06-11 - Getting into .NET/05 - Generics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-06-11 - Getting into .NET/05 - Generics.ps1 -------------------------------------------------------------------------------- /2025-06-11 - Getting into .NET/06 - Other Places.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/2025-06-11 - Getting into .NET/06 - Other Places.ps1 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePoShWolf/Sessions/HEAD/README.md --------------------------------------------------------------------------------