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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Chord Chart</title> | |
| </head> | |
| <body> | |
| <!-- Styles --> | |
| <style> | |
| #chartdiv { |
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 | |
| # script copied from https://devopscube.com/create-self-signed-certificates-openssl/ | |
| if [ "$#" -ne 2 ] | |
| then | |
| echo "Error: Missing either domain name or certificates owner arguments" | |
| echo "Usage: Provide a domain name and certificate owner (i.e. server or client) as arguments" | |
| exit 1 | |
| fi |
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
| package main | |
| import ( | |
| "encoding/json" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "github.com/google/go-cmp/cmp" |
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
| #!/usr/bin/env bash | |
| if [ $# -ne 1 ] && [ $# -ne 2 ] | |
| then | |
| echo -e "Usage:\n\n$(basename $(readlink -f $0)) coin service_name coin_test backend_log_file\n\nor\n\n$(basename $(readlink -f $0)) coin\n and if old images should be dropped" 1>&2 | |
| exit 1 | |
| fi | |
| COIN=$1 | |
| # ISIMAGE=true |