One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| convert -density 384 -background transparent favicon.svg -define icon:auto-resize -colors 256 favicon.ico |
| #!/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 |
| #!/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', |
!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")| /** | |
| * A timeout that can be awaited | |
| * @param {} ms | |
| */ | |
| export function timeout(ms: number) { | |
| return new Promise((resolve) => setTimeout(resolve, ms)) | |
| } |
| /** Check if a dom element is the descendant from another element with matching id */ | |
| export const isDescendant = (element: HTMLElement, parentId: string, depth: number) => { | |
| let isChild = false | |
| if (element.id === parentId) { | |
| //is this the element itself? | |
| isChild = true | |
| } | |
| let iterations = 0 |
| import * as React from 'react' | |
| import styled from 'styled-components' | |
| import schemaJson from './form.json' | |
| // import Form from '@rjsf/material-ui' | |
| import Form from '@rjsf/core' | |
| // console.log('schema: ', schema) | |
| export interface OptionSettings { | |
| whitelist: string[] |
| const notesInfo = (results: any[]) => ({ | |
| action: "notesInfo", | |
| version: 6, | |
| params: { | |
| notes: results, | |
| }, | |
| }); | |
| const deckname = Deno.args[0] ?? "*"; |