Skip to content

Instantly share code, notes, and snippets.

View taurus227's full-sized avatar

Robert Mikes taurus227

View GitHub Profile
@startuml
Commodity "1" -- "*" Grade
Storage "1" -- "*" Transaction
Weighbridge "0..2" -- "*" Transaction
Season "0..1" -- "*" Storage
Grade "0..1" -- "*" Storage
class Transaction {
String customerName
}
@startuml
title Grain Flow \n
|Inland Site|
:Truck;
-> Weighbridge Intake;
:Storage;
-> Outtake;
:Barge;
|#AntiqueWhite|Shipping Terminal|
@startuml
title Barge to Storage Intake WO \n
|High Level|
:Barge;
-> Intake;
:Storage;
detach;
|Details|
start
@startuml
together {
Path <|-- RolePath
Path <|-- ItemPath
Path <|-- DomainPath
}
ItemPath <|-- AgentPath
ItemPath -[hidden]left-> RolePath
@taurus227
taurus227 / openapi.yaml
Created November 20, 2017 12:26
Move Measurements
openapi: 3.0.0
info:
description: API for querying power meter measurements.
version: 1.0.0
title: Move Measurements
contact:
email: robert@mikes.hu
servers:
- url: 'https://192.168.0.0/v1'
description: Production server (uses live data)
@taurus227
taurus227 / !Git hooks for NPM projects
Last active July 26, 2022 20:49 — forked from betorobson/post-checkout
git hook to run `npm install` after git pull, merge, rebase or checkout if package.json was changed
# The name for this gist (starts with exclamation mark, because the name of the gist is the name of the first file in ASCIIbetical order)