-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
732 lines (699 loc) · 49.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
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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META TAG -->
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="description" content="CV, Portfolio, Resume, curriculum vitae, Rajendra Singh" />
<meta name="author" content="Rajendra Singh, Software Engineer" />
<!-- TITLE OF SITE-->
<title>Portfolio: Rajendra Singh</title>
<!-- FAVICON -->
<link rel="icon" href="assets/img/favicon.ico" />
<!-- Style-sheets -->
<!-- BOOTSTRAP CORE STYLE CSS -->
<link href="assets/css/bootstrap.css" rel="stylesheet" />
<!-- FONTAWESOME STYLE CSS -->
<link href="assets/css/all.css" rel="stylesheet" />
<!-- CUSTOM STYLE CSS -->
<link href="assets/css/style.css" rel="stylesheet" />
<!-- Adsense -->
<script data-ad-client="pub-6022745058990928" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
</head>
<body>
<!-- NAV SECTION -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">RAJENDRA SINGH</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">About</a></li>
<li><a href="#work-ex">Work Experience</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<!-- <li><a href="#project">Projects</a></li> -->
<li><a href="assets/contents/resume.pdf" target="_blank">Resume</a></li>
</ul>
</div>
</div>
</div>
<!--END NAV SECTION -->
<!--ABOUT SECTION-->
<section id="about">
<div class="container">
<div class="col l12 m12 s12 skills sidebar-item card">
<div class="row g-pad-bottom">
<div class="col-md-4">
<div class="profile-img" id="profile-img">
<a href="index.html"><img src="assets/img/profile-img.jpg" class="responsive-img" alt="" /></a>
</div>
<hr />
<div>
<ul class="profile-list">
<li class="clearfix">
<strong class="title"><i class="fa fa-home icon"></i> Address</strong>
<span class="cont">Bengluru, Karnataka, India - 560076</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-envelope icon"></i> E-mail</strong>
<span class="cont"><a href="mailto:singh.rajen15@gmail.com">singh.rajen15@gmail.com</a></span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-phone icon"></i> Phone</strong>
<span class="cont"><a href="tel:+91-8088978044">+91-8088 97 8044</a></span>
</li>
</ul>
</div>
<hr />
<div class="profile-social">
<ul class="social">
<li>
<a class="ripple-centered" href="https://api.whatsapp.com/send?phone=+918088978044&text=Hello%21" target="_blank">
<i class="fab fa-2x fa-whatsapp" data-position="top" data-delay="50" data-tooltip="whatsApp"></i>
</a>
</li>
<li>
<a class="ripple-centered" href="https://www.facebook.com/SinghRajenM/" target="_blank">
<i class="fab fa-2x fa-facebook" data-position="top" data-delay="50" data-tooltip="Facebook"></i>
</a>
</li>
<li>
<a class="ripple-centered" href="https://twitter.com/SinghRajenM/" target="_blank">
<i class="fab fa-2x fa-twitter" data-position="top" data-delay="50" data-tooltip="twitter"></i>
</a>
</li>
<li>
<a class="ripple-centered" href="https://www.linkedin.com/in/SinghRajenM/" target="_blank">
<i class="fab fa-2x fa-linkedin" data-position="top" data-delay="50" data-tooltip="linkedIn"></i>
</a>
</li>
<li>
<a class="ripple-centered" href="https://github.com/SinghRajenM" target="_blank">
<i class="fab fa-2x fa-github" data-position="top" data-delay="50" data-tooltip="GitHub"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-md-8">
<h3>A SOFTWARE DEVELOPER</h3>
<p align="justify">
Hello, I am <b>Rajendra Singh</b>, a software developer with a <b>B.Tech</b> in <b>Computer Engineering</b> and over <b>14 years</b> of industry experience.
I specialize in the analysis, design, and development of software applications for Windows, with expertise in designing, developing, debugging, integrating, and releasing end-to-end products.
</p>
<p align="justify">
Currently, I am working at <b>ZScaler, Bangalore</b> as <b>Senior Staff Engineer</b>. I have previously worked
at <b>McAfee Software (India) Pvt. Ltd., Bangalore</b> as Software Engineer,
at <b>HP Inc.</b> as Software Designer,
at <b>Samsung R&D Institute</b> as Technical Lead,
at <b>Honeywell Technology Solutions Lab</b> Software Engineer,
at <b>TRX Technologies</b> (acquired by Concur A SAP company) as Associate Software Engineer, and
at <b>Maruti Suzuki India Limited</b> as PLC Programmer.
</p>
<p align="justify">
Originally from a small village in the Sikar district of Rajasthan, I now reside in Bengaluru, Karnataka. Outside of work, I am an active open-source contributor and a hackathon enthusiast.
I am also open to discussing new opportunities and can be reached via email or phone.
</p>
<hr />
<a class="btn btn-primary btn-lg" href="assets/contents/resume.pdf" download="Resume_Rajendra_Singh">DOWNLOAD MY RESUME</a>
</div>
</div>
</div>
</div>
</section>
<!--END ABOUT SECTION-->
<!--WORK EXPERIENCE SECTION-->
<section id="work-ex">
<div class="container">
<div class="card">
<div class="row g-pad-bottom">
<div class="col-md-12 workEx-header text-center">
<h2><i class="fas fa-suitcase" data-position="top" data-delay="50" data-tooltip="Work Experience"></i> Work Experience</h2>
</div>
<div class="col-md-12">
<ul class="timeline">
<!-- Macfee -->
<li>
<!-- Modal -->
<div id="modalMcAfee" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Software Engineer <i class="fa fa-at" id=""></i> McAfee</h4>
</div>
<div class="modal-body">
<p>
Since Dec 2019, I am working with <strong>McAfee</strong> as <strong>Software Engineer</strong>. My current main assignment is to design, develop and maintain a cloud and ML based
virus scanner which is used is in both enterprise and consumer point products.
</p>
</div>
</div>
</div>
</div>
<div class="timeline-badge">
<a><i class="fa fa-circle" id=""></i></a>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<img src="assets/img/logo_McAfee.png" />
<h4>McAfee Software India Pvt Ltd, Bangalore</h4>
</div>
<div class="timeline-body">
<ul class="profile-list">
<li class="clearfix">
<strong class="title"><i class="fas fa-user-tie icon"></i> Designation</strong>
<span class="cont">Software Engineer</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-briefcase icon"></i> Projects</strong>
<span class="cont">Real Protect Virus Scanner</span>
</li>
</ul>
<p class="text-center">
<a href="#" class="btn btn-info" data-toggle="modal" data-target="#modalMcAfee">More Info</a>
</p>
</div>
<div class="timeline-footer">
<p class="text-right current">Dec 2019 – Present</p>
</div>
</div>
</li>
<!-- HP -->
<li class="timeline-inverted">
<!-- Modal -->
<div id="modalHP" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Software Designer <i class="fa fa-at" id=""></i> HP</h4>
</div>
<div class="modal-body">
<p>
I was engaged with <strong>HP</strong> as <strong>Software Designer (Specialist I)</strong>. Here mainly I was developing HP Universal Printer Driver (HP flagship product). Also, I
developed and maintained applications like DDU (Driver Deployment Utility), DCU (Driver Configuration Utility), etc. for easy deployment.
</p>
<p>
As I moved to HP as part of acquisition of Samsung's printer division by HP. Hence, I continued to work on Samsung Printer applications as well. Later, I transitioned it to other
employee.
</p>
</div>
</div>
</div>
</div>
<div class="timeline-badge">
<a><i class="fa fa-circle invert" id=""></i></a>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<img src="assets/img/logo_HP.png" />
<h4>HP Inc., Bangalore</h4>
</div>
<div class="timeline-body">
<ul class="profile-list">
<li class="clearfix">
<strong class="title"><i class="fas fa-user-tie icon"></i> Designation</strong>
<span class="cont">Software Designer (Specialist I)</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-briefcase icon"></i> Projects</strong>
<span class="cont">HP Universal Printer Driver, Status Notification Panel, DDU (Driver Deployment Utility), DCU (Driver Configuration Utility), Intranet Web Portal etc.</span>
</li>
</ul>
<p class="text-center">
<a href="#" class="btn btn-info" data-toggle="modal" data-target="#modalHP">More Info</a>
</p>
</div>
<div class="timeline-footer">
<p class="text-right">Nov 2013 - Dec 2019</p>
</div>
</div>
</li>
<!-- Samsung -->
<li class="timeline">
<!-- Modal -->
<div id="modalSamsung" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Technical Lead <i class="fa fa-at" id=""></i> Samsung</h4>
</div>
<div class="modal-body">
<p>
In <strong>Samsung</strong>, I had multiple designations starting from 'Senior Software Engineer' to 'Lead Engineer' to 'Technical Lead'. My last designation was
<strong>Technical Lead</strong>. Mainly, I was working on development of printer applications for Samsung printers as well for HP, Xerox, Lenovo, Dell so called OEM.
</p>
<p>I also cleared "<strong>Intermediate Level</strong>" and <strong>"Advanced Level" Software Certification</strong>.</p>
</div>
</div>
</div>
</div>
<div class="timeline-badge">
<a><i class="fa fa-circle invert" id=""></i></a>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<img src="assets/img/logo_samsung.png" />
<h4>Samsung R&D Institute India, Bangalore</h4>
</div>
<div class="timeline-body">
<ul class="profile-list">
<li class="clearfix">
<strong class="title"><i class="fas fa-user-tie icon"></i> Designation</strong>
<span class="cont">Technical Lead</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-briefcase icon"></i> Projects</strong>
<span class="cont">Lite Status Monitor, Easy Driver Update, EDU packaging utility, OCR wrapper, OCR test tool, RC updater, String Merger, Office Time Monitor etc.</span>
</li>
</ul>
<p class="text-center">
<a href="#" class="btn btn-info" data-toggle="modal" data-target="#modalSamsung">More Info</a>
</p>
</div>
<div class="timeline-footer">
<p class="text-right">Dec 2013 – Oct 2017</p>
</div>
</div>
</li>
<!-- Honeywell -->
<li class="timeline-inverted">
<!-- Modal -->
<div id="modalHoneywell" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Software Engineer <i class="fa fa-at" id=""></i> Honeywell</h4>
</div>
<div class="modal-body">
<p>
I joined <strong>Honeywell</strong> as <strong>Software Engineer</strong>. Due to contract nature of job, my tenure was very less here. In this short span of time, I just could learn a
few little about the aerospace domain. I worked on a small assignment for FMS (Flight Management System).
</p>
</div>
</div>
</div>
</div>
<div class="timeline-badge">
<a><i class="fa fa-circle invert" id=""></i></a>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<img src="assets/img/logo_honeywell.png" />
<h4>Honeywell Technology Solutions Lab, Bangalore</h4>
</div>
<div class="timeline-body">
<ul class="profile-list">
<li class="clearfix">
<strong class="title"><i class="fas fa-user-tie icon"></i> Designation</strong>
<span class="cont">Software Engineer</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-briefcase icon"></i> Projects</strong>
<span class="cont">Flight Management System (FMS)</span>
</li>
</ul>
<p class="text-center">
<a href="#" class="btn btn-info" data-toggle="modal" data-target="#modalHoneywell">More Info</a>
</p>
</div>
<div class="timeline-footer">
<p class="text-right">Apr 2013 – Aug 2013</p>
</div>
</div>
</li>
<!-- TRX -->
<li>
<!-- Modal -->
<div id="modalTRX" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Software Engineer <i class="fa fa-at" id=""></i> TRX</h4>
</div>
<div class="modal-body">
<p>
<strong>TRX Technologies</strong> was my first company (or first IT company of my career) post my graduation. I joined here as <strong>Associate Software Engineer</strong>. I used to
interact with our directly via Clientele so called CRM. I used to create FRD/SRS, write CORREX routines, html/pdf email templates and troubleshoot production issue.
</p>
<p>Here, I got a chance to learn about travel industry. Also, I learnt how GDS (Global Distribution System) works. Mainly, I used Sabre, Amadeus, Apollo, Galileo and Worldspan.</p>
</div>
</div>
</div>
</div>
<div class="timeline-badge">
<a><i class="fa fa-circle" id=""></i></a>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<img src="assets/img/logo_trx.png" />
<h4>TRX Technologies India Pvt Ltd, Bangalore</h4>
</div>
<div class="timeline-body">
<ul class="profile-list">
<li class="clearfix">
<strong class="title"><i class="fas fa-user-tie icon"></i> Designation</strong>
<span class="cont">Software Engineer</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-briefcase icon"></i> Projects</strong>
<span class="cont">Online Reservation Setup, Schedule Change and Refund</span>
</li>
</ul>
<p class="text-center">
<a href="#" class="btn btn-info" data-toggle="modal" data-target="#modalTRX">More Info</a>
</p>
</div>
<div class="timeline-footer">
<p class="text-right">Dec 2010 – Apr 2013</p>
</div>
</div>
</li>
<!-- Maruti Suzuki -->
<li class="timeline-inverted">
<!-- Modal -->
<div id="modalMaruti" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Diploma Engineer Trainee <i class="fa fa-at" id=""></i> Maruti Suzuki</h4>
</div>
<div class="modal-body">
<p>
Post my Polytechnic Diploma, I got recruited in campus selection and joined <strong>Maruti Suzuki India Limited</strong> as <strong>Diploma Engineer Trainee I</strong> under
apprenticeship. I was appointed in machine department of production plant.
</p>
<p>
After successful completion of apprenticeship, I was promoted to <strong>Diploma Engineer Trainee II</strong>. My regular job was to keep all the machines up and running, and if there
is breakdown then troubleshoot the issue. Also, I used to change the PLC ladder logic as and when needed.
</p>
<p>
I also implemented GOT (Graphical Operating Terminal) for a machine. The purpose of GOT implementation was to operate machine easily and to reduce the operating time. Initially, it was
implanted on single machine. It was aimed to implement through out the whole plant later.
</p>
</div>
</div>
</div>
</div>
<div class="timeline-badge">
<a><i class="fa fa-circle invert" id=""></i></a>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<img src="assets/img/logo_maruti-suzuki.png" />
<h4>Maruti Suzuki India Limited, Gurgaon</h4>
</div>
<div class="timeline-body">
<ul class="profile-list">
<li class="clearfix">
<strong class="title"><i class="fas fa-user-tie icon"></i> Designation</strong>
<span class="cont">Diploma Engineer Trainee</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-briefcase icon"></i> Projects</strong>
<span class="cont">Preventive Maintenance, GOT (Graphic Operating Terminal) for Machines</span>
</li>
</ul>
<p class="text-center">
<a href="#" class="btn btn-info" data-toggle="modal" data-target="#modalMaruti">More Info</a>
</p>
</div>
<div class="timeline-footer primary">
<p class="text-right">Jul 2006 – Sep 2007</p>
</div>
</div>
</li>
<li class="clearfix no-float"></li>
</ul>
</div>
<div class="col-md-12 screenshots hidden">
<div class="row">
<div class="col-md-3">
<a href="http://demo.deviserweb.com/material-portfolio-cv-resume/project.html" class="" data-action="#project-one">
<figure class="more img-responsive img-thumbnail">
<img src="assets/img/logo_McAfee.png" />
<figcaption>
<div class="caption-content">
<div class="single_image">
<h2>Software Engineer</h2>
<p>McAfee Software (India) Pvt. Ltd., Bangalore</p>
</div>
</div>
</figcaption>
</figure>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--END WORK EXPERIENCE SECTION-->
<!-- EDUCATION SECTION-->
<section id="education">
<div class="container">
<div class="card">
<div class="row g-pad-bottom">
<div class="col-md-12 education-header text-center">
<h2><i class="fas fa-graduation-cap" data-position="top" data-delay="50" data-tooltip="Education"></i> Education</h2>
<div class="row text-center">
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="panel panel-primary">
<div class="panel-heading">
<h4>Secondary School (10<sup>th</sup>)</h4>
</div>
<div class="panel-body">
<div class="round-body">
<div class="price-main">
<span class="price-Unit">
77.17<small><i class="fa fa-percent"></i></small>
</span>
<small>2001</small>
</div>
</div>
<ul class="plan">
<li> </li>
</ul>
<a href="http://rajeduboard.rajasthan.gov.in/" target="_blank">Board of Secondary Education, Rajasthan</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="panel panel-primary">
<div class="panel-heading">
<h4>Sr Secondary School (12<sup>th</sup>)</h4>
</div>
<div class="panel-body">
<div class="round-body">
<div class="price-main">
<span class="price-Unit">
72.92<small><i class="fa fa-percent"></i></small>
</span>
<small>2003</small>
</div>
</div>
<ul class="plan">
<li>PCM (Physics Chemistry Math)</li>
</ul>
<a href="http://rajeduboard.rajasthan.gov.in/" target="_blank">Board of Secondary Education, Rajasthan</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="panel panel-primary">
<div class="panel-heading">
<h4>Polytechnic Diploma</h4>
</div>
<div class="panel-body">
<div class="round-body">
<div class="price-main">
<span class="price-Unit">
68.89<small><i class="fa fa-percent"></i></small>
</span>
<small>2003-2006</small>
</div>
</div>
<ul class="plan">
<li>Electronics & Comm. Engineering</li>
</ul>
<a href="http://techedu.rajasthan.gov.in/" target="_blank">Board of Technical Education, Rajasthan</a>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="panel panel-primary">
<div class="panel-heading">
<h4>Bachelor Of Technology</h4>
</div>
<div class="panel-body">
<div class="round-body">
<div class="price-main">
<span class="price-Unit">
70.73<small><i class="fa fa-percent"></i></small>
</span>
<span class="honors">(Honors)</span>
<small>2007-2010</small>
</div>
</div>
<ul class="plan">
<li>Computer & Science Engineering</li>
</ul>
<a href="http://www.rtu.ac.in/" target="_blank">Rajasthan Technical University, Kota</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--END EDUCATION SECTION-->
<!--SKILLS SECTION-->
<section id="skills">
<div class="container">
<div class="col l12 m12 s12 skills sidebar-item card">
<div class="row g-pad-bottom">
<div class="col-md-12 workEx-header text-center">
<h2><i class="fas fa-tools" data-position="top" data-delay="50" data-tooltip="Skills"></i> Skills</h2>
</div>
<div class="col-md-6">
<div class="panel panel-primary">
<div class="panel-heading">
<h4>PROFESSIONAL PROFILE</h4>
</div>
<div class="panel-body">
<ul class="profile-list">
<li class="clearfix"><i class="fa fa-star icon"></i> Experience in developing <strong>windows apps</strong> using <strong>C++/VC++/Win32/WTL</strong>.</li>
<li class="clearfix"><i class="fa fa-star icon"></i> Strong knowledge of <strong>C++11/14</strong> and <strong>OOPS Concepts</strong>.</li>
<li class="clearfix"><i class="fa fa-star icon"></i> Knowledge of <strong>TCP/IP/HTTP</strong> protocols, <strong>COM</strong>, <strong>MFC</strong> and <strong>NSIS</strong> scripts.</li>
<li class="clearfix"><i class="fa fa-star icon"></i> Responsible for designing, developing, integrating and making the release.</li>
<li class="clearfix"><i class="fa fa-star icon"></i> Have worked as <strong>Project Coordinator</strong> for 3 months at <strong>Samsung Electronics, Suwon, South Korea</strong>.</li>
<li class="clearfix"><i class="fa fa-star icon"></i> Active member of the <strong>Notepad++ development team</strong>. Currently, I am <strong>2nd the highest contributor</strong>.</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-primary">
<div class="panel-heading">
<h4>TECHNICAL PROFILE</h4>
</div>
<div class="panel-body">
<ul class="profile-list">
<li class="clearfix">
<strong class="title"><i class="fa fa-code icon"></i> Languages</strong>
<span class="cont">C, C++</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fab fa-windows icon"></i> Technologies</strong>
<span class="cont">VC++, Win32, WTL, STL, MFC, COM</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-terminal icon"></i> Scripting</strong>
<span class="cont">NSIS (Installer script), Python</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-database icon"></i> Database</strong>
<span class="cont">MySQL, sqlite3, MongoDB</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-globe icon"></i> Web</strong>
<span class="cont">HTML, PHP, CSS, Bootstrap, JavaScript, NodeJS</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-code-branch icon"></i> SCM</strong>
<span class="cont">ClearCase, Perforce, SVN, Git</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-wrench icon"></i> Dev Tools</strong>
<span class="cont">Visual Studio, WinDBG, AppVerifier</span>
</li>
<li class="clearfix">
<strong class="title"><i class="fa fa-toolbox icon"></i> Other Tools</strong>
<span class="cont">Wire Shark, Mib Browser, Bus Hound</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--END SKILLS SECTION-->
<!--PROJECT SECTION-->
<section id="project" class="project hidden">
<div class="container">
<div class="col l12 m12 s12 skills sidebar-item card">
<div class="row g-pad-bottom">
<div class="col-md-12 workEx-header text-center">
<h2><i class="fas fa-cubes" data-position="top" data-delay="50" data-tooltip="Projects"></i> Projects</h2>
</div>
<div class="col-md-12 text-center">
<div class="col-md-4">
<div class="service img-responsive img-thumbnail" data-height="height">
<div class="service-element">
<i class="fab fa-2x fa-github"></i>
</div>
<div class="service-info">
<h3>HP Universal Printer Driver</h3>
<strong class="title">Technologies:</strong>
<span class="cont">Win32, C++, SNMP, WSD, USB, HTTP, TCP/IP</span>
<hr>
<a href="#" class="btn btn-info" data-toggle="modal" data-target="#modalMcAfee">More Info</a>
</div>
<a href="#" class="content-wrapper-link"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--END PROJECT SECTION-->
<!--MAP SECTION-->
<section id="map">
<div class="container">
<iframe class="cnt" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d497699.9974096482!2d77.35073380357456!3d12.953847714450115!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bae1670c9b44e6d%3A0xf8dfc3e8517e4fe0!2sBengaluru%2C%20Karnataka!5e0!3m2!1sen!2sin!4v1594161327196!5m2!1sen!2sin">
</iframe>
<div class="address">
<i class="fas fa-map-marker-alt" data-position="top" data-delay="50" data-tooltip="twitter"> Address:</i> Bengluru , Karnataka, India-560075
</div>
</div>
</section>
<!--END MAP SECTION-->
<!--FOOTER SECTION -->
<div id="footer">
Rajendra Singh | <i class="fas fa-copyright" data-position="top" data-delay="50" data-tooltip="copyright"></i> 2020
</div>
<!-- END FOOTER SECTION -->
<!-- JAVASCRIPT FILES PLACED AT THE BOTTOM TO REDUCE THE LOADING TIME -->
<!-- CORE JQUERY -->
<script src="assets/plugins/jquery-1.10.2.js"></script>
<!-- BOOTSTRAP CORE SCRIPT -->
<script src="assets/plugins/bootstrap.min.js"></script>
<!-- CUSTOM SCRIPTS -->
<script src="assets/js/custom.js"></script>
</body>
</html>