!include https://raw.githubusercontent.com/RicardoNiepel/C4-PlantUML/release/1-0/C4_Container.puml
@startuml
Person(personAlias, "Label", "Optional Description")
Container(containerAlias, "Label", "Technology", "Optional Description")
System(systemAlias, "Label", "Optional Description")
System(holla, "Holla", "Optional Description")
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
| /** | |
| * A timeout that can be awaited | |
| * @param {} ms | |
| */ | |
| export function timeout(ms: number) { | |
| return new Promise((resolve) => setTimeout(resolve, ms)) | |
| } |
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 ts-node | |
| import * as yargs from 'yargs'; | |
| import { default as analyze, typify } from 'json-literal-typer'; | |
| import * as fs from 'fs'; | |
| const argv = yargs | |
| .option('output', { | |
| alias: 'o', | |
| description: 'output file', | |
| type: 'string', |
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 | |
| # DEPLOY_USER=ubuntu | |
| # DEPLOY_SERVER= | |
| # DEPLOY_SSH=$DEPLOY_USER@$DEPLOY_SERVER:$DEPLOY_DIR | |
| SSH_SERVER_NAME=ssh_config_name | |
| DEPLOY_DIR=/home/admin/deploy/ | |
| DEPLOY_SSH=$SSH_SERVER_NAME:$DEPLOY_DIR | |
| EXLUDE_FILE=.rsync_exclude | |
| set -e |
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
| convert -density 384 -background transparent favicon.svg -define icon:auto-resize -colors 256 favicon.ico |
NewerOlder