-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1043 lines (1024 loc) · 54.5 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>
<html lang="en">
<head>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-66295548-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-66295548-2');
</script>
<!-- Meta -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Sarmad Sabih - CV/Resume">
<meta name="keywords" content="cv, resume, portfolio, sarmad sabih, sarmad, sabih, ruby on rails, full stack">
<meta name="author" content="Sarmad Sabih">
<!-- Page Title -->
<title>Sarmad Sabih - Resume</title>
<!-- Styles -->
<link rel='stylesheet' href='css/bootstrap.css'/>
<!-- Light & Dark Color -->
<link rel='stylesheet' id='light-dark' href='css/colors/light.css'/>
<!-- Theme Color -->
<link rel='stylesheet' id='colors' href='css/colors/color1-0487cc.css'/>
<!-- Responsive style -->
<link rel='stylesheet' href='css/responsive.css'/>
<!-- Favicon -->
<link rel="shortcut icon" type="image/ico" href="images/favicon.ico">
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Oswald:300,400,700|PT+Sans+Narrow:400,700">
<style>
.fa-white {
color: white;
}
</style>
</head>
<body>
<div class="content">
<!-- #LOADER# --> <!-- other loader : http://tobiasahlin.com/spinkit/ -->
<div class="loading-overlay">
<div class="spinner">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div>
</div>
<!-- #MENU# -->
<div class="menu">
<h2 class="logo">SS</h2>
<div class="menu-content">
<ul>
<li><a class="active" href="#" data-value="about">ABOUT</a></li>
<li><a href="#" data-value="skills">SKILLS</a></li>
<li><a href="#" data-value="pricing">FULL-STACK</a></li>
<li><a href="#" data-value="education">EDUCATION</a></li>
<li><a href="#" data-value="experience">EXPERIENCE</a></li>
<li><a href="#" data-value="portfolio">PROJECTS</a></li>
<li><a href="#" data-value="github_stats">GITHUB</a></li>
<li><a href="#" data-value="clients">CLIENTS</a></li>
<li><a href="#" data-value="linkedin_recommendations">RECOMMENDATIONS</a></li>
<li><a href="#" data-value="certificates">CERTIFICATES</a></li>
<li><a href="#" data-value="documents">DOCUMENTS</a></li>
<li><a href="#" data-value="interests">INTERESTS</a></li>
<li><a href="#" data-value="blog">BLOG</a></li>
<li><a href="#" data-value="reading_list">READING LIST</a></li>
<li><a href="#" data-value="twitter">TWITTER</a></li>
</ul>
</div>
<div class="open-menu">
<i class="fa fa-bars"></i>
</div>
</div>
<!-- #THEME-OPTION# --> <!-- other colors : http://colorhunt.co/ -->
<div class="theme-option">
<div class="change-theme">
<div class="light-dark-theme">
<ul>
<li class="light">
<h4>Light</h4>
<span data-value="css/colors/light.css"><i class="fa fa-check"></i></span>
</li>
<li class="dark">
<h4>Dark</h4>
<span data-value="css/colors/dark.css"><i class="fa fa-check"></i></span>
</li>
</ul>
</div>
<div class="colors-theme">
<h4>Change color</h4>
<ul>
<li class="color1"><span data-value="css/colors/color1-0487cc.css"><i class="fa fa-check"></i></span></li>
<li class="color2"><span data-value="css/colors/color2-f23a3a.css"><i class="fa fa-check"></i></span></li>
<li class="color3"><span data-value="css/colors/color3-2eac6d.css"><i class="fa fa-check"></i></span></li>
<li class="color4"><span data-value="css/colors/color4-f35b25.css"><i class="fa fa-check"></i></span></li>
</ul>
<ul>
<li class="color5"><span data-value="css/colors/color5-f6416c.css"><i class="fa fa-check"></i></span></li>
<li class="color6"><span data-value="css/colors/color6-ff9999.css"><i class="fa fa-check"></i></span></li>
<li class="color7"><span data-value="css/colors/color7-00adb5.css"><i class="fa fa-check"></i></span></li>
<li class="color8"><span data-value="css/colors/color8-00cf95c.css"><i class="fa fa-check"></i></span></li>
</ul>
<ul>
<li class="color9"><span data-value="css/colors/color9-827055.css"><i class="fa fa-check"></i></span></li>
<li class="color10"><span data-value="css/colors/color10-8200ff.css"><i class="fa fa-check"></i></span></li>
<li class="color11"><span data-value="css/colors/color11-e4c144.css"><i class="fa fa-check"></i></span></li>
<li class="color12"><span data-value="css/colors/color12-5457a6.css"><i class="fa fa-check"></i></span></li>
</ul>
</div>
</div>
<div class="open-theme">
<i class="fa fa-cogs"></i>
</div>
</div>
<!-- #SCROLL-TOP# -->
<div class="scroll-top" data-tootik="TOP" data-tootik-conf="invert no-arrow no-fading">
<i class="fa fa-arrow-up"></i>
</div>
<!-- #CONTAINER# -->
<div class="container">
<!-- #ABOUT# -->
<section id="about" class="section section-about wow fadeInUp">
<div class="profile">
<div class="row">
<div class="col-sm-4">
<div class="photo-profile">
<img src="images/sarmadsabih.jpeg" alt="Sarmad Sabih">
</div>
<span class="twitter"><a href="https://twitter.com/syedsarmadsabih?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-screen-name="false" data-show-count="false">Follow @syedsarmadsabih</a><script async src="http://platform.twitter.com/widgets.js" charset="utf-8"></script></span>
<span class="facebook"><iframe src="https://www.facebook.com/plugins/follow.php?href=https%3A%2F%2Fwww.facebook.com%2Fsyedsarmadsabih&width=63&height=65&layout=button&size=small&show_faces=false&appId=1692809110938515" width="63" height="20" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true"></iframe></span>
<span class="goodreads"><a href="https://www.goodreads.com/review/list/53929856?shelf=read" title="Sarmad Sabih's book recommendations, liked quotes, book clubs, book trivia, book lists (read shelf)", rel="nofollow"><img style="vertical-align: baseline;" border="0" alt="Sarmad Sabih's book recommendations, liked quotes, book clubs, book trivia, book lists (read shelf)" src="https://www.goodreads.com/images/badge/badge1.jpg"></a></span>
<a href="#" target="cv" onClick="window.print()">
<div class="download-resume">
<i class="fa fa-cloud-download" aria-hidden="true"></i>
<span class="text-download">DOWNLOAD RESUME</span>
</div>
</a>
<div class="available">
<i class="fa fa-check" aria-hidden="true"></i>
<span class="text-available">Available for Consultancy</span>
</div>
</div>
<div class="col-sm-8">
<div class="info-profile">
<h2><span>HI I'M</span> SARMAD SABIH</h2>
<h3>Full Stack Ruby on Rails Software Engineer</h3>
<p>I'm an experienced Full Stack Ruby on Rails software engineer, who likes to explore new and different technologies, currently working as a Associate Principal Software Engineer at CreativeChaos. Pure Ruby on Rails dev, completed various Microsoft Certifications(MCP, MCS, MCSD) out of my curiosity for learning and exploration. Have done projects on a variety of technologies such as RoR, Adobe ColdFusion, .Net (not professionally, only academic), JS, Angular 1 & 2, React/Redux/Flux, EmberJS. Have worked on some projects in a capacity of a software architect. Have also worked in sole isolation on projects, developing whole applications both alone and in huge teams. Looking forward to continue this roller coaster software development journey with even more pace.</p>
<div class="row">
<div class="col-sm-6">
<ul class="ul-info">
<li class="li-info">
<span class="title-info">Age</span>
<span class="info">29</span>
</li>
<li class="li-info">
<span class="title-info">Location</span>
<span class="info">Karachi, Pakistan</span>
</li>
<li class="li-info">
<span class="title-info">Email</span>
<span class="info">[email protected]</span>
</li>
</ul>
</div>
<div class="col-sm-6">
<ul class="ul-info">
<li class="li-info">
<span class="title-info">Phone</span>
<span class="info">+923432603710</span>
</li>
<li class="li-info">
<span class="title-info">Website</span>
<span class="info">www.sarmadsabih.com</span>
</li>
<li class="li-info">
<span class="title-info">Nationality</span>
<span class="info">Pakistani</span>
</li>
</ul>
</div>
<div class="col-sm-12">
<span class="title-links">Social Links</span>
<ul class="ul-social-links">
<li class="li-social-links">
<a href="https://www.facebook.com/syedsarmadsabih" target="_blank" data-tootik="Facebook" data-tootik-conf="square"><i class="fa fa-facebook" aria-hidden="true"></i></a>
</li>
<li class="li-social-links">
<a href="https://twitter.com/syedsarmadsabih" target="_blank" data-tootik="Twitter" data-tootik-conf="square"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</li>
<li class="li-social-links">
<a href="https://pk.linkedin.com/in/sarmad-sabih-754b5264" target="_blank" data-tootik="Linkedin" data-tootik-conf="square"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</li>
<!-- <li class="li-social-links">
<a href="https://www.upwork.com/freelancers/~01ecda668cbe327c9a?viewMode=1" target="_blank" data-tootik="UpWork" data-tootik-conf="square"><img src="images/icons/upwork_icon.png" height="20" weight="20" /></a>
</li> -->
<li class="li-social-links">
<a href="http://stackoverflow.com/users/1591162/sarmad-sabih" target="_blank" data-tootik="StackOverflow" data-tootik-conf="square"><i class="fa fa-stack-overflow" aria-hidden="true"></i></a>
</li>
<li class="li-social-links">
<a href="https://medium.com/@sarmadsabih" target="_blank" data-tootik="Medium" data-tootik-conf="square"><i class="fa fa-medium" aria-hidden="true"></i></a>
</li>
<li class="li-social-links">
<a href="https://github.com/sarmad90" target="_blank" data-tootik="Github" data-tootik-conf="square"><i class="fa fa-github" aria-hidden="true"></i></a>
</li>
<li class="li-social-links">
<a href="https://bitbucket.org/sarmadsabih/" target="_blank" data-tootik="Bitbucket" data-tootik-conf="square"><i class="fa fa-bitbucket" aria-hidden="true"></i></a>
</li>
<li class="li-social-links">
<a href="https://www.goodreads.com/user/show/53929856-sarmad-sabih" target="_blank" data-tootik="GoodReads" data-tootik-conf="square"><i class="fa fa-book" aria-hidden="true"></i></a>
</li>
<li class="li-social-links">
<a href="https://www.sitepoint.com/author/ssarmad/" target="_blank" data-tootik="SitePoint" data-tootik-conf="square"><i class="fa fa-pencil" aria-hidden="true"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- #SKILLS# -->
<section id="skills" class="section section-skills wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">SKILLS</h2>
</div>
<div class="row">
<div class="col-md-5">
<div class="professional-skills">
<div class="title-skills">
<h3>CORE SKILLS</h3>
</div>
<!-- single skill -->
<div class="skill">
<div class="title-progress">
<span class="skill-name">Ruby</span>
<span class="skill-value">70%</span>
</div>
<div class="progress">
<div class="progress-bar progress4" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 70%;">
</div>
</div>
</div>
<!-- / single skill -->
<!-- single skill -->
<div class="skill">
<div class="title-progress">
<span class="skill-name">Ruby on Rails</span>
<span class="skill-value">85%</span>
</div>
<div class="progress">
<div class="progress-bar progress2" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 85%;">
</div>
</div>
</div>
<!-- / single skill -->
<!-- single skill -->
<div class="skill">
<div class="title-progress">
<span class="skill-name">HTML & CSS</span>
<span class="skill-value">75%</span>
</div>
<div class="progress">
<div class="progress-bar progress1" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 75%;">
</div>
</div>
</div>
<!-- / single skill -->
<!-- single skill -->
<div class="skill">
<div class="title-progress">
<span class="skill-name">JavaScript</span>
<span class="skill-value">70%</span>
</div>
<div class="progress">
<div class="progress-bar progress3" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 70%;">
</div>
</div>
</div>
<!-- / single skill -->
<!-- single skill -->
<div class="skill">
<div class="title-progress">
<span class="skill-name">Testing</span>
<span class="skill-value">80%</span>
</div>
<div class="progress">
<div class="progress-bar progress5" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 80%;">
</div>
</div>
</div>
<!-- / single skill -->
<!-- single skill -->
<div class="skill">
<div class="title-progress">
<span class="skill-name">Cloud Services</span>
<span class="skill-value">65%</span>
</div>
<div class="progress">
<div class="progress-bar progress5" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 65%;">
</div>
</div>
</div>
<!-- / single skill -->
<!-- single skill -->
<div class="skill">
<div class="title-progress">
<span class="skill-name">Automation</span>
<span class="skill-value">60%</span>
</div>
<div class="progress">
<div class="progress-bar progress5" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
</div>
</div>
</div>
<!-- / single skill -->
</div>
</div>
<div class="col-md-7">
<div class="additional-skills">
<div class="title-skills">
<h3>ADDITIONAL SKILLS</h3>
</div>
<div class="circle-progress">
<div class="row">
<!-- single circle skill -->
<div class="col-sm-3">
<div class="circle">
<div class="chart-percentage">
<span>70%</span>
</div>
<div class="chart" data-percent="70">
<!-- canvas -->
</div>
<div class="name-circle">
<span>AWS</span>
</div>
</div>
</div>
<!-- / single circle skill -->
<!-- single circle skill -->
<div class="col-sm-3">
<div class="circle">
<div class="chart-percentage">
<span>65%</span>
</div>
<div class="chart" data-percent="65">
<!-- canvas -->
</div>
<div class="name-circle">
<span>Heroku</span>
</div>
</div>
</div>
<!-- / single circle skill -->
<!-- single circle skill -->
<div class="col-sm-3">
<div class="circle">
<div class="chart-percentage">
<span>40%</span>
</div>
<div class="chart" data-percent="40">
<!-- canvas -->
</div>
<div class="name-circle">
<span>Google Cloud Platform</span>
</div>
</div>
</div>
<!-- / single circle skill -->
<!-- single circle skill -->
<div class="col-sm-3">
<div class="circle">
<div class="chart-percentage">
<span>40%</span>
</div>
<div class="chart" data-percent="40">
<!-- canvas -->
</div>
<div class="name-circle">
<span>Microsof Azure</span>
</div>
</div>
</div>
<!-- / single circle skill -->
</div>
</div>
<div class="other-skills">
<div class="row">
<div class="col-sm-6">
<div class="other">
<!-- single other skill -->
<div class="skill">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span>Git</span>
</div>
<!-- / single other skill -->
<!-- single other skill -->
<div class="skill">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span>SQL</span>
</div>
<!-- / single other skill -->
<!-- single other skill -->
<div class="skill">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span>NoSQL</span>
</div>
<!-- / single other skill -->
<!-- single other skill -->
<div class="skill">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span>Redis</span>
</div>
<!-- / single other skill -->
<!-- single other skill -->
<div class="skill">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span>Capistrano</span>
</div>
<!-- / single other skill -->
</div>
</div>
<div class="col-sm-6">
<div class="other">
<!-- single other skill -->
<div class="skill">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span>RSpec</span>
</div>
<!-- / single other skill -->
<!-- single other skill -->
<div class="skill">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span>Cucumber</span>
</div>
<!-- / single other skill -->
<!-- single other skill -->
<div class="skill">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span>Selenium</span>
</div>
<!-- single other skill -->
<div class="skill">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span>Design Patterns</span>
</div>
<!-- / single other skill -->
<!-- single other skill -->
<div class="skill">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<span>jQuery</span>
</div>
<!-- / single other skill -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- #FULL-STACK BREAKDOWN# -->
<section id="pricing" class="section section-pricing wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">FULL-STACK BREAKDOWN</h2>
</div>
<div class="row">
<div class="col-sm-4">
<div class="pricing-content">
<!-- <div class="pricing-title">
<h3>NA</h3>
</div> -->
<div class="pricing-price">
<h3>Front-End</h3>
</div>
<div class="pricing-detail">
<div class="line-detail">
<span>HTML/CSS/JS</span>
</div>
<div class="line-detail">
<span>AngularJS</span>
</div>
<div class="line-detail">
<span>React/Redux/Flux</span>
</div>
<div class="line-detail">
<span>EmberJS</span>
</div>
<!-- <div class="line-detail">
<span>NA</span>
<span class="new">NEW</span>
</div> -->
</div>
<!-- <div class="pricing-buy">
<a href="#"><h3>NA</h3></a>
</div> -->
</div>
</div>
<div class="col-sm-4">
<div class="pricing-content">
<div class="most-populaire">
<span>Strongest Area</span>
</div>
<!-- <div class="pricing-title">
<h3 class="h3-most-populaire">NA</h3>
</div> -->
<div class="pricing-price">
<h3>Back-End</h3>
</div>
<div class="pricing-detail">
<div class="line-detail">
<span>Ruby on Rails</span>
<span class="new">EXPERT</span>
</div>
<div class="line-detail">
<span>Ruby</span>
<span class="new">EXPERT</span>
</div>
<div class="line-detail">
<span>ASP.NET</span>
</div>
<div class="line-detail">
<span>NodeJS</span>
</div>
<div class="line-detail">
<span>Python/Django</span>
</div>
</div>
<!-- <div class="pricing-buy">
<a href="#"><h3>NA</h3></a>
</div> -->
</div>
</div>
<div class="col-sm-4">
<div class="pricing-content">
<!-- <div class="pricing-title">
<h3>NA</h3>
</div> -->
<div class="pricing-price">
<h3>Database</h3>
</div>
<div class="pricing-detail">
<div class="line-detail">
<span>Postgres</span>
</div>
<div class="line-detail">
<span>MySQL/MariaDB</span>
</div>
<div class="line-detail">
<span>MS SQL Server</span>
</div>
<div class="line-detail">
<span>MongoDB</span>
</div>
</div>
</div>
</div>
</div>
</section> <!-- FULL-STACK BREAKDOWN end !-->
<!-- #EDUCATION# -->
<section id="education" class="section section-education wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">EDUCATION</h2>
</div>
<div class="row all-education">
<!-- HTML will be generated by JS -->
<div class="clearfix"></div>
</div>
</section>
<!-- #EXPERIENCE# -->
<section id="experience" class="section section-experience wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">EXPERIENCE</h2>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<span class="icon-experience">
<i class="fa fa-briefcase"></i>
</span>
<div class="all-experience">
<!-- HTML will be generated by JS -->
</div>
</div>
</div>
</section>
<!-- #PORTFOLIO# -->
<section id="portfolio" class="section section-portfolio wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">PROJECTS</h2>
</div>
<br />
<!-- <div class="filter-portfolio">
<ul>
<li class="active filter" data-filter="all">All</li>
<li class="filter" data-filter=".ruby-on-rails">Ruby on Rails</li>
<li class="filter" data-filter=".js">JS</li>
<li class="filter" data-filter=".angular-js">AngularJS</li>
<li class="filter" data-filter=".phonegap">PhoneGap</li>
</ul>
</div> -->
<div class="row all-projects">
<!-- HTML will be generated by JS -->
</div>
</section>
<!-- #GITHUB# -->
<section id="github_stats" class="section section-portfolio wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">GitHub</h2>
</div>
<div class="row">
<div class="col-md-12">
<!-- Prepare a container for your calendar. -->
<script src="https://cdn.rawgit.com/IonicaBizau/github-calendar/gh-pages/dist/github-calendar.min.js" ></script>
<!-- Optionally, include the theme (if you don't want to struggle to write the CSS) -->
<link rel="stylesheet" href="https://cdn.rawgit.com/IonicaBizau/github-calendar/gh-pages/dist/github-calendar.css" />
<!-- Prepare a container for your calendar. -->
<div class="calendar">
<!-- Loading stuff -->
Loading the data just for you.
</div>
<script>
new GitHubCalendar(".calendar", "sarmad90");
</script>
</div>
</div>
</section>
<!-- #CLIENTS# -->
<section id="clients" class="section section-portfolio wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">CLEINTS</h2>
<p>
Companies I have worked with/for directly or indirectly.
</p>
</div>
<div class="row">
</div>
<style>
.clients img {
padding-top: 50px;
padding-left: 25%;
padding-right: 25%;
height: 100px;
float: left;
}
</style>
<div class="row clients">
<!-- HTML will be generated by JS -->
</div>
</section>
<!-- #TESTIMONIALS# -->
<section id="linkedin_recommendations" class="section section-testimonials wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">LinkedIn Recommendations</h2>
</div>
<div class="swiper-container">
<div class="swiper-wrapper">
<!-- single testimonial -->
<div class="swiper-slide">
<div class="personal-info">
<img src="images/testimonials/asadshah.jpg" alt="">
<h3>Asad U. Shah</h3>
<span>Social Entrepreneur and M-Payments Seer</span>
</div>
<div class="personal-text">
<p><i class="fa fa-quote-left"></i>Sarmad was involved in various testing projects for business release enhancements that I and my team developed over the period of last 3 years. I was very pleased with his work and found him extremely knowledgeable and focused individual. He also possesses sound technical knowledge around the latest coding tools and frameworks. He is an excellent learner with a keen eye to detail.<i class="fa fa-quote-right"></i></p>
</div>
</div>
<!-- / single testimonial -->
<!-- single testimonial -->
<div class="swiper-slide">
<div class="personal-info">
<img src="images/testimonials/shehzadali.jpg" alt="">
<h3>Shehzad Ali</h3>
<span>Technical Lead</span>
</div>
<div class="personal-text">
<p><i class="fa fa-quote-left"></i>Sarmad has a very professional and effective approach to complete challenging projects by using Agile principles. He is a very good team player and got a brilliant ability to work with the clients and come up with the best possible solutions for their business needs. He is also brilliant in communications which makes him very successful in sharing knowledge and keeping all the stakeholders working across multiple timezones on same page. Sarmad has a very romantic relationship with RoR framework and his love for this technology is only growing with each passing day. I am happy that I worked with him to deliver few great solutions.<i class="fa fa-quote-right"></i></p>
</div>
</div>
<!-- / single testimonial -->
<!-- single testimonial -->
<div class="swiper-slide">
<div class="personal-info">
<img src="images/testimonials/manal.jpg" alt="">
<h3>Manal Alshahrani</h3>
<span>Network engineer & Applications developer</span>
</div>
<div class="personal-text">
<p><i class="fa fa-quote-left"></i>I had session with Mr. Sarmad Sabih online , and I found him a helpful person even when we were in first sessions but he could manage time and information that would help me for starting as I described for him. I took with him Ruby on rails subject and he has a very professional and effective approach to make it so understandable. I wish we continue theses sessions because he is really knowledgeable man.<i class="fa fa-quote-right"></i></p>
</div>
</div>
<!-- / single testimonial -->
<!-- single testimonial -->
<div class="swiper-slide">
<div class="personal-info">
<img src="images/testimonials/danialimtiaz.jpg" alt="">
<h3>Danial Imtiaz Siddiqui</h3>
<span>SQA Engineer</span>
</div>
<div class="personal-text">
<p><i class="fa fa-quote-left"></i>Sarmad is a very smart and dedicated Software Engineer. He always find innovative ways to solve problems. He showed his excellent problem analysis skills when we worked on some tough bugs found on customers' live web sites. He is also an excellent team player, with high integrity and work ethics.<i class="fa fa-quote-right"></i></p>
</div>
</div>
<!-- / single testimonial -->
<!-- single testimonial -->
<div class="swiper-slide">
<div class="personal-info">
<img src="images/testimonials/asifmeer.jpg" alt="">
<h3>Asif Meer</h3>
<span>Team Lead</span>
</div>
<div class="personal-text">
<p><i class="fa fa-quote-left"></i>Sarmad is a good team player, he can work on any project individually. He is a quick learner having good programming skills in ROR and .Net. I will highly recommend Sarmad for his strong knowledge and coding skills.<i class="fa fa-quote-right"></i></p>
</div>
</div>
<!-- / single testimonial -->
<!-- single testimonial -->
<div class="swiper-slide">
<div class="personal-info">
<img src="images/testimonials/no_avatar.png" alt="">
<h3>Tehreem Sami</h3>
<span>Sr. HR Executive</span>
</div>
<div class="personal-text">
<p><i class="fa fa-quote-left"></i>I found Sarmad extremely hard working and passionate in his work. He is always full of new and innovative ideas which i think is one of his best quality.He is highly self motivated, very intelligent, sharp learner and has the ability to accept any new challenges.I wish him a very very good luck in his future endeavors.<i class="fa fa-quote-right"></i></p>
</div>
</div>
<!-- / single testimonial -->
</div>
<!-- Add Pagination -->
<div class="swiper-pagination">
<!-- span -->
</div>
</div>
</section>
<!-- #CERTIFICATES# -->
<section id="certificates" class="section section-portfolio wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">CERTIFCATES</h2>
</div>
<div class="row certificates">
<!-- HTML will be generated by JS -->
</div>
</section>
<!-- #DOCUMENTS# -->
<section id="documents" class="section section-portfolio wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">DOCUMENTS</h2>
</div>
<div class="row">
<div class="col-sm-6">
<div class="item-portfolio">
<div class="item-overlay">
<div class="item-content">
<span class="icon-search">
<a class="work-popup" href="images/certificates/sarmad_sabih_bscs_transcript.jpeg" data-group="1"><i class="fa fa-search" aria-hidden="true"></i></a>
</span>
<h3>BSCS Transcript</h3>
</div>
</div>
<img src="images/certificates/sarmad_sabih_bscs_transcript.jpeg" alt="">
</div>
</div>
<div class="col-sm-6">
<div class="item-portfolio">
<div class="item-overlay">
<div class="item-content">
<span class="icon-search">
<a class="work-popup" href="images/certificates/sarmad_sabih_activa_financial_recommendation_letter.jpg" data-group="1"><i class="fa fa-search" aria-hidden="true"></i></a>
</span>
<h3>Activa Financial Recommendation Letter</h3>
</div>
</div>
<img src="images/certificates/sarmad_sabih_activa_financial_recommendation_letter.jpg" alt="">
</div>
</div>
<div class="clearfix"></div>
<div class="col-sm-12">
<div class="item-portfolio">
<div class="item-overlay">
<div class="item-content">
<span class="icon-search">
<a class="work-popup" href="images/certificates/sarmad_sabih_bscs_degree.jpeg" data-group="1"><i class="fa fa-search" aria-hidden="true"></i></a>
</span>
<h3>BSCS Degree</h3>
</div>
</div>
<img src="images/certificates/sarmad_sabih_bscs_degree.jpeg" alt="">
</div>
</div>
<div class="clearfix"></div>
</div>
</section>
<!-- #INTERESTS# -->
<section id="interests" class="section section-interests wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">INTERESTS</h2>
</div>
<div class="text-interests">
<p>Apart from my professional life, I like to do lots of stuff, which includes listening to music (I'm a huge fan of Eastern music - especially Nusrat Fateh Ali Khan), traveling, gaming (I started playing games on the arcades at the age of 5 - still play games on PS4 ), reading books (non-fiction - preferably biographies), writing for myself on Medium and some technical pieces for SitePoint and watching football (Barclays/English Premiere League - huge fan of Arsenal FC - Real Madrid and Borrusia Dortmund among other clubs I like)</p>
</div>
<!-- more icons for interests : https://www.iconfinder.com/ -->
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div>
<i class="fa fa-plane fa-3x fa-white" aria-hidden="true"></i>
</div>
<h4>Travel</h4>
</div>
<div class="swiper-slide">
<div>
<i class="fa fa-music fa-3x fa-white" aria-hidden="true"></i>
</div>
<h4>Music</h4>
</div>
<div class="swiper-slide">
<div>
<i class="fa fa-gamepad fa-3x fa-white" aria-hidden="true"></i>
</div>
<h4>Gaming</h4>
</div>
<div class="swiper-slide">
<div>
<i class="fa fa-book fa-3x fa-white" aria-hidden="true"></i>
</div>
<h4>Books</h4>
</div>
<div class="swiper-slide">
<div>
<i class="fa fa-pencil fa-3x fa-white" aria-hidden="true"></i>
</div>
<h4>Writing</h4>
</div>
<div class="swiper-slide">
<div>
<i class="fa fa-futbol-o fa-3x fa-white" aria-hidden="true"></i>
</div>
<h4>Football</h4>
</div>
</div>
</div>
<div class="row">
</div>
<div class="row interest-embeds">
<!-- HTML will be generated dynamically -->
</div>
</section>
<!-- #BLOG# -->
<section id="blog" class="section section-blog wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">BLOG</h2>
</div>
<div class="row blogs">
</div><!-- row !-->
</section>
<!-- #READING LIST# -->
<section id="reading_list" class="section wow fadeInUp" data-wow-offset="40">
<div class="header-section">
<h2 class="h2-section">READING LIST</h2>
</div>
<div class="row">
<div class="col-md-6">
<div class="reading-list">
<style type="text/css" media="screen">
.gr_grid_container {
/* customize grid container div here. eg: width: 500px; */
}
.gr_grid_book_container {
/* customize book cover container div here */
float: left;
width: 98px;
height: 160px;
padding: 0px 0px;
overflow: hidden;
}
</style>
<div id="gr_grid_widget_1507112539">
<!-- Show static html as a placeholder in case js is not enabled - javascript include will override this if things work -->
<h2>
<a style="text-decoration: none;" rel="nofollow" href="https://www.goodreads.com/review/list/53929856-sarmad-sabih?shelf=read&utm_medium=api&utm_source=grid_widget">Sarmad's read book montage</a>
</h2>
<div class="gr_grid_container">
<div class="gr_grid_book_container"><a title="The Qur'an / القرآن الكريم" rel="nofollow" href="https://www.goodreads.com/book/show/646462.The_Qur_an_"><img alt="The Qur'an / القرآن الكريم" border="0" src="https://images.gr-assets.com/books/1275263838m/646462.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Metaprogramming Ruby 2: Program Like the Ruby Pros" rel="nofollow" href="https://www.goodreads.com/book/show/21824181-metaprogramming-ruby-2"><img alt="Metaprogramming Ruby 2: Program Like the Ruby Pros" border="0" src="https://images.gr-assets.com/books/1411948551m/21824181.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Crafting Rails 4 Applications" rel="nofollow" href="https://www.goodreads.com/book/show/18051754-crafting-rails-4-applications"><img alt="Crafting Rails 4 Applications" border="0" src="https://images.gr-assets.com/books/1372784866m/18051754.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Eloquent Ruby" rel="nofollow" href="https://www.goodreads.com/book/show/9364729-eloquent-ruby"><img alt="Eloquent Ruby" border="0" src="https://images.gr-assets.com/books/1348111715m/9364729.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Rails Antipatterns: Best Practice Ruby on Rails Refactoring" rel="nofollow" href="https://www.goodreads.com/book/show/9765652-rails-antipatterns"><img alt="Rails Antipatterns: Best Practice Ruby on Rails Refactoring" border="0" src="https://images.gr-assets.com/books/1400891776m/9765652.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Muhammad" rel="nofollow" href="https://www.goodreads.com/book/show/27310.Muhammad"><img alt="Muhammad" border="0" src="https://images.gr-assets.com/books/1388355910m/27310.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Jag är Zlatan: Zlatans egen berättelse" rel="nofollow" href="https://www.goodreads.com/book/show/13037816-jag-r-zlatan"><img alt="Jag är Zlatan: Zlatans egen berättelse" border="0" src="https://images.gr-assets.com/books/1328287506m/13037816.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="After the Prophet: The Epic Story of the Shia-Sunni Split in Islam" rel="nofollow" href="https://www.goodreads.com/book/show/6533039-after-the-prophet"><img alt="After the Prophet: The Epic Story of the Shia-Sunni Split in Islam" border="0" src="https://images.gr-assets.com/books/1320463957m/6533039.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Arsene Wenger: The Inside Story of Arsenal Under Wenger" rel="nofollow" href="https://www.goodreads.com/book/show/26214921-arsene-wenger"><img alt="Arsene Wenger: The Inside Story of Arsenal Under Wenger" border="0" src="https://images.gr-assets.com/books/1441228468m/26214921.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Elon Musk: Inventing the Future" rel="nofollow" href="https://www.goodreads.com/book/show/22543496-elon-musk"><img alt="Elon Musk: Inventing the Future" border="0" src="https://images.gr-assets.com/books/1404411386m/22543496.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="The Contractor: How I Landed in a Pakistani Prison and Ignited a Diplomatic Crisis" rel="nofollow" href="https://www.goodreads.com/book/show/28695551-the-contractor"><img alt="The Contractor: How I Landed in a Pakistani Prison and Ignited a Diplomatic Crisis" border="0" src="https://images.gr-assets.com/books/1456800188m/28695551.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Zaviya 3 / زاویہ ٣" rel="nofollow" href="https://www.goodreads.com/book/show/11219560-zaviya-3"><img alt="Zaviya 3 / زاویہ ٣" border="0" src="https://images.gr-assets.com/books/1472648478m/11219560.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Rework" rel="nofollow" href="https://www.goodreads.com/book/show/6732019-rework"><img alt="Rework" border="0" src="https://images.gr-assets.com/books/1391275636m/6732019.jpg" /></a></div>
<noscript><br/>Share <a rel="nofollow" href="/">book reviews</a> and ratings with Sarmad, and even join a <a rel="nofollow" href="/group">book club</a> on Goodreads.</noscript>
</div>
</div>
<script src="https://www.goodreads.com/review/grid_widget/53929856.Sarmad's%20read%20book%20montage?cover_size=medium&hide_link=true&hide_title=&num_books=200&order=a&shelf=read&sort=date_added&widget_id=1507112539" type="text/javascript" charset="utf-8"></script>
</div>
</div>
<div class="col-md-6">
<div class="currently-reading">
<style type="text/css" media="screen">
.gr_grid_container {
/* customize grid container div here. eg: width: 500px; */
}
.gr_grid_book_container {
/* customize book cover container div here */
float: left;
width: 98px;
height: 160px;
padding: 0px 0px;
overflow: hidden;
}
</style>
<div id="gr_grid_widget_1507112682">
<!-- Show static html as a placeholder in case js is not enabled - javascript include will override this if things work -->
<h2>
<a style="text-decoration: none;" rel="nofollow" href="https://www.goodreads.com/review/list/53929856-sarmad-sabih?shelf=currently-reading&utm_medium=api&utm_source=grid_widget">Sarmad's currently-reading books</a>
</h2>
<div class="gr_grid_container">
<div class="gr_grid_book_container"><a title="American Jihad: Islam After Malcolm X" rel="nofollow" href="https://www.goodreads.com/book/show/401389.American_Jihad"><img alt="American Jihad: Islam After Malcolm X" border="0" src="https://images.gr-assets.com/books/1320401641m/401389.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Amazon Web Services in Action" rel="nofollow" href="https://www.goodreads.com/book/show/26778699-amazon-web-services-in-action"><img alt="Amazon Web Services in Action" border="0" src="https://images.gr-assets.com/books/1444881923m/26778699.jpg" /></a></div>
<noscript><br/>Share <a rel="nofollow" href="/">book reviews</a> and ratings with Sarmad, and even join a <a rel="nofollow" href="/group">book club</a> on Goodreads.</noscript>
</div>
</div>
<script src="https://www.goodreads.com/review/grid_widget/53929856.Sarmad's%20currently-reading%20books?cover_size=medium&hide_link=true&hide_title=&num_books=200&order=a&shelf=currently-reading&sort=date_added&widget_id=1507112682" type="text/javascript" charset="utf-8"></script>
</div>
<div class="to-read-list">
<style type="text/css" media="screen">
.gr_grid_container {
/* customize grid container div here. eg: width: 500px; */
}
.to-read-list .gr_grid_book_container {
/* customize book cover container div here */
float: left;
width: 39px;
height: 60px;
padding: 0px 0px;
overflow: hidden;
}
</style>
<div id="gr_grid_widget_1507112949">
<!-- Show static html as a placeholder in case js is not enabled - javascript include will override this if things work -->
<h2>
<a style="text-decoration: none;" rel="nofollow" href="https://www.goodreads.com/review/list/53929856-sarmad-sabih?shelf=to-read&utm_medium=api&utm_source=grid_widget">Sarmad's to-read book montage</a>
</h2>
<div class="gr_grid_container">
<div class="gr_grid_book_container"><a title="Steve Jobs" rel="nofollow" href="https://www.goodreads.com/book/show/11084145-steve-jobs"><img alt="Steve Jobs" border="0" src="https://images.gr-assets.com/books/1327861368s/11084145.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Dreams from My Father: A Story of Race and Inheritance" rel="nofollow" href="https://www.goodreads.com/book/show/88061.Dreams_from_My_Father"><img alt="Dreams from My Father: A Story of Race and Inheritance" border="0" src="https://images.gr-assets.com/books/1352340675s/88061.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="In the Footsteps of the Prophet: Lessons from the Life of Muhammad" rel="nofollow" href="https://www.goodreads.com/book/show/169338.In_the_Footsteps_of_the_Prophet"><img alt="In the Footsteps of the Prophet: Lessons from the Life of Muhammad" border="0" src="https://images.gr-assets.com/books/1387739361s/169338.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Purification of the Heart: Signs, Symptoms and Cures of the Spiritual Diseases of the Heart" rel="nofollow" href="https://www.goodreads.com/book/show/272724.Purification_of_the_Heart"><img alt="Purification of the Heart: Signs, Symptoms and Cures of the Spiritual Diseases of the Heart" border="0" src="https://images.gr-assets.com/books/1430916976s/272724.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Muhammad: His Life Based on the Earliest Sources" rel="nofollow" href="https://www.goodreads.com/book/show/144925.Muhammad"><img alt="Muhammad: His Life Based on the Earliest Sources" border="0" src="https://images.gr-assets.com/books/1391978670s/144925.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="The Lean Startup: How Today's Entrepreneurs Use Continuous Innovation to Create Radically Successful Businesses" rel="nofollow" href="https://www.goodreads.com/book/show/10127019-the-lean-startup"><img alt="The Lean Startup: How Today's Entrepreneurs Use Continuous Innovation to Create Radically Successful Businesses" border="0" src="https://images.gr-assets.com/books/1333576876s/10127019.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="The Last Mughal: The Fall of a Dynasty: Delhi, 1857" rel="nofollow" href="https://www.goodreads.com/book/show/124429.The_Last_Mughal"><img alt="The Last Mughal: The Fall of a Dynasty: Delhi, 1857" border="0" src="https://images.gr-assets.com/books/1320556054s/124429.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Sapiens: A Brief History of Humankind" rel="nofollow" href="https://www.goodreads.com/book/show/23692271-sapiens"><img alt="Sapiens: A Brief History of Humankind" border="0" src="https://images.gr-assets.com/books/1420585954s/23692271.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Freakonomics: A Rogue Economist Explores the Hidden Side of Everything (Freakonomics, #1)" rel="nofollow" href="https://www.goodreads.com/book/show/1202.Freakonomics"><img alt="Freakonomics: A Rogue Economist Explores the Hidden Side of Everything" border="0" src="https://images.gr-assets.com/books/1327909092s/1202.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Originals: How Non-Conformists Move the World" rel="nofollow" href="https://www.goodreads.com/book/show/25614523-originals"><img alt="Originals: How Non-Conformists Move the World" border="0" src="https://images.gr-assets.com/books/1445791874s/25614523.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Writing My Wrongs" rel="nofollow" href="https://www.goodreads.com/book/show/17789382-writing-my-wrongs"><img alt="Writing My Wrongs" border="0" src="https://images.gr-assets.com/books/1365733280s/17789382.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Team of Teams: The Power of Small Groups in a Fragmented World" rel="nofollow" href="https://www.goodreads.com/book/show/22529127-team-of-teams"><img alt="Team of Teams: The Power of Small Groups in a Fragmented World" border="0" src="https://images.gr-assets.com/books/1435278580s/22529127.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="The Gene: An Intimate History" rel="nofollow" href="https://www.goodreads.com/book/show/27276428-the-gene"><img alt="The Gene: An Intimate History" border="0" src="https://images.gr-assets.com/books/1463591739s/27276428.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Hillbilly Elegy: A Memoir of a Family and Culture in Crisis" rel="nofollow" href="https://www.goodreads.com/book/show/27161156-hillbilly-elegy"><img alt="Hillbilly Elegy: A Memoir of a Family and Culture in Crisis" border="0" src="https://images.gr-assets.com/books/1463569814s/27161156.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Endurance: Shackleton's Incredible Voyage" rel="nofollow" href="https://www.goodreads.com/book/show/139069.Endurance"><img alt="Endurance: Shackleton's Incredible Voyage" border="0" src="https://images.gr-assets.com/books/1391329559s/139069.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="The Industries of the Future" rel="nofollow" href="https://www.goodreads.com/book/show/25111341-the-industries-of-the-future"><img alt="The Industries of the Future" border="0" src="https://images.gr-assets.com/books/1487178301s/25111341.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Delivering Happiness: A Path to Profits, Passion, and Purpose" rel="nofollow" href="https://www.goodreads.com/book/show/6828896-delivering-happiness"><img alt="Delivering Happiness: A Path to Profits, Passion, and Purpose" border="0" src="https://images.gr-assets.com/books/1344267716s/6828896.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Conscious Business: How to Build Value Through Values" rel="nofollow" href="https://www.goodreads.com/book/show/1169674.Conscious_Business"><img alt="Conscious Business: How to Build Value Through Values" border="0" src="https://images.gr-assets.com/books/1348308818s/1169674.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="Born a Crime: Stories From a South African Childhood" rel="nofollow" href="https://www.goodreads.com/book/show/29780253-born-a-crime"><img alt="Born a Crime: Stories From a South African Childhood" border="0" src="https://images.gr-assets.com/books/1473867911s/29780253.jpg" /></a></div>
<div class="gr_grid_book_container"><a title="The Autobiography of Malcolm X" rel="nofollow" href="https://www.goodreads.com/book/show/92057.The_Autobiography_of_Malcolm_X"><img alt="The Autobiography of Malcolm X" border="0" src="https://images.gr-assets.com/books/1434682864s/92057.jpg" /></a></div>
<noscript><br/>Share <a rel="nofollow" href="/">book reviews</a> and ratings with Sarmad, and even join a <a rel="nofollow" href="/group">book club</a> on Goodreads.</noscript>
</div>
</div>
<script src="https://www.goodreads.com/review/grid_widget/53929856.Sarmad's%20to-read%20book%20montage?cover_size=small&hide_link=true&hide_title=&num_books=200&order=a&shelf=to-read&sort=date_added&widget_id=1507112949" type="text/javascript" charset="utf-8"></script>
</div>
</div>
</div>