Skip to content

Instantly share code, notes, and snippets.

View cheeto-bandito's full-sized avatar

Chet Potvin cheeto-bandito

View GitHub Profile
@cheeto-bandito
cheeto-bandito / CTA Carousel.md
Last active February 19, 2024 18:31
Envi.com
@cheeto-bandito
cheeto-bandito / Kusto.kql
Created July 13, 2023 16:00
Wellstar Solr Log Query
let _betweenTime1 = datetime(2023-07-08 19:29:00);
let _betweenTime2 = datetime(2023-07-13 19:30:59);
let _containerInventory = (ContainerInventory
| where TimeGenerated between (_betweenTime1 .. _betweenTime2)
| distinct ContainerID, ContainerHostname);
ContainerLog
| where TimeGenerated between (_betweenTime1 .. _betweenTime2)
| lookup kind=leftouter _containerInventory on ContainerID
| sort by TimeGenerated asc
| where ContainerHostname startswith "sc-solr-solrcloud-"
<?xml version="1.0" encoding="utf-8"?>
<Settings>
<Sitecore>
<ExternalIdentityProviders>
<IdentityProviders>
<AzureAd type="Sitecore.Plugin.IdentityProviders.IdentityProvider, Sitecore.Plugin.IdentityProviders">
<AuthenticationScheme>IdS4-AzureAd</AuthenticationScheme>
<DisplayName>Azure AD</DisplayName>
<Enabled>true</Enabled>
<ClientId>{Enter Client Id}</ClientId>
@cheeto-bandito
cheeto-bandito / Sitecore.Support.Template.targets
Last active January 7, 2022 19:52
Unpack Sitecore Update Package
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
</ItemGroup>
</Project>