-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearching_the_linux_filesystem
3062 lines (2956 loc) · 122 KB
/
searching_the_linux_filesystem
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
george@staembed01:~/Documents/New_Directory$ locate adduser
/etc/adduser.conf
/snap/atom/247/usr/share/atom/resources/app/apm/node_modules/npm/lib/adduser.js
/snap/atom/247/usr/share/atom/resources/app/apm/node_modules/npm/node_modules/npm-registry-client/lib/adduser.js
/snap/atom/248/usr/share/atom/resources/app/apm/node_modules/npm/lib/adduser.js
/snap/atom/248/usr/share/atom/resources/app/apm/node_modules/npm/node_modules/npm-registry-client/lib/adduser.js
/snap/core/8689/etc/adduser.conf
/snap/core/8689/usr/sbin/adduser
/snap/core/8689/usr/share/adduser
/snap/core/8689/usr/share/adduser/adduser.conf
/snap/core/8689/usr/share/doc/adduser
/snap/core/8689/usr/share/doc/adduser/changelog.gz
/snap/core/8689/usr/share/doc/adduser/copyright.gz
/snap/core/8689/usr/share/doc/adduser/examples
/snap/core/8689/usr/share/doc/adduser/examples/adduser.local.conf.examples
/snap/core/8935/etc/adduser.conf
/snap/core/8935/usr/sbin/adduser
/snap/core/8935/usr/share/adduser
/snap/core/8935/usr/share/adduser/adduser.conf
/snap/core/8935/usr/share/doc/adduser
/snap/core/8935/usr/share/doc/adduser/changelog.gz
/snap/core/8935/usr/share/doc/adduser/copyright.gz
/snap/core/8935/usr/share/doc/adduser/examples
/snap/core/8935/usr/share/doc/adduser/examples/adduser.local.conf.examples
/snap/core18/1668/etc/adduser.conf
/snap/core18/1668/usr/sbin/adduser
/snap/core18/1668/usr/share/adduser
/snap/core18/1668/usr/share/adduser/adduser.conf
/snap/core18/1668/usr/share/doc/adduser
/snap/core18/1668/usr/share/doc/adduser/copyright
/snap/core18/1668/usr/share/doc/adduser/examples
/snap/core18/1668/usr/share/doc/adduser/examples/adduser.local.conf.examples
/snap/core18/1668/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel
/snap/core18/1668/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel.other
/snap/core18/1705/etc/adduser.conf
/snap/core18/1705/usr/sbin/adduser
/snap/core18/1705/usr/share/adduser
/snap/core18/1705/usr/share/adduser/adduser.conf
/snap/core18/1705/usr/share/doc/adduser
/snap/core18/1705/usr/share/doc/adduser/copyright
/snap/core18/1705/usr/share/doc/adduser/examples
/snap/core18/1705/usr/share/doc/adduser/examples/adduser.local.conf.examples
/snap/core18/1705/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel
/snap/core18/1705/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel.other
/usr/sbin/adduser
/usr/share/adduser
/usr/share/adduser/adduser.conf
/usr/share/doc/adduser
/usr/share/doc/adduser/TODO
/usr/share/doc/adduser/changelog.gz
/usr/share/doc/adduser/copyright
/usr/share/doc/adduser/examples
/usr/share/doc/adduser/examples/INSTALL
/usr/share/doc/adduser/examples/README.gz
/usr/share/doc/adduser/examples/adduser.local
/usr/share/doc/adduser/examples/adduser.local.conf
/usr/share/doc/adduser/examples/adduser.local.conf.examples
/usr/share/doc/adduser/examples/adduser.local.conf.examples/adduser.conf
/usr/share/doc/adduser/examples/adduser.local.conf.examples/bash.bashrc
/usr/share/doc/adduser/examples/adduser.local.conf.examples/profile
/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel
/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel.other
/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bash_logout
/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bash_profile
/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel/dot.bashrc
/usr/share/doc/adduser/examples/adduser.local.conf.examples/skel.other/index.html
/usr/share/locale-langpack/en_AU/LC_MESSAGES/adduser.mo
/usr/share/locale-langpack/en_CA/LC_MESSAGES/adduser.mo
/usr/share/locale-langpack/en_GB/LC_MESSAGES/adduser.mo
/usr/share/locale-langpack/en_US/LC_MESSAGES/adduser.mo
/usr/share/man/da/man5/adduser.conf.5.gz
/usr/share/man/da/man8/adduser.8.gz
/usr/share/man/de/man5/adduser.conf.5.gz
/usr/share/man/de/man8/adduser.8.gz
/usr/share/man/es/man5/adduser.conf.5.gz
/usr/share/man/es/man8/adduser.8.gz
/usr/share/man/fr/man5/adduser.conf.5.gz
/usr/share/man/fr/man8/adduser.8.gz
/usr/share/man/it/man5/adduser.conf.5.gz
/usr/share/man/it/man8/adduser.8.gz
/usr/share/man/man5/adduser.conf.5.gz
/usr/share/man/man8/adduser.8.gz
/usr/share/man/pl/man5/adduser.conf.5.gz
/usr/share/man/pl/man8/adduser.8.gz
/usr/share/man/pt/man5/adduser.conf.5.gz
/usr/share/man/pt/man8/adduser.8.gz
/usr/share/man/ru/man5/adduser.conf.5.gz
/usr/share/man/ru/man8/adduser.8.gz
/usr/share/man/sv/man5/adduser.conf.5.gz
/usr/share/man/sv/man8/adduser.8.gz
/var/lib/dpkg/info/adduser.conffiles
/var/lib/dpkg/info/adduser.config
/var/lib/dpkg/info/adduser.list
/var/lib/dpkg/info/adduser.md5sums
/var/lib/dpkg/info/adduser.postinst
/var/lib/dpkg/info/adduser.postrm
/var/lib/dpkg/info/adduser.templates
george@staembed01:~/Documents/New_Directory$ sudo updatedb
[sudo] password for george:
george@staembed01:~/Documents/New_Directory$ cat etc/group | grep ubuntu
cat: etc/group: No such file or directory
george@staembed01:~/Documents/New_Directory$ cat /etc/group
root:x:0:
daemon:x:1:
bin:x:2:
sys:x:3:
adm:x:4:syslog,george
tty:x:5:
disk:x:6:
lp:x:7:
mail:x:8:
news:x:9:
uucp:x:10:
man:x:12:
proxy:x:13:
kmem:x:15:
dialout:x:20:
fax:x:21:
voice:x:22:
cdrom:x:24:george
floppy:x:25:
tape:x:26:
sudo:x:27:george
audio:x:29:pulse
dip:x:30:george
www-data:x:33:
backup:x:34:
operator:x:37:
list:x:38:
irc:x:39:
src:x:40:
gnats:x:41:
shadow:x:42:
utmp:x:43:
video:x:44:
sasl:x:45:
plugdev:x:46:george
staff:x:50:
games:x:60:
users:x:100:
nogroup:x:65534:
systemd-journal:x:101:
systemd-network:x:102:
systemd-resolve:x:103:
input:x:104:
crontab:x:105:
syslog:x:106:
messagebus:x:107:
netdev:x:108:
mlocate:x:109:
ssl-cert:x:110:
uuidd:x:111:
avahi-autoipd:x:112:
bluetooth:x:113:
rtkit:x:114:
ssh:x:115:
lpadmin:x:116:george
whoopsie:x:117:
scanner:x:118:saned
saned:x:119:
pulse:x:120:
pulse-access:x:121:
avahi:x:122:
colord:x:123:
geoclue:x:124:
gdm:x:125:
george:x:1000:
sambashare:x:126:george
vboxsf:x:999:
sddm:x:127:
lxd:x:128:george
george@staembed01:~/Documents/New_Directory$ cat /etc/group | grep ubuntu
george@staembed01:~/Documents/New_Directory$ cat /etc/group | grep george
adm:x:4:syslog,george
cdrom:x:24:george
sudo:x:27:george
dip:x:30:george
plugdev:x:46:george
lpadmin:x:116:george
george:x:1000:
sambashare:x:126:george
lxd:x:128:george
george@staembed01:~/Documents/New_Directory$ cat /etc/group | grep george >> myfile
george@staembed01:~/Documents/New_Directory$ ls
file1 file2 file3 file4 file6 myfile New_Dir
george@staembed01:~/Documents/New_Directory$ cat myfile
adm:x:4:syslog,george
cdrom:x:24:george
sudo:x:27:george
dip:x:30:george
plugdev:x:46:george
lpadmin:x:116:george
george:x:1000:
sambashare:x:126:george
lxd:x:128:george
george@staembed01:~/Documents/New_Directory$ cat /etc/group | grep george >file1
george@staembed01:~/Documents/New_Directory$ ls
file1 file2 file3 file4 file6 myfile New_Dir
george@staembed01:~/Documents/New_Directory$ cat fileq
cat: fileq: No such file or directory
george@staembed01:~/Documents/New_Directory$ cat file1
adm:x:4:syslog,george
cdrom:x:24:george
sudo:x:27:george
dip:x:30:george
plugdev:x:46:george
lpadmin:x:116:george
george:x:1000:
sambashare:x:126:george
lxd:x:128:george
george@staembed01:~/Documents/New_Directory$ head /etc/group
root:x:0:
daemon:x:1:
bin:x:2:
sys:x:3:
adm:x:4:syslog,george
tty:x:5:
disk:x:6:
lp:x:7:
mail:x:8:
news:x:9:
george@staembed01:~/Documents/New_Directory$ ls /etc/
acpi debian_version hp machine-id popularity-contest.conf subgid-
adduser.conf default ifplugd magic ppp subuid
alternatives deluser.conf ImageMagick-6 magic.mime profile subuid-
anacrontab depmod.d init mailcap profile.d sudoers
apache2 dhcp init.d mailcap.order protocols sudoers.d
apg.conf dictionaries-common initramfs-tools manpath.config pulse sysctl.conf
apm dnsmasq.d inputrc mc python2.7 sysctl.d
apparmor dnsmasq.d-available insserv.conf.d mime.types python3 systemd
apparmor.d dpkg iproute2 mke2fs.conf python3.6 terminfo
apport emacs issue modprobe.d rc0.d thermald
appstream.conf environment issue.net modules rc1.d thunderbird
apt ethertypes java-11-openjdk modules-load.d rc2.d timezone
avahi firefox java-8-openjdk mtab rc3.d tmpfiles.d
bash.bashrc fonts kernel mtools.conf rc4.d ucf.conf
bash_completion fstab kernel-img.conf mysql rc5.d udev
bash_completion.d fuse.conf kerneloops.conf nanorc rc6.d udisks2
bindresvport.blacklist fwupd ksysguarddrc netbeans.clusters rcS.d ufw
binfmt.d gai.conf ldap netbeans.conf resolvconf updatedb.conf
bluetooth gconf ld.so.cache netbeans.import resolv.conf update-manager
brlapi.key gdb ld.so.conf netplan rmt update-motd.d
brltty gdm3 ld.so.conf.d network rpc update-notifier
brltty.conf geoclue legal networkd-dispatcher rsyslog.conf UPower
ca-certificates ghostscript libao.conf NetworkManager rsyslog.d usb_modeswitch.conf
ca-certificates.conf glvnd libaudit.conf networks sane.d usb_modeswitch.d
calendar gnome libblockdev newt sddm vdpau_wrapper.cfg
catdocrc groff libnl-3 nsswitch.conf securetty vim
chatscripts group libpaper.d opt security vtrgb
console-setup group- libreoffice os-release selinux wgetrc
cracklib grub.d lighttpd PackageKit sensors3.conf whoopsie
cron.d gshadow lintianrc pam.conf sensors.d wpa_supplicant
cron.daily gshadow- locale.alias pam.d services X11
cron.hourly gss locale.gen papersize sgml xdg
cron.monthly gtk-2.0 localtime passwd shadow xml
crontab gtk-3.0 logcheck passwd- shadow- zsh_command_not_found
cron.weekly hdparm.conf login.defs pcmcia shells zutilsrc
cups host.conf logrotate.conf perl skel
cupshelpers hostname logrotate.d pki speech-dispatcher
dbus-1 hosts lsb-release pm ssh
dconf hosts.allow ltrace.conf pnm2ppa.conf ssl
debconf.conf hosts.deny lvm polkit-1 subgid
george@staembed01:~/Documents/New_Directory$ head /etc/group
root:x:0:
daemon:x:1:
bin:x:2:
sys:x:3:
adm:x:4:syslog,george
tty:x:5:
disk:x:6:
lp:x:7:
mail:x:8:
news:x:9:
george@staembed01:~/Documents/New_Directory$ tail /etc/group/
tail: cannot open '/etc/group/' for reading: Not a directory
george@staembed01:~/Documents/New_Directory$ tail /etc/group
pulse-access:x:121:
avahi:x:122:
colord:x:123:
geoclue:x:124:
gdm:x:125:
george:x:1000:
sambashare:x:126:george
vboxsf:x:999:
sddm:x:127:
lxd:x:128:george
george@staembed01:~/Documents/New_Directory$ cut -d: -f4 /etc/group
syslog,george
george
george
pulse
george
george
george
saned
george
george
george@staembed01:~/Documents/New_Directory$ cut -d: -f3 /etc/group | sort -n
0
1
2
3
4
5
6
7
8
9
10
12
13
15
20
21
22
24
25
26
27
29
30
33
34
37
38
39
40
41
42
43
44
45
46
50
60
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
999
1000
65534
george@staembed01:~/Documents/New_Directory$ cut -d: -f3 /etc/group | sort -rn
65534
1000
999
128
127
126
125
124
123
122
121
120
119
118
117
116
115
114
113
112
111
110
109
108
107
106
105
104
103
102
101
100
60
50
46
45
44
43
42
41
40
39
38
37
34
33
30
29
27
26
25
24
22
21
20
15
13
12
10
9
8
7
6
5
4
3
2
1
0
george@staembed01:~/Documents/New_Directory$ wc /etc/group
69 69 975 /etc/group
george@staembed01:~/Documents/New_Directory$ echo "Hello, World!"
Hello, World!
george@staembed01:~/Documents/New_Directory$ echo "Hello, World!" >> file2
george@staembed01:~/Documents/New_Directory$ ls
file1 file2 file3 file4 file6 myfile New_Dir
george@staembed01:~/Documents/New_Directory$ cat file2
Hello, World!
george@staembed01:~/Documents/New_Directory$ echo "Hello, World!" 1>file3
george@staembed01:~/Documents/New_Directory$ ls
file1 file2 file3 file4 file6 myfile New_Dir
george@staembed01:~/Documents/New_Directory$ cat file3
Hello, World!
george@staembed01:~/Documents/New_Directory$ echo "You suck!" stdout>file4
george@staembed01:~/Documents/New_Directory$ ls
file1 file2 file3 file4 file6 myfile New_Dir
george@staembed01:~/Documents/New_Directory$ cat file4
You suck! stdout
george@staembed01:~/Documents/New_Directory$ wget pluralsight.com
--2020-04-13 13:56:21-- http://pluralsight.com/
Resolving pluralsight.com (pluralsight.com)... 54.148.56.39, 35.165.144.200, 35.165.141.199
Connecting to pluralsight.com (pluralsight.com)|54.148.56.39|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://www.pluralsight.com:443/ [following]
--2020-04-13 13:56:21-- https://www.pluralsight.com/
Resolving www.pluralsight.com (www.pluralsight.com)... 104.19.161.127, 104.19.162.127, 2606:4700::6813:a27f, ...
Connecting to www.pluralsight.com (www.pluralsight.com)|104.19.161.127|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘index.html’
index.html [ <=> ] 106,36K --.-KB/s in 0,005s
2020-04-13 13:56:22 (21,1 MB/s) - ‘index.html’ saved [108909]
george@staembed01:~/Documents/New_Directory$ ls
file1 file2 file3 file4 file6 index.html myfile New_Dir
george@staembed01:~/Documents/New_Directory$ cat index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="appRedirectPath" content="/id/dashboard" />
<meta name="keywords">
<meta name="description" content="Stay Home! Skill Up! Get FREE access to 7,000+ Pluralsight courses during the month of April. THE technology skills platform with expert-led, online courses for web development, IT training and more! Start learning today!">
<meta property="og:description" content="Stay Home! Skill Up! Get FREE access to 7,000+ Pluralsight courses during the month of April. THE technology skills platform with expert-led, online courses for web development, IT training and more! Start learning today!">
<meta name="twitter:description" content="Stay Home! Skill Up! Get FREE access to 7,000+ Pluralsight courses during the month of April. THE technology skills platform with expert-led, online courses for web development, IT training and more! Start learning today!">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@pluralsight" />
<meta property="og:image" content="https://www.pluralsight.com/content/pluralsight/en/jcr:content/image-res/file.transform/share-image/image.img.83b5f52b-38f5-4b8a-ae2e-f393d9a11f38.jpg" />
<meta name="twitter:image" content="https://www.pluralsight.com/content/pluralsight/en/jcr:content/image-res/file.transform/share-image/image.img.83b5f52b-38f5-4b8a-ae2e-f393d9a11f38.jpg" />
<meta name="robots" content="index, follow">
<meta name="content-type" content="Page" />
<meta name="categories" content="page" />
<meta name="cludo:category" content="page" />
<link rel="canonical" href="https://www.pluralsight.com" />
<script data-cfasync="false">window.wcmmodedisabled = true;</script>
<script type="text/javascript" async defer src="//api7831.d41.co/sync/"></script>
<script type="text/javascript" src="//cdn-0.d41.co/tags/dnb_coretag_v4.min.js"></script>
<script data-cfasync="false">
function getParameterByName(e,n){n||(n=window.location.href),e=e.replace(/[\[\]]/g,"\\$&");var o=new RegExp("[?&]"+e+"(=([^&#]*)|&|#|$)").exec(n);return o&&o[2]?decodeURIComponent(o[2].replace(/\+/g," ")):""}function changeHistoryQueryParam(e,n,o,t,a){if(history.pushState){var i=""==window.location.search?"?":window.location.search;if(-1!==decodeURIComponent(i).indexOf(e+"=")){var d=getParameterByName(e);if(t)if(o){var c=(p=d.split(",")).indexOf(n);if(c>-1&&p.splice(c,1),0===p.length){var r=new RegExp("&?"+e+"=[^&]*","g");i=i.replace(r,"")}else i=i.replace(e+"="+encodeURIComponent(d),e+"="+encodeURIComponent(p.join(",")))}else{var p=[];d?p=d.split(","):d="",-1===p.indexOf(n)&&(p.push(n),i=i.replace(e+"="+encodeURIComponent(d),e+"="+encodeURIComponent(p.join(","))))}else if(o){r=new RegExp("&?"+e+"=[^&]*","g");i=i.replace(r,"")}else i=i.replace(e+"="+encodeURIComponent(d),e+"="+encodeURIComponent(n))}else o||(i+="?"==i?e+"="+encodeURIComponent(n):"&"+e+"="+encodeURIComponent(n));var s=window.location.protocol+"//"+window.location.host+window.location.pathname+(a?decodeURIComponent(i):i);window.history.pushState({path:s},"",s)}}function dtmEventTrigger(e,n){var o=new CustomEvent(e,{bubbles:!0,cancelable:!1,detail:n});document.querySelector("body").dispatchEvent(o)}window.loadRemoteScript=function(e,n,o,t,a){var i=document.createElement("script");i.type=n||"text/javascript",i.id=t||null,1==o&&(i.async=o||1),i.readyState?i.onreadystatechange=function(){"loaded"!=i.readyState&&"complete"!=i.readyState||(i.onreadystatechange=null,a())}:i.onload=function(){a()},i.src=("https:"==document.location.protocol?"https://":"http://")+e,document.getElementsByTagName("head")[0].appendChild(i)};var doNotTrack=document.cookie.indexOf("ps_optout=1")>-1||document.URL.indexOf("dnt=true")>-1,oneHour=36e5,oneYear=24*oneHour*365,trkDate=new Date(Date.now()+oneHour);document.cookie="ps_trk="+(doNotTrack?"0":"1")+"; expires="+trkDate.toUTCString()+"; path=/"+(document.URL.indexOf("pluralsight.com")>-1?"; domain=pluralsight.com":"");var firstVisit=-1==document.cookie.indexOf("fv=");document.cookie="fv="+(firstVisit?"1":"0")+"; expires="+new Date(Date.now()+oneYear).toUTCString()+"; path=/"+(document.URL.indexOf("pluralsight.com")>-1?"; domain=pluralsight.com":""),window.dnbData={},document.cookie.indexOf("ps_trk=1")>-1&&"undefined"!=typeof dnbvid&&dnbvid.getData("api7831","json","T",function(e){window.dnbData=e,window.promoCheck&&!window.promoCheckRan&&window.promoCheck()}),document.addEventListener("at-content-rendering-succeeded",function(){window.targetFinished=!0},!1),document.addEventListener("at-content-rendering-failed",function(){window.targetFinished=!0},!1),document.addEventListener("at-content-rendering-no-offers",function(){window.targetFinished=!0},!1);
</script>
<script data-cfasync="false" src="/etc/clientlibs/pluralsight/main/js/separates/jquery-3.2.1.min.js"></script>
<link rel="stylesheet" href="/etc/clientlibs/pluralsight/uber.min.2ac47bef7382cfa3fc7dfe76b46b74de.css" type="text/css">
<link rel="preload" id="font-preloader" href="//cloud.typography.com/6966154/7969012/css/fonts.css" as="style" onload="if (document.querySelector('body')){ document.querySelector('body').classList.remove('font-loading');this.onload=null;this.rel='stylesheet' }" />
<script>
window.onload = function(){
if (jQuery('link[rel="stylesheet"][href*="cloud.typography.com"]').length == 0){
//typography didn't load - browser may not support preload.
jQuery('link[href*="cloud.typography.com"]').remove();
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = '//cloud.typography.com/6966154/7969012/css/fonts.css';
document.getElementsByTagName('HEAD')[0].appendChild(link);
document.querySelector('body').classList.remove('font-loading');
}
};
</script>
<noscript><style>
.font-loading .title2 h1.title-font-tungsten,
.font-loading .title2 h2.title-font-tungsten,
.font-loading .title2 h3.title-font-tungsten,
.font-loading .title2 h4.title-font-tungsten,
.font-loading .title2 h5.title-font-tungsten,
.font-loading .title2 h6.title-font-tungsten {
display:block !important;
}
</style></noscript>
<script data-cfasync="false">
var appHost="www-stage.pluralsight.com"==window.location.host?"https://app-stage.pluralsight.com":"https://app.pluralsight.com",pagePath=window.location.pathname,redirectPath="",appRedirectTag=document.head.querySelector("[name~='appRedirectPath'][content]");if(appRedirectTag&&(redirectPath=appRedirectTag.content.toString()),!window.is404)if(0==pagePath.indexOf("/product/channels")&&(redirectPath="/channels",-1<document.URL.indexOf("cid=")&&(redirectPath="/channels/details/"+getParameterByName("cid"))),-1<document.cookie.indexOf("www-status-production=")&&-1==document.cookie.indexOf("midCheckout")&&"www.pluralsight.com"==window.location.host||-1<document.cookie.indexOf("www-status-staging=")&&-1==document.cookie.indexOf("midCheckout")&&"www-stage.pluralsight.com"==window.location.host){var aidParam=getParameterByName("aid"),vidParam=getParameterByName("vid"),paramsString="";""!==aidParam&&(paramsString+=(paramsString.includes("?")?"&":"?")+"aid="+aidParam),""!==vidParam&&(paramsString+=(paramsString.includes("?")?"&":"?")+"vid="+vidParam),""!=redirectPath&&-1==document.URL.indexOf("show=home")?window.location=appHost+redirectPath+paramsString:jQuery(document).ready(function(){var t=appHost+"/id/dashboard",e=jQuery(".header_sign_up_link");e.text("My Dashboard"),e.attr("href",t),e.attr("title","My Dashboard"),jQuery(".header_sign_in_link").attr("style","display: none !important")})}else 0!=pagePath.indexOf("/customer/")||"www-stage.pluralsight.com"!=window.location.host&&"www.pluralsight.com"!=window.location.host||-1!=document.cookie.indexOf("midCheckout")?""!=redirectPath?jQuery(document).ready(function(){jQuery(".sign_in_link").attr("href",appHost+"/id?redirectTo="+encodeURIComponent(redirectPath))}):jQuery(document).ready(function(){jQuery(".sign_in_link").attr("href",appHost+"/id?")}):window.location=appHost+"/id?redirectTo="+encodeURIComponent(document.URL);
</script>
<script data-cfasync="false">
function setSelectedInterest(e){var t=new Date;t.setTime(t.getTime()+6048e5),document.cookie="ps_si="+e+"; expires="+t.toUTCString()+"; path=/",window.selectedInterest=e}function setSelectedConsumerType(e){var t=new Date;t.setTime(t.getTime()+6048e5),document.cookie="ps_sct="+e+"; expires="+t.toUTCString()+"; path=/",window.selectedConsumerType=e}function setSelectedBusinessType(e){var t=new Date;t.setTime(t.getTime()+6048e5),document.cookie="ps_sbt="+e+"; expires="+t.toUTCString()+"; path=/",window.selectedBusinessType=e}if(document.cookie.indexOf("ps_si=")>-1&&(window.selectedInterest=document.cookie.split("ps_si=")[1].split(";")[0]),document.cookie.indexOf("ps_sct=")>-1&&(window.selectedConsumerType=document.cookie.split("ps_sct=")[1].split(";")[0]),document.cookie.indexOf("ps_sbt=")>-1&&(window.selectedBusinessType=document.cookie.split("ps_sbt=")[1].split(";")[0]),-1==document.cookie.indexOf("drift_ab")){var driftAbDate=new Date;driftAbDate.setTime(driftAbDate.getTime()+6048e5);var driftAb=0==Math.floor(2*Math.random())?"A":"B";document.cookie="drift_ab="+driftAb+"; expires="+driftAbDate.toUTCString()+"; path=/"}var inflDate=new Date;inflDate.setTime(inflDate.getTime()+18e5);var visNumDate=new Date;if(visNumDate.setTime(visNumDate.getTime()+31536e6),document.cookie.indexOf("ps_infl")>-1){var infl=document.cookie.split("ps_infl=")[1].split(";")[0];document.cookie="ps_infl="+infl+"; expires="+inflDate.toUTCString()+"; path=/"}else{var visNum=1;document.cookie.indexOf("ps_visNum")>-1&&(visNum=parseInt(document.cookie.split("ps_visNum=")[1].split(";")[0])+1),document.cookie="ps_visNum="+visNum+"; expires="+visNumDate.toUTCString()+"; path=/",getParameterByName("aid")||getParameterByName("vid")||""!=document.referrer&&-1==document.referrer.indexOf("pluralsight.com")?document.cookie="ps_infl=1; expires="+inflDate.toUTCString()+"; path=/":document.cookie="ps_infl=0; expires="+inflDate.toUTCString()+"; path=/"}
</script>
<script src="//assets.adobedtm.com/launch-EN123ab280156b405ca2abf6acf664d9a0.min.js" async></script>
<link rel="apple-touch-icon" sizes="57x57" href="/etc/clientlibs/pluralsight/main/images/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/etc/clientlibs/pluralsight/main/images/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/etc/clientlibs/pluralsight/main/images/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/etc/clientlibs/pluralsight/main/images/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/etc/clientlibs/pluralsight/main/images/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/etc/clientlibs/pluralsight/main/images/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/etc/clientlibs/pluralsight/main/images/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/etc/clientlibs/pluralsight/main/images/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/etc/clientlibs/pluralsight/main/images/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="/etc/clientlibs/pluralsight/main/images/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/etc/clientlibs/pluralsight/main/images/favicons/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/etc/clientlibs/pluralsight/main/images/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/etc/clientlibs/pluralsight/main/images/favicons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/etc/clientlibs/pluralsight/main/images/favicons/manifest.json">
<link rel="mask-icon" href="/etc/clientlibs/pluralsight/main/images/favicons/safari-pinned-tab.svg" color="#e71585">
<link rel="shortcut icon" href="/etc/clientlibs/pluralsight/main/images/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#e71585">
<meta name="msapplication-TileImage" content="/etc/clientlibs/pluralsight/main/images/favicons/mstile-144x144.png">
<meta name="msapplication-config" content="/etc/clientlibs/pluralsight/main/images/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<title>FREE April: Gain Access to Online Developer, IT and Cyber Security Training | Pluralsight</title>
<meta property="og:title" content="Pluralsight - Unlimited Online Developer, IT, and Cyber Security Training">
<meta name="twitter:title" content="Pluralsight - Unlimited Online Developer, IT, and Cyber Security Training">
</head>
<body class="mode-disabled home-template font-loading">
<div class="site-wrap">
<div class="nav-context ">
<noindex>
<nav class="ps-nav" role="navigation">
<div class="ps-nav--inner">
<div class="ps-nav--brand"><a href="/" class="ps-nav--logo"></a></div>
<div class="ps-nav--links" style="display: none;">
<ul class="ps-nav--main">
<li>
<a href="#" class="ps-nav--primary" data-aa-header-title="Products">Products <span><i class="ps-nav--arrow"></i></span></a>
<div class="header_dropdown" style="display:none;">
<div id="header_tabs--products" class="container-sm">
<div class="closebutton " tabindex="3"></div>
<div class="header_tabs_content--container">
<div class="header_tabs_column">
<div class="link-items">
<div class="link-products">
<a href="/product/skills">
<img src="/etc/clientlibs/pluralsight/main/images/Skill_logo_white.png" alt="Skills logo" />
<div>Technology skill development</div></a>
</div>
<ul>
<li><a href="/product/skills">Overview</a></li>
<li class="link-item--title">Solutions for</li>
<li class="link-item"><a href="/product/skills/personal">Personal use</a></li>
<li class="link-item"><a href="/product/skills/software-dev">Software Dev teams</a></li>
<li class="link-item"><a href="/product/skills/it-ops">IT Ops teams</a></li>
<li class="link-item"><a href="/product/skills/security">Security teams</a></li>
<li class="cta-item"><a href="/pricing/skills">View plans</a></li>
</ul>
</div>
</div>
<div class="header_tabs_column">
<div class="link-items">
<div class="link-products">
<a href="/product/flow">
<img src="/etc/clientlibs/pluralsight/main/images/Flow_Logo_white.png" alt="Flow logo" />
<div>Data & visibility for dev teams</div></a>
</div>
<ul>
<li><a href="/product/flow">Overview</a></li>
<li class="link-item--title">Visibility for</li>
<li class="link-item"><a href="/product/flow/managers">Managers</a></li>
<li class="link-item"><a href="/product/flow/engineers">Engineers</a></li>
<li class="link-item"><a href="/product/flow/product-leaders">Product leaders</a></li>
<li class="link-item"><a href="/product/flow/executives">Executives</a></li>
<li class="cta-item"><a href="/pricing/flow">View plans</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="ps-nav--courses">
<a href="#" class="ps-nav--primary" data-aa-header-title="Courses">Courses <span><i class="ps-nav--arrow"></i></span></a>
<div class="header_dropdown" style="display:none;">
<div id="header_tabs" class="container-lg">
<div class="closebutton " tabindex="3"></div>
<ul>
<li class="link-items--title show-medium">Categories</li>
<li class="header_roles software-development header_tabs_link active" data-tab="software-development">
<a href="/browse/software-development">Software Development</a>
</li>
<li class="header_roles it-ops header_tabs_link" data-tab="it-ops">
<a href="/browse/it-ops">IT Ops</a>
</li>
<li class="header_roles data-professional header_tabs_link" data-tab="data-professional">
<a href="/browse/data-professional">Data Professional</a>
</li>
<li class="header_roles info-cybersecurity header_tabs_link" data-tab="info-cybersecurity">
<a href="/browse/information-cyber-security">Information & Cyber Security</a>
</li>
<li class="header_roles architecture-construction header_tabs_link" data-tab="browse-all">
<a>Browse all technologies</a>
</li>
</ul>
<div id="software-development" class="header_tabs_content active">
<div class="header_tabs_content--container">
<div class="header_tabs_column">
<ul class="header_topics_menu">
<li class="first">Courses</li>
<li><a href="/browse/software-development/python">Python</a></li>
<li><a href="/browse/software-development/javascript">JavaScript</a></li>
<li><a href="/browse/software-development/java">Java</a></li>
<li><a href="/browse/software-development/c-sharp">C#</a></li>
<li><a href="/browse/software-development/web-development">Web Development</a></li>
<li><a href="/browse/software-development/mobile-development">Mobile Development</a></li>
<li class="last"><a href="/browse">View all courses ></a></li>
</ul>
</div>
<div class="header_tabs_column paths">
<ul>
<li class="first">Paths</li>
<li>
<div class="item">
<a href="/paths/javascript-core-language">
<div class="item-each">
<div class="item-image"><img alt="JavaScript" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight.imgix.net/paths/path-icons/javascript-36f5949a45.png?w=60"></div>
<div class="item-text">
JavaScript
<ul>
<li><span>9</span> Courses</li>
<li><span>21</span> Hours</li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="item">
<a href="/paths/angular-js">
<div class="item-each">
<div class="item-image"><img alt="AngularJS" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight.imgix.net/paths/path-icons/angular-14a0f6532f.png?w=60"></div>
<div class="item-text">
AngularJS
<ul>
<li><span>14</span> Courses</li>
<li><span>55</span> Hours</li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="item">
<a href="/paths/java">
<div class="item-each">
<div class="item-image"><img alt="Java" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight.imgix.net/paths/path-icons/java-79830005fe.png?w=60"></div>
<div class="item-text">
Java
<ul>
<li><span>13</span> Courses</li>
<li><span>48</span> Hours</li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li class="last">
<a href="/product/paths">View all paths ></a>
</li>
</ul>
</div>
<div class="header_tabs_column paths assessments">
<ul>
<li class="first">Assessments</li>
<li>
<div class="item">
<a href="/paths/angular">
<div class="item-each">
<div class="item-image"><img alt="Angular" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight.imgix.net/paths/path-icons/angular-14a0f6532f.png?w=60"></div>
<div class="item-text">
Angular
<ul>
<li>Get your <span>Skill IQ</span></li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="item">
<a href="/paths/csharp">
<div class="item-each">
<div class="item-image"><img alt="Node.js" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight.imgix.net/paths/path-icons/csharp-e7b8fcd4ce.png?w=60"></div>
<div class="item-text">
C#
<ul>
<li>Get your <span>Skill IQ</span></li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="item">
<a href="/paths/python">
<div class="item-each">
<div class="item-image"><img alt="Python" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight.imgix.net/paths/python-7be70baaac.png?w=60"></div>
<div class="item-text">
Python
<ul>
<li>Get your <span>Skill IQ</span></li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li class="last">
<a href="/product/pluralsight-iq">View all assessments ></a>
</li>
</ul>
</div>
</div>
</div>
<div id="it-ops" class="header_tabs_content">
<div class="header_tabs_content--container">
<div class="header_tabs_column">
<ul>
<li class="first">Courses</li>
<li><a href="/browse/it-ops/it-certifications">IT Certifications</a></li>
<li><a href="/browse/it-ops/it-networking">IT Networking</a></li>
<li><a href="/browse/it-ops/security">Security</a></li>
<li><a href="/browse/it-ops/database-administration">Database Administration</a></li>
<li><a href="/browse/it-ops/virtualization">Virtualization</a></li>
<li><a href="/browse/it-ops/servers">Servers</a></li>
<li class="last"><a href="/browse">View all courses ></a></li>
</ul>
</div>
<div class="header_tabs_column paths">
<ul>
<li class="first">Paths</li>
<li>
<div class="item">
<a href="/paths/fundamentals-of-it-operations-skill">
<div class="item-each">
<div class="item-image"><img alt="Fundamentals of IT Operations" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight.imgix.net/paths/path-icons/fundamentals-of-it-operations-95797723fe.png?w=60"></div>
<div class="item-text">
Fundamentals of IT Operations
<ul>
<li><span>29</span> Courses</li>
<li><span>87</span> Hours</li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="item">
<a href="/paths/comptia-a-220-1001-and-220-1002">
<div class="item-each">
<div class="item-image"><img alt="CompTIA A+" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight.imgix.net/paths/path-icons/server-admin-windows-9e9af6b278.png?w=60"></div>
<div class="item-text">
CompTIA A+
<ul>
<li><span>11</span> Courses</li>
<li><span>40</span> Hours</li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="item">
<a href="/paths/comptia-network-n10-007">
<div class="item-each">
<div class="item-image"><img alt="CompTIA Network+ (N10-007)" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight.imgix.net/paths/path-icons/networks-d4455e1c98.png?w=60"></div>
<div class="item-text">
CompTIA Network+
<ul>
<li><span>5</span> Courses</li>
<li><span>16</span> Hours</li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li class="last">
<a href="/product/paths">View all paths ></a>
</li>
</ul>
</div>
<div class="header_tabs_column paths assessments">
<ul>
<li class="first">Assessments</li>
<li>
<div class="item">
<a href="/paths/planning-microsoft-azure-infrastructure">
<div class="item-each">
<div class="item-image"><img alt="Planning Microsoft Azure Infrastructure" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight2.imgix.net/paths/images/azure-blue-b11372258d.png?w=60"></div>
<div class="item-text">
Planning Microsoft Azure Infrastructure
<ul>
<li>Get your <span>Skill IQ</span></li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="item">
<a href="/paths/networking-fundamentals">
<div class="item-each">
<div class="item-image"><img alt="Networking Fundamentals" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight2.imgix.net/paths/images/networks-484b57170b.png?w=60"></div>
<div class="item-text">
Networking Fundamentals
<ul>
<li>Get your <span>Skill IQ</span></li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="item">
<a href="/paths/understanding-devops">
<div class="item-each">
<div class="item-image"><img alt="Understanding Dev Ops" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight2.imgix.net/paths/images/devops-18b91372ed.png?w=60"></div>
<div class="item-text">
Understanding Dev Ops
<ul>
<li>Get your <span>Skill IQ</span></li>
</ul>
</div>
</div>
</a>
</div>
</li>
<li class="last">
<a href="/product/pluralsight-iq">View all assessments ></a>
</li>
</ul>
</div>
</div>
</div>
<div id="data-professional" class="header_tabs_content">
<div class="header_tabs_content--container">
<div class="header_tabs_column">
<ul>
<li class="first">Courses</li>
<li><a href="/browse/data-professional/big-data">Big Data</a></li>
<li><a href="/browse/data-professional/business-intelligence-data-pro">Business Intelligence</a></li>
<li><a href="/browse/data-professional/sql">SQL</a></li>
<li><a href="/browse/data-professional/tableau">Tableau</a></li>
<li><a href="/browse/data-professional/oracle">Oracle</a></li>
<li><a href="/browse/data-professional/sql-server">SQL Server</a></li>
<li class="last"><a href="/browse">View all courses ></a></li>
</ul>
</div>
<div class="header_tabs_column paths">
<ul>
<li class="first">Paths</li>
<li>
<div class="item">
<a href="/paths/the-scrum-framework">
<div class="item-each">
<div class="item-image"><img alt="Using the Scrum Framework" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight2.imgix.net/paths/images/scrum-a5c44d8364.png?w=60"></div>
<div class="item-text">
Using the Scrum Framework
<ul>
<li><span>7</span> Courses</li>
<li><span>13</span> Hours</li>
</ul>
</div>
</div></a>
</div>
</li>
<li>
<div class="item">
<a href="/paths/microsoft-azure-compute-for-developers">
<div class="item-each">
<div class="item-image"><img alt="Microsoft Azure For Developers" src="/etc/clientlibs/pluralsight/main/images/px.png" data-lazysrc="https://pluralsight2.imgix.net/paths/images/group-policy-administration-ee0dacafe8.png?w=60"></div>
<div class="item-text">
Microsoft Azure Compute for Developers
<ul>
<li><span>7</span> Courses</li>
<li><span>20</span> Hours</li>
</ul>
</div>
</div></a>
</div>
</li>
<li>
<div class="item">
<a href="/paths/upgrading-your-technology-career-skill">
<div class="item-each">