-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.js
139 lines (132 loc) · 5.92 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
export const intro = {
name: 'Jane Doe',
label: 'Frontend Developer',
image: 'https://www.linkpicture.com/q/generated_photos_5e68893b6d3b380006f22f8b.jpg',
email: 'janedoe@email.com',
phone: '+91 9876543210',
url: 'www.github.com/sadanandpai/',
summary: `I am a web developer having expertise in frontend development and exposure to back- end development. I design and develop web applications using the latest technologies to deliver the product with quality code.`,
location: 'Bengaluru',
relExp: '4 years',
totalExp: '6 Years',
objective:
'Eager to expand my skill set through external trainings to help boost all major front desk KPIs. Hoping to leverage organizational skills to help ABC Corp introduce time-saving schemes for all executives.',
profiles: [
{
network: 'linkedin',
username: 'sadanandpai',
url: 'https://www.linkedin.com/in/sadanandpai/',
},
{
network: 'github',
username: 'sadanandpai',
url: 'https://github.com/sadanandpai/',
},
{
network: 'hackerrank',
username: 'paicube',
url: 'https://www.hackerrank.com/paicube/',
},
{
network: 'leetcode',
username: 'paicube',
url: 'https://leetcode.com/paicube/',
},
],
};
export const skills = {
languages: [
{ name: 'JavaScript', rating: 5 },
{ name: 'HTML5', rating: 5 },
{ name: 'CSS', rating: 5 },
],
frameworks: [
{ name: 'React', rating: 4 },
{ name: 'Angular', rating: 4 },
],
technologies: [
{ name: 'Algorithms', rating: 3 },
{ name: 'Progressive Web Apps', rating: 3 },
{ name: 'SQL', rating: 3 },
{ name: 'Data Structures', rating: 3 },
],
libraries: [
{ name: 'jQuery', rating: 3 },
{ name: 'Redux', rating: 3 },
],
databases: [{ name: 'Firebase', rating: 3 }],
practices: [
{ name: 'Component based architecture', rating: 3 },
{ name: 'Agile methodology', rating: 3 },
{ name: 'Design Patterns', rating: 3 },
{ name: 'Test Driven Development', rating: 3 },
{ name: 'MVC', rating: 3 },
],
tools: [
{ name: 'Git', rating: 3 },
{ name: 'VS Code', rating: 3 },
{ name: 'Jira', rating: 3 },
{ name: 'Webpack', rating: 3 },
{ name: 'Eclipse', rating: 3 },
{ name: 'Bitbucket', rating: 3 },
],
};
export const work = [
{
name: 'Company 1',
role: 'Senior Software Developer',
from: 'Apr 2021',
to: 'present',
years: '2.5 years',
description:
'* Use my extensive experience with front end development to define the structure and components for the project, making sure they are reusable\n* Keep the code quality high reviewing code from other developers and suggesting improvements\n* Interact with the designer to suggest changes and to make sure the view he has about the design is translated into actual functionality\n* E-commerce maintenance **with Fastcommerce**, a Brazilian e-commerce platform',
},
{
name: 'Company 2',
role: 'Software Developer',
from: 'Jun 2015',
to: 'Dec 2017',
years: '2.5 years',
description:
"* Develop web applications based on Sharepoint, Drupal 8 and Episerver\n* Lead a team of 10 front end developers, giving support to the client's multi-cultural team, providing feedback, clarifying requirements and helping with technical questions\n* Keep the Project Manager and the IT Leads updated on the overall progress of the projects and manage the tasks distributed to the team\n* Keep the code and the features implemented by the other developers in accordance to the requirements",
},
{
name: 'Company 3',
role: 'Trainee Developer',
from: 'Aug 2011',
to: 'May 2015',
years: '1 year',
description:
'* Design easy user interfaces and great user experiences for the digital platforms of small companies\n* Wordpress development, including themes creation or customization, custom plugins development and training\n* E-commerce maintenance with Fastcommerce, a Brazilian e-commerce platform\n* E-commerce development with Magento, customizing preexisting themes \n* Integrate external services such as payment services, delivery, etc into Magento solutions\n* VPS configuration and optimization (Apache & Nginx)',
},
];
export const education = [
{
institution: 'MIT, University',
url: 'https://www.mit.edu/',
studyType: 'MS',
area: 'Cloud technology',
startDate: '2014',
endDate: '2016',
score: '68%',
courses: [],
},
{
institution: 'NMAMIT, Nitte',
url: 'https://www.mit.edu/',
studyType: 'B.Tech (VTU)',
area: 'Computer Science',
startDate: '2010',
endDate: '2014',
score: '8.3 CGPA',
courses: [],
},
];
export const activities = {
involvements:
'* Prevented millions of dollars in state sales tax undercharges by initiating tests that revealed a bug in a new release of shopping cart software.\n * Isolated previously undiscovered flaw in price checking tool resulting in more competitive pricing and a 20 percent increase in revenue.\n * Implemented automated testing tools spawning more diligent levels of regression testing, negative testing, error/bug retests and usability.\n * Prevented millions of dollars in state sales tax undercharges by initiating tests that revealed a bug in a new release of shopping cart software.\n',
achievements:
"* React and redux - A complete guide 2020 from Udemy'\n * Agile and Scrum Master Certificate from Udacity\n * Best performer award for consistently exceeding the performance\n * Certificate of exceptional bug finder by XYZ client\n * Recognition zero defect delivery\n * Best performer award for consistently exceeding the performance",
};
export const volunteer = [];
export const awards = [];