-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hashes_Twitter.php
142 lines (102 loc) · 8.19 KB
/
Hashes_Twitter.php
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
$this->uni_twitter = array(
"Algoma University" => array("official" => "@AlgomaU",
"problems" => array("handles" => "@AlgomaU_Problems"),
"hashtags" => array("official" => "#algomau" )),
"Brescia University College" => array("official" => "@UWaterloo",
"hashtags" => array("official" => "")
),
"Brock University" => array("official" => "@BrockUniversity",
"hashtags" => array("official" => "#brockU"),
"problems" => array("handles" => "@BrockProblems")),
"Carleton University" => array("official" => "@Carleton_U",
"problems" => array("handles" => "@CarletonUProbs"),
"hashtags" => array("official" => "#carletonu","secondary" => "#carleton")),
"Collège de Hearst" => array("official" => "","hashtags" => array("official" => "")),
"Huntington University" => array("official" => "",
"hashtags" => array("official" => "#Huntington") #huntington u is in Indiana
),
"Huron University College" => array("official" => "@HuronAtWestern",
"hashtags" => array("official" => "#Huron"),
"student" => "@myHuron"),
"King's University College" => array("official" => "","hashtags" => array("official" => "")),
"Lakehead University" => array("official" => "@MyLakehead",
"hashtags" => array("official" => "#lakeheadU"),
),
"Laurentian University of Sudbury" => array("official" => "@LaurentianU",
"hashtags" => array("official" => "#Laurentian")
),
"McMaster University" => array("official" => "@McMasterU",
"hashtags" => array("official" => "#McMaster",
"secondary" => "#McMasterU"),
),
"Nipissing University" => array("official" => "@NipissingU",
"hashtags" => array("official" => "#NipissingU",
"secondary" => "#Nipissing")
),
"Northern Ontario School of Medicine" => array("official" => "","hashtags" => array("official" => "")),
"Ontario College of Art and Design University" => array("official" => "@ocad",
"hashtags" => array("official" => "#ocad",
"secondary" => "#ocadu"),
),
"Queen's University" => array("official" => "@QueensU",
"hashtags" => array("official" => "#queensU",
"secondary" => ""),
),
"Ryerson University" => array("official" => "@RyersonU",
"dmz" => "@RyersonDMZ",
"hashtags" => array("official" => "#ryerson", "secondary" =>"#ryersonU","dmz"=> "#ryersonDMZ"),
"problems" => array("handles" => array("@ryersonprobs",
"@RyersonProblemz",
"@RyersonProblem"),
"hashtags" => array("#RyersonProblem",
"#RyersonProblems",
"#RyersonProbs",
"#ryprobs"))),
"Trent University" => array("official" =>"@TrentUniversity",
"hashtags" => array("official" => "#trentU")
),
"Trinity College" => array("official" =>"", "hashtags" => array("official" => "")),
"University of Guelph" => array("official" =>"",
"hashtags" => array("official" => "#UofG", "secondary" => "#uGuelph","tertiary" => "#GuelphU")),
"University of Ontario Institute of Technology" => array("official"=>"@uoit",
"hashtags" => array("official" => "#uoit")),
"University of Ottawa" => array("official" => "@uOttawa",
"hashtags" => array("official" => "#uOttawa", "secondary" => "#OttawaU" ),
"problems" => array("handles" => array("@uOttawaProbz",
"@uOttawaProblems",
"@uOttawaProblem",
"@uOttawaProbelms",
"@UofO_Problems"),
"hashtags" => array("#UofOproblems",
"#uOttawaProblems",
"#OttawaUproblems"))),
"University of St. Michael's College" => array("official" =>"", "hashtags" => array("official" => "")),
"University of Sudbury" => array("official" => "@UofSudbury",
"hashtags" => array("official" => "#uSudbury", "city" => "#sudbury")
),
"University of Toronto" => array("official" => "@UofTNews",
"hashtags" => array("official" => "#uoft",
"secondary" => "#utm",
"tertiary" => "UofTMississauga" ),
"problems" => array("handles" => array("@UofT_Problems", "@UofTProblems", "@u_ofT_problems"),
"hashtags" => array("#UofTproblems"))),
"University of Waterloo" => array("official" => "@UWaterloo",
"problems" => array("handles" => array("@uWaterlooProbz"),
"hashtags" => array("#uWaterlooProblems")),
"hashtags" => array("official" => "#uwaterloo")),
"University of Western Ontario" => array("official" => "@WesternU",
"hashtags" => array("secondary" => "#westernU", "official" => "#uwo")),
"University of Windsor" => array("official" => "@UWindsor",
"hashtags" => array("official" => "#uWindsor" , "secondary" => "#windsorU", "city" => "#Windsor"),
"problems" => array("handles" => array("@uWinProbs"),
"hashtags" => array("UWindsorProblems"))),
"Victoria University" => array(),
"Wilfrid Laurier University" => array("official" => "",
"hashtags" => array("official" => "#WilfridLaurier")
),
"York University" => array("official" => "@YorkUniversity",
"hashtags" => array("official" => "#yorku"),
"problems" => array("handles" => array("@YorkUniProblems", "YorkLionProblem"),
"hashtags" => array("#YorkLionProblem", "YorkUProblems")))
);