-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
314 lines (288 loc) · 13.2 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P43S18G0ZZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-P43S18G0ZZ');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="author" content="Manish Kushwaha">
<meta name="description" content="Manish Kushwaha is a video game enthusiast who loves to code.">
<meta name="theme-color" content="#000" />
<meta name="msapplication-TileColor" content="#b91d47">
<meta name="msapplication-config" content="media/icons/browserconfig.xml">
<!-- favicons -->
<link rel="icon" type="image/svg+xml" href="media/icons/favicon.svg">
<link rel="icon" type="image/png" sizes="32x32" href="media/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="media/icons/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="media/icons/apple-touch-icon.png">
<link rel="mask-icon" href="media/icons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="manifest" href="site.webmanifest">
<title>Manish Kushwaha</title>
<script src="js/dist/script.prod.js" defer></script>
<style>
#tagline .phase2 {
font-size: 0;
}
body {
margin: 0 auto;
}
#main-content {
max-width: 800px;
padding: 30vh 2rem;
margin: 0 auto;
}
nav {
position: fixed;
top: 0;
padding: 1rem;
display: flex;
flex-direction: row;
}
#welcome {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
nav #logo svg {
width: 2rem;
height: auto;
}
.table-container th,
.table-container td {
word-break: keep-all;
padding: 10px;
}
</style>
<link rel="stylesheet" href="vendor/bootstrap/bootstrap-grid.min.css">
<link rel="preload" href="vendor/fontawesome/css/all.min.css" as="style"
onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="vendor/fontawesome/css/all.min.css">
</noscript>
<link rel="preload" href="scss/dist/style.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="css/style.css">
</noscript>
</head>
<body>
<nav class="no-background" id="nav-bar">
<a href="#" id="logo" aria-label="logo">
<svg viewBox="0 0 320 320">
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<path class="logo-primary" d="M100,100H10A10,10,0,0,1,0,90V0H0A100,100,0,0,1,100,100Z" />
<rect class="logo-primary" y="110" width="100" height="100" rx="10" />
<path class="logo-primary" d="M210,90a10,10,0,0,1-10,10H110A100,100,0,0,1,210,0h0V90Z" />
<rect class="logo-primary" x="110" y="110" width="100" height="100" rx="10" />
<rect class="logo-secondary" x="220" width="100" height="100" rx="10" />
<path class="logo-primary" d="M220,210h0V120a10,10,0,0,1,10-10h90A100,100,0,0,1,220,210Z" />
<rect class="logo-secondary" y="220" width="100" height="100" rx="10" />
<rect class="logo-primary" x="110" y="220" width="100" height="100" rx="10" />
<path class="logo-primary" d="M320,320H230a10,10,0,0,1-10-10V220h0A100,100,0,0,1,320,320Z" />
</g>
</g>
</svg>
</a>
<div id="color-mode-toggle-button" onclick="themeManager.toggleColorMode()" class="hidden">
<i class="fas fa-moon fa-fw" id="icon-dark"></i>
<i class="fas fa-adjust fa-fw" id="icon-light"></i>
</div>
</nav>
<div id="welcome">
<p id="tagline">
I
<span class="phase1">love</span><span class="phase2">do</span>
what I
<span class="phase1">do</span><span class="phase2">love</span>.
</p>
<i class="fas fa-angle-down fa-fw" id="down-arrow"></i>
</div>
<div id="main-content">
<h1>Manish Kushwaha</h1>
<table id="table-contact">
<tbody>
<tr>
<th><i class="fas fa-bookmark fa-fw"></i></td>
<td><a href="https://manishkushwaha.dev">manishkushwaha.dev</a></td>
</tr>
<tr>
<th><i class="fas fa-at fa-fw"></i></td>
<td><a href="mailto:[email protected]" target="_blank"
rel="noopener noreferrer">[email protected]</a></td>
</tr>
<tr>
<th><i class="fab fa-github fa-fw"></i></td>
<td><a href="https://github.com/tzmanish">@tzmanish</a></td>
</tr>
<tr>
<th><i class="fab fa-linkedin-in fa-fw"></i></td>
<td><a href="https://www.linkedin.com/in/tzman">@tzman</a></td>
</tr>
</tbody>
</table>
<h2 class="section-heading">About</h2>
<p>I love video games since childhood, I wanted to build my own game someday and that's what initially attracted me towards Coding, and then I fell in love with it too!</p>
<p>Writing code is the most precise way for me to express my thought process and creativity, I like building something from scratch, something that challenges my mind & knowledge.</p>
<p>Apart from playing video games, I enjoy visiting new places, meeting new people, learning new things and trying new dishes.</p>
<h2 class="section-heading">Area of Interest</h2>
<p>Problem Solving, Video Games, Data Structures & Algorithm</p>
<h2 class="section-heading">Education</h2>
<div class="table-container">
<table id="table-education">
<thead>
<tr>
<th>Institution</th>
<th>Degree</th>
<th>Year</th>
<th>Board</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr>
<td>Indian Institute of Technology Roorkee</td>
<td>B.Arch</td>
<td>2020</td>
<td>-</td>
<td>
<!-- 7.269 -->7.3/10
</td>
</tr>
<tr>
<td>Jawahar Navodaya Vidyalaya, Surajpur</td>
<td>Class 12</td>
<td>2014</td>
<td>CBSE</td>
<td>93.4%</td>
</tr>
<tr>
<td>Jawahar Navodaya Vidyalaya, Surajpur</td>
<td>Class 10</td>
<td>2012</td>
<td>CBSE</td>
<td>9.4/10</td>
</tr>
</tbody>
</table>
</div>
<h2 class="section-heading">Experiance</h2>
<p>
<strong>Software Engineer</strong> | Regulatory Reporting, Societe Generale Global Solution Centre,
Bangalore<br />
<em>Aug 17, 2020 - Present</em>
</p>
<ul>
<li>Development of Order Lifecycle reporting solution on cloud (Big data: Hadoop, Spark, Azure)</li>
<li>Maintainance of report launch and Document backup/archival/retrieval sloution (Web Application: dotnet
core, RESTful APIs, Angular, MySql)</li>
<li>Automation of regulatory report generation for Asia region (JAVA, Python, Shell Scripting, Job
Scheduling)</li>
</ul>
<h2 class="section-heading">Internship</h2>
<p>
<strong>Software Development</strong> | Auriga IT Consulting Pvt. Ltd. Jaipur<br />
<em>Apr 28, 2019 - June 28, 2019</em>
</p>
<ul>
<li>The client needed a cross platform application that , whenever a new stock buy alert is posted on the
blogging website of Dr. Rida Morva, sends a notification with the name of stock and recommended price,
within two seconds of publication.</li>
<li>So far approximately 1200 blogs were published in total ie. there was not enough data to train an ML
based NLP model.</li>
<li>This was a paid blog, managing cookies and credentials was crucial to access the required content.</li>
<li>Scraping the host's website every second and bypassing it's strict security measures were the major
challenges before us.</li>
</ul>
<h2 class="section-heading">Projects</h2>
<p>
<strong>Product Showcase Website</strong> | Rohit Dinkar Architects & Dinkar Associates, Indore<br />
<em>Jan 1, 2019 - Feb 5, 2019</em>
</p>
<ul>
<li>Delivered a website to showcase existing projects and admin dashboard with CRUD functionality in a
period of one month.</li>
</ul>
<h2 class="section-heading">Skills</h2>
<div class="table-container">
<table id="table-skills">
<tbody>
<tr>
<th>Computer Languages</td>
<td>C/C++, Python, Java, Javascript/Typescript, Bash (Shell Scripting), SQL</td>
</tr>
<tr>
<th>Platforms and Software Packages</td>
<td>Microsft Azure (Storage account, Key Vault, VM, App Service), Apache Spark, Apache Hadoop,
Autodesk
AutoCAD, Adobe Illustrator</td>
</tr>
<tr>
<th>Additional Courses Taken</td>
<td>IGNITE Azure Training, Computer Systems and Programming, Computer Application in Architecture, Augmented Reality
Workshop
</td>
</tr>
<tr>
<th>Languages Known</td>
<td>Hindi (SRW), English (SRW)</td>
</tr>
</tbody>
</table>
</div>
<h2 class="section-heading">Achievements</h2>
<p>
<strong>Inter School IT Exhibitions</strong> | Jawahar Navodaya Vidyalaya, Surajpur<br />
<em>2013 - 14</em>
</p>
<ul>
<li>Winner in State level IT Exhibition Organized by NVS, Bhopal, Recognized by MHRD, Department of School
Education and Literacy, Government of India.</li>
<li>Ranked Third in Regional level Computer Science exhibition Organized by NVS, Bhopal, Recognized by MHRD,
Department of School Education and Literacy, Government of India.</li>
</ul>
<p>
<strong>59th Annual National Association of Students of Architecture Convention</strong> | Jaipur<br />
<em>2016 - 2017</em>
</p>
<ul>
<li>Key member of the team which was shortlisted in top 10 for the Luis I. Kahn (LIK) Trophy.</li>
</ul>
<p>
<strong>Mindsweeper</strong> | Centerstage Event, Cognizance, IIT Roorkee<br />
<em>2017</em>
</p>
<ul>
<li>The event involved all kinds of algorithmic challenges, ranging from string manipulation to dynamic
programming.</li>
<li>Our team of three got second place in the event.</li>
</ul>
<h2 class="section-heading">Positions of Responsibility & Extra Curricular</h2>
<p>
<strong>Software Developer</strong> | Information Management Group, IIT Roorkee<br />
<em>2016 - 2017</em>
</p>
<ul>
<li>Rectified bugs and added new features and filters to the Institute's People Search Portal.</li>
<li>Converted traditional SQL queries, previously being used, into Django models and queries.</li>
<li>Modified the search algorithm to remove the irrelevant results and to show the results in proper order.
</li>
</ul>
<p>
<strong>Coordinator</strong> | Bambootech, Cognizance, IIT Roorkee<br />
<em>2017</em>
</p>
<ul>
<li>Invited and hosted 37 participants from various institutions of India and adjacent countries.</li>
<li>Was involved in management of raw materials and equipments for the event.</li>
<li>Was a part of the logistics team for the event.</li>
</ul>
</div>
</body>
</html>