Skip to content
View joshooaj's full-sized avatar

Sponsoring

@squidfunk

Highlights

  • Pro
Block or Report

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

  1. PSPushover PSPushover Public

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

    PowerShell 1

  2. Compare images using the dHash algor... Compare images using the dHash algorithm
    1
    function ConvertFrom-HexString {
    2
        [CmdletBinding()]
    3
        param (
    4
            [Parameter(Mandatory, Position = 0, ValueFromPipeline)]
    5
            [string]
  3. Automate Let's Encrypt certificate m... Automate Let's Encrypt certificate management for Milestone XProtect Mobile Server using Posh-ACME with Dynu DNS.
    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 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... Generate a markdown table from any PowerShell collection
    1
    function ConvertTo-MarkdownTable {
    2
        <#
    3
        .SYNOPSIS
    4
        Converts a collection of objects into a markdown-formatted table.
    5