Skip to content
View joshooaj's full-sized avatar

Highlights

  • Pro

Organizations

@psake

Block or report joshooaj

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 Loading

  1. PSPushover Public

    Send push notifications anywhere for any reason using the Pushover.net service

    PowerShell 13

  2. Compare images using the dHash algor...
    1
    function ConvertFrom-HexString {
    2
        [CmdletBinding()]
    3
        param (
    4
            [Parameter(Mandatory, Position = 0, ValueFromPipeline)]
    5
            [string]
  3. Automate Let's Encrypt certificate m...
    1
    <#
    2
    .SYNOPSIS
    3
    Request and install a publicly signed certificate from Let's Encrypt for your Milestone XProtect Mobile Server.
    4
    5
    .DESCRIPTION
  4. Validate HTTPS Certificates
    1
    function Test-WebCertificate {
    2
        <#
    3
        .SYNOPSIS
    4
        Test whether the SSL/TLS certificate is valid/trusted.
    5
        
  5. Generate a markdown table from any P...
    1
    function ConvertTo-MarkdownTable {
    2
        <#
    3
        .SYNOPSIS
    4
        Converts a collection of objects into a markdown-formatted table.
    5