Skip to content

Instantly share code, notes, and snippets.

@mvanlonden
mvanlonden / canvas_ucd.md
Created May 10, 2022 19:07
A description of Canvas Medical's UCD process for ONC certification.

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.

@mvanlonden
mvanlonden / glacier_multi_upload.sh
Created November 5, 2023 18:55
Upload multiple directories to AWS Glacier
#!/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)"