├── .gitattributes ├── .gitignore ├── CmdletInfo.types.ps1xml ├── DateTime.types.ps1xml ├── DemoDateTime.ps1 ├── DemoFormats.ps1 ├── DemoInts.ps1 ├── DemoStrings.ps1 ├── DoTests.ps1 ├── FileInfo.format.ps1xml ├── FileSystem.types.ps1xml ├── Humanizer.dll ├── InstallModule.ps1 ├── Int.types.ps1xml ├── LICENSE ├── PSHumanizerInteractive.ipynb ├── PSHumanizerInteractive.md ├── PowerShellHumanizer.Tests.ps1 ├── PowerShellHumanizer.psd1 ├── PowerShellHumanizer.psm1 ├── PublishToGallery.ps1 ├── README.md ├── String.types.ps1xml ├── TimeSpan.format.ps1xml ├── TimeSpan.types.ps1xml ├── TryPowerShellHumanizer.ps1 ├── Videos ├── DateTime.gif ├── ETS.gif ├── ETS1.gif ├── ETSDemoFancy.gif ├── Formats.gif ├── Humanize.gif ├── Integers.gif ├── Strings.gif └── TryPowerShellHumanizer.gif ├── __tests__ └── PSHumanizer.tests.ps1 ├── azure-pipelines.yml └── en-US └── about_PowerShellHumanizer.help.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/.gitignore -------------------------------------------------------------------------------- /CmdletInfo.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/CmdletInfo.types.ps1xml -------------------------------------------------------------------------------- /DateTime.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/DateTime.types.ps1xml -------------------------------------------------------------------------------- /DemoDateTime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/DemoDateTime.ps1 -------------------------------------------------------------------------------- /DemoFormats.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/DemoFormats.ps1 -------------------------------------------------------------------------------- /DemoInts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/DemoInts.ps1 -------------------------------------------------------------------------------- /DemoStrings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/DemoStrings.ps1 -------------------------------------------------------------------------------- /DoTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/DoTests.ps1 -------------------------------------------------------------------------------- /FileInfo.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/FileInfo.format.ps1xml -------------------------------------------------------------------------------- /FileSystem.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/FileSystem.types.ps1xml -------------------------------------------------------------------------------- /Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/Humanizer.dll -------------------------------------------------------------------------------- /InstallModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/InstallModule.ps1 -------------------------------------------------------------------------------- /Int.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/Int.types.ps1xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/LICENSE -------------------------------------------------------------------------------- /PSHumanizerInteractive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/PSHumanizerInteractive.ipynb -------------------------------------------------------------------------------- /PSHumanizerInteractive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/PSHumanizerInteractive.md -------------------------------------------------------------------------------- /PowerShellHumanizer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/PowerShellHumanizer.Tests.ps1 -------------------------------------------------------------------------------- /PowerShellHumanizer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/PowerShellHumanizer.psd1 -------------------------------------------------------------------------------- /PowerShellHumanizer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/PowerShellHumanizer.psm1 -------------------------------------------------------------------------------- /PublishToGallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/PublishToGallery.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/README.md -------------------------------------------------------------------------------- /String.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/String.types.ps1xml -------------------------------------------------------------------------------- /TimeSpan.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/TimeSpan.format.ps1xml -------------------------------------------------------------------------------- /TimeSpan.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/TimeSpan.types.ps1xml -------------------------------------------------------------------------------- /TryPowerShellHumanizer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/TryPowerShellHumanizer.ps1 -------------------------------------------------------------------------------- /Videos/DateTime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/Videos/DateTime.gif -------------------------------------------------------------------------------- /Videos/ETS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/Videos/ETS.gif -------------------------------------------------------------------------------- /Videos/ETS1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/Videos/ETS1.gif -------------------------------------------------------------------------------- /Videos/ETSDemoFancy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/Videos/ETSDemoFancy.gif -------------------------------------------------------------------------------- /Videos/Formats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/Videos/Formats.gif -------------------------------------------------------------------------------- /Videos/Humanize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/Videos/Humanize.gif -------------------------------------------------------------------------------- /Videos/Integers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/Videos/Integers.gif -------------------------------------------------------------------------------- /Videos/Strings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/Videos/Strings.gif -------------------------------------------------------------------------------- /Videos/TryPowerShellHumanizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/Videos/TryPowerShellHumanizer.gif -------------------------------------------------------------------------------- /__tests__/PSHumanizer.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/__tests__/PSHumanizer.tests.ps1 -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /en-US/about_PowerShellHumanizer.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PowerShellHumanizer/HEAD/en-US/about_PowerShellHumanizer.help.txt --------------------------------------------------------------------------------