Skip to content
View TurnerSoftwareDev's full-sized avatar
Block or Report

Block or report TurnerSoftwareDev

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. GhostNet GhostNet Public

    Web version of S2 Underground's GhostNet documentation for amateur radio.

    HTML 6

  2. Extracts images from PDF while prese... Extracts images from PDF while preserving PNG transparency
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # Extracts images from a PDF into a directory, preserving transparency.
    4
    #
    5
    # Inspired by https://gist.github.com/bendavis78/ed22a974c2b4534305eabb2522956359
  3. Upload images to Imgur from a file o... Upload images to Imgur from a file or URL
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # Uploads an image to imgur.com from either a local file or from a URL passed on the command line or to stdin,
    4
    # and prints the imgur.com URL to stdout.
    5
    #
  4. Rotate an image either from a local ... Rotate an image either from a local file or a URL
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # Rotates an image from either a local file or from a URL passed on the command line or to stdin,
    4
    # and prints the rotated image file path to stdout.
    5
    #
  5. Horizontally flip an image from a lo... Horizontally flip an image from a local file or a URL
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # Flips an image horizontally from either a local file or from a URL passed on the command line or to stdin,
    4
    # and prints flipped image file path to stdout.
    5
    #
  6. Resize an image from a local file or... Resize an image from a local file or URL
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # Resizes an image from either a local file or a URL passed on the command line or to stdin,
    4
    # and prints the resized image file path to stdout.
    5
    #