Skip to content

Instantly share code, notes, and snippets.

View williamoconnorme's full-sized avatar
☁️

William williamoconnorme

☁️
View GitHub Profile
@williamoconnorme
williamoconnorme / Configure-ServiceFabricAuth.ps1
Last active February 24, 2025 18:35
This script will allow you to use DefaultAzureCredential locally with your service fabric cluster. It uses PsExec to login the NETWORK SERVICE Account using the AZ CLI. This caches the token credential for the service account
<#
.SYNOPSIS
This script will authenticate via Azure CLI and store an auth token in the SYSTEM user profile to enable the Azure.Identity library to authenticate with Azure services.
.DESCRIPTION
The script uses Azure CLI to authenticate and retrieve an authentication token. This token is then stored in the SYSTEM user profile, allowing the Azure.Identity library to use it for authenticating with various Azure services. This is useful for scenarios where services running under the SYSTEM account need to access Azure resources.
.PARAMETER None
This script does not take any parameters.
@williamoconnorme
williamoconnorme / ireland-eircode-routing-keys.json
Created February 20, 2021 18:47
Routing keys for Eircodes in Ireland
[
{
"name": "A45",
"description": "OLDTOWN"
},
{
"name": "A67",
"description": "WICKLOW"
},
{
@williamoconnorme
williamoconnorme / Podfile
Created September 14, 2017 16:05
PopcorntimeTV xCode 9 podfile
use_frameworks!
source 'https://github.com/CocoaPods/Specs'
source 'https://github.com/PopcornTimeTV/Specs'
def pods
pod 'PopcornTorrent', '~> 1.1.13'
pod 'XCDYouTubeKit', '~> 2.5.5'
pod 'Alamofire', '~> 4.4.0'
pod 'AlamofireImage', '~> 3.2.0'