-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.dot
119 lines (76 loc) · 1.37 KB
/
resources.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
digraph resources {
rankdir=LR
{rank=same sleep people emotions school computer travel}
{rank=same body mind work}
# Primitives
sleep->body
sleep->mind
sleep->work
# Sports
body->exercise
exercise->sport
play->sport
sport->athlete
work->athlete
# Games
friends->play
mind->play
computer->video_games
play->video_games
video_games->esports
work->esports
# Relationships
people->friends
friends->love
emotions->love
love->marriage
work->marriage
love->kids
people->kids
# Travel
travel->astronaut
science->astronaut
travel->driver
practice->driver
# Mind career
school->theory
mind->theory
theory->science
work->science
computer->programing
work->programing
# Body career
school->practice
body->practice
practice->service
work->service
service->doctor
theory->doctor
# Work career
school->business
work->business
business->startup
computer->startup
# Emotion career
emotions->art
work->art
emotions->dance
exercise->dance
art->acting
body->acting
emotions->music
play->music
music->band
friends->band
art->graphic_design
computer->graphic_design
emotions->therapy
theory->therapy
# People career
people->politics
theory->politics
people->social_media
computer->social_media
social_media->influencer
work->influencer
}