-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
181 lines (176 loc) · 5.03 KB
/
data.js
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
export const bio = [
"Greetings! I'm David Miller, an experienced Unreal Developer with a proven ability in python, shader development, and third party plugin forking.",
"I am passionate about using my technical skills to drive impactful contributions in challenging projects.",
"Thanks for visiting!",
];
export const skills = [
{
title: "GameDev",
skillName: "C++",
color: "1",
percentage: "60",
},
{
title: "Scripting",
skillName: "Python",
color: "6",
percentage: "75",
},
{
title: "Design",
skillName: "Unreal Blueprints, Shader Dev",
color: "4",
percentage: "90",
},
{
title: "Version Control",
skillName: "GitHub, Perforce, JIRA",
color: "7",
percentage: "85",
},
{
title: "Tools",
skillName: "PyCharm, Visual Studio",
color: "3",
percentage: "80",
},
// {
// title: "Analytics",
// skillName: "CleverTap, Countly",
// color: "5",
// percentage: "50",
// },
// {
// title: "IDE",
// skillName: "VS Code",
// color: "6",
// percentage: "70",
// },
];
export const projects = {
webProjects: [],
softwareProjects: [],
androidProjects: [],
freelanceProjects: [],
};
export const experience = [
{
title: "Halon Entertainment (Technical Director)",
duration: "Febuary 2020 - Present",
subtitle: "Technical Director",
details: ["Working in support and escalation team."],
tags: ["JavaScript", "Angular", "Bootstrap", "Nodejs", "Jenkins"],
icon: "truck ",
},
{
title: "Halon Entertainment (Technical Artist)",
duration: "October 2018 - Febuary 2020",
subtitle: "Technical Artist",
details: [
`Implemented microfrontends using the Module Federation Plugin in Angular.
Rendered components from remote modules/repositories, enabling a modular and scalable architecture`,
`Upgraded application with a dynamic base URL for flexible operation across multiple regions and verticals, leading to
recognition with the Biofourmis Bravo award in Q1, 2023.`,
`Implemented RxState for managing local state in components, resulting in elegant and reactive facades.`,
`Utilized Twilio-Video for group video call rooms and Countly for Web Analytics.`,
`Integrated NGXS WebSocket, enhancing state management and replacing legacy service injections.`,
`Implemented extensive RxJS usage for reactive programming, resulting in efficient data handling, improved state
management, and enhanced application performance.`,
`Dramatically optimized load time and performance through code splitting, lazy loading, caching, and preload`,
`Enhanced video call experience by implementing real-time switching of I/O devices and audio level indicators,
resulting in reduced audio issues and increased user satisfaction.`,
`Owned and led successful Angular application upgrades from version 12 to 13 and 14, improving performance
and enhancing features.`,
],
tags: [
"JavaScript",
"Optimization",
],
icon: "heartbeat",
},
];
export const education = [
{
title: "B.Tech. in Computer Science and Engineering",
duration: "2016 - 2020",
subtitle: "National Institute of Technology, Warangal",
details: [],
tags: [
"Data Structures & Algorithms",
"Operating Systems",
"Database Management System",
"Computer Networks",
"Compiler Designing",
"Cloud Computing",
],
icon: "graduation-cap",
},
{
title: "Class 12th in Science and Mathematics",
duration: "",
subtitle: "Board of Secondary Education, Rajasthan",
details: [],
tags: ["Physics", "Chemistry", "Mathematics"],
icon: "book",
},
];
export const footer = [
// {
// label: "Dev Profiles",
// data: [
// {
// text: "GitHub",
// link: "https://github.com/simsaladoo",
// },
// {
// text: "LeetCode",
// link: "https://leetcode.com/simsaladoo/",
// },
// ],
// },
// {
// label: "Resources",
// data: [
// {
// text: "Enable Dark/Light Mode",
// func: "enableDarkMode()",
// },
// {
// text: "Print this page",
// func: "window.print()",
// },
// {
// text: "Clone this page",
// link: "https://github.com/simsaladoo/simsaladoo.github.io",
// },
// ],
// },
{
label: "Links",
data: [
// {
// text: "Linkedin",
// link: "https://www.linkedin.com/in/simsaladoo/",
// },
// {
// text: "Twitter",
// link: "https://twitter.com/thesigmakid",
// },
{
text: "Buy me a coffee",
link: "https://www.buymeacoffee.com/r194dME8y",
},
{
text: "Github/simsaladoo.github.io",
link: "https://github.com/simsaladoo/simsaladoo.github.io",
},
],
},
{
label: "copyright-text",
data: [
"Made with ♥ by Simsaladoo.",
"© No Copyrights. Feel free to use this template.",
],
},
];