Skip to content
View superatomic's full-sized avatar
I may be slow to respond.
I may be slow to respond.
Block or Report

Block or report superatomic

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
superatomic/README.md

Hi, I’m superatomic! I like computers.

I have 8 years of experience (and counting!) with using Python. I also develop using other languages.

Contact me on Matrix at @atomic:envs.net or send an email to contact@superatomic.dev.

Notable Projects:

Contributions:

profile

languages

Pinned

  1. tldr-man tldr-man Public

    📚 Command-line TLDR client that displays tldr-pages as manpages.

    Python 14 1

  2. homebrew-bundle-extensions homebrew-bundle-extensions Public

    🗄 Command extensions for Homebrew that allow for easy modification of brew bundles.

    Ruby 11 2

  3. xshe xshe Public

    🐚 A Shell-independent tool for setting Environment Variables across every shell.

    Rust 14 1

  4. superatomic.dev superatomic.dev Public

    🌍 Source for my website. View it live at https://superatomic.dev.

    HTML 1

  5. click-contrib/click-help-colors click-contrib/click-help-colors Public

    Colorization of help messages in Click 🎨

    Python 84 14

  6. lst: strip comments, empty lines, an... lst: strip comments, empty lines, and indentation from files
    1
    #!/bin/bash
    2
    sed -rf- -- "$@" <<-EOF
    3
        s/([^#]*)#.*$/\1/  # remove comments
    4
        s/^\s*//;s/\s+$//  # strip leading and trailing whitespace
    5
        /^$/d              # remove blank lines