Skip to content
View harkabeeparolus's full-sized avatar

Sponsoring

@brettcannon

Block or report harkabeeparolus

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
.github/profile/README.md

Hi! 👋

Most of what you'll find here are small Python and command-line utilities, built to scratch my own itches. Feel free to poke around — issues and pull requests are welcome.

Pinned Loading

  1. pylendar pylendar Public

    Python port of the "calendar" reminder utility from BSD systems

    Python

  2. tublub tublub Public

    Convert or view tabular data using Tablib.

    Python 1

  3. Standard bash script template with u... Standard bash script template with unofficial strict mode
    1
    #! /usr/bin/env bash
    2
    set -o errexit -o nounset -o errtrace -o pipefail
    3
    IFS=$'\n\t'
    4
    shopt -s nullglob
    5
    # shellcheck disable=SC2154
  4. Typer — my attempt at reference docu... Typer — my attempt at reference documentation
    1
    # Typer Cheat Sheet
    2
    
                  
    3
    You should read the [Typer Tutorial - User Guide][tutorial]
    4
    before referring to this summary. Information icons [ℹ️][tutorial] link to the relevant sections of the Typer Tutorial.
    5