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
class RishaChangmai extends Developer {
constructor() {
// Professional Summary
this.name = "Risha S Changmai";
this.role = "Lead Fullstack Engineer";
this.experience = "8+ years";
this.location = "Dibrugarh, IN";
}
getExpertise() {
return [
"NodeJS backend development",
"AWS services",
"Serverless architecture",
"Microservices",
"RESTful APIs"
];
}
getKeyAchievements() {
return {
serverOptimization: "75% reduction in server runtime through microservices",
paymentSystem: "8% improvement in payment query speed",
clientSavings: "80% decrease in Google Maps API costs",
platformGrowth: "40% increase in platform bookings"
};
}
getEducation() {
return {
degree: "Bachelor of Engineering, Mechanical",
institution: "Bapurao Deshmukh College of Engineering",
year: "2007 - 2010"
};
}
}
_get in touch