-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·1064 lines (1008 loc) · 78.4 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
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!--> <html lang="en"> <!--<![endif]-->
<head>
<link rel="shortcut icon" href="/assets/images/rajendra_arora.png" type="image/x-icon" />
<title>Raj Arora | Tech Lead at Tavant | Ex-Treez | Ex-Taboola | Ex-BookMyShow</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Raj Arora">
<meta property="og:url" content="https://www.rajendraarora.com"/>
<meta property="og:site_name" content="Raj Arora (rajendraarora16)"/>
<meta property="og:title" content="Raj Arora (rajendraarora16)"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="https://www.rajendraarora.com/assets/images/rajendra_arora.png"/>
<meta property="og:description" content="Rajendra is a Technical Lead at Tavant and previously worked as a role Software Developer at Treez, Taboola Thailand and Bookmyshow India. Also known as rajendraarora16 in online virtual world, He love to create web bots and huge fan of Machine Learning. Rajendra arora has created kumar - a personal AI bot who helps with everything https://kumar.rajendraarora.com. He's quite fascinated about working on large distributed systems and writes code that can scale well. Reactjs developer by day, Java developer by night" />
<meta property="twitter:url" content="https://www.rajendraarora.com"/>
<meta property="twitter:title" content="Raj Arora (rajendraarora16)"/>
<meta property="twitter:type" content="website"/>
<meta property="twitter:image" content="https://www.rajendraarora.com/assets/images/rajendra_arora.png"/>
<meta property="twitter:description" content="Rajendra is a Senior Software Engineer at Treez Inc. and previously worked as a role Software Developer at Taboola, Bangkok and Bookmyshow India. Also known as rajendraarora16 in online virtual world, He love to create web bots and huge fan of Machine Learning. Rajendra arora has created kumar - a personal AI bot who helps with everything https://kumar.rajendraarora.com. He's quite fascinated about working on large distributed systems and writes code that can scale well. Reactjs developer by day, Java developer by night" />
<meta name="description" content="Rajendra is a Frontend developer in Taboola and previously was a Software Developer at Bookmyshow. Known as rajendraarora16 in online virtual world, He love to create web bots and huge fan of Machine Learning. He's quite fascinated about working on large distributed systems and writes code that can scale well." />
<meta name="keywords" content="Treez Inc Raj arora, Treez Inc Senior Software Engineer, Taboola raj arora, Taboola Rajendra arora, Rajendra arora Taboola, Fullstack developer taboola, Developer taboola, Taboola Raj Arora, Raj arora Taboola, Web developer Taboola, Taboola web developer, Full stack developer Raj arora, RajendraArora, rajendraarora16, Rajendra Arora, Kumar AI - rajendra arora, Kumar AI, Kumar AI Bot,IMDB app, Rajendra arora has created kumar - a personal AI bot who helps with everything https://kumar.rajendraarora.com, Bookmyshow.com, bookmyshow rajendra arora, rajendra arora bookmyshow, Machine Rajendra, Robot Rajendra, Robot Rajendra Arora, Rajendra Arora Machine Learning, Machine learning Rajendra Arora, Bookmyshow Developer, Bookmyshow Mumbai, Bookmyshow Intern, Github, API, Chrome Extension, Twitter, Python, wordpress, blog, Developer, Rajasthan Technical University, Rajendra, topper, Kota, Rajasthan, Rajendra Developer, API developer, Google open source, GitHub open source, Huge fan of Machine Learning, twitter bot, Twitter rajendra arora, Twitter bot rajendra arora, Twitter bot Rajendra, College management system Rajendra arora, Helping bot Rajendra arora, Pastebin tool Rajendra arora, Laptop battery alarm rajendra arora, Paste long text Rajendra arora, Chrome extension Paste long text, Paste long text extension, Paste long text chrome extension rajendra arora, Rajendra arora bulk url shortner, Kumar AI rajendra arora, Kumar AI chat bot, kumar chat bot personal assistant rajendra arora, kumar chat bot AI, Machine Learning Enthusiast, Reactjs developer by day, java developer by night" />
<link rel="stylesheet" href="assets/css/bot-style.css" />
<link href="https://fonts.googleapis.com/css?family=Reenie+Beanie:regular" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500,400italic,300italic,300,500italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<!-- Global CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Plugins CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Theme CSS -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Github Calendar CSS -->
<!-- <link rel="stylesheet" href="assets/css/github-calendar.css"> -->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Github Calendar JS -->
<!-- <script src="assets/js/github-calendar.min.js"></script> -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-88370656-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<header class="header">
<div class="top-bar container-fluid">
<ul class="social list-inline left">
<li><a href="https://www.linkedin.com/in/rajendra-arora-a4066a108/" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="https://twitter.com/rajendraarora16" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="https://rajendraarorarobot.wordpress.com/2015/08/20/crawler-and-robot-by-rajendra-arora/" target="_blank"><i class="fa fa-newspaper-o" aria-hidden="true"></i></a></li>
<li><a href="https://github.com/rajendraarora16" target="_blank"><i class="fa fa-github-alt" aria-hidden="true"></i></a></li>
<li><a href="http://stackoverflow.com/users/2802622/rajendra-arora" target="_blank"><i class="fa fa-stack-overflow" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="modal" data-target="#skype_address" ><i class="fa fa-skype" aria-hidden="true"></i></a></li>
<li><a href="https://join.slack.com/t/rajendraarora/shared_invite/zt-i184yhn4-Tru3CZ2kOfXm0glyeF3x1g" target="_blank"><i class="fa fa-slack" aria-hidden="true"></i></a></li>
<ul class="left-sticky">
<li>
<div class="stackoverflow-flair">
<a class="img-flair" href="https://stackoverflow.com/users/2802622/rajendra-arora"><img src="https://stackoverflow.com/users/flair/2802622.png" width="208" height="58" alt="profile for Rajendra arora on Stack Exchange, a network of free, community-driven Q&A sites" title="profile for Rajendra arora on Stack Exchange, a network of free, community-driven Q&A sites" /></a>
</div>
</li>
</ul>
</ul><!--//social-->
<ul class="list-inline right-list-bar right">
<li><div onclick="location.href='https://chrome.google.com/webstore/detail/rajendra-arora/gindhefmfhfmcaghojlpdplemeijejcb/';" class="ext-btn"><span class="chrome-icon-ext"><i class="fa fa-chrome" aria-hidden="true"></i></span><span class="chrome-text-ext"> Download Chrome extension</span></div></li>
<li><div onclick="location.href='https://nnplayground.herokuapp.com';" class="ext-btn"><span class="blog-icon-ext"><i class="fa fa-sitemap" aria-hidden="true"></i></span><span class="blog-text-ext"> NN playground</span></div></li>
<li><div onclick="location.href='https://blogs.rajendraarora.com';" class="ext-btn"><span class="blog-icon-ext"><i class="fa fa-newspaper-o" aria-hidden="true"></i></span><span class="blog-text-ext"> Research blogs</span></div></li>
<br/>
<ul class="sticky-notes">
<li>
<a href="https://kumar.rajendraarora.com" target="_blank">
<p><strong>Hello there!</strong> Meet my brother Kumar <img src="https://kumar.rajendraarora.com/assets/img/kumar.png" alt="Kumar" height="30" width="30" /></p>
</a>
</li>
</ul>
</ul>
</div><!--//top-bar-->
<div class="intro">
<div class="container text-center">
<img class="profile-image" src="assets/images/rajendra_photo.jpeg" alt="">
<h1 class="name">Raj Arora</h1>
<div class="title"><span>Technical Lead <a href="https://www.linkedin.com/company/tavant/" target="_blank">@Tavant.</a>🧑💻☕</span><br/><span>💻 Developer by day, 🎮 Gamer by night</span><br/><span>☕ Sometimes coffee lover</span><br/><span>🎮 A good player in call of duty</span><br/><span>📷 Sometimes love photography!</span></div>
</div><!--//container-->
</div><!--//intro-->
<div class="contact-info">
<div class="container text-center">
<ul class="list-inline">
<li class="email"><i class="fa fa-envelope"></i><a href="mailto:[email protected]">[email protected]</a></li>
<li class="website"><i class="fa fa-skype"></i><a href="skype:rajendraarora147?call">rajendraarora147</a></li>
<li class="website"><i class="fa fa-slack"></i><a href="https://join.slack.com/t/rajendraarora/shared_invite/zt-i184yhn4-Tru3CZ2kOfXm0glyeF3x1g" target="_blank">Join Slack</a></li>
</ul>
</div><!--//container-->
</div><!--//contact-info-->
<div class="page-nav-space-holder hidden-xs">
<div id="page-nav-wrapper" class="page-nav-wrapper text-center">
<div class="container">
<ul id="page-nav" class="nav page-nav list-inline">
<!-- <li><a class="scrollto" href="#contribution-section">Contributions</a></li> -->
<li><a class="scrollto" href="#experiences-section">Experiences</a></li>
<li><a class="scrollto" href="#education-section">Education</a></li>
<li><a class="scrollto" href="#skills-section">Skills</a></li>
<li><a class="scrollto" href="#portfolio-section">Projects</a></li>
<li><a class="scrollto" href="#achievement-section">Achievements</a></li>
<li><a class="scrollto" href="#contact-section">Contact</a></li>
</ul><!--//page-nav-->
</div>
</div><!--//page-nav-wrapper-->
</div>
</header><!--//header-->
<div class="wrapper container">
<section id="recommendation-section" class="recommendation-section section align-xs">
<h2 class="section-title"><strong><What others say on Linkedin? /></strong></h2>
<div class="intro">
<div class="dialog">
<div class="container sliderStyle">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<!-- Item 1 -->
<div class="carousel-inner">
<div class="item active">
<div class="u-container-layout u-container-layout-1">
<a class="recommendation-anchor" href="https://www.linkedin.com/in/arorar16/details/recommendations" target="_blank">
<p class="u-align-left u-text u-text-1">It has been my privilege to work with Raj.
<br/>He is dedicated and hard working and cares deeply about fulfilling his tasks and achieving company goals.<br/>He is a passionate developer with a thirst for knowledge.
<br/>He is a team player and a polite and considerate coworker.</p>
<div class="u-recommendation-container">
<div class="recommendation-container">
<div class="r-image-container">
<div class="u-image u-image-circle u-preserve-proportions u-image-1" alt="Colleague image"></div>
</div>
<div class="r-info">
<h4 class="u-align-left u-custom-font u-font-montserrat u-text u-text-2">Anat Dagan</h4>
<h5 class="u-align-left u-text u-text-3">Senior Frontend Developer <br />Taboola</h5>
</div>
</div>
</div>
</a>
</div>
</div>
<!-- Item 2 -->
<div class="item">
<div class="u-container-layout u-container-layout-1">
<a class="recommendation-anchor" href="https://www.linkedin.com/in/arorar16/details/recommendations" target="_blank">
<p class="u-align-left u-text u-text-1">Rajendra is amazing person with very in-depth and vast knowledge in the technical front. While working with him under his Senior Solution Engineer role, he was always hands-on and willing to hop on any ad hoc requests to solve, not just critical but also difficult, issues. Raj would not give up until he could squeeze all his knowledge and exploit all his attempts. I could always rest assured that he would do his best to find a solution and that I was always in a good care when working with him.</p>
<div class="u-recommendation-container">
<div class="recommendation-container">
<div class="r-image-container">
<div class="u-image u-image-circle u-preserve-proportions u-image-2" alt="Colleague image"></div>
</div>
<div class="r-info">
<h4 class="u-align-left u-custom-font u-font-montserrat u-text u-text-2">Napapan Nilasri</h4>
<h5 class="u-align-left u-text u-text-3">Team Lead / Manager <br />Taboola</h5>
</div>
</div>
</div>
</a>
</div>
</div>
<!-- Item 3 -->
<div class="item">
<div class="u-container-layout u-container-layout-1">
<a class="recommendation-anchor" href="https://www.linkedin.com/in/arorar16/details/recommendations" target="_blank">
<p class="u-align-left u-text u-text-1">During our time in Bookmyshow, Raj proved himself to be a dependable employee and a hard worker with solid problem solving and technical skills. He always used to be hooked with the latest technologies, learning new things literally every day.
<br/>Raj would be an asset to have on any team. During his tenure at Bookmyshow, he's gone out of his way to welcome newcomers and resolve any problems they might have. He pitches innovative ideas at company meetings but also listens to what others have to say. Would love to work again with him.</p>
<div class="u-recommendation-container">
<div class="recommendation-container">
<div class="r-image-container">
<div class="u-image u-image-circle u-preserve-proportions u-image-3" alt="Colleague image"></div>
</div>
<div class="r-info">
<h4 class="u-align-left u-custom-font u-font-montserrat u-text u-text-2">Chirag Batra</h4>
<h5 class="u-align-left u-text u-text-3">Software Engineer <br />BookMyShow</h5>
</div>
</div>
</div>
</a>
</div>
</div>
<!-- Item 4 -->
<div class="item">
<div class="u-container-layout u-container-layout-1">
<a class="recommendation-anchor" href="https://www.linkedin.com/in/arorar16/details/recommendations" target="_blank">
<p class="u-align-left u-text u-text-1">I've worked with him more than a year as a same position. He is intelligent, creative and possesses an in quisitive mind. He continually shares his knowledge to the team and develops initiative tools for improving team performance and efficiency.<br/>
As a part of his role, he has to communicate with both business and technical group of people on a daily basis. His proficiency is high enough so that he is always clear and concise, making his point and backing it up with solid decision and analysis. I'm so fortunate to have him as a part of the team.</p>
<div class="u-recommendation-container">
<div class="recommendation-container">
<div class="r-image-container">
<div class="u-image u-image-circle u-preserve-proportions u-image-4" alt="Colleague image"></div>
</div>
<div class="r-info">
<h4 class="u-align-left u-custom-font u-font-montserrat u-text u-text-2">Sunsern Damronglaohapan</h4>
<h5 class="u-align-left u-text u-text-3">Solutions Lead <br />Taboola</h5>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</section>
<section id="contribution-section" class="contribution-section section align-xs">
<h2 class="section-title"><strong><Contributions /></strong></h2>
<div class="intro">
<div class="dialog contribution">
<div class="github-stats">
<img src="https://github-readme-stats.anuraghazra1.vercel.app/api?username=rajendraarora16&show_icons=true&include_all_commits=true&theme=radical" alt="" />
</div>
<div class="github-top-lang">
<img src="https://github-readme-stats.anuraghazra1.vercel.app/api/top-langs/?username=rajendraarora16&layout=compact&theme=radical" alt="" />
</div>
<div class="github-streak">
<img src="https://github-readme-streak-stats.herokuapp.com/?user=rajendraarora16&theme=dark" width="48%">
</div>
</div>
</div>
</section>
<section id="experiences-section" class="experiences-section section">
<h2 class="section-title"><strong><Work Experience (7.5+ years) /></strong></h2>
<div class="timeline">
<div class="item">
<div class="work-place">
<h3 class="place">Tavant</h3>
<div class="location"><i class="fa fa-map-marker" aria-hidden="true"></i>Noida, India</div>
</div>
<div class="job-meta">
<div class="title">Technical Lead</div>
<div class="time">May 2023 - Present</div>
</div><!--//job-meta-->
<div class="job-desc">
<ul>
<li>Taking a lead role for creating a Truterra dairy UI app from scratch, a tool that helps farmer in agriculture.</li>
<li>Creating a theme typography framework, a store at global level using Jotai with Tanstack query to
store API response which helps to connect other components to access API response.</li>
<li>Taking the responsibility for reviewing other development team PRs before deploying to production.</li>
</ul>
</div><!--//job-desc-->
</div><!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">Treez Inc.</h3>
<div class="location"><i class="fa fa-map-marker" aria-hidden="true"></i>Kerala, India</div>
</div>
<div class="job-meta">
<div class="title">Senior Software<br/>Engineer</div>
<div class="time">September 2022 - April 2023</div>
</div><!--//job-meta-->
<div class="job-desc">
<ul>
<li>Creating Micro Frontend repos for Organization management, UI dashboard, navigation menu and login UI and contributing code on the frontend with creating global styles, typography, themes and builtin UI designs.</li>
<li>Working with global engineering team to deliver MSO products in a medical industry across US and Canada.</li>
<li>Creating a UI storybook from the scratch using TypeScript, React and MUI framework with modern UI tools.</li>
</ul>
</div><!--//job-desc-->
</div><!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">Taboola IL</h3>
<div class="location"><i class="fa fa-map-marker" aria-hidden="true"></i>Ramat Gan, Israel</div>
</div>
<div class="job-meta">
<div class="title">Software Engineer<br/> R&D Supply</div>
<div class="time">September 2021 - August 2022</div>
</div><!--//job-meta-->
<div class="job-desc">
<ul>
<li>Worked on CWV world to improve performance, helping products to provide report daily via creating an automation tool that runs on rabbitMQ, PSI API, and Google spreadsheet API and send daily to products.</li>
<li>Creating product features on the recommendation platform using Node.js, JavaScript, TypeScript, SASS, gulp and many more using modern technologies that serves Taboola on premium publishers like USA today, BBC, NDTV etc.</li>
</ul>
</div><!--//job-desc-->
</div><!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">Taboola APAC</h3>
<div class="location"><i class="fa fa-map-marker" aria-hidden="true"></i>Bangkok, Thailand</div>
</div>
<div class="job-meta">
<div class="title">Senior Solution<br/> Engineer</div>
<div class="time">May 2019 - August 2021</div>
</div><!--//job-meta-->
<div class="job-desc">
<ul>
<li>Leading the initiative for creating an AI based bot that can send an alert awareness to the relevant team globally across all regions.</li>
<li>Working in Taboola's RBox feed, widgets etc products with Israel R&D team.</li>
<li>Solving complex production issues with debugging skills within a limited time.</li>
<li>Writing clean, sustainable code with Node.js, karma/jasmine test and participate in peer code-reviews, taking
ownership and working with global engineering team and bringing brainstorm new ideas together with team
to deliver product and improving performance.</li>
<li>Working with international team to deliver client's requirement from all around the globe to integrate Taboola.</li>
</ul>
</div><!--//job-desc-->
</div><!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">Taboola IL</h3>
<div class="location"><i class="fa fa-map-marker" aria-hidden="true"></i>Ramat Gan, Israel</div>
</div>
<div class="job-meta">
<div class="title">Senior Solution<br/>(Trainee)</div>
<div class="time">April 2019 - May 2019</div>
</div><!--//job-meta-->
<div class="job-desc">
<ul>
<li>As a trainee, have learnt collaboration with team to work on server level platform.</li>
<li>Solving complex issues on UI and frontend technologies as well the part of international team to deliver tasks on time.</li>
</ul>
</div><!--//job-desc-->
</div><!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">Bookmyshow</h3>
<div class="location"><i class="fa fa-map-marker" aria-hidden="true"></i>Mumbai, India</div>
</div>
<div class="job-meta">
<div class="title">Frontend Developer</div>
<div class="time">May 2016 - April 2019</div>
</div><!--//job-meta-->
<div class="job-desc">
<ul>
<li>Levelling up with React/Redux to move whole website with newest version.</li>
<li>Front end role involved for integrating third party applications (Integrating applications with different organizations).</li>
<li>Updating each and every tasks on Jira, having daily scrums to follow and updating products backlog time to time.</li>
<li>Analyze code for system testing and debugging for solving issues.</li>
<li>Worked with customer and product manager to prioritize and validate requirements.</li>
<li>Working environment used as Docker, Mac, Git, Stash, Github, Merging pull request, Source tree, Sublime etc.</li>
</ul>
</div><!--//job-desc-->
</div><!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">Bigtree University</h3>
<div class="location"><i class="fa fa-map-marker" aria-hidden="true"></i>Mumbai, India</div>
</div>
<div class="job-meta">
<div class="title">Frontend Developer <br/>(Trainee)</div>
<div class="time">January'16 - March 2016</div>
</div><!--//job-meta-->
<div class="job-desc">
<ul>
<li>Trainee role involved for working in BookMyShow Indonesia website.</li>
<li>Technology worked on core PHP, parsing JSON, gulpfile.js, API callback handling.</li>
<li>Updating each and every tasks on Jira, having daily scrums to follow and updating products backlog time to time.</li>
<li>Working environment used as Docker, Git, Stash, Github, Merging pull request, Source tree, Sublime etc.</li>
</ul>
</div><!--//job-desc-->
</div><!--//item-->
</div><!--//timeline-->
</section><!--//section-->
<section id="education-section" class="education-section section">
<h2 class="section-title"><strong><Education /></strong></h2>
<div class="row">
<div class="item col-xs-12 col-sm-4">
<div class="item-inner">
<h3 class="degree">Bachelors in Computer Science</h3>
<div class="education-body">
Rajasthan Technical University
</div><!--//education-body-->
<div class="time">2012 - 2016</div>
<div class="desc">
Completed graduation 4 years of course in computer science stream at 2016.
</div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-xs-12 col-sm-4">
<div class="item-inner">
<h3 class="degree">Senior Secondary education</h3>
<div class="education-body">
CBSE
</div><!--//education-body-->
<div class="time">2011 - 2012</div>
<div class="desc">
Completed senior secondary education from central board of secondary education.
</div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-xs-12 col-sm-4">
<div class="item-inner">
<h3 class="degree">Secondary education</h3>
<div class="education-body">
CBSE
</div><!--//education-body-->
<div class="time">2010 - 2011</div>
<div class="desc">
Completed secondary education from central board of secondary education.
</div>
</div><!--//item-inner-->
</div><!--//item-->
</div><!--//row-->
</section><!--//section-->
<section id="skills-section" class="skills-section section text-center">
<h2 class="section-title"><strong><Professional Skills /></strong></h2>
<div class="top-skills">
<div class="other-skills">
<div class="misc-skills">
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228147/rajendraarora.com/programming-icon/java.png" alt="java"/>JAVA</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228148/rajendraarora.com/programming-icon/javascript.png" alt="Javascript"/>Javascript</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228149/rajendraarora.com/programming-icon/react.png" alt="React.js"/>React.js</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228149/rajendraarora.com/programming-icon/golang.png" alt="Golang"/>Golang</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228151/rajendraarora.com/programming-icon/redux.png" alt="Redux"/>Redux</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228149/rajendraarora.com/programming-icon/react-native.png" alt="React native"/>React native</span>
<br>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573229248/rajendraarora.com/programming-icon/node.png" alt="Node.js"/></span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573229627/rajendraarora.com/programming-icon/next.png" alt="Next.js"/> Next.js</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228149/rajendraarora.com/programming-icon/chrome.png" alt="Headless chrome"/> Headless chrome</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228150/rajendraarora.com/programming-icon/php.png" alt="PHP"/></span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228148/rajendraarora.com/programming-icon/python.png" alt="Python"/>Python</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228149/rajendraarora.com/programming-icon/mysql.png" alt="MySql"/></span>
<br>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573230210/rajendraarora.com/programming-icon/docker.png" alt="Docker"/> Docker</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228149/rajendraarora.com/programming-icon/selenium.png" alt="Selenium"/>Selenium</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228734/rajendraarora.com/programming-icon/es6.png" alt="ES6"/></span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228148/rajendraarora.com/programming-icon/json.png" alt="Json"/></span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228148/rajendraarora.com/programming-icon/bootstrap.png" alt="Bootstrap"/>Bootstrap</span>
<br>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228150/rajendraarora.com/programming-icon/html.png" alt="HTML5"/></span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228150/rajendraarora.com/programming-icon/css.png" alt="CSS3"/></span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228148/rajendraarora.com/programming-icon/sass.png" alt="SASS"/></span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228148/rajendraarora.com/programming-icon/git.png" alt="Git"/>Git</span>
<br>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228149/rajendraarora.com/programming-icon/gulp.png" alt="Gulp.js"/>Gulp.js</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228148/rajendraarora.com/programming-icon/heroku.png" alt="Heroku"/>Heroku</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228149/rajendraarora.com/programming-icon/tomcat.png" alt="Servlets/JSP"/>Servlets/JSP</span>
<span class="skill-tag"><img class="programming-skill-logo" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573228149/rajendraarora.com/programming-icon/digitalocean.png" alt="DigitalOcean"/> DigitalOcean</span>
</div>
</div><!--//other-skills-->
</div><!--//top-skills-->
</section><!--//skills-section-->
<section id="portfolio-section" class="portfolio-section section">
<h2 class="section-title"><strong><Projects /></strong></h2>
<div class="clearfix"></div>
<div class="items-wrapper isotope row">
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/w_1000,c_fill,ar_1:1,g_auto,r_max,bo_5px_solid_red,b_rgb:262c35/v1645580830/rajendraarora.com/Wordle.png" width="200" style="margin: 10px 0 0 10px;" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Hindi Wordle</a></h3>
<div class="meta">React, Typescript, Javascript, node.js</div>
<div class="action"><a href="https://hindi-wordle.rajendraarora.com/" target="_blank" >Hindi Wordle</a></div>
</div><!--//content-->
<a class="link-mask" href="https://hindi-wordle.rajendraarora.com/" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1608783871/rajendraarora.com/pngfind.com-mysql-logo-transparent-png-1683203.png" width="200" style="margin: 10px 0 0 10px;" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Taboola Loader</a></h3>
<div class="meta">Typescript, Javascript, node.js</div>
<div class="action"><a href="https://marketplace.visualstudio.com/items?itemName=RajArora.taboola-loader" target="_blank" >Visual studio marketplace</a></div>
</div><!--//content-->
<a class="link-mask" href="https://marketplace.visualstudio.com/items?itemName=RajArora.taboola-loader" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1573230509/rajendraarora.com/taboola-selector.png" width="200" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Taboola Selector</a></h3>
<div class="meta">Vanilla javascript, Data structure for xpath algorithm</div>
<div class="action"><a href="https://chrome.google.com/webstore/detail/taboola-xpath-selector/bnddcamoelhlmpjhdjgadogndfgfnjkb" target="_blank" >Chrome Web Store</a></div>
</div><!--//content-->
<a class="link-mask" href="https://chrome.google.com/webstore/detail/taboola-xpath-selector/bnddcamoelhlmpjhdjgadogndfgfnjkb" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526298773/rajendraarora.com/kumar.png" width="200" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Kumar AI - personal assistant</a></h3>
<div class="meta">Machine Learning, Java, Servlets, PHP, MySql, Gradle, Javascript, Json, Bootstrap, Heroku</div>
<div class="action"><a href="https://kumar.rajendraarora.com" target="_blank" >Kumar AI</a></div>
</div><!--//content-->
<a class="link-mask" href="https://kumar.rajendraarora.com" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297013/rajendraarora.com/ZmQWg.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Paste long text easily</a></h3>
<div class="meta">Javascript, Chrome extension</div>
<div class="action"><a href="https://chrome.google.com/webstore/detail/paste-long-text/dhonighchmchkhghhmnegegkciogailm" target="_blank" >Chrome Web Store</a></div>
</div><!--//content-->
<a class="link-mask" href="https://chrome.google.com/webstore/detail/paste-long-text/dhonighchmchkhghhmnegegkciogailm" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297029/rajendraarora.com/2l65c.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">English-Hindi Dictionary</a></h3>
<div class="meta">Javascript, Chrome extension</div>
<div class="action"><a href="https://chrome.google.com/webstore/detail/english-hindi-dictionary/ojcmofegpfdolpniponocejcncdkpdmn" target="_blank" >Chrome Web Store</a></div>
</div><!--//content-->
<a class="link-mask" href="https://chrome.google.com/webstore/detail/english-hindi-dictionary/ojcmofegpfdolpniponocejcncdkpdmn" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297041/rajendraarora.com/KDvGR.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Bulk URL shortner</a></h3>
<div class="meta">Javascript</div>
<div class="action"><a href="#" >Short multiple URL in just single click away</a></div>
</div><!--//content-->
<a class="link-mask" data-toggle="modal" data-target="#short_url_modal" href="#"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297052/rajendraarora.com/project1.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">AI Based missiles</a></h3>
<div class="meta">Javascript, P5</div>
<div class="action"><a href="https://rajendraarora16.github.io/ai-rockets/" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://rajendraarora16.github.io/ai-rockets/" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item backend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297066/rajendraarora.com/project2.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Radio Player</a></h3>
<div class="meta">Nodejs, Express</div>
<div class="action"><a href="https://github.com/rajendraarora16/Web-application-nodejs-express/" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/Web-application-nodejs-express/" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item backend frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297077/rajendraarora.com/KTUqc.jpg" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Discussion forum for programmers</a></h3>
<div class="meta">Java, JSP, Servlets, MySql, Openshift, rhc tools</div>
<div class="action"><a href="https://github.com/rajendraarora16/programmers-place-forum" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/programmers-place-forum" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297087/rajendraarora.com/Paw7N.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Linkedin Bot</a></h3>
<div class="meta">Headless chrome, selenium, jenkins, java</div>
<div class="action"><a href="https://github.com/rajendraarora16/linkedin-bot" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/linkedin-bot" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend backend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297097/rajendraarora.com/Pcd9k.jpg" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">College Management System</a></h3>
<div class="meta">Javascript, HTML, Jquery, Bootstrap, PHP, MySql</div>
<div class="action"><a href="https://github.com/rajendraarora16/College-Management-System" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/College-Management-System" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item backend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297132/rajendraarora.com/jvB9G.jpg" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Ecommerce crawler</a></h3>
<div class="meta">Automation, selenium, Java, Jenkins, heroku</div>
<div class="action"><a href="https://github.com/rajendraarora16/getbestdeal-crawler" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/getbestdeal-crawler" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item backend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297154/rajendraarora.com/1PGMT.jpg" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">IMDB (Internet movie database)</a></h3>
<div class="meta">JSP, Servlets, MySql, Heroku cli</div>
<div class="action"><a href="https://github.com/rajendraarora16/imdb-app" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/imdb-app" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item backend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297163/rajendraarora.com/Flr7K.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Angular 2 Heroku boilerplate</a></h3>
<div class="meta">Angular 2, Heroku cli, git</div>
<div class="action"><a href="https://github.com/rajendraarora16/angular2-heroku-boilerplate" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/angular2-heroku-boilerplate" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item backend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297172/rajendraarora.com/laptop-alarm.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Laptop Battery Alarm</a></h3>
<div class="meta">Python</div>
<div class="action"><a href="https://github.com/rajendraarora16/laptop-alarm" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/laptop-alarm" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item backend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297181/rajendraarora.com/project5.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Pastebin tool</a></h3>
<div class="meta">JavaScript, Java, servlets, MySql, JSP</div>
<div class="action"><a href="https://github.com/rajendraarora16/pastebin-tool-opensource-project" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/pastebin-tool-opensource-project" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297191/rajendraarora.com/7LIwi.jpg" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">TMDB popular movies listing</a></h3>
<div class="meta">HTML, React, Redux, Javascript</div>
<div class="action"><a href="https://github.com/rajendraarora16/TMDB-react-redux-api" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/TMDB-react-redux-api" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297201/rajendraarora.com/ccGXq.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Twitter bot</a></h3>
<div class="meta">Python, Tweepy</div>
<div class="action"><a href="https://github.com/rajendraarora16/twitter-bot" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/twitter-bot" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297212/rajendraarora.com/NHzJi.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Bulk Email Screenshot</a></h3>
<div class="meta">Java, Selenium, Headless chrome</div>
<div class="action"><a href="https://github.com/rajendraarora16/bulk-email-screenshot" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/bulk-email-screenshot" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend backend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297222/rajendraarora.com/cGOKY.jpg" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Helping Bot</a></h3>
<div class="meta">Javascript, HTML, Jquery</div>
<div class="action"><a href="https://github.com/rajendraarora16/Helping-bot" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/Helping-bot" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend backend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297234/rajendraarora.com/vOo1n.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Generating reports in PDF</a></h3>
<div class="meta">PHP, MySql, PHP, Javascript, HTML, Jquery</div>
<div class="action"><a href="https://github.com/rajendraarora16/prenetics-assignment-solution" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/prenetics-assignment-solution" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend backend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297238/rajendraarora.com/0LBz6.jpg" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Music player built in React.js</a></h3>
<div class="meta">React.js, Javascript, HTML</div>
<div class="action"><a href="https://playlist-songs.herokuapp.com/" target="_blank">Visit to play songs</a></div>
</div><!--//content-->
<a class="link-mask" href="https://playlist-songs.herokuapp.com/" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item frontend backend col-md-3 col-xs-6 ">
<div class="item-inner">
<figure class="figure">
<img class="img-responsive" src="https://res.cloudinary.com/dqluxvgsf/image/upload/v1526297896/rajendraarora.com/product-specification-icon.png" alt="" />
</figure>
<div class="content text-left">
<h3 class="sub-title"><a href="#">Compare Specification app</a></h3>
<div class="meta">React.js, Javascript, HTML, Webpack, Cheerio, Node.js, Server/Client</div>
<div class="action"><a href="https://github.com/rajendraarora16/specification-comparison-react" target="_blank">View on Github</a></div>
</div><!--//content-->
<a class="link-mask" href="https://github.com/rajendraarora16/specification-comparison-react" target="_blank"></a>
</div><!--//item-inner-->
</div><!--//item-->
</div><!--//item-wrapper-->
</section><!--//section-->
<section id="achievement-section" class="achievement-section section">
<h2 class="section-title"><strong><Achievements /></strong></h2>
<div class="intro">
<div class="dialog">
<div class="container sliderStyle">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<span class="achievementTitle">Professional Scrum Master I</span>
<a class="achievementPost" href="https://drive.google.com/file/d/1wctXxu6BOHmWd-s31s13dVtmfd7B-UIy/view?usp=sharing/" target="_blank">
<img class="scrum-achievement" src="./assets/images/scrum-certificate-min.png" alt="Professional Scrum Master I" />
</a>
</div>
<div class="item">
<span class="achievementTitle">Created facebook bot project during graduation, this successful mission was acknowledged in Media (Indian news paper)</span>
<a class="achievementPost" href="https://www.patrika.com/kota-news/no-study-was-made-web-robot-1008823/" target="_blank">
<img class="news-paper1" src="./assets/images/news_paper1.jpg" alt="News paper" />
</a>
</div>
<div class="item">
<span class="achievementTitle">Created a crawler to store information from giant ecommerce retailers and storing info in database. This successful mission was acknowledged in Media (Indian news paper)</span>
<div class="newsPost2">
<a class="achievementPost" href="https://www.rajendraarora.com/assets/images/news_paper2.jpg" target="_blank">
<img class="news-paper2" src="./assets/images/news_paper2.jpg" alt="News paper" />
</a>
</div>
</div>
<div class="item">
<span class="achievementTitle">Contributed in open source google's biggest project tensorflow to maintain their structure</span>
<div class="contribute1">
<a class="achievementPost" href="https://github.com/tensorflow/tensorflow/commits/master?author=rajendraarora16" target="_blank">
<img src="./assets/images/contribute1.jpg" alt="Contribution" style="height:300px; width:100%;"/>
</a>
</div>
</div>
<div class="item">
<span class="achievementTitle">List of pull request in open source projects</span>
<div class="contribute2">
<a class="achievementPost" href="https://github.com/pulls?q=is:pr+author:rajendraarora16" target="_blank">
<img class="pull-request-icon" src="./assets/images/contribute2.PNG" alt="Contribution" />
</a>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</section><!--//section-->
<!-- <section id="resume-section" class="resume-section section">
<h2 class="section-title"><strong><Resume /></strong></h2>
<div class="intro">
<div class="download-resume" class="dialog">
<h3>Download resume</h3>
<a href="https://www.rajendraarora.com/latest/Resume.pdf" target="_blank">
<i class="fa fa-download"></i>
</a>
</div>
</div>
</section>//section -->
<section id="contact-section" class="contact-section section">
<h2 class="section-title"><strong><Get in Touch /></strong></h2>
<div class="intro">
<img class="profile-image" src="assets/images/rajendra_arora.png" alt="">
<div class="dialog">
<p>I'm currently working in Treez Inc. as Senior Software Engineer with R&D team. If you need any further information related to technologies or development related information, feel free to ask.</p>
<p><strong>I can help with the following:</strong></p>
<ul class="list-unstyled service-list">
<li><i class="fa fa-check" aria-hidden="true"></i> App development with ReactJS</li>
<li><i class="fa fa-check" aria-hidden="true"></i> Front-end development</li>
<li><i class="fa fa-check" aria-hidden="true"></i> Back-end development with Java, JSP/Servlets, Node.js, PHP</li>
<li><i class="fa fa-check" aria-hidden="true"></i> Selenium automation, Phantomjs, Chrome headless, Sikuli</li>
<li><i class="fa fa-check" aria-hidden="true"></i> Deep/Machine learning, Tensorflow</li>
</ul>
<p>Drop me a line at <a href="mailto:[email protected]">[email protected]</a>.</p>
<ul class="social list-inline">
<li><a href="https://www.linkedin.com/in/rajendra-arora-a4066a108/" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="https://twitter.com/rajendraarora16" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="https://rajendraarorarobot.wordpress.com/2015/08/20/crawler-and-robot-by-rajendra-arora/" target="_blank"><i class="fa fa-newspaper-o" aria-hidden="true"></i></a></li>
<li><a href="https://github.com/rajendraarora16" target="_blank"><i class="fa fa-github-alt" aria-hidden="true"></i></a></li>
<li><a href="http://stackoverflow.com/users/2802622/rajendra-arora" target="_blank"><i class="fa fa-stack-overflow" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="modal" data-target="#skype_address" ><i class="fa fa-skype" aria-hidden="true"></i></a></li>
</ul><!--//social-->
</div><!--//diaplog-->
</div><!--//intro-->
</section><!--//section-->
</div><!--//wrapper-->
<footer class="footer text-center">
<div class="container">
<small class="copyright">© Copyright 2020 Rajendra Arora</small>
</div><!--//container-->
</footer>
<!-- Modal for skype address -->
<div class="modal fade" id="skype_address" 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">Skype address</h4>
</div>
<div class="modal-body">
<p><strong>Skype: </strong><i>rajendraarora147</i></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal for Shorten long URL -->
<div class="modal fade" id="short_url_modal" 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">Bulk URL Shortner</h4>
<p>Powered by Google api.</p>
</div>
<div class="modal-body">
<strong>Long URL:</strong> <textarea id="long-url" class="long-url-input" rows="5" placeholder="Please enter one URL in new line" onFocus="this.select()" ></textarea>
<br/><br/>
<div>
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Long URL</th>
<th>Short URL</th>
</tr>
</thead>
<tbody id="generate-short-URL">
</tbody>
</table>
</div>
</div>
<div class="modal-footer">
<button id="generateShortURL" type="button" class="btn btn-default pull-left" onclick="generateShortUrl();">Generate shortened URL</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Javascript -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="assets/js/back-to-top.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery-scrollTo/2.1.2/jquery.scrollTo.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/easy-pie-chart/2.1.6/jquery.easypiechart.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/3.1.8/imagesloaded.pkgd.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/3.0.4/isotope.pkgd.min.js"></script>
<!-- custom js -->
<script type="text/javascript" src="assets/js/main.js"></script>
<!-- ChatBot -->
<script src="assets/js/bot-source.js"></script>
<!-- Google Short URL -->
<script type="text/javascript">
function generateShortUrl() {
$("#generate-short-URL").text("");