Skip to content

Instantly share code, notes, and snippets.

View ridjex's full-sized avatar

Andrew ridjex

View GitHub Profile
@thedmeyer
thedmeyer / README.md
Last active April 17, 2024 14:38
PlantUML Github Action for generating SVGs

PlantUML GitHub Action

To use this action, you must include a copy of the plantuml.jar file within the root directory of your repository. You can get this file here at: https://sourceforge.net/projects/plantuml/files/plantuml.jar/download

Or run this curl command in your root directory: curl -o plantuml.jar https://iweb.dl.sourceforge.net/project/plantuml/plantuml.jar

How It Works

This action works by recursively searching for PlantUML files with the extension .pu in a subdirectory named src.

@hoegertn
hoegertn / init.py
Created September 14, 2020 09:04
CDK bootstrap helper
import json
import inquirer
import boto3
import os
import sys
import subprocess
def select_account():
@mukandrew
mukandrew / .editorconfig
Created February 25, 2022 15:03
Android Kotlin EditorConfig
root = true
[*]
charset = utf-8
end_of_line = crlf
indent_size = 4
indent_style = space
insert_final_newline = true
max_line_length = 100
tab_width = 4