Skip to content

Instantly share code, notes, and snippets.

View PlagueHO's full-sized avatar
😼
Working on Game Master Copilot using Semantic Kernel, Azure OpenAI and Blazor 8

Daniel Scott-Raynsford PlagueHO

😼
Working on Game Master Copilot using Semantic Kernel, Azure OpenAI and Blazor 8
View GitHub Profile
@rohit-lakhanpal
rohit-lakhanpal / fy-planning.md
Last active August 3, 2023 19:39
An guide for our FY24 planning session, encompassing strategic agenda points, preparation tips, and a dose of excitement for the journey ahead.

FY24 Planning: Roadmap to Success

TL;DR: Let's harness our collective insights and synergies to sculpt an impressive FY24 - all about building together, selling together, and powering a streamlined go-to-market strategy.

Our upcoming planning session will serve as a beacon, illuminating our business, product, and technology goals. It'll help align these with the FY24 Product Enablement Programs, Technical Enablement Initiatives, and Go-to-Market (GTM) incentives, laying a robust foundation for our shared journey.

📣 Get ready to spark ideas and accelerate our path to growth! 🚀

Proposed Meeting Agenda

@mgreenegit
mgreenegit / ResourceSample.psm1
Created April 30, 2022 19:48
An example DSC resource where only the functions need to be edited
# This is the Get function
function Get-Resource {
param(
[Parameter(Mandatory = $true)]
[String]
$Ensure,
[Parameter(Mandatory = $true)]
[string]
$PropertyA,
[Parameter(Mandatory = $true)]
@nohwnd
nohwnd / Uninstall-Pester.ps1
Last active March 14, 2024 13:57
Remove built-in version of Pester 3 (or -All) from Windows 10 Program Files and Program Files (x86).
#Requires -RunAsAdministrator
function Uninstall-Pester ([switch]$All) {
if ([IntPtr]::Size * 8 -ne 64) { throw "Run this script from 64bit PowerShell." }
#Requires -RunAsAdministrator
$pesterPaths = foreach ($programFiles in ($env:ProgramFiles, ${env:ProgramFiles(x86)})) {
$path = "$programFiles\WindowsPowerShell\Modules\Pester"
if ($null -ne $programFiles -and (Test-Path $path)) {
if ($All) {
Install-Module -Name xPSDesiredStateConfiguration -Force
[DscLocalConfigurationManager()]
configuration LCM {
Settings {
RebootNodeIfNeeded = $true
ActionAfterReboot = 'ContinueConfiguration'
}
}