Skip to content

Instantly share code, notes, and snippets.

@johnscott999
johnscott999 / Either.generated.cs
Last active May 30, 2021 04:53
SSW: What I've learned from 20 years of programming in C# with Joe Albahari - Either Code Gen
#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
@johnscott999
johnscott999 / git-name-stash.sh
Last active January 29, 2021 19:41
IDE - manual
#!/bin/bash
# read from pipe or arguments
if [ -t 0 ]
then
stash=$1
else
#read from piped input
stash=$(cat)
fi
if [ -f "$stash" ]
# 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()]