View PowerLevel10k-custom.psm1
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
#requires -Version 2 -Modules posh-git | |
function Write-Theme { | |
param( | |
[bool] | |
$lastCommandFailed, | |
[string] | |
$with | |
) |
View extensionUtils.cs
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
//yeah yeah this isn't a fully formatted .cs file I know | |
//just put these somewhere, probably with the following: | |
//using System; | |
//using System.Linq; | |
//following datetime exts are good for output from db results, esp. for reporting | |
public static string ToStringOrNA(this DateTime? dt) | |
{ | |
if (dt.HasValue) |