-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.php
executable file
·1265 lines (1206 loc) · 116 KB
/
aboutme.php
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
<?php
/*
@Page : aboutme.php
@Author : Renjith VR
@Author URL: https://renjithvr.in
@Date : Dec 18 2016
@Descrption: about page of renjithvr.in.
*/
require_once("common/header.php");
date_default_timezone_set('UTC');
?>
<link href="./css/plugins/timeline.css" rel="stylesheet" type="text/css" media="all"/>
<!-- aboutme navigation -->
<div class="aboutme-body">
<div class="pages-nav">
<div class="pages-nav__item"><a class="link link--page" href="#RenjithVR">I'm Renjith VR</a></div>
<div class="pages-nav__item"><a class="link link--page" href="#Hobbies">Hobbies</a></div>
<div class="pages-nav__item"><a class="link link--page" href="#Education">Education</a></div>
<div class="pages-nav__item"><a class="link link--page" href="#social-Profiles">Social Profiles</a></div>
<div class="pages-nav__item"><a class="link link--page" href="#Blogs">Blogs</a></div>
<div class="pages-nav__item"><a class="link link--page" href="#developer-Profiles">Developer Profiles</a></div>
</div>
<!-- // about me navigation-->
<!-- pages stack -->
<div class="pages-stack">
<!-- page -->
<div class="page" id="RenjithVR">
<!-- Blueprint header -->
<header class="bp-header cf">
<h1 class="bp-header__title">I'M RENJITH VR</h1>
<div class="container-fluid">
<div class="pagebody mebody">
<div>
<p>Hi, I'm <b>Renjith VR</b>. Friends call me <b>Renju</b>. I'm a programming Enthusiast. This is my detailed personal website. You can see all information about me. But not that all! LOL! You can find my blogs, social networks, my experience, skills etc. from here. Here you can see some common questions and answers. Please click on Menu button <img src="assets/images/menubutton.png" alt="menubutton" title="menu-button"> to explore my more details.</p>
<span class="space2x"></span>
<!-- <p class="notification">IF YOU ARE A <span class="danger"> OPERA MINI OR UC BROWSER </span> USER, PLEASE TURN OFF(DISABLE)<span class="danger"> SPEED MODE OR DATA SAVING MODE</span>. OTHERWISE, YOU WOULD NOT ABLE TO SEE MY INFORMATION.</p> -->
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Where are you from?</h3>
<hr>
</div>
<div class="answers">
<p>
I'm from India. I'm an Indian. I live in <a class="element texteffect underline-opening" title="Thrissur" target="_blank" href="https://en.wikipedia.org/wiki/Thrissur">Thrissur</a> district in <a class="element texteffect underline-opening" title="Kerala" target="_blank" href="https://en.wikipedia.org/wiki/Kerala">Kerala</a> state (District is like a county).
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>What is the 'VR' in your name?</h3>
<hr>
</div>
<div class="answers">
<p>
It is the short form my middle and last name. My full name is <b class="element texteffect underline-opening">Renjith Valanighat Ramakrishnan</b>. But all of my records has my official name - RENJITH VR. <b>Valanighat</b> is my family name. And<b> Ramakrishnan</b> is my father's name. His full name is <b>V.S Ramakrishnan</b>. I hope you got it now.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>What is your mother tongue(Native language)?</h3>
<hr>
</div>
<div class="answers">
<p>
I'm a Keralite(Kerala). So my mother tongue is Malayalam. But I can speak English fluently.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>How old are you?</h3>
<hr>
</div>
<div class="answers">
<p>
I'm
<?php $bday = new DateTime('06.05.1990');
$today = new DateTime();
$diff = $today->diff($bday);
printf('%d years', $diff->y);
?>
old now. My date of birth is 6th May 1990.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Could you tell about your family?</h3>
<hr>
</div>
<div class="answers">
<p>
Yes. My family is a nuclear family. There are 4 members in my family. My father, Mother, Brother & me. Happy Family. :)
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Are you married?</h3>
<hr>
</div>
<div class="answers">
<p>
No. I'm not married yet(<?php echo date("F j, Y, g:i a"); ?>). I'm single :)
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>How many years of Programming experience have you now?</h3>
<hr>
</div>
<div class="answers">
<p>
I have
<?php $jday = new DateTime('04.09.2013');
$today = new DateTime();
$diff = $today->diff($jday);
printf('%d years & %d months', $diff->y, $diff->m);
?> of experience in programming. You can see more details in the <a class="element texteffect underline-opening" target="_blank" href="http://www.renjithvr.in/experience.php" title="Renjith VR Experience">Experience</a> page.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Are you a degree holder?</h3>
<hr>
</div>
<div class="answers">
<p>
No. I skipped some examinations when I was in college because of personal problems. I have written those failed subjects again. I'm waiting for the results. I completed studies in Bachelor of Technology - Computer Science and Engineering from Vidya Academy of Science and Technology under Calicut university. It was a 4 years degree course.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Could you give a summary of your programming experience?</h3>
<hr>
</div>
<div class="answers">
<p>
When I was in college, I started learning C. But I interested in web development. Then I started learning HTML & CSS. After that, learned backend section. So I started with PHP & MYSQL. So I got some knowledge on web development. And I got my first job in <a class="element texteffect underline-opening" target="_blank" href="http://www.summerminds.com/" title="Summerminds Dot Com Private Limited">Summerminds</a>, Ernakulam, India as a <b>Software Engineer - PHP</b> in September 2013. I learned some technical stuff using PHP(OOPS & Core), MYSQL and Codeigniter. I used git repository tool. I learned excellent coding standard.
</p>
<span class="space2x"></span>
<p>
After two years I resigned from this company. I joined in <a class="element texteffect underline-opening" target="_blank" href="http://mobiotics.com/" title="Mobitoics">Mobiotics</a>, Bangalore, India as <b>Software Engineer - Web and Backend</b> in October 2015. Here, I learned more skills. The first thing was mastering in Javascript and Jquery. And then, learned and worked with Cassandra & Redis. Basically, I was working with development of Rest API by using PHP with Mysql database. I used Javascript, Jquery, Bootstrap, HTML & CSS for front-end Development. Before resigning from the company, I was working with Roku by using Brightscript and Scenegraph. That was courage I had. I did not have any experience on TV channel development. I started reading and learning. First two weeks, I struggled to get the idea for implementing it. I used to work continuously more than 24 hours for this Roku project. Now, I'm confident to accept new challenges. I got some good colleagues for each project. Enjoyed the teamwork. I resigned on 30th November 2016 from Mobiotics.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Why did you choose IT job? Who inspired you to become a Software Engineer?</h3>
<hr>
</div>
<div class="answers">
<p>
It was one of my choice of ambitions,to become an international soccer player or a software developer. I did not get a chance for my first choice. Because, in India, people are not promoting soccer that much! But to become an engineer is very easy in India. So I choose it. A huge number of colleges and universities are available for engineering studies in India. It was easy to get education loans from banks. And most of the parents wanted their children to become Engineer or Doctor. But it was one of my ambitions. I was curious to know technical stuff. When I started my computer education in school, I was curious to know, what kind of things happening inside the computer. So I decided to know more about it. And I found, more jobs are related to the computer and Internet. So I chose to learn web development. Nobody Inspired me to become an Engineer. I chose myself this field.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Which programming languages do you prefer?</h3>
<hr>
</div>
<div class="answers">
<p>
I'm a programming enthusiast. I know PHP, Javascript, SQL, Python, & BrightScript. The first preference goes to PHP.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Which programming languages/frameworks/libraries do you prefer to learn more?</h3>
<hr>
</div>
<div class="answers">
<p>
Actually, I have some IT skills. But some of them are just average and below average knowledge. I can learn things from documentation. I don't seek help from others. If it is very critical and tough, then it is the time to seek help! You can see my skills with ratings on <a class="element texteffect underline-opening" target="_blank" href="http://www.renjithvr.in/skills.php" title="Skills Page">Skills page</a>. I don't have good knowledge on some skills, but I can say "<i>Average knowledge</i>". I used to search internet, read and then implement things.
</p>
<span class="space2x"></span>
</p>
Among programming languages, I would like to learn Ruby, Go, Erlang, C++ & Scala from the beginning. Among Frameworks, I wanted to learn Python - Django, Javascript - ReactJS, NodeJS, AngularJS & VueJS. PHP - Laravel & Symfony. For CMS, I prefer PHP programming language. So I would like to learn more about Wordpress & Drupal. And I wanted to learn more about some Python libraries Kivy, Splinter, OpenCV & Scrapy. Among Databases, I wanted to learn more about MongoDB, Neo4J, Cassandra, BigTable, Firebase, PostgreSQL & Oracle.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Which IDE are you using?</h3>
<hr>
</div>
<div class="answers">
<p>
I don't believe that coding should do with an IDE. I think it is not mandatory. If we have vim editor or text editor, we can start coding. But IDEs have some more options for the development of a project. I would prefer Atom & Sublime. I have experience in VS Code, Eclipse & Netbeans.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Could you mention some of your major works and contributions?</h3>
<hr>
</div>
<div class="answers">
<div>
<p>
When I was in <b>summerminds dot com private limited</b>, I contributed to B2B, news portal & matrimonial projects. We used Codeigniter and Object Oriented PHP for the development of projects.
</p>
<span class="space2x"></span>
<ol>
<li>MarunadanMalayali - An Online News Portal</li>
<li>Bethlehem Matrimonial - A Christian Matrimonial.</li>
<li>Exporters.hk - A B2B project for HongKong.</li>
<li>E4Emrites - An online Classifieds for UAE.</li>
<li>Halal Matrimonial - A Muslim Matrimonial for Kerala.</li>
</ol>
<span class="space2x"></span>
<p>
In my second company, I created some features related to following projects. It was weekly based tasks.
</p>
<span class="space2x"></span>
<ol>
<li>Hinduja HITS(Headend In The Sky) - A Cable TV operation project having 6M+ customers</li>
<li>Hinduja IMCL(IndusInd Media & Communications Ltd) - A Cable TV operation project having 3M+ customers</li>
</ol>
<span class="space2x"></span>
<p>
I contributed to some OTT projects with Google Widewine DRM player and a Roku channel Project.
</p>
<span class="space2x"></span>
<ol>
<li>planetcast.in - An OTT project</li>
<li>ALT Balaji Roku Channel - A Roku Channel Project for the subsidiary of Balaji Telefilms Limited</li>
<li>Fastflimz - An OTT project</li>
</ol>
<span class="space2x"></span>
<p>
These are the major works that I contributed. Some of the works are not released yet. Some of the projects are not completed yet(may be dropped!). Both companies were following teamwork. And you can visit my <a class="element texteffect underline-opening" target="_blank" href="https://github.com/RenjithVR4" title="GitHub">Github</a> to see my own projects and code samples.
</p>
</div>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Which are your favorite Operating systems?</h3>
<hr>
</div>
<div class="answers">
<p>
Ubuntu is my favorite OS. I have been using Ubuntu for the last 7 years. I started using Ubuntu from college. I like centOS & Mint too.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Would you like to work abroad?</h3>
<hr>
</div>
<div class="answers">
<p>
Yes, But I don't prefer African countries. If the company is willing to sponsor me with the work visa, I can come abroad and work.I can speak English and Malayalam fluently. I don't speak any other languages.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Do you have any work visa from any country?</h3>
<hr>
</div>
<div class="answers">
<p>
No. I don't have. I'm an Indian. But I need the work visa to work abroad.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Would you accept remote jobs?</h3>
<hr>
</div>
<div class="answers">
<p>
Yes of course. I can do it.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>How many days do you need to learn and implement things that unfamiliar for you?</h3>
<hr>
</div>
<div class="answers">
<p>
I cannot give an exact number of days. It depends on the new stuff and project.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>What are your weaknesses?</h3>
<hr>
</div>
<div class="answers">
<p>
I'm not a bold man. Sometimes, a bad conversation or shouting would make me sad. This will affect my work. It would make a difference the speed of coding. I think it's normal like other people. So I always try to maintain pleasant mind. And I will neglect to remember bad incidents happened in my life.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>What are your strengths?</h3>
<hr>
</div>
<div class="answers">
<p>
I'm a programming enthusiast. I have a deep curiosity on programming. So I can start learning new things without any problems. I have good analytical and critical thinking skills. I will clear my doubts by making a healthy conversation to colleagues. I have good behavior to help colleagues and friends to solve their coding problems and issues. A good knowledge of coding. I can accept new challenges. You can see my technical skills on <a class="element texteffect underline-opening" target="_blank" href="http://www.renjithvr.in/skills.php" title="Skills Page">Skills page</a>.
</p>
</div>
</div>
</div>
</header>
</div>
<!-- /page -->
<div class="page" id="Hobbies">
<header class="bp-header cf">
<h1 class="bp-header__title">HOBBIES</h1>
<div class="container-fluid">
<div class="pagebody mebody">
<p>
This is hobbies section. You can see some questions and answers related to my hobbies and interests.
</p>
<span class="space2x"></span>
<div class="questions">
<h3>What are your hobbies?</h3>
<hr>
</div>
<div class="answers">
<p>
I have some hobbies. Hobbies depending on my mood. Listening music, Blogging, watching superhero movies. And I would like to travel. Not interested in driving a long distance. I would like to be a passenger and travel. I used to listen to music different languages and genres. Hobbies have changed from age to age. When I was a kid, I have a weird hobby. A collection of feathers. I used to collected feathers of different birds from forests, fields, farms. And pinned in a book with labels. I was thinking different. Other friends got some collection like coins, stamps. But I found this. LOL!
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>How does your average day look like?</h3>
<hr>
</div>
<div class="answers">
<p>
If I'm in the office, I would work like a normal employee. On holidays, I don't go outside. I would like to spend time with family(If I got a job in my district). After resigning from Mobiotics, I spent more time to create new blogs and funny trolls for social networks.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>So, you are a blogger too. Could you list your blogs?</h3>
<hr>
</div>
<div class="answers">
<div>
<p>You can see my blogs and other profiles with URL. Please go the menu <img src="assets/images/menubutton.png" alt="menubutton" title="menu-button">.</p>
<span class="space2x"></span>
<ol>
<li>Coding Alien</li>
<li>RVR Superheroes</li>
<li>RVR Favorites</li>
<li>RVR Comments</li>
<li>Renjith VR - Medium</li>
<li>Renjith VR - Creators</li>
</ol>
</div>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>What are the other social networks and profiles that you didn't mention here?</h3>
<hr>
</div>
<div class="answers">
<div>
<p>I have Five more. But I'm not using all these social networks regularly.</p>
<span class="space2x"></span>
<ol>
<li><a class="element texteffect underline-opening" href="https://www.reddit.com/user/RenjithVR4/" target="_blank" title="Renjith VR">Renjith VR</a> - <i class="fa fa-reddit fa-lg"></i> Reddit</li>
<li><a class="element texteffect underline-opening" href="https://www.flickr.com/photos/renjuvr/" target="_blank" title="Renjith VR">Renjith VR</a> - <i class="fa fa-flickr fa-lg"></i> Flickr</li>
<li><a class="element texteffect underline-opening" href="http://www.imdb.com/user/ur65768879/" target="_blank" title="Renjith VR">Renjith VR</a> - <i class="fa fa-imdb fa-lg"></i> IMDB</li>
<li><a class="element texteffect underline-opening" href="https://vk.com/renjithvr" target="_blank" title="Renjith VR">Renjith VR</a> - <i class="fa fa-vk fa-lg"></i> VK</li>
<li><a class="element texteffect underline-opening" href="http://9gag.com/u/renjithvr/" target="_blank" title="Renjith VR">Renjith VR</a> - <i><img class="fa-9gag " alt="9GAG" src="assets/images/9gag.png"/></i>9GAG</li>
</ol>
</div>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>How are you maintaining these blogs and profiles? How much time would you spend with these things in a day?</h3>
<hr>
</div>
<div class="answers">
<div>
<p>
I'm not a daily blogger. Yes, I have some blogs and social networks. <b>I created my blog and personal website after resigning from Mobiotics</b>. I always spend less than 10 minutes on social networks. But I'm not a regular user. I don't use these social networks daily. If I get more time, then I would try to write a blog. I have a list of a plan on writing blogs. Writing blog is fully depending upon the time. But I would check the notifications and statuses on social networks before sleeping. I would spend 15 minutes for these social networks before sleeping.
</p>
<span class="space2x"></span>
<p>
For example :: <a class="element texteffect underline-opening" href="https://www.instagram.com/codingalien/" target="_blank" title="Coding Alien Instagram">Coding Alien - Instagram</a> profile.
</p>
<span class="space2x"></span>
<p>
Users are following this profiles for my new updates. I always make some funny troll images related to coding/programming. I could spent less than 5 minutes for posting images on Instagram. That's all for a day. This is same for RVR Superheroes, RVR Comments, RVR Favorites.
</p>
</div>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Do you dance?</h3>
<hr>
</div>
<div class="answers">
<p>
Yes, I do. I used to dance when I was in school. Participated some dance competitions. After joining college, I did not participate in any competitions. But I can do. I cannot say that I'm good and professional.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Who are your Favorite Actors?</h3>
<hr>
</div>
<div class="answers">
<div>
<p>I have 6 favorite actors in different languages.</p>
<span class="space2x"></span>
<ol>
<li>Christian Bale in English movies.</li>
<li>Mohan Lal in Malayalam movies.</li>
<li>Kamal Hassan & Chiyaan Vikram in Tamil movies.</li>
<li>Sharukh Khan & John Abraham in Hindi Movies.</li>
</ol>
</div>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Which are your favorite songs?</h3>
<hr>
</div>
<div class="answers">
<p>
There are many songs. So I created a blog about my favorite songs.I always share my favorite songs from youtube & online radios. I love all genres. I used to listen to songs from different languages. <a class="element texteffect underline-opening" href="https://rvrfavorites.tumblr.com/" target="_blank" title="RVR Favorites">RVR Favorites</a> - A blog for my favorite songs.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Who are your favorite comic superheroes?</h3>
<hr>
</div>
<div class="answers">
<div>
<ol>
<li>Batman from DC Comics.</li>
<li>Ironman from Marvel.</li>
<li>Deadpool from Marvel.</li>
<li>Wolverine from Marvel.</li>
<li>Spiderman from Marvel.</li>
<li>Flash from DC Comics.</li>
<li>Swat Kats from Hanna-Barbera Productions.</li>
</ol>
<span class="space2x"></span>
<p>
I'm a superhero fan. That's why I created a blog for superheroes - <a class="element texteffect underline-opening" href="https://rvrsuperheroes.tumblr.com" target="_blank" title="RVR Favorites">RVR SuperHeroes.</a>
</p>
</div>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Do you drink and smoke?</h3>
<hr>
</div>
<div class="answers">
<p>
No. I don't. I wanted to be a different man. Drinking and Smoking are common. But I want to be a different man. I could start drinking and smoking. But I don't want that. I don't like to get fun from drugs, marijuana or other stuff. LOL!
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>How could blogging and solving bugs on StackOverflow are the part of your hobbies?</h3>
<hr>
</div>
<div class="answers">
<div>
<p>
I always help others if I can. If I found something related to coding, I would create a blog for others. Maybe the same topic already in the Google. But I don't care. I will create the blog in my view by including the way I used. So for each experiment on coding, I used to write some important points. I use this points to create the blog. I would investigate things related to the topic on the internet. And I would include these investigated data to my blog. If people visits and refers my content is kinda special feeling for me. This is the motivation to write more blogs.
</p>
<span class="space2x"></span>
<p>
Stackoverflow is the best problem-solving network. Users are ready to help people by answering questions. But the reputation is a big factor. Some people are crazy about it. But for me, I wanted to help people. I don't ask/seek these questionnaires to give an upvote! LOL! I would do run the given issue or problem on my machine. Sometimes I will refer from other resources to find the right answer.
</p>
</div>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>How are you selecting topics for your blogs?</h3>
<hr>
</div>
<div class="answers">
<p>
I'm selecting topics from my own coding experiments and projects. If tried something new and implemented, then I would create a blog about it. And I would use computer science and engineering study topics.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>Could you tell about your future plans?</h3>
<hr>
</div>
<div class="answers">
<p>
I would like to work as a Developer/Engineer under a reputed company with beautiful salary :). And I would start a business after some years. I cannot make any prejudice about my future. If I plan something, sometimes it won't work. Because god is handling everything. He has more control than me. He is the Super Admin.
</p>
</div>
<span class="space2x"></span>
<div class="questions">
<h3>For Learning PHP for a Beginner, which books would you suggest?</h3>
<hr>
</div>
<div class="answers">
<div>
<p>
I would suggest books from CEO of the <b>Stripe Payments</b> - Mr. Larry Ullman. And some other good books. The names of the books are following.
</p>
<span class="space2x"></span>
<ol>
<li>PHP 6 and MySQL 5 for Dynamic Web Sites - Larry Ullman</li>
<li>PHP 5 Advanced: Visual QuickPro Guide - Larry Ullman</li>
<li>Head First PHP & MySQL: A Brain-Friendly Guide</li>
<li>PHP for the World Wide Web - Larry Ullman</li>
<li>PHP Objects, Patterns, and Practice</li>
<li>PHP in a Nutshell</li>
<li>PHP & MySQL: Novice to Ninja</li>
</ol>
</div>
</div>
</div>
</div>
</header>
</div>
<!-- Blogs -->
<div class="page" id="Blogs">
<header class="bp-header cf">
<h1 class="bp-header__title">Blogs</h1>
</header>
<div class="container">
<div class="row">
<div class="pagebody center-block blogs-body">
<div class="box">
<a href="https://www.codingalien.com/" target="_blank" data-toggle="tooltip" data-placement="top" title="Coding Alien">
<blockquote class="quote-box quote-box-codingalien">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
Coding Alien! My official blog for programming and technical stuff.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
Coding Alien
</p>
<p class="blog-post-bottom pull-right">
<i><img class="fa-custom-icons " alt="Coding Alien" src="assets/images/CALogo.png"/></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="https://rvrfavorites.tumblr.com/" target="_blank" data-toggle="tooltip" data-placement="top" title="RVR Favorites">
<blockquote class="quote-box quote-box-rvrfavorites">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
A Tumblr blog my favorite songs from different languages.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
RVR Favorites
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-tumblr fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="https://rvrsuperheroes.tumblr.com/" target="_blank" data-toggle="tooltip" data-placement="top" title="RVR Superheroes">
<blockquote class="quote-box quote-box-rvrsuperheroes">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
A Tumblr blog for superhero comparisons & informations.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
RVR Superheroes
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-tumblr fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="http://rvrcomments.tumblr.com/" target="_blank" data-toggle="tooltip" data-placement="top" title="RVR Comments">
<blockquote class="quote-box quote-box-rvrcomments">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
A Tumblr blog for selected best comments from social medias.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
RVR Comments
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-tumblr fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="https://medium.com/@Renjthvr" target="_blank" data-toggle="tooltip" data-placement="top" title="Medium">
<blockquote class="quote-box quote-box-medium">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
My social blog for writing about general topics & social issues.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
Medium
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-medium fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="https://creators.co/@RVR" target="_blank" data-toggle="tooltip" data-placement="top" title="Creators/Movie Pilot">
<blockquote class="quote-box quote-box-creators">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
Blogging about movies and superheros. I'm enjoying this platform.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
Creators/Movie Pilot
</p>
<p class="blog-post-bottom pull-right">
<i><img class="fa-custom-icons fa-creators" alt="Creators" src="assets/images/CMPLogo.svg"/></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Social Profiles -->
<div class="page" id="social-Profiles">
<header class="bp-header cf">
<h1 class="bp-header__title">SOCIAL PROFILES</h1>
</header>
<div class="container">
<div class="row">
<div class="pagebody center-block social-profiles-body">
<div class="social-profiles-box">
<!-- <div class="box">
<a href="https://www.flickr.com/photos/renjuvr/" target="_blank" data-toggle="tooltip" data-placement="top" title="Flickr">
<blockquote class="quote-box quote-box-flickr">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
I'm no Photographer. But I would like to share some pictures.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
Flickr
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-flickr fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div> -->
<div class="box">
<a href="https://www.facebook.com/renjithvr.cruiser" target="_blank" data-toggle="tooltip" data-placement="top" title="Login Facebook,to see my profile">
<blockquote class="quote-box quote-box-facebook">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
For me, Facebook is quite personal. I won't add strangers!
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
Facebook
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-facebook fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="https://plus.google.com/u/0/+RenjithVR4" target="_blank" data-toggle="tooltip" data-placement="top" title="Google Plus">
<blockquote class="quote-box quote-box-google">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
I always share featured blogs and images to communities.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
Google+
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-google-plus fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<!-- <div class="box">
<a href="http://www.imdb.com/user/ur65768879/" target="_blank" data-toggle="tooltip" data-placement="top" title="IMDB">
<blockquote class="quote-box quote-box-imdb">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
I would like to create movie lists and reviews. Loves superhero films!
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
IMDB
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-imdb fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div> -->
<div class="box">
<a href="https://www.linkedin.com/in/renjithvr4" target="_blank" data-toggle="tooltip" data-placement="top" title="LinkedIn">
<blockquote class="quote-box quote-box-linkedin">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
My best professional network. I always keep it clean.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
LinkedIn
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-linkedin fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="https://www.quora.com/profile/Renjith-VR" target="_blank" data-toggle="tooltip" data-placement="top" title="Quora">
<blockquote class="quote-box quote-box-quora">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
Answered questions on some topics. Enjoyed by answering.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
Quora
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-quora fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="https://www.xing.com/profile/Renjith_VR2" target="_blank" data-toggle="tooltip" data-placement="top" title="Xing">
<blockquote class="quote-box quote-box-xing">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
My German Professional Network. I would like to make more connections.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
Xing
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-xing fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="https://www.instagram.com/codingalien/" target="_blank" data-toggle="tooltip" data-placement="top" title="Instagram">
<blockquote class="quote-box quote-box-instagram">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
Sharing images related to coding and programming blogs.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
Instagram
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-instagram fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="https://twitter.com/allow1234me" target="_blank" data-toggle="tooltip" data-placement="top" title="Twitter">
<blockquote class="quote-box quote-box-twitter">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
If I found something new or special, twitter is the right platform.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
Twitter
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-twitter fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="https://www.youtube.com/channel/UC-NsW9hQMf3WvZDGchEF7KA" target="_blank" data-toggle="tooltip" data-placement="top" title="Youtube">
<blockquote class="quote-box quote-box-youtube">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
Sharing random videos about superheroes and personal stuff.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
Youtube
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-youtube fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Developer Profiles -->
<div class="page" id="developer-Profiles">
<header class="bp-header cf">
<h1 class="bp-header__title">DEVELOPER PROFILES</h1>
</header>
<div class="container">
<div class="row">
<div class="pagebody center-block developer-body">
<div class="col-md-12 col-sm-12 col-lg-12">
<div class="box">
<a href="https://www.stackoverflow.com/users/5857047/renjith-vr" target="_blank" data-toggle="tooltip" data-placement="top" title="StackOverflow">
<blockquote class="quote-box quote-box-stackoverflow">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
Happy to help programmers by asking & answering questions.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
StackOverflow
</p>
<p class="blog-post-bottom pull-right">
<i class="fa fa-stack-overflow fa-2x"></i>
<span class="hidden-xs"></span>
</p>
</div>
</blockquote>
</a>
</div>
<div class="box">
<a href="https://www.hackerrank.com/Renjithvr" target="_blank" data-toggle="tooltip" data-placement="top" title="HackerRank">
<blockquote class="quote-box quote-box-hackerrank">
<p class="quotation-mark">
“
</p>
<p class="quote-text">
Ranking! Solved some problems from an excellent platform.
</p>
<hr>
<div class="blog-post-actions">
<p class="blog-post-bottom pull-left">
HackerRank
</p>
<p class="blog-post-bottom pull-right">
<i><img class="fa-custom-icons " alt="Hacker Rank" src="assets/images/HRLogo.png"/></i>
<span class="hidden-xs"></span>
</p>