Skip to content
View bcdady's full-sized avatar
👨‍💻
:terraform:
👨‍💻
:terraform:
Block or Report

Block or report bcdady

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. SRE-Shell-Kit SRE-Shell-Kit Public

    Console/shell toolkit, designed to bootstrap the fundamental tools an SRE needs on a (previously uninitialized) system

    PowerShell

  2. ProfilePal ProfilePal Public

    Now published and available from PowerShellGallery.com! The ProfilePal PowerShell Module contains functions that help create and edit PowerShell profiles, as well as some other functions which can …

    PowerShell 5

  3. Sperry Sperry Public

    Sperry 'autopilot' module includes functions to automate changes related to working in a specific office network environment, vs working elsewhere, or remotely

    PowerShell 2

  4. Edit-Module Edit-Module Public

    Opens a specified PowerShell module, for editing, in a specified test editor / IDE

    PowerShell

  5. User PowerShell to List files in a f... User PowerShell to List files in a folder, Group by extension, sorted in descending order by most common extension(s)
    1
    # -Recurse is optional
    2
    Get-ChildItem -Path $env:USERPROFILE\Downloads -Recurse | Group-Object -Property Extension | sort -Descending -Property Count