-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
163 lines (147 loc) · 5.49 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Moorthi Rajendiran - Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
color: #333;
line-height: 1.6;
}
header {
background: #007bff;
color: #fff;
padding: 1rem 0;
text-align: center;
}
header h1 {
margin: 0;
}
nav {
display: flex;
justify-content: center;
gap: 1rem;
margin: 1rem 0;
}
nav a {
color: #007bff;
text-decoration: none;
font-weight: bold;
}
section {
max-width: 900px;
margin: 2rem auto;
padding: 0 1rem;
}
h2 {
color: #007bff;
}
footer {
text-align: center;
background: #f4f4f4;
padding: 1rem 0;
margin-top: 2rem;
}
.contact a {
color: #007bff;
text-decoration: none;
}
.project {
margin-bottom: 1.5rem;
}
</style>
</head>
<body>
<header>
<h1>Moorthi Rajendiran</h1>
<p>Senior Exploratory Tester | QA Engineer</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#experience">Experience</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
<section id="about">
<h2>About Me</h2>
<p>I am a highly passionate Software QA Engineer with over 8 years of experience in quality assurance, agile methodologies, and performance testing. I thrive on tackling challenges and delivering reliable software solutions.</p>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li><strong>Coding Language:</strong> Java</li>
<li><strong>Testing Tools:</strong> Postman, Apache JMeter, Tsung</li>
<li><strong>Frameworks:</strong> POM, Data Driven, Cucumber</li>
<li><strong>Performance Testing:</strong> Server monitoring, traffic simulations</li>
</ul>
</section>
<section id="experience">
<h2>Experience</h2>
<h3>Senior Exploratory Tester - Moolya, Bangalore</h3>
<p>Jan 2022 - Present</p>
<ul>
<li>Devising tailored testing strategies and executing detailed test plans.</li>
<li>Running automated test scripts to enhance test accuracy.</li>
<li>Collaborating closely with stakeholders to ensure project success.</li>
</ul>
<h3>QA Engineer - Holoteq, Doha</h3>
<p>May 2021 - Jan 2022</p>
<ul>
<li>Conducted thorough assessments of mobile and desktop applications.</li>
<li>Documented defects and ensured smooth integration of updates.</li>
</ul>
<h3>Senior QA Engineer - Contus, Chennai</h3>
<p>Mar 2019 - May 2021</p>
<ul>
<li>Collaborated with clients and technology teams to address and resolve technical issues efficiently.</li>
<li>Executed performance testing and optimized scripts for better system reliability.</li>
</ul>
<h3>Software Tester - Finatel Technologies, Chennai</h3>
<p>Jul 2016 - Feb 2019</p>
<ul>
<li>Conducted testing for mobile and web applications to ensure quality and performance.</li>
<li>Participated in on-site testing and contributed to key projects like TrueID app in Thailand.</li>
</ul>
<h3>IT Helpdesk Executive - Anunta, Chennai</h3>
<p>Jul 2015 - Apr 2016</p>
<ul>
<li>Managed technical inquiries and ensured timely resolution of technical incidents.</li>
<li>Documented service requests and followed up to ensure completion.</li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="project">
<h3>Bidgely</h3>
<p>Energy analytics platform leveraging AI to provide insights into energy consumption for residential and commercial customers.</p>
</div>
<div class="project">
<h3>MOOD App</h3>
<p>A multi-channel communication app offering video calls, text messaging, and more with a focus on privacy.</p>
</div>
<div class="project">
<h3>MirrorFly</h3>
<p>A real-time messaging solution supporting chat, voice/video calls, and file sharing with end-to-end encryption.</p>
</div>
<div class="project">
<h3>WhizHop</h3>
<p>Cloud-based restaurant management software for streamlining operations and enhancing customer satisfaction.</p>
</div>
</section>
<section id="contact" class="contact">
<h2>Contact</h2>
<p>Email: <a href="mailto:moorthikanchi@gmail.com">moorthikanchi@gmail.com</a></p>
<p>Phone: +91 8754622376</p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/moorthi-rajendiran-4808a39a/" target="_blank">linkedin.com/in/moorthi-rajendiran</a></p>
</section>
<footer>
<p>© 2025 Moorthi Rajendiran. All Rights Reserved.</p>
</footer>
</body>
</html>