restructuring & added person template

This commit is contained in:
kaelta 2022-02-19 22:41:52 +00:00
parent f7a5404fc1
commit 9b99ac0ec7
20 changed files with 50 additions and 21 deletions

View File

@ -0,0 +1,17 @@
# ${1:Name}
> ${2:PhoneNumber}
> ${3:Email}
## ${4:Significance}
## ${5:Relations}
## ${5:KnownLocations}
```log
${6:Address}
```
## ${6:OtherInfo}

View File

Before

Width:  |  Height:  |  Size: 1.6 MiB

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@ -12,12 +12,20 @@
> [Open Corporate (archive link)](https://archive.is/i9qEx)
## Significance
Owned [[Sigma International Holdings Inc.]],
specialising in utilising detectives, bodyguards and employing the use of armored cars.
Later on became the CTO of his wife's company, [[Cass-Sigma JV]]
## Relations
Wife is [[Sheila Disney]], who went on to found [[Cass-Sigma JV]]
**Registered Address**
## Known Locations
**Home Address**
```log
548 Boundary Blvd, 33947
@ -26,4 +34,12 @@ Wife is [[Sheila Disney]], who went on to found [[Cass-Sigma JV]]
![map](548boundaryblvd.png)
**Business Address**
```log
2800 PLACIDA RD STE 110
ENGLEWOOD, FL
342245500
```
Supposed OSMTH Grand Commander, not to be confused with the webmaster (identity unknown).

View File

@ -1,12 +0,0 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false

View File

@ -1,5 +0,0 @@
"MD013": false
"MD003":
"style": "atx_closed"
"MD007":
"indent": 4

View File

@ -1,5 +1,18 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
os.system("cd _layouts && yarn && yarn dev")
import os, sys
if __name__ == '__main__':
try:
os.system('cd _layouts')
except RuntimeError:
print('the _layouts directory doesnt exist! clone again pls :)')
sys.exit(404)
try:
os.system('cd _layouts && yarn')
except RuntimeError:
print("""
for your own sanity just install yarn:
npm i -g yarn@latest
""")
sys.exit(127)
os.system('cd _layouts && yarn && yarn dev')

View File

Before

Width:  |  Height:  |  Size: 540 KiB

After

Width:  |  Height:  |  Size: 540 KiB