Skip to content
View zish's full-sized avatar

Block or report zish

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 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. Better Terraform Bash Completion Better Terraform Bash Completion
    1
    # Bash Terraform completion
    2
    #
    3
    # Originally adapted from
    4
    # https://gist.github.com/cornfeedhobo/8bc08747ec3add1fc5adb2edb7cd68d3
    5
    #
  2. Greylisting iRule for F5 load-balanc... Greylisting iRule for F5 load-balancers, to incrementally throttle requests to matching URIs.
    1
    # Author: Jeremy Melanson <1080872+zish@users.noreply.github.com>
    2
    
                  
    3
    #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    4
    #
    5
    # This is an iRule for the F5 Big-IP family of load-balancers. It creates
  3. Bash multi forking (not multithreadi... Bash multi forking (not multithreading). Crude way of creating a limited number of child processes, while allowing to perform a set number of tasks.
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    func () {
    4
      #-- These will make sense shortly.
    5
      local TMP_NAME="${1}-${2}"