Our mechanism for developing user centered designs involves (1) continuous user interviews to understand customer needs, (2) providing a support chat, in every application window, that is constantly being monitored where users can denote any issues to our teams, (3) tracking of all bugs and issues through customer support teams and zendesk tickets that are inputted by users and reviewing by our operations team, (4) acquiring feedback on any scoping documents and designs prior to development to ensure usability of proposed solutions, and (5) enabling users to submit features requests that we review and scope internally to be part of development roadmaps.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Function to upload directory to Glacier | |
upload_directory_to_glacier() { | |
local directory_path=$1 | |
local vault_name=$2 | |
local account_id=$3 | |
local compressed_archive_path="/tmp/$(basename "$directory_path").tar.gz" | |
local archive_description="Backup of $(basename "$directory_path") on $(date +%Y-%m-%d)" |
OlderNewer