forked from BartoszJarocki/cv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume-data.tsx
142 lines (141 loc) · 5.47 KB
/
resume-data.tsx
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
// import {
// AmbitLogo,
// } from "@/images/logos";
import { GitHubIcon, LinkedInIcon, XIcon } from "@/components/icons";
import { ExternalLinkIcon, ExternalLink, Link, FileText } from "lucide-react";
export const RESUME_DATA = {
name: "KLDV Prasad",
initials: "KLDVP",
location: "Hyderabad, India, IST",
locationLink: "https://www.google.com/maps/place/Hyderabad",
about:
"Senior Software Engineer",
summary:`
Senior Software Engineer with 6+ years of experience in developing, testing, and deploying scalable web applications.
I have a penchant to learn and work with the latest technologies.`,
highlights: [
'Worked on JavaScript technologies like Node.js and Vue.js to develop Non-blocking I/O web apps.',
'Designed and implemented RESTful APIs for web applications.',
`Utilized Redis for caching and creating background jobs. Contributed to npm package named
red-bull responsible for monitoring the redis background jobs.`,
`Added internationalization (i18n) support to ensure a seamless experience for a global audience.`,
`Developed logic for building MongoDB and Atlas search queries for all application filter conditions.`,
`Developed logic for Generative AI Chatbot with retrieval-augmented generation (RAG) using
MongoDB Atlas Vector Search and OpenAI LLM models.`
],
avatarUrl: "https://avatars.githubusercontent.com/u/24998621",
personalWebsiteUrl: "https://jarocki.me",
contact: {
email: "prasadkodali786@gmail.com",
tel: "+917330668308",
resumeLink: "https://drive.google.com/file/d/1DfaSEgjmVbRizU5UJheAyl8z5OrwkD_5/view?usp=sharing",
social: [
{
name: "GitHub",
url: "https://github.com/kldvp",
icon: GitHubIcon,
hover: 'Github',
target: '_blank',
},
{
name: "LinkedIn",
url: "https://www.linkedin.com/in/kldvprasad/",
icon: LinkedInIcon,
hover: 'LinkedIn',
target: '_blank'
},
{
name: "X",
url: "https://twitter.com/KldvP",
icon: XIcon,
hover: 'twitter',
target: '_blank'
},
{
name: "LinkToResume",
url: "https://drive.google.com/file/d/1EyjZfqZsGPHu8kyrl2JAM9B3X9JVtkXV/view?usp=sharing",
icon: FileText,
hover: 'CV',
target: '_blank',
}
],
},
education: [
{
school: "Rajiv Gandhi University of Knowledge Technologies, IIIT - Nuzvid",
degree: "Bachelor of Technology in Computer Science and Engineering",
grade: '8.0 GPA',
start: "2014",
end: "2018",
},
{
school: "Rajiv Gandhi University of Knowledge Technologies, IIIT - Nuzvid",
degree: "Pre University Course",
grade: '8.0 GPA',
start: "2012",
end: "2014",
}
],
work: [
{
company: "Applaud",
link: "https://www.applaudhr.com/",
badges: ["Hybrid"],
title: "Senior Software Engineer",
start: "2019",
end: "2024",
experiencePeriod: "December, 2019 - Current",
description: `
I'm working as a Fullstack Developer for an HRM tool, I utilized Node.js, Loopback and Vue.js to develop core features and REST APIs.
My contributions included Generative AI chatbot, i18n translations, MongoDB and MongoDB Atlas search support for filters, workflows, redis background jobs, data export, and localized date formatting.
I also enhanced existing features, fixed bugs, and ensured code quality through unit testing with Jest and e2e testing with Ghost Inspector.
`,
techStack: ["Node.js", "Loopback 3", "Vue.js", "MongoDB", "Redis", "Elastic Search", "MongoDB Atlas Search", "Jest", "Ghost Inspector"],
},
{
company: "Way2Online",
link: "https://www.linkedin.com/company/theway2online/",
badges: [],
title: "MEAN stack developer → Product Engineer",
start: "2018",
end: "2019",
experiencePeriod: "August, 2018 - November, 2019",
techStack: ["Node.js", "Express.js", "MongoDB", "MySQL", "Spring MVC"],
description:
"I worked on Way2Sms product, My work is mainly focused on implementing core backend development tasks using Node.js, developed REST APIs, Automated SMS pushing and receiving of Delivery Reports (DLR's) using SMPP specification, Integrated third-party APIs for Voice SMS and targeted users based on their page visits. Provided Business, Promote and API service for Way2sms using the Spring MVC framework.",
},
{
company: "Way2Online",
link: "https://www.linkedin.com/company/theway2online/",
badges: [],
title: "MEAN stack developer",
start: "2018",
end: "2019",
experiencePeriod: "January, 2018 - July, 2018",
techStack: ["Node.js", "Angular", "Express.js", "MongoDB"],
description:
"I audited and organized large amounts of unstructured data into categories based on factors like age, gender, city, and interests. I implemented an Angular-based admin panel to display data, statistics, and counts. Additionally, I provided categorized data to existing products, such as Way2Sms and 160by2, to enhance their SMS services.",
}
],
skills: [
"JavaScript",
"Node.js",
"Express",
"Loopback",
"HTML",
"Vue.js",
"React.js",
"Redis",
"ElasticSearch",
"MongoDB",
"MongoDB Atlas Search",
"MongoDB Vector Search",
"MySQL",
"Jest (unit testing)",
"Ghost inspector (e2e testing)",
"Spring MVC",
"pm2 (process manager)",
"AWS",
],
projects: [],
} as const;