Skip to content
View APDevice's full-sized avatar

Block or report APDevice

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. Copy rules from a source AWS securit... Copy rules from a source AWS security group into a target one
    1
    #!/usr/bin/env python3
    2
    # Copyright 2022 Dylan Luttrell 
    3
    # License: MIT License
    4
    # Description: python script for copying sg rules from one security group to another
    5
    # Version: 0.2.1
  2. A bash script for listing EC2 instan... A bash script for listing EC2 instances with missing tags
    1
    #!/bin/bash 
    2
    set -f # disable * expansion in Bash shell (see note in options if using ZSH shell)
    3
    set -e # stop script on error
    4
    # default values
    5
    output="" # output flag for jq (eg -r for raw output)
  3. dylan-luttrell/pyBuy dylan-luttrell/pyBuy Public

    An library for queuing the eBay developer API

    Python

  4. goASCIIValidator goASCIIValidator Public

    A simple ASCII validator for checking for spoofed urls and email addresses.

    Go 1

  5. goCheckers goCheckers Public

    The classic game of checkers implemented in Go

    Go