Skip to content

Instantly share code, notes, and snippets.

View houstonhaynes's full-sized avatar

Houston Haynes houstonhaynes

View GitHub Profile
{
"final_space": true,
"console_title": true,
"console_title_style": "folder",
"blocks": [
{
"type": "prompt",
"alignment": "left",
"horizontal_offset": 0,
"vertical_offset": 0,

.NET OSS Documentation tools

Houston's Note

My goal is to find a way to adapt/co-opt Hugo templates into an .NET driven static site generator.

Right now the two main candidates are Statiq and Fornax

Criteria

@houstonhaynes
houstonhaynes / AzureFunctionSecret.fs
Created June 13, 2023 14:29 — forked from ninjarobot/AzureFunctionSecret.fs
Example of retrieving a secret from an F# Azure Function App
namespace AzurefnSecret
open Microsoft.Azure.KeyVault
open Microsoft.IdentityModel.Clients.ActiveDirectory
module Example =
let getSecret (appKeyDescription:string) (appKeyValue:string) (secretUrl:string) =
async {
use keyVault = new KeyVaultClient(fun authority resource (_:string) ->
async {