-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·450 lines (414 loc) · 21.3 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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rohit Naik's Portfolio</title>
<link rel="shortcut icon" href="images/RN-Favicon-1.png" type="image/x-icon">
<link rel="icon" href="images/RN-Favicon-1.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet">
<link rel="stylesheet" href="libs/font-awesome/css/font-awesome.min.css">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div id="mobile-menu-open" class="shadow-large">
<i class="fa fa-bars" aria-hidden="true"></i>
</div>
<!-- End #mobile-menu-toggle -->
<header>
<div id="mobile-menu-close">
<span>Close</span> <i class="fa fa-times" aria-hidden="true"></i>
</div>
<ul id="menu" class="shadow">
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#experience">Experience</a>
</li>
<li>
<a href="#testimonials">Testimonials</a>
</li>
<li>
<a href="#education">Education</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#github-graph">Github Contributions</a>
</li>
<li>
<a href="#skills">Skills</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
<li>
<a href="#blog">Blog</a>
</li>
<!-- <li>
<a href="#reviews">Reviews</a>
</li> -->
</ul>
</header>
<div id="lead">
<div id="lead-content">
<h1>Rohit Naik</h1>
<h2>Software Engineer</h2>
<a href="docs/Naik_Rohit_Resume.pdf" target="_blank" class="btn-rounded-white">Download Resume</a>
</div>
<!-- End #lead-content -->
<div id="lead-overlay"></div>
<div id="lead-down">
<span>
<i class="fa fa-chevron-down" aria-hidden="true"></i>
</span>
</div>
<!-- End #lead-down -->
</div>
<!-- End #lead -->
<div id="about">
<div class="container">
<div class="row">
<div class="col-md-4">
<h2 class="heading">About Me</h2>
</div>
<div class="col-md-8">
<p>
Hello visitor! I am Rohit Tushar Naik. I am <strong style="color:red;">NOT</strong>
someone who specializes in a particular skill. I am <strong style="color:red;">NOT</strong>
a Python "guru" or a Java "ninja". I am not finicky about certain tools and
technologies. I am an engineer, I use the language/OS/tool that has the best set
features to solve the problem at hand. It's true that I prefer some tools and
technologies over others but that is just because of experiences till date.
If requirements change, tools will change and I make sure I
do not fixate on them. My speciality is problem solving and all these languages, tools,
Operating Systems are just the wide array of tools that I have at my disposal to
solve those problems.
When time comes to adapt to a certain environment, I do not complain about it, but take on
challenges head on.
</p>
<br>
<p>
Visit <a href="http://www.thephilomathicguy.com/" target="_blank"><strong>my blog</strong></a> to know more about me!
</p>
</div>
</div>
</div>
</div>
<!-- End #about -->
<div id="experience" class="background-alt">
<h2 class="heading">Experience</h2>
<div id="experience-timeline">
<div data-date="September 2018 – December 2018">
<h3>SAS</h3>
<h4>Research Intern</h4>
<p>
Built a fully functional pipeline for keypoint detection using VGG16 model
with predictions with a standard deviation of less than 5%.
</p>
</div>
<div data-date="May 2018 – August 2018">
<h3>Google</h3>
<h4>Software Engineering Intern</h4>
<p>
Improved accuracy in existing system in AdMob SDK, for ad view visibility calculation.
<br>
Exceeded performance expectations of 4-5 ms for the new system for complicated hierarchies,
by taking < 0.01ms to run.
</p>
</div>
<div data-date="July 2016 – October 2016">
<h3>Tata Institute of Social Sciences</h3>
<h4>Software Engineering Intern - Backend</h4>
<p>
Developed PHP and MySQL based backend system, enabling dynamic content retrieval in the application reducing data
retrieval time from >3 seconds to around 1 second. Also integrated it in an Android app working with 4 Android developers.
</p>
</div>
</div>
</div>
<!-- End #experience -->
<div id="testimonials">
<h2 class="heading">Testimonials</h2>
<div class="container">
<div class="row">
<div class="project shadow-large">
<div class="project-image">
<img src="https://media.licdn.com/dms/image/C5603AQF7vz8rnm-0kw/profile-displayphoto-shrink_800_800/0?e=1551916800&v=beta&t=AoLJXNIeMebBqAF759YlxPrRWmfOi5RODR_dSp9QSSk" alt="Imran Khan Display Picture" width="300" height="300" onerror="this.onerror=null;this.src='images/imran-khan-dp.jpeg';" />
</div>
<div class="project-info">
<h3>Imran Khan - Software Engineer, Google</h3>
<p>
<img src="images/quote.png" width="20" height="20"/>
Rohit was my summer intern in Google Mobile iOS Ads SDK team. During 3 month we worked together, He came across as a quick learner and curious about learning new technologies. These are two very important qualities for a fresh grad in my opinion. His ramp up time was small and he was able to mostly work independently on his project. He designed the solution, presented it to the team and was able to delivered the project. Mentoring him was fun.
</p>
<a href="https://www.linkedin.com/in/rohit-naik/">View Testimonial on LinkedIn</a>
</div>
</div>
<div class="project shadow-large">
<div class="project-image">
<img src="https://media.licdn.com/dms/image/C5603AQFFQyRyAFwP1Q/profile-displayphoto-shrink_800_800/0?e=1552521600&v=beta&t=xMOJ7DHIopewK4NrHn-8Ohwmk0m5WPniBOeb1bObvr8" alt="Jeenal Kava Display Picture" width="300" height="300" onerror="this.onerror=null;this.src='images/jeenal-kava-dp.jpeg';" />
</div>
<div class="project-info">
<h3>Jeenal Kava - Technology Analyst, Credit Suisse</h3>
<p>
<img src="images/quote.png" width="20" height="20"/>
Rohit is passionate about his work. He is very much updated with the current technology trends and tries to get better at those technologies. He always wants to get an optimal solution to any problem. When we worked on a project together at Credit Suisse, I remember he was able to quickly settle into the role and contribute right from the time he joined. He easily fits into and enjoys working in teams. Rohit keeps on exploring new things, is very professional at work and can go to lengths to help out his colleagues!
</p>
<a href="https://www.linkedin.com/in/rohit-naik/">View Testimonial on LinkedIn</a>
</div>
</div>
<div class="project shadow-large">
<div class="project-image">
<img src="https://media.licdn.com/dms/image/C4D03AQFJv3f9NCsmxw/profile-displayphoto-shrink_800_800/0?e=1552521600&v=beta&t=yPQ9g4eVmN2ae07iH-V1ERmvf-2Bp9FfO3LUPoaIHLQ" alt="Chaitanya Suvarna Display Picture" width="300" height="300" onerror="this.onerror=null;this.src='images/chaitanya-suvarna-dp.jpeg';" />
</div>
<div class="project-info">
<h3>Chaitanya Suvarna - Technology Analyst, Barclays</h3>
<p>
<img src="images/quote.png" width="20" height="20"/>
I had an opportunity to work with Rohit during our internship at Credit Suisse. Rohit was a well organised and always planned ahead in time when it came to day to day tasks. Always driven with passion, Rohit saw to it that he came up with the best possible solution at the same time was a great team player. Working with him was as much a learning experience as much as it was a fun experience. A great team player who saw to it that we always divided tasks based on our strengths and we completed the tasks on schedule. I wish him well for his future endeavours and look forward for a chance to work with him again. Cheers buddy!
</p>
<a href="https://www.linkedin.com/in/rohit-naik/">View Testimonial on LinkedIn</a>
</div>
</div>
</div>
</div>
</div>
<!-- End #testimonials -->
<div id="education" class="background-alt">
<h2 class="heading">Education</h2>
<div class="education-block">
<h3>North Carolina State University</h3>
<span class="education-date">Aug 2017 - Dec 2018</span>
<h4>Master of Computer Science</h4>
<h4>CGPA - 4.0/4.0</h4>
<ul>
<li>
<strong>Courses</strong>: <a href = "https://pages.github.ncsu.edu/fmuelle/parsys18/">Parallel Systems</a>,
<a href = "https://www.engineeringonline.ncsu.edu/course/csc-505-design-and-analysis-of-algorithms/">Analysis of Algorithms</a>,
<a href = "https://www.engineeringonline.ncsu.edu/course/csc-540-database-management-concepts-and-systems/">Database Management Systems</a>,
Software Engineering,
Foundations of Data Science
</li>
</ul>
</div>
<div class="education-block">
<h3>Sardar Patel Institute of Technology</h3>
<span class="education-date">June 2013 - July 2017</span>
<h4>Bachelor of Engineering in Computer Engineering</h4>
<h4>CGPA - 8.76/10.0</h4>
<ul>
<li>
Teaching Assistant to <a href = "https://www.spit.ac.in/academics/faculty/dr-prachi-gharpure/">Dr. Prachi Gharpure</a> for the subjects ‘Structured Programming Approach’
using C language and ‘Object Oriented Programming Methodology’ using Java (2015 - 2016).
</li>
<li>
Head of Events – Computer Society of India - S.P.I.T. branch (tech student body),
technical festival MATRIX (2016).
</li>
<li>
<strong>Courses</strong>: Data Structure Fundamentals, Object Oriented Analysis and Design, Operating Systems,
Computer Networks, Big Data Analytics
</li>
</ul>
</div>
</div>
<div id="projects">
<h2 class="heading">Projects</h2>
<div class="container">
<div class="row">
<div class="project shadow-large">
<div class="project-image">
<img src="images/malicious-web-content-project.png" width="300" height="300" />
</div>
<div class="project-info">
<h3>Malicious Web Content Detection Using Machine Learning</h3>
<ul style="text-align:left;">
<li>Devised a module for extracting features from a webpage and its URL using Python libraries - ‘BeautifulSoup’ and ‘urllib’.</li>
<li>Used a random forest classification model for predicting class labels for web pages with a testing accuracy of 96.11%.</li>
</ul>
<a href="https://github.com/philomathic-guy/Malicious-Web-Content-Detection-Using-Machine-Learning">View Project</a>
<br>
<a href="http://ieeexplore.ieee.org/document/8256834/">View Publication</a>
</div>
</div>
<div class="project shadow-large">
<div class="project-image">
<img src="images/skinzy.png" width="300" height="300" />
</div>
<div class="project-info">
<h3>Skin Disease Detection</h3>
<ul style="text-align:left;">
<li>Built a skin disease image classification model using Python libraries - ‘lasagne’ and ‘nolearn’ having an 85% accuracy.</li>
</ul>
<a href="http://tiny.cc/ijmei-eczema">Proof of Publication</a>
</div>
</div>
<div class="project shadow-large">
<div class="project-image">
<img src="images/project.jpg" />
</div>
<div class="project-info">
<h3>Schedule Generator chat bot</h3>
<ul style="text-align:left;">
<li>Developed an algorithm, working in a team of 4 to generate weekly schedules based on pending tasks and dependencies
between tasks, and export the schedule directly to Google Calendar.</li>
</ul>
<a href="https://github.com/philomathic-guy/WolfPlanner">View Project</a>
<br>
<a href="https://github.com/philomathic-guy/WolfPlanner/blob/master/reports/wolfplanner-report2.pdf">View Document</a>
</div>
</div>
<div class="project shadow-large">
<div class="project-image">
<img src="images/project.jpg" />
</div>
<div class="project-info">
<h3>Image processing using CUDA</h3>
<ul style="text-align:left;">
<li>Developed an algorithm, working in a team of 4 to generate weekly schedules based on pending tasks and dependencies
between tasks, and export the schedule directly to Google Calendar.</li>
</ul>
<a href="https://github.com/philomathic-guy/Image-Processing-CUDA">View Project</a>
</div>
</div>
<div class="project shadow-large">
<div class="project-image">
<img src="images/project.jpg" />
</div>
<div class="project-info">
<h3>MPI library implementation</h3>
<ul style="text-align:left;">
<li>Built a version of MPI library with basic functions such as MPI_Init, MPI_Send, MPI_Recv, MPI_Barrier, MPI_Finalize, etc.</li>
<li>Used socket programming over a cluster of high performance computing nodes for facilitating communication.</li>
</ul>
<a href="https://github.com/philomathic-guy/My-MPI-Implementation">View Project</a>
</div>
</div>
<div class="project shadow-large">
<div class="project-image">
<img src="images/project.jpg" />
</div>
<div class="project-info">
<h3>smartART</h3>
<ul style="text-align:left;">
<li>Created an Android application during PackHacks 2018, for children in Kindergarten to learn, understand and recognize day-
to-day objects better, by integrating Google Vision API and 3-D object rendering.</li>
</ul>
<a href="https://github.com/philomathic-guy/smartARt">View Project</a>
</div>
</div>
</div>
</div>
</div>
<!-- End #projects -->
<!-- Start Github Contributions -->
<div id="github-graph" class="background-alt">
<h2 class="heading">Github Contributions</h2>
<script
src="https://cdn.rawgit.com/IonicaBizau/github-calendar/gh-pages/dist/github-calendar.min.js"
>
</script>
<link
rel="stylesheet"
href="https://cdn.rawgit.com/IonicaBizau/github-calendar/gh-pages/dist/github-calendar.css"
/>
<div class="calendar"></div>
<script>
new GitHubCalendar(".calendar", "philomathic-guy");
</script>
</div>
<!-- End Github Contributions -->
<div id="skills">
<h2 class="heading">Skills</h2>
<ul>
<li>Python</li>
<li>Java</li>
<li>C</li>
<li>Objective C</li>
<li>Node.js</li>
<li>PHP</li>
<li>MySQL</li>
<li>MongoDB</li>
<li>AWS</li>
<li>Hadoop MapReduce</li>
<li>CUDA</li>
<li>HTML5</li>
<li>CSS3</li>
<li>Android</li>
<li>iOS</li>
</ul>
</div>
<!-- End #skills -->
<div id="blog" class="background-alt">
<div class="container">
<div class="row">
<div class="col-md-4">
<h2 class="heading">Blog</h2>
</div>
<div class="col-md-8">
<p>
Please visit my blog - <a href="http://www.thephilomathicguy.com">http://www.thephilomathicguy.com</a> for learning more about me.
</p>
</div>
</div>
</div>
</div>
<!-- End #blog -->
<!-- TODO: CHECK if alternate background is neded here! -->
<div id="contact" class="background-alt">
<h2>Get in Touch</h2>
<div id="contact-form">
<form method="POST" action="https://formspree.io/[email protected]">
<input type="hidden" name="_subject" value="Contact request from personal website" />
<input type="email" name="_replyto" placeholder="Your email" required>
<textarea name="message" placeholder="Your message" required></textarea>
<button type="submit">Send</button>
</form>
</div>
<!-- End #contact-form -->
</div>
<!-- End #contact -->
<footer>
<div class="container">
<div class="row">
<div class="col-sm-5 copyright">
<p>
Copyright © 2018 Rohit Naik
</p>
</div>
<div class="col-sm-2 top">
<span id="to-top">
<i class="fa fa-chevron-up" aria-hidden="true"></i>
</span>
</div>
<div class="col-sm-5 social">
<ul>
<li>
<a href="https://github.com/philomathic-guy" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/rohit-naik/" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://stackoverflow.com/users/8870302/rohit-naik" target="_blank"><i class="fa fa-stack-overflow" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.facebook.com/rohit.naik246" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://twitter.com/philomathic_guy" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/scripts.min.js"></script>
</body>
</html>