This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region IEither interface | |
public interface IEither | |
{ | |
int PopulatedType { get; } | |
object Value { get; } | |
} | |
#endregion IEither interface | |
#region Either<T1, T2> | |
public record Either<T1, T2> : IEither |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# read from pipe or arguments | |
if [ -t 0 ] | |
then | |
stash=$1 | |
else | |
#read from piped input | |
stash=$(cat) | |
fi | |
if [ -f "$stash" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# for computers with ExecutionPolicy = AllSigned, adds some helper methods for signing ps1 files in general, and profile files in particular | |
$selfSignFuncFile = "$([System.IO.Path]::GetDirectoryName($profile.CurrentUserAllHosts))\Scripts\SelfSign-Ps1.ps1"; | |
if (Test-Path -Path $selfSignFuncFile -PathType Leaf) { | |
thorw 'the self signing function file already exists'; | |
} | |
New-Item $selfSignFuncFile; | |
Set-Content $selfSignFuncFile ' | |
function SelfSign-Ps1 { | |
[CmdletBinding()] |