I’ve been writing PowerShell code for almost 10 years now, and I love it when I come across someone who uses interesting techniques and patterns that I haven’t seen before.

Do any of you have a list of users in the community from which you’ve taken inspiration in your own code? Who are they? I’d like to follow them :-)

  • Greg TateOP
    link
    English
    21 year ago

    I love how James documents his code. He tells a story with his comments:

            #region Create Color Scheme Object
            $newScheme =
                if ($iTermThemeExists)
                {
                    # If the theme exists, let them customize it.
                    foreach ($k in $PSBoundParameters.Keys) {
                                                        # Any supplied parameter
                        if ($k -ne 'Name' -and          # except name
                            $iTermThemeExists.$k        # that exists in the theme
                        ) {
                            $iTermThemeExists.$k =      # will be overwritten
                                $PSBoundParameters[$k]  # with the supplied parameter.
                        }
                    }
                    $iTermThemeExists