-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.py
41 lines (38 loc) · 1007 Bytes
/
constants.py
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
special_roles = {
"Programming Languages": {
"🐍": "python",
"🌐": "html",
"☕": "java",
"⚡": "zig",
"🦦": "golang",
"🦀": "rust",
"🤖": "c",
"💻": "c++",
"🔷": "c#",
"🎨": "css",
"🟨": "javascript",
"🌍": "web dev",
"🛠️": "backend dev",
"🧑💻": "fullstack dev",
"⚙️": "systems engineering",
},
"Operating Systems": {
"🪶": "macOS",
"🪟": "windows",
"🐧": "linux",
},
"Area of Interest": {
"🌍": "web dev",
"🛠️": "backend dev",
"🧑💻": "fullstack dev",
"⚙️": "systems engineering",
},
}
all_roles_dict = {}
for key in special_roles:
for role in special_roles[key]:
all_roles_dict[role] = special_roles[key][role]
all_roles_list = ()
for key in special_roles:
for role in special_roles[key]:
all_roles_list += (role,)