-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1266 lines (1171 loc) · 43.8 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>
<head>
<meta name="generator" content="Hugo 0.71.1" />
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="shortcut icon" type="image/x-icon" href="https://images.squarespace-cdn.com/content/v1/5b9bb693ee17596d296252c8/1536931572342-K7YSM13C1AGMXQPA39EL/ke17ZwdGBToddI8pDm48kAL5HpF53d-kNBgls1vJjDV7gQa3H78H3Y0txjaiv_0fDoOvxcdMmMKkDsyUqMSsMWxHk725yiiHCCLfrh8O1z5QPOohDIaIeljMHgDF5CVlOqpeNLcJ80NK65_fV7S1UbQAcANts6dy85Auts6ZdfGWFVyD8Wf_BR_e0HHn2jBfG6v6ULRah83RgHXAWD5lbQ/favicon.ico?format=100w"/>
<title>DEVS IN NEPAL VS. THE WORLD (BETA)</title>
<meta name="title" content="DEVS IN NEPAL VS. THE WORLD (BETA)">
<meta name="description" content="This Dashboard allows us to do a comparative study of the coding landscape in Nepal with the rest of the world. The analysis is done by Moonlit Solutions- data science company in Nepal.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://devsinnepal.github.io/">
<meta property="og:title" content="DEVS IN NEPAL VS. THE WORLD (BETA)">
<meta property="og:description" content="This Dashboard allows us to do a comparative study of the coding landscape in Nepal with the rest of the world. The analysis is done by Moonlit Solutions- data science company in Nepal.">
<meta property="og:image" content="/social.jpg">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://devsinnepal.github.io/">
<meta property="twitter:title" content="DEVS IN NEPAL VS. THE WORLD (BETA)">
<meta property="twitter:description" content="This Dashboard allows us to do a comparative study of the coding landscape in Nepal with the rest of the world. The analysis is done by Moonlit Solutions- data science company in Nepal.">
<meta property="twitter:image" content="/social.jpg">
<title>Devs in Nepal vs. The World</title>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/app.css" />
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="https://code.highcharts.com/maps/highmaps.js"></script>
<script src="https://code.highcharts.com/maps/modules/data.js"></script>
<script src="https://code.highcharts.com/maps/modules/exporting.js"></script>
<script src="https://code.highcharts.com/maps/modules/offline-exporting.js"></script>
<script src="https://code.highcharts.com/mapdata/custom/world.js"></script>
<script src="https://code.highcharts.com/stock/highstock.js"></script>
<script src="https://code.highcharts.com/stock/modules/exporting.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="https://code.highcharts.com/stock/highstock.js"></script>
<script src="https://code.highcharts.com/modules/sankey.js"></script>
<script src="https://code.highcharts.com/modules/dependency-wheel.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>
<script src="https://code.highcharts.com/modules/accessibility.js"></script>
<style>
.highcharts-figure, .highcharts-data-table table {
min-width: 320px;
max-width: 800px;
width: 100%;
margin: 1em auto;
}
#container {
height: 500px;
}
.highcharts-data-table table {
font-family: Verdana, sans-serif;
border-collapse: collapse;
border: 1px solid #EBEBEB;
margin: 10px auto;
text-align: center;
width: 100%;
max-width: 500px;
}
.highcharts-data-table caption {
padding: 1em 0;
font-size: 1.2em;
color: #555;
}
.highcharts-data-table th {
font-weight: 600;
padding: 0.5em;
}
.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
padding: 0.5em;
}
.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
background: #f8f8f8;
}
.highcharts-data-table tr:hover {
background: #f1f7ff;
}
#csv {
display: none;
}
</style>
</head>
<body >
<header class="header " id="particles-js">
<div>
<h1 class="header__title">
<svg width="40" height="40" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="code_24px">
<path id="icon/action/code_24px" fill-rule="evenodd" clip-rule="evenodd"
d="M4.8 12L9.4 16.6L8 18L2 12L8 6L9.4 7.4L4.8 12ZM19.2 12L14.6 16.6L16 18L22 12L16 6L14.6 7.4L19.2 12Z"
fill="currentColor"/>
</g>
</svg>
<span class="block">
<b class="header__title-bold-text">
DEVS IN NEPAL
</b>
<span class="block">
VS. THE WORLD
<sup style="color: antiquewhite;">(BETA)</sup>
</span>
</span>
</h1>
</div>
<div class="nav">
<div class="main-menu" id="nav">
<ul class="nav__list">
<li class="is-active" >
<a href="/" class="nav__link">
<svg viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="send_24px">
<path id="icon/content/send_24px" fill-rule="evenodd" clip-rule="evenodd"
d="M8.75 19.6875L2.625 19.6787L10.5 1.3125L18.375 19.6787L12.25 19.6875L10.5 6.5625L8.75 19.6875ZM5.27625 17.9287L8.09375 11.3575L7.21875 17.9375L5.27625 17.9287ZM12.9062 11.3662L15.7238 17.9375L13.7812 17.9375L12.9062 11.3662Z"
fill-opacity="0.54"/>
</g>
</svg>
<span>Overview</span>
</a>
</li>
<li>
<a href="/devsprofile" class="nav__link">
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="group_24px">
<path id="icon/social/group_24px" fill-rule="evenodd" clip-rule="evenodd"
d="M9.00001 12C10.93 12 12.5 10.43 12.5 8.5C12.5 6.57 10.93 5 9.00001 5C7.07001 5 5.50001 6.57 5.50001 8.5C5.50001 10.43 7.07001 12 9.00001 12ZM2 17.25C2 14.92 6.66 13.75 9 13.75C11.34 13.75 16 14.92 16 17.25V19H2V17.25ZM9 15.75C7.21 15.75 5.18 16.42 4.34 17H13.66C12.82 16.42 10.79 15.75 9 15.75ZM10.5 8.5C10.5 7.67 9.82999 7 8.99999 7C8.16999 7 7.49999 7.67 7.49999 8.5C7.49999 9.33 8.16999 10 8.99999 10C9.82999 10 10.5 9.33 10.5 8.5ZM16.04 13.81C17.2 14.65 18 15.77 18 17.25V19H22V17.25C22 15.23 18.5 14.08 16.04 13.81ZM18.5 8.5C18.5 10.43 16.93 12 15 12C14.46 12 13.96 11.87 13.5 11.65C14.13 10.76 14.5 9.67 14.5 8.5C14.5 7.33 14.13 6.24 13.5 5.35C13.96 5.13 14.46 5 15 5C16.93 5 18.5 6.57 18.5 8.5Z"
fill-opacity="0.54"/>
</g>
</svg>
<span>Devs Profile</span>
</a>
</li>
<li>
<a href="/technology" class="nav__link">
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="computer_24px">
<path id="icon/hardware/computer_24px" fill-rule="evenodd" clip-rule="evenodd"
d="M21.99 16C21.99 17.1 21.1 18 20 18H24V20H0V18H4C2.9 18 2 17.1 2 16V6C2 4.9 2.9 4 4 4H20C21.1 4 22 4.9 22 6L21.99 16ZM20 6H4V16H20V6Z"
fill-opacity="0.54"/>
</g>
</svg>
<span>Technology</span>
</a>
</li>
<li>
<a href="/work" class="nav__link">
<svg viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="border_color_24px">
<path id="icon/editor/border_color_24px" fill-rule="evenodd" clip-rule="evenodd"
d="M15.5325 3.03155C15.825 2.73908 15.825 2.26663 15.5325 1.97416L13.7775 0.219341C13.6374 0.0789165 13.4471 0 13.2487 0C13.0504 0 12.8601 0.0789165 12.72 0.219341L11.25 1.68919L14.0625 4.5014L15.5325 3.03155ZM3 9.93834L10.5 2.43911L13.3125 5.25132L5.8125 12.7505H3V9.93834ZM4.5 11.2507H5.19L11.19 5.25132L10.5 4.56139L4.5 10.5608V11.2507ZM18 15.0003H0V18H18V15.0003Z"
fill-opacity="0.54"/>
</g>
</svg>
<span>Work</span>
</a>
</li>
</ul>
</div>
</div>
<div class="burger">
<span></span>
<span></span>
<span></span>
</div>
</header>
<nav class="nav--mobile particles-js2">
<div class="burger">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav__list">
<li class="is-active">
<a href="/" class="nav__link">
<svg viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="send_24px">
<path id="icon/content/send_24px" fill-rule="evenodd" clip-rule="evenodd"
d="M8.75 19.6875L2.625 19.6787L10.5 1.3125L18.375 19.6787L12.25 19.6875L10.5 6.5625L8.75 19.6875ZM5.27625 17.9287L8.09375 11.3575L7.21875 17.9375L5.27625 17.9287ZM12.9062 11.3662L15.7238 17.9375L13.7812 17.9375L12.9062 11.3662Z"
fill-opacity="0.54"/>
</g>
</svg>
<span>Overview</span>
</a>
</li>
<li>
<a href="/devsprofile" class="nav__link">
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="group_24px">
<path id="icon/social/group_24px" fill-rule="evenodd" clip-rule="evenodd"
d="M9.00001 12C10.93 12 12.5 10.43 12.5 8.5C12.5 6.57 10.93 5 9.00001 5C7.07001 5 5.50001 6.57 5.50001 8.5C5.50001 10.43 7.07001 12 9.00001 12ZM2 17.25C2 14.92 6.66 13.75 9 13.75C11.34 13.75 16 14.92 16 17.25V19H2V17.25ZM9 15.75C7.21 15.75 5.18 16.42 4.34 17H13.66C12.82 16.42 10.79 15.75 9 15.75ZM10.5 8.5C10.5 7.67 9.82999 7 8.99999 7C8.16999 7 7.49999 7.67 7.49999 8.5C7.49999 9.33 8.16999 10 8.99999 10C9.82999 10 10.5 9.33 10.5 8.5ZM16.04 13.81C17.2 14.65 18 15.77 18 17.25V19H22V17.25C22 15.23 18.5 14.08 16.04 13.81ZM18.5 8.5C18.5 10.43 16.93 12 15 12C14.46 12 13.96 11.87 13.5 11.65C14.13 10.76 14.5 9.67 14.5 8.5C14.5 7.33 14.13 6.24 13.5 5.35C13.96 5.13 14.46 5 15 5C16.93 5 18.5 6.57 18.5 8.5Z"
fill-opacity="0.54"/>
</g>
</svg>
<span>Devs Profile</span>
</a>
</li>
<li>
<a href="/technology" class="nav__link">
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="computer_24px">
<path id="icon/hardware/computer_24px" fill-rule="evenodd" clip-rule="evenodd"
d="M21.99 16C21.99 17.1 21.1 18 20 18H24V20H0V18H4C2.9 18 2 17.1 2 16V6C2 4.9 2.9 4 4 4H20C21.1 4 22 4.9 22 6L21.99 16ZM20 6H4V16H20V6Z"
fill-opacity="0.54"/>
</g>
</svg>
<span>Technology</span>
</a>
</li>
<li>
<a href="/work" class="nav__link">
<svg viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="border_color_24px">
<path id="icon/editor/border_color_24px" fill-rule="evenodd" clip-rule="evenodd"
d="M15.5325 3.03155C15.825 2.73908 15.825 2.26663 15.5325 1.97416L13.7775 0.219341C13.6374 0.0789165 13.4471 0 13.2487 0C13.0504 0 12.8601 0.0789165 12.72 0.219341L11.25 1.68919L14.0625 4.5014L15.5325 3.03155ZM3 9.93834L10.5 2.43911L13.3125 5.25132L5.8125 12.7505H3V9.93834ZM4.5 11.2507H5.19L11.19 5.25132L10.5 4.56139L4.5 10.5608V11.2507ZM18 15.0003H0V18H18V15.0003Z"
fill-opacity="0.54"/>
</g>
</svg>
<span>Work</span>
</a>
</li>
</ul>
</nav>
<div class="tabs">
<div class="tab-content">
<div class="tab-pane homepage is-active" id="pane-1">
<div class="content">
<div class="flex flex-wrap">
<div class="sidebar">
<div>
<ul class="sidebar__list">
<li class="sidebar__item"><a href="javascript:;" id="1"
class="sidebar__link is-active"><strong>Introduction</strong></a>
</li>
<li class="sidebar__item"><a href="javascript:;" id="2" class="sidebar__link">Collaboration</a>
</li>
<li class="sidebar__item">
<h2 class="sidbar__title">
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><rect fill="none" height="24" width="24"/></g><g><g><path d="M21,8c-1.45,0-2.26,1.44-1.93,2.51l-3.55,3.56c-0.3-0.09-0.74-0.09-1.04,0l-2.55-2.55C12.27,10.45,11.46,9,10,9 c-1.45,0-2.27,1.44-1.93,2.52l-4.56,4.55C2.44,15.74,1,16.55,1,18c0,1.1,0.9,2,2,2c1.45,0,2.26-1.44,1.93-2.51l4.55-4.56 c0.3,0.09,0.74,0.09,1.04,0l2.55,2.55C12.73,16.55,13.54,18,15,18c1.45,0,2.27-1.44,1.93-2.52l3.56-3.55 C21.56,12.26,23,11.45,23,10C23,8.9,22.1,8,21,8z"/><polygon points="15,9 15.94,6.93 18,6 15.94,5.07 15,3 14.08,5.07 12,6 14.08,6.93"/><polygon points="3.5,11 4,9 6,8.5 4,8 3.5,6 3,8 1,8.5 3,9"/></g></g></svg>
Insights
</h2>
</li>
<li class="sidebar__item sidebar__item--insights"><a href="javascript:;" id="3" class="sidebar__link">Nepal is one of the top destination to outsource technology.</a></li>
<li class="sidebar__item"><a href="javascript:;" id="4" class="sidebar__link">The trend of developers participating in StackOverflow Survey from Nepal has increased over the years.</a></li>
<li class="sidebar__item"><a href="javascript:;" id="5" class="sidebar__link">JavaScript and Python are the two most desired language among developers of Nepal. </a></li>
</ul>
</div>
</div>
<div class="tab__content">
<div id="1" class="tab__content-item is-active">
<div class="tab">
<h1 class="header__title">Introduction</h1>
<br/>
<p>
This dashboard facilitates a comparative study of the coding landscape in Nepal with the rest of the world. This tool will help visualize and understand developers, their demographic and geographic profile, motivation, education, coding preference and several other factors.
<br><br>
The survey data has been utilized from <a href="https://stackoverflow.com/" target="_blank">StackOverflow</a>. For almost a decade, StackOverflow’s annual Developer Survey has been the largest survey of people who code around the world.
The survey is taken by nearly 65,000 people in 2020. 242 people participated from Nepal.
</p>
<br>
<p>While Stackoverflow also publishes its analysis on the survey annually, it primarily has a wide focus on aggregated global trends. With this dashboard, <a href="https://moonlit.solutions" target="_blank">Moonlit Solutions</a> puts the spotlight on Nepali software developers and trends in Nepal.</p>
<br><br>
<div id="container" style="height: 500px; width: 100%; margin: 0 auto"></div>
<script>
Highcharts.setOptions({
lang: {
thousandsSep: ""
}
})
Highcharts.getJSON('https://raw.githubusercontent.com/ayushsubedi/flood_analysis/master/data_sources/survey.json', function (data) {
data[145].color = '#ff1493';
Highcharts.mapChart('container', {
chart: {
borderWidth: 0,
map: 'custom/world'
},
title: {
text: 'Stackoverflow Developer Survey 2020 Participants'
},
legend: {
enabled: false
},
mapNavigation: {
enabled: true,
buttonOptions: {
verticalAlign: 'bottom'
}
},
series: [{
name: 'Countries',
color: '#E0E0E0',
enableMouseTracking: false
}, {
type: 'mapbubble',
name: 'Participants',
joinBy: ['iso-a3', 'code3'],
data: data,
minSize: 0,
maxSize: '10%',
tooltip: {
pointFormat: '{point.properties.hc-a2}: {point.z} ',
thousandsSep: ""
}
}]
});
});
</script>
</div>
</div>
<div id="2" class="tab__content-item">
<div class="tab">
<h1 class="header__title">Do you want to collaborate to this project? </h1>
<br/>
<p>
Send us your hypothesis statements, your insights and your analysis on how you went about discovering something relevant to the developers of Nepal. Keep your analysis grounded at the <a href="https://insights.stackoverflow.com/survey" target="_blank">StackOverflow Survey Datasets</a> but feel free to be adventerous with reliable secondary sources.
</p>
<br>
If things look good, we will add your insight here, and credit your contribution.
<br> <br> <br> <br>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSfgCjZptRKcYVkVm2fQY45qrccBmjCnGEzD8rV76oAOrGtjWg/viewform?embedded=true" width="100%" height="677" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
</div>
<div id="3" class="tab__content-item">
<div class="tab">
<br/>
<p>
As we can see in the chart below, the annual median developer remuneration is the lowest in Nepal ($6300). It is still more than 6 times the<a href='https://news.gallup.com/poll/166211/worldwide-median-household-income-000.aspx' target="_blank"> median per capita income in Nepal</a>. Even with fairly low remuneration, productivity is <a href='https://archive.nepalitimes.com/article/Nepali-Times-Buzz/it-is-all-about-it-in-nepal,3887' target="_blank" >notably high</a>. In the last 20 yrs, the quality of technology services these pool of talents can/have built is very close to the international standards.
<br/>
<br/>
The annual median remuneration in the US is $115,000. Broken into hourly pay (40 hours in a week, 52 weeks in a year), a Nepali developer makes $3.03 an hour whereas a developer in the US makes $55.30 an hour. There is a stark difference in the pay between the developers in US vs. Nepal which suggests that there is a great value for employers in outsourcing technology in Nepal. It’s a win-win for both, promotes high-paying growth-oriented jobs for talented Nepali developers and quality service at a lower cost for employers.
<br/>
<br/>
Similar to other countries as well.
</p>
<br><br>
<figure class="highcharts-figure">
<div id="container__@"></div>
</figure>
<script>
Highcharts.chart('container__@', {
chart: {
type: 'column'
},
title: {
text: 'Median Yearly Compensation of Devs',
},
subtitle: {
text: 'Nepal had 242 Stackoverflow survey takers. Countries with less than 200 respondent sample size were filtered for this analysis.'
},
xAxis: {
type: 'category',
labels: {
rotation: -45,
style: {
fontSize: '10px',
fontFamily: 'Verdana, sans-serif'
}
}
},
yAxis: {
min: 0,
title: {
text: 'Median Income'
}
},
legend: {
enabled: false
},
tooltip: {
pointFormat: 'Median compensation: <b>${point.y:.1f}</b>'
},
series: [{
name: 'Income',
data: [['Nepal', 6300.0],
['Pakistan', 6342.0],
['Nigeria', 6588.0],
['Bangladesh', 7068.0],
['Indonesia', 7908.0],
['Philippines', 8292.0],
['Egypt', 8460.0],
['Sri Lanka', 8568.0],
['India', 10056.0],
['Viet Nam', 10344.0],
['Kenya', 10680.0],
['Malaysia', 15276.0],
['Iran', 15672.0],
['Brazil', 17184.0],
['Argentina', 17520.0],
['Colombia', 17652.0],
['Turkey', 17748.0],
['Mexico', 20688.0],
['Greece', 24517.0],
['Serbia', 27528.0],
['Russian Federation', 28304.0],
['Hungary', 28860.0],
['Portugal', 28861.0],
['Bulgaria', 29832.0],
['Romania', 29922.0],
['Ukraine', 30000.0],
['Poland', 33408.0],
['Italy', 35399.0],
['China', 35861.5],
['South Africa', 37494.0],
['Spain', 38915.0],
['Czech Republic', 38976.0],
['South Korea', 40242.5],
['Belgium', 45396.0],
['France', 46482.0],
['Austria', 51888.0],
['Japan', 53957.0],
['Sweden', 54000.0],
['Singapore', 57372.0],
['Finland', 57506.0],
['Netherlands', 58368.0],
['Germany', 62697.0],
['New Zealand', 63890.0],
['United Kingdom', 67215.0],
['Canada', 68068.0],
['Ireland', 75669.0],
['Australia', 76831.0],
['Norway', 80922.0],
['Denmark', 81624.0],
['Israel', 98064.0],
['Switzerland', 98599.0],
['United States', 115000.0]],
}]
});
</script>
</div>
</div>
<div id="4" class="tab__content-item">
<p class="highcharts-description" >
This implies growing popularity of Stackoverflow among the developers and a possibility of more inclusive and accurate results.
<br><br>
In the trend below, a certain spike is seen during 2018. However, the number is not largely deviated. Considering, 2018 as an outlier, we can see a growing trend.
</p>
</br>
</br>
<figure class="highcharts-figure">
<div id="container_dev_trend" ></div>
</figure>
<script>
Highcharts.chart('container_dev_trend', {
title: {
text: 'Trend of Nepali Developers participating in the survey '
},
yAxis: {
title: {
text: 'Survey Takers'
}
},
xAxis: {
title: {
text: 'Year'
}
},
plotOptions: {
series: {
label: {
connectorAllowed: false
},
pointStart: 2011
}
},
series: [{
name: 'Survey takers',
showInLegend: false,
data: [0, 0, 0, 6, 29, 66, 125, 295, 237, 242]
}],
});
</script>
</div>
<div id="5" class="tab__content-item">
<div class="tab">
<!DOCTYPE html>
<style>
body {
font-family: "Open Sans", sans-serif;
line-height: 1.25;
}
table {
border: 1px solid #ccc;
border-collapse: collapse;
margin: 0;
padding: 0;
width: 100%;
table-layout: fixed;
}
table caption {
font-size: 1.5em;
margin: .5em 0 .75em;
}
table tr {
background-color: #f8f8f8;
border: 1px solid #ddd;
padding: .35em;
}
table th,
table td {
padding: .625em;
text-align: center;
}
table th {
font-size: .85em;
letter-spacing: .1em;
text-transform: uppercase;
}
@media screen and (max-width: 600px) {
table {
border: 0;
}
table caption {
font-size: 1.3em;
}
table thead {
border: none;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
table tr {
border-bottom: 3px solid #ddd;
display: block;
margin-bottom: .625em;
}
table td {
border-bottom: 1px solid #ddd;
display: block;
font-size: .8em;
text-align: right;
}
table td::before {
content: attr(data-label);
float: left;
font-weight: bold;
text-transform: uppercase;
}
table td:last-child {
border-bottom: 0;
}
}
</style>
<figure class="highcharts-figure">
<div id="container_wheel"></div>
<p class="highcharts-description">
</p>
</figure>
<br>
<p>The chart maps the flow of programming languages currently used by developers of Nepal and the language they desire to work in future.</p>
<br>
<table>
<thead>
<tr>
<th scope="col">Currently used Language</th>
<th scope="col">Desired Language </th>
<th scope="col">Number of Developers</th>
</tr>
</thead>
<tbody>
<tr>
<td data-label="Currently used Language">HTML/CSS</td>
<td data-label="Desired Language">JavaScript</td>
<td data-label="Number of Developers">86</td>
</tr>
<tr>
<td scope="row" data-label="Currently used Language">JavaScript</td>
<td data-label="Desired Language">Python</td>
<td data-label="Number of Developers">83</td>
</tr>
<tr>
<td scope="row" data-label="Currently used Language">HTML/CSS</td>
<td data-label="Desired Language">Python</td>
<td data-label="Number of Developers">82</td>
</tr>
<tr>
<td scope="row" data-label="Currently used Language">SQL</td>
<td data-label="Desired Language">Python</td>
<td data-label="Number of Developers">62</td>
</tr>
</tbody>
</table>
<br>
<p>
This analysis also shows that most of the developers are currently familiar with HTML/CSS . However, most developers desire to learn JavaScript in future.
<br>
<br>
Furthermore, most developers who have worked with
JavaScript and HTML/CSS desire to learn Python indicating its popularity amongst the community too.
</p>
<script>
Highcharts.chart('container_wheel', {
title: {
text: ''
},
accessibility: {
point: {
valueDescriptionFormat: '{index}. From {point.from} to {point.to}: {point.weight}.'
}
},
series: [{
keys: ['from', 'to', 'weight'],
data: [['Assembly', 'Assembly', 1],
['Assembly', 'VBA', 1],
['Assembly', 'TypeScript', 2],
['Assembly', 'Dart', 5],
['Assembly', 'Haskell', 3],
['Assembly', 'C++', 3],
['Assembly', 'C#', 1],
['Assembly', 'Rust', 4],
['Assembly', 'Java', 3],
['Assembly', 'Go', 4],
['Assembly', 'Swift', 2],
['Assembly', 'Kotlin', 3],
['Assembly', 'C', 2],
['Assembly', 'Python', 8],
['Assembly', 'Ruby', 3],
['Assembly', 'Objective-C', 2],
['Assembly', 'Bash/Shell/PowerShell', 2],
['Assembly', 'JavaScript', 7],
['Assembly', 'HTML/CSS', 4],
['Assembly', 'SQL', 2],
['Assembly', 'PHP', 5],
['Assembly', 'R', 2],
['VBA', 'TypeScript', 2],
['VBA', 'Dart', 4],
['VBA', 'Haskell', 2],
['VBA', 'Rust', 3],
['VBA', 'Java', 1],
['VBA', 'Go', 1],
['VBA', 'Kotlin', 3],
['VBA', 'Python', 2],
['VBA', 'Ruby', 1],
['VBA', 'Objective-C', 1],
['VBA', 'Bash/Shell/PowerShell', 2],
['VBA', 'JavaScript', 2],
['VBA', 'HTML/CSS', 1],
['VBA', 'SQL', 2],
['VBA', 'PHP', 2],
['VBA', 'R', 1],
['TypeScript', 'Assembly', 1],
['TypeScript', 'TypeScript', 34],
['TypeScript', 'Dart', 10],
['TypeScript', 'Haskell', 5],
['TypeScript', 'C++', 10],
['TypeScript', 'C#', 9],
['TypeScript', 'Rust', 13],
['TypeScript', 'Java', 14],
['TypeScript', 'Go', 18],
['TypeScript', 'Swift', 3],
['TypeScript', 'Kotlin', 10],
['TypeScript', 'C', 4],
['TypeScript', 'Python', 25],
['TypeScript', 'Ruby', 6],
['TypeScript', 'Objective-C', 1],
['TypeScript', 'Bash/Shell/PowerShell', 17],
['TypeScript', 'JavaScript', 28],
['TypeScript', 'HTML/CSS', 22],
['TypeScript', 'SQL', 21],
['TypeScript', 'PHP', 7],
['TypeScript', 'R', 4],
['Dart', 'TypeScript', 5],
['Dart', 'Dart', 12],
['Dart', 'C#', 6],
['Dart', 'Rust', 2],
['Dart', 'Java', 6],
['Dart', 'Go', 5],
['Dart', 'Swift', 7],
['Dart', 'Kotlin', 6],
['Dart', 'C', 2],
['Dart', 'Python', 13],
['Dart', 'Ruby', 2],
['Dart', 'Objective-C', 1],
['Dart', 'Bash/Shell/PowerShell', 1],
['Dart', 'JavaScript', 10],
['Dart', 'HTML/CSS', 8],
['Dart', 'SQL', 8],
['Dart', 'PHP', 5],
['Dart', 'R', 1],
['Haskell', 'Swift', 1],
['Haskell', 'Python', 1],
['Haskell', 'R', 1],
['C++', 'Assembly', 2],
['C++', 'VBA', 3],
['C++', 'TypeScript', 23],
['C++', 'Dart', 20],
['C++', 'Haskell', 4],
['C++', 'C++', 14],
['C++', 'C#', 15],
['C++', 'Rust', 13],
['C++', 'Java', 25],
['C++', 'Go', 15],
['C++', 'Swift', 12],
['C++', 'Kotlin', 12],
['C++', 'C', 10],
['C++', 'Python', 44],
['C++', 'Ruby', 13],
['C++', 'Objective-C', 4],
['C++', 'Bash/Shell/PowerShell', 11],
['C++', 'JavaScript', 46],
['C++', 'HTML/CSS', 35],
['C++', 'SQL', 28],
['C++', 'PHP', 17],
['C++', 'R', 11],
['C#', 'Assembly', 1],
['C#', 'VBA', 2],
['C#', 'TypeScript', 16],
['C#', 'Dart', 10],
['C#', 'Haskell', 6],
['C#', 'C++', 6],
['C#', 'C#', 21],
['C#', 'Rust', 11],
['C#', 'Java', 12],
['C#', 'Go', 13],
['C#', 'Swift', 9],
['C#', 'Kotlin', 10],
['C#', 'C', 3],
['C#', 'Python', 27],
['C#', 'Ruby', 10],
['C#', 'Objective-C', 4],
['C#', 'Bash/Shell/PowerShell', 8],
['C#', 'JavaScript', 25],
['C#', 'HTML/CSS', 20],
['C#', 'SQL', 16],
['C#', 'PHP', 7],
['C#', 'R', 7],
['Rust', 'Assembly', 1],
['Rust', 'TypeScript', 4],
['Rust', 'Dart', 2],
['Rust', 'Haskell', 1],
['Rust', 'C++', 2],
['Rust', 'C#', 1],
['Rust', 'Rust', 5],
['Rust', 'Go', 4],
['Rust', 'Swift', 1],
['Rust', 'Kotlin', 2],
['Rust', 'C', 2],
['Rust', 'Python', 4],
['Rust', 'Ruby', 1],
['Rust', 'Bash/Shell/PowerShell', 3],
['Rust', 'JavaScript', 2],
['Rust', 'HTML/CSS', 2],
['Rust', 'SQL', 2],
['Java', 'Assembly', 1],
['Java', 'VBA', 1],
['Java', 'TypeScript', 29],
['Java', 'Dart', 19],
['Java', 'Haskell', 6],
['Java', 'C++', 10],
['Java', 'C#', 17],
['Java', 'Rust', 13],
['Java', 'Java', 45],
['Java', 'Go', 22],
['Java', 'Swift', 15],
['Java', 'Kotlin', 21],
['Java', 'C', 8],
['Java', 'Python', 53],
['Java', 'Ruby', 15],
['Java', 'Objective-C', 4],
['Java', 'Bash/Shell/PowerShell', 14],
['Java', 'JavaScript', 54],
['Java', 'HTML/CSS', 33],
['Java', 'SQL', 33],
['Java', 'PHP', 16],
['Java', 'R', 13],
['Go', 'TypeScript', 2],
['Go', 'Dart', 2],
['Go', 'C++', 1],
['Go', 'Rust', 3],
['Go', 'Java', 3],
['Go', 'Go', 7],
['Go', 'Swift', 2],
['Go', 'Kotlin', 2],
['Go', 'C', 1],
['Go', 'Python', 3],
['Go', 'Ruby', 2],
['Go', 'Objective-C', 1],
['Go', 'Bash/Shell/PowerShell', 1],
['Go', 'JavaScript', 5],
['Go', 'SQL', 3],
['Go', 'PHP', 2],
['Swift', 'TypeScript', 1],
['Swift', 'Dart', 2],
['Swift', 'Haskell', 1],
['Swift', 'C++', 1],
['Swift', 'Rust', 1],
['Swift', 'Java', 3],
['Swift', 'Go', 3],
['Swift', 'Swift', 4],
['Swift', 'Kotlin', 3],
['Swift', 'Python', 5],
['Swift', 'Ruby', 2],
['Swift', 'Objective-C', 1],
['Swift', 'Bash/Shell/PowerShell', 1],
['Swift', 'JavaScript', 4],
['Swift', 'HTML/CSS', 2],
['Swift', 'SQL', 3],
['Swift', 'PHP', 2],
['Swift', 'R', 1],
['Kotlin', 'TypeScript', 3],
['Kotlin', 'Dart', 6],
['Kotlin', 'Haskell', 2],
['Kotlin', 'C#', 3],
['Kotlin', 'Rust', 3],
['Kotlin', 'Java', 6],
['Kotlin', 'Go', 7],
['Kotlin', 'Swift', 4],
['Kotlin', 'Kotlin', 6],
['Kotlin', 'C', 1],
['Kotlin', 'Python', 8],
['Kotlin', 'Ruby', 2],
['Kotlin', 'Objective-C', 1],
['Kotlin', 'Bash/Shell/PowerShell', 2],
['Kotlin', 'JavaScript', 5],
['Kotlin', 'HTML/CSS', 3],
['Kotlin', 'SQL', 4],
['Kotlin', 'PHP', 2],
['Kotlin', 'R', 1],
['C', 'Assembly', 2],
['C', 'VBA', 3],
['C', 'TypeScript', 21],
['C', 'Dart', 21],
['C', 'Haskell', 6],
['C', 'C++', 17],
['C', 'C#', 15],
['C', 'Rust', 13],
['C', 'Java', 32],
['C', 'Go', 18],
['C', 'Swift', 12],
['C', 'Kotlin', 16],
['C', 'C', 13],
['C', 'Python', 54],
['C', 'Ruby', 18],
['C', 'Objective-C', 5],
['C', 'Bash/Shell/PowerShell', 12],
['C', 'JavaScript', 48],
['C', 'HTML/CSS', 40],
['C', 'SQL', 32],
['C', 'PHP', 20],
['C', 'R', 13],
['Python', 'Assembly', 2],
['Python', 'VBA', 1],
['Python', 'TypeScript', 23],
['Python', 'Dart', 17],
['Python', 'Haskell', 6],
['Python', 'C++', 16],
['Python', 'C#', 15],
['Python', 'Rust', 17],
['Python', 'Java', 30],
['Python', 'Go', 26],
['Python', 'Swift', 9],
['Python', 'Kotlin', 10],
['Python', 'C', 11],
['Python', 'Python', 59],
['Python', 'Ruby', 15],
['Python', 'Objective-C', 3],
['Python', 'Bash/Shell/PowerShell', 16],
['Python', 'JavaScript', 44],
['Python', 'HTML/CSS', 32],
['Python', 'SQL', 34],
['Python', 'PHP', 16],
['Python', 'R', 15],
['Ruby', 'TypeScript', 1],
['Ruby', 'Dart', 2],
['Ruby', 'Haskell', 1],
['Ruby', 'C#', 1],
['Ruby', 'Rust', 1],
['Ruby', 'Java', 3],
['Ruby', 'Go', 5],
['Ruby', 'Swift', 2],
['Ruby', 'Kotlin', 1],
['Ruby', 'C', 1],
['Ruby', 'Python', 4],
['Ruby', 'Ruby', 5],
['Ruby', 'Objective-C', 1],
['Ruby', 'Bash/Shell/PowerShell', 2],
['Ruby', 'JavaScript', 5],
['Ruby', 'HTML/CSS', 3],
['Ruby', 'SQL', 4],
['Ruby', 'PHP', 2],
['Ruby', 'R', 2],
['Objective-C', 'TypeScript', 2],
['Objective-C', 'Dart', 3],
['Objective-C', 'Haskell', 1],
['Objective-C', 'C#', 1],
['Objective-C', 'Rust', 1],
['Objective-C', 'Java', 3],
['Objective-C', 'Go', 4],
['Objective-C', 'Swift', 2],
['Objective-C', 'Kotlin', 2],
['Objective-C', 'Python', 4],
['Objective-C', 'Ruby', 3],
['Objective-C', 'Objective-C', 1],
['Objective-C', 'Bash/Shell/PowerShell', 1],
['Objective-C', 'JavaScript', 5],
['Objective-C', 'HTML/CSS', 3],
['Objective-C', 'SQL', 2],
['Objective-C', 'PHP', 3],
['Objective-C', 'R', 2],
['Bash/Shell/PowerShell', 'Assembly', 2],
['Bash/Shell/PowerShell', 'VBA', 1],
['Bash/Shell/PowerShell', 'TypeScript', 15],
['Bash/Shell/PowerShell', 'Dart', 10],
['Bash/Shell/PowerShell', 'Haskell', 5],
['Bash/Shell/PowerShell', 'C++', 7],
['Bash/Shell/PowerShell', 'C#', 4],
['Bash/Shell/PowerShell', 'Rust', 12],
['Bash/Shell/PowerShell', 'Java', 11],
['Bash/Shell/PowerShell', 'Go', 16],
['Bash/Shell/PowerShell', 'Swift', 2],
['Bash/Shell/PowerShell', 'Kotlin', 6],
['Bash/Shell/PowerShell', 'C', 5],
['Bash/Shell/PowerShell', 'Python', 24],
['Bash/Shell/PowerShell', 'Ruby', 7],