forked from manikagita/book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.BOOK_516
916 lines (731 loc) · 46.9 KB
/
Makefile.BOOK_516
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
INDEX=\
chapters/SECTION/SECTION-QUICK516.md\
chapters/quick516.md\
chapters/assignment.md\
chapters/class/e516-syllabus-table.md\
chapters/SECTION/SECTION-PREFACE.md\
chapters/version.md\
chapters/authors.md\
chapters/preface/create.md\
chapters/preface/issues.md\
chapters/preface/reader.md\
chapters/preface/notation.md\
chapters/SECTION/SECTION-OVERVIEW.md\
chapters/class/organization-516.md\
chapters/class/plagiarism.md\
chapters/cloud/gregor.md\
chapters/class/e516-engineering-cloud-computing.md\
chapters/class/policies.md\
chapters/class/e516-summary.md\
chapters/class/volumes.md\
chapters/class/e516-definition.md\
chapters/cloud/use-cases.md\
chapters/cloud/datacenter.md\
chapters/arch.md\
chapters/nist/bdra.md\
chapters/rest/rest.md\
chapters/rest/swagger-codegen.md\
chapters/rest/swagger-spec.md\
chapters/rest/swagger.md\
chapters/prg/github.md\
chapters/cloud/virtualization.md\
chapters/cloud/qemu.md\
chapters/cloud/virsh.md\
chapters/SECTION/SECTION-IAAS.md\
chapters/iaas/iaas.md\
chapters/iaas/aws/aws.md\
chapters/iaas/azure/azure.md\
chapters/iaas/watson/watson.md\
chapters/iaas/gcloud/gcloud.md\
chapters/iaas/openstack/openstack.md\
chapters/iaas/libcloud.md\
chapters/iaas/boto.md\
chapters/SECTION/SECTION-MAPREDUCE.md\
chapters/mapreduce/mapreduce.md\
chapters/mapreduce/hadoop-lectures.md\
chapters/mapreduce/hadoop-installation.md\
chapters/mapreduce/cm-hadoop.md\
chapters/SECTION/SECTION-SPARK.md\
chapters/mapreduce/spark-lectures.md\
chapters/mapreduce/spark-installation.md\
chapters/mapreduce/spark-streaming.md\
chapters/mapreduce/spark-udf.md\
chapters/SECTION/SECTION-HADOOP-ADVANCED.md\
chapters/mapreduce/amazon-emr-1.md\
chapters/mapreduce/amazon-emr-2.md\
chapters/mapreduce/twister.md\
chapters/mapreduce/twister-installation.md\
chapters/mapreduce/twister2-example.md\
chapters/mapreduce/harp.md\
chapters/mapreduce/hadoop-rdma.md\
chapters/SECTION/SECTION-CONTAINER.md\
chapters/container/container.md\
chapters/SECTION/SECTION-DOCKER.md\
chapters/container/docker-intro.md\
chapters/container/docker-local.md\
chapters/container/dockerfile.md\
chapters/container/dockerhub.md\
chapters/SECTION/SECTION-DOCKER-PAAS.md\
chapters/container/docker-swarm.md\
chapters/container/docker-fs.md\
chapters/container/docker-hadoop.md\
chapters/container/docker-pagerank-example-instruction.md\
chapters/container/docker-spark.md\
chapters/SECTION/SECTION-KUBERNETES.md\
chapters/container/kubernetes-intro.md\
chapters/container/kubernetes-fs.md\
chapters/container/exercise.md\
chapters/SECTION/SECTION-SERVERLESS.md\
chapters/faas/introduction.md\
chapters/faas/aws-lambda.md\
chapters/faas/openwhisk.md\
chapters/faas/kubeless.md\
chapters/faas/microsoft-azure-functions.md\
chapters/faas/google-cloud-functions.md\
chapters/faas/openfaas.md\
chapters/faas/riff.md\
chapters/faas/fission.md\
chapters/faas/ironfunction.md\
chapters/faas/fn.md\
chapters/faas/gestalt.md\
chapters/faas/openlambda.md\
chapters/faas/spring-cloud-function.md\
chapters/SECTION/SECTION-DEVTOOLS.md\
chapters/linux/refcards.md\
chapters/cloud/virtualbox.md\
chapters/cloud/vagrant.md\
chapters/cloud/packer.md\
chapters/os/ubuntu-usb-osx.md\
chapters/git/github.md\
chapters/git/gitpullreqest.md\
chapters/linux/linux.md\
chapters/linux/ssh.md\
chapters/linux/ssh-futuresystems.md\
chapters/linux/ssh-excerise.md\
chapters/devops/devops.md\
chapters/devops/travis.md\
chapters/devops/ansible.md\
chapters/prg/SECTION-PYTHON.md\
chapters/prg/python/python-intro.md\
chapters/prg/python/python-install.md\
chapters/prg/python/python-interactive.md\
chapters/prg/python/python-editor.md\
chapters/prg/python/python.md\
chapters/prg/python/python-libraries.md\
chapters/prg/python/python-data.md\
chapters/prg/python/python-matplotlib.md\
chapters/prg/python/python-docopts.md\
chapters/prg/python/python-cmd5.md\
chapters/prg/python/python-cmd.md\
chapters/prg/python/opencv/opencv.md\
chapters/prg/python/opencv/secchi.md\
chapters/SECTION/SECTION-DATA.md\
chapters/data/formats.md\
chapters/data/mongoengine.md\
chapters/prg/python/python-wordcount.md\
chapters/prg/python/numpy/numpy.md\
chapters/prg/python/scipy/scipy.md\
chapters/prg/python/scikit-learn/scikit-learn-k-means.md\
chapters/prg/python/python-parallel.md\
chapters/prg/python/dask/dask.md\
chapters/prg/python/random-forest/random-forest.md\
chapters/prg/python/fingerprint/fingerprint.md\
chapters/prg/python/facedetection/facedetection.md\
chapters/prg/go/go-intro.md\
chapters/prg/go/go-install.md\
chapters/prg/go/go-editor.md\
chapters/prg/go/go-language.md\
chapters/prg/go/go-libraries.md\
chapters/prg/go/go-cmd.md\
chapters/prg/go/go-rest.md\
chapters/prg/go/go-openapi.md\
chapters/prg/go/go-cloud.md\
chapters/prg/go/go-links.md\
chapters/prg/julia/julia-language.md\
chapters/prg/scala/scala.md\
chapters/MSG.md\
chapters/msg/mqtt.md\
chapters/msg/graphql.md\
chapters/msg/avro.md\
chapters/msg/flink.md\
chapters/SECTION/SECTION-FAQ.md\
chapters/faq.md\
chapters/faq-516.md\
chapters/SECTION/SECTION-APPENDIX.md\
chapters/iaas/aws/products.md\
chapters/iaas/azure/products.md\
chapters/iaas/futuresystems/futuresystems.md\
chapters/SECTION/SECTION-CHAMELEON.md\
chapters/cloud/chameleon/resources.md\
chapters/cloud/chameleon/hardware.md\
chapters/cloud/chameleon/charge.md\
chapters/cloud/chameleon/start.md\
chapters/cloud/chameleon/user-guide.md\
chapters/cloud/chameleon/cli.md\
chapters/cloud/chameleon/horizon.md\
chapters/cloud/chameleon/heat.md\
chapters/cloud/chameleon/baremetal.md\
chapters/cloud/chameleon/faq.md\
chapters/container/glossary.md\
chapters/SECTION/SECTION-INCOMING.md\
chapters/in/azure-services.md\
chapters/in/box.md\
chapters/in/cloud-foundary.md\
chapters/in/cloud-usecases.md\
chapters/in/cm-burn.md\
chapters/in/compliance.md\
chapters/in/packer.md\
chapters/in/vis.md\
chapters/in/visual-studio.md\
chapters/in/windows-subsystem-for-linux.md\
chapters/SECTION/SECTION-INDEX.md\
chapters/index.md\
chapters/SECTION/SECTION-REFERENCES.md
chapterlist: dest/chapters/SECTION/SECTION-QUICK516.md dest/chapters/quick516.md dest/chapters/assignment.md dest/chapters/class/e516-syllabus-table.md dest/chapters/SECTION/SECTION-PREFACE.md dest/chapters/version.md dest/chapters/authors.md dest/chapters/preface/create.md dest/chapters/preface/issues.md dest/chapters/preface/reader.md dest/chapters/preface/notation.md dest/chapters/SECTION/SECTION-OVERVIEW.md dest/chapters/class/organization-516.md dest/chapters/class/plagiarism.md dest/chapters/cloud/gregor.md dest/chapters/class/e516-engineering-cloud-computing.md dest/chapters/class/policies.md dest/chapters/class/e516-summary.md dest/chapters/class/volumes.md dest/chapters/class/e516-definition.md dest/chapters/cloud/use-cases.md dest/chapters/cloud/datacenter.md dest/chapters/arch.md dest/chapters/nist/bdra.md dest/chapters/rest/rest.md dest/chapters/rest/swagger-codegen.md dest/chapters/rest/swagger-spec.md dest/chapters/rest/swagger.md dest/chapters/prg/github.md dest/chapters/cloud/virtualization.md dest/chapters/cloud/qemu.md dest/chapters/cloud/virsh.md dest/chapters/SECTION/SECTION-IAAS.md dest/chapters/iaas/iaas.md dest/chapters/iaas/aws/aws.md dest/chapters/iaas/azure/azure.md dest/chapters/iaas/watson/watson.md dest/chapters/iaas/gcloud/gcloud.md dest/chapters/iaas/openstack/openstack.md dest/chapters/iaas/libcloud.md dest/chapters/iaas/boto.md dest/chapters/SECTION/SECTION-MAPREDUCE.md dest/chapters/mapreduce/mapreduce.md dest/chapters/mapreduce/hadoop-lectures.md dest/chapters/mapreduce/hadoop-installation.md dest/chapters/mapreduce/cm-hadoop.md dest/chapters/SECTION/SECTION-SPARK.md dest/chapters/mapreduce/spark-lectures.md dest/chapters/mapreduce/spark-installation.md dest/chapters/mapreduce/spark-streaming.md dest/chapters/mapreduce/spark-udf.md dest/chapters/SECTION/SECTION-HADOOP-ADVANCED.md dest/chapters/mapreduce/amazon-emr-1.md dest/chapters/mapreduce/amazon-emr-2.md dest/chapters/mapreduce/twister.md dest/chapters/mapreduce/twister-installation.md dest/chapters/mapreduce/twister2-example.md dest/chapters/mapreduce/harp.md dest/chapters/mapreduce/hadoop-rdma.md dest/chapters/SECTION/SECTION-CONTAINER.md dest/chapters/container/container.md dest/chapters/SECTION/SECTION-DOCKER.md dest/chapters/container/docker-intro.md dest/chapters/container/docker-local.md dest/chapters/container/dockerfile.md dest/chapters/container/dockerhub.md dest/chapters/SECTION/SECTION-DOCKER-PAAS.md dest/chapters/container/docker-swarm.md dest/chapters/container/docker-fs.md dest/chapters/container/docker-hadoop.md dest/chapters/container/docker-pagerank-example-instruction.md dest/chapters/container/docker-spark.md dest/chapters/SECTION/SECTION-KUBERNETES.md dest/chapters/container/kubernetes-intro.md dest/chapters/container/kubernetes-fs.md dest/chapters/container/exercise.md dest/chapters/SECTION/SECTION-SERVERLESS.md dest/chapters/faas/introduction.md dest/chapters/faas/aws-lambda.md dest/chapters/faas/openwhisk.md dest/chapters/faas/kubeless.md dest/chapters/faas/microsoft-azure-functions.md dest/chapters/faas/google-cloud-functions.md dest/chapters/faas/openfaas.md dest/chapters/faas/riff.md dest/chapters/faas/fission.md dest/chapters/faas/ironfunction.md dest/chapters/faas/fn.md dest/chapters/faas/gestalt.md dest/chapters/faas/openlambda.md dest/chapters/faas/spring-cloud-function.md dest/chapters/SECTION/SECTION-DEVTOOLS.md dest/chapters/linux/refcards.md dest/chapters/cloud/virtualbox.md dest/chapters/cloud/vagrant.md dest/chapters/cloud/packer.md dest/chapters/os/ubuntu-usb-osx.md dest/chapters/git/github.md dest/chapters/git/gitpullreqest.md dest/chapters/linux/linux.md dest/chapters/linux/ssh.md dest/chapters/linux/ssh-futuresystems.md dest/chapters/linux/ssh-excerise.md dest/chapters/devops/devops.md dest/chapters/devops/travis.md dest/chapters/devops/ansible.md dest/chapters/prg/SECTION-PYTHON.md dest/chapters/prg/python/python-intro.md dest/chapters/prg/python/python-install.md dest/chapters/prg/python/python-interactive.md dest/chapters/prg/python/python-editor.md dest/chapters/prg/python/python.md dest/chapters/prg/python/python-libraries.md dest/chapters/prg/python/python-data.md dest/chapters/prg/python/python-matplotlib.md dest/chapters/prg/python/python-docopts.md dest/chapters/prg/python/python-cmd5.md dest/chapters/prg/python/python-cmd.md dest/chapters/prg/python/opencv/opencv.md dest/chapters/prg/python/opencv/secchi.md dest/chapters/SECTION/SECTION-DATA.md dest/chapters/data/formats.md dest/chapters/data/mongoengine.md dest/chapters/prg/python/python-wordcount.md dest/chapters/prg/python/numpy/numpy.md dest/chapters/prg/python/scipy/scipy.md dest/chapters/prg/python/scikit-learn/scikit-learn-k-means.md dest/chapters/prg/python/python-parallel.md dest/chapters/prg/python/dask/dask.md dest/chapters/prg/python/random-forest/random-forest.md dest/chapters/prg/python/fingerprint/fingerprint.md dest/chapters/prg/python/facedetection/facedetection.md dest/chapters/prg/go/go-intro.md dest/chapters/prg/go/go-install.md dest/chapters/prg/go/go-editor.md dest/chapters/prg/go/go-language.md dest/chapters/prg/go/go-libraries.md dest/chapters/prg/go/go-cmd.md dest/chapters/prg/go/go-rest.md dest/chapters/prg/go/go-openapi.md dest/chapters/prg/go/go-cloud.md dest/chapters/prg/go/go-links.md dest/chapters/prg/julia/julia-language.md dest/chapters/prg/scala/scala.md dest/chapters/MSG.md dest/chapters/msg/mqtt.md dest/chapters/msg/graphql.md dest/chapters/msg/avro.md dest/chapters/msg/flink.md dest/chapters/SECTION/SECTION-FAQ.md dest/chapters/faq.md dest/chapters/faq-516.md dest/chapters/SECTION/SECTION-APPENDIX.md dest/chapters/iaas/aws/products.md dest/chapters/iaas/azure/products.md dest/chapters/iaas/futuresystems/futuresystems.md dest/chapters/SECTION/SECTION-CHAMELEON.md dest/chapters/cloud/chameleon/resources.md dest/chapters/cloud/chameleon/hardware.md dest/chapters/cloud/chameleon/charge.md dest/chapters/cloud/chameleon/start.md dest/chapters/cloud/chameleon/user-guide.md dest/chapters/cloud/chameleon/cli.md dest/chapters/cloud/chameleon/horizon.md dest/chapters/cloud/chameleon/heat.md dest/chapters/cloud/chameleon/baremetal.md dest/chapters/cloud/chameleon/faq.md dest/chapters/container/glossary.md dest/chapters/SECTION/SECTION-INCOMING.md dest/chapters/in/azure-services.md dest/chapters/in/box.md dest/chapters/in/cloud-foundary.md dest/chapters/in/cloud-usecases.md dest/chapters/in/cm-burn.md dest/chapters/in/compliance.md dest/chapters/in/packer.md dest/chapters/in/vis.md dest/chapters/in/visual-studio.md dest/chapters/in/windows-subsystem-for-linux.md dest/chapters/SECTION/SECTION-INDEX.md dest/chapters/index.md dest/chapters/SECTION/SECTION-REFERENCES.md
@echo "updated modified chapters"
dest/chapters/SECTION/SECTION-QUICK516.md: ../chapters/SECTION/SECTION-QUICK516.md
../bin/markup-single.py ../chapters/SECTION/SECTION-QUICK516.md 1
../bin/header.py dest/chapters/SECTION/SECTION-QUICK516.md 1
dest/chapters/quick516.md: ../chapters/quick516.md
../bin/markup-single.py ../chapters/quick516.md 2
../bin/header.py dest/chapters/quick516.md 2
dest/chapters/assignment.md: ../chapters/assignment.md
../bin/markup-single.py ../chapters/assignment.md 2
../bin/header.py dest/chapters/assignment.md 2
dest/chapters/class/e516-syllabus-table.md: ../chapters/class/e516-syllabus-table.md
../bin/markup-single.py ../chapters/class/e516-syllabus-table.md 2
../bin/header.py dest/chapters/class/e516-syllabus-table.md 2
dest/chapters/SECTION/SECTION-PREFACE.md: ../chapters/SECTION/SECTION-PREFACE.md
../bin/markup-single.py ../chapters/SECTION/SECTION-PREFACE.md 1
../bin/header.py dest/chapters/SECTION/SECTION-PREFACE.md 1
dest/chapters/version.md: ../chapters/version.md
../bin/markup-single.py ../chapters/version.md 2
../bin/header.py dest/chapters/version.md 2
dest/chapters/authors.md: ../chapters/authors.md
../bin/markup-single.py ../chapters/authors.md 2
../bin/header.py dest/chapters/authors.md 2
dest/chapters/preface/create.md: ../chapters/preface/create.md
../bin/markup-single.py ../chapters/preface/create.md 2
../bin/header.py dest/chapters/preface/create.md 2
dest/chapters/preface/issues.md: ../chapters/preface/issues.md
../bin/markup-single.py ../chapters/preface/issues.md 2
../bin/header.py dest/chapters/preface/issues.md 2
dest/chapters/preface/reader.md: ../chapters/preface/reader.md
../bin/markup-single.py ../chapters/preface/reader.md 2
../bin/header.py dest/chapters/preface/reader.md 2
dest/chapters/preface/notation.md: ../chapters/preface/notation.md
../bin/markup-single.py ../chapters/preface/notation.md 2
../bin/header.py dest/chapters/preface/notation.md 2
dest/chapters/SECTION/SECTION-OVERVIEW.md: ../chapters/SECTION/SECTION-OVERVIEW.md
../bin/markup-single.py ../chapters/SECTION/SECTION-OVERVIEW.md 1
../bin/header.py dest/chapters/SECTION/SECTION-OVERVIEW.md 1
dest/chapters/class/organization-516.md: ../chapters/class/organization-516.md
../bin/markup-single.py ../chapters/class/organization-516.md 2
../bin/header.py dest/chapters/class/organization-516.md 2
dest/chapters/class/plagiarism.md: ../chapters/class/plagiarism.md
../bin/markup-single.py ../chapters/class/plagiarism.md 2
../bin/header.py dest/chapters/class/plagiarism.md 2
dest/chapters/cloud/gregor.md: ../chapters/cloud/gregor.md
../bin/markup-single.py ../chapters/cloud/gregor.md 2
../bin/header.py dest/chapters/cloud/gregor.md 2
dest/chapters/class/e516-engineering-cloud-computing.md: ../chapters/class/e516-engineering-cloud-computing.md
../bin/markup-single.py ../chapters/class/e516-engineering-cloud-computing.md 2
../bin/header.py dest/chapters/class/e516-engineering-cloud-computing.md 2
dest/chapters/class/policies.md: ../chapters/class/policies.md
../bin/markup-single.py ../chapters/class/policies.md 2
../bin/header.py dest/chapters/class/policies.md 2
dest/chapters/class/e516-summary.md: ../chapters/class/e516-summary.md
../bin/markup-single.py ../chapters/class/e516-summary.md 2
../bin/header.py dest/chapters/class/e516-summary.md 2
dest/chapters/class/volumes.md: ../chapters/class/volumes.md
../bin/markup-single.py ../chapters/class/volumes.md 2
../bin/header.py dest/chapters/class/volumes.md 2
dest/chapters/class/e516-definition.md: ../chapters/class/e516-definition.md
../bin/markup-single.py ../chapters/class/e516-definition.md 1
../bin/header.py dest/chapters/class/e516-definition.md 1
dest/chapters/cloud/use-cases.md: ../chapters/cloud/use-cases.md
../bin/markup-single.py ../chapters/cloud/use-cases.md 1
../bin/header.py dest/chapters/cloud/use-cases.md 1
dest/chapters/cloud/datacenter.md: ../chapters/cloud/datacenter.md
../bin/markup-single.py ../chapters/cloud/datacenter.md 1
../bin/header.py dest/chapters/cloud/datacenter.md 1
dest/chapters/arch.md: ../chapters/arch.md
../bin/markup-single.py ../chapters/arch.md 1
../bin/header.py dest/chapters/arch.md 1
dest/chapters/nist/bdra.md: ../chapters/nist/bdra.md
../bin/markup-single.py ../chapters/nist/bdra.md 1
../bin/header.py dest/chapters/nist/bdra.md 1
dest/chapters/rest/rest.md: ../chapters/rest/rest.md
../bin/markup-single.py ../chapters/rest/rest.md 2
../bin/header.py dest/chapters/rest/rest.md 2
dest/chapters/rest/swagger-codegen.md: ../chapters/rest/swagger-codegen.md
../bin/markup-single.py ../chapters/rest/swagger-codegen.md 2
../bin/header.py dest/chapters/rest/swagger-codegen.md 2
dest/chapters/rest/swagger-spec.md: ../chapters/rest/swagger-spec.md
../bin/markup-single.py ../chapters/rest/swagger-spec.md 2
../bin/header.py dest/chapters/rest/swagger-spec.md 2
dest/chapters/rest/swagger.md: ../chapters/rest/swagger.md
../bin/markup-single.py ../chapters/rest/swagger.md 2
../bin/header.py dest/chapters/rest/swagger.md 2
dest/chapters/prg/github.md: ../chapters/prg/github.md
../bin/markup-single.py ../chapters/prg/github.md 2
../bin/header.py dest/chapters/prg/github.md 2
dest/chapters/cloud/virtualization.md: ../chapters/cloud/virtualization.md
../bin/markup-single.py ../chapters/cloud/virtualization.md 1
../bin/header.py dest/chapters/cloud/virtualization.md 1
dest/chapters/cloud/qemu.md: ../chapters/cloud/qemu.md
../bin/markup-single.py ../chapters/cloud/qemu.md 2
../bin/header.py dest/chapters/cloud/qemu.md 2
dest/chapters/cloud/virsh.md: ../chapters/cloud/virsh.md
../bin/markup-single.py ../chapters/cloud/virsh.md 2
../bin/header.py dest/chapters/cloud/virsh.md 2
dest/chapters/SECTION/SECTION-IAAS.md: ../chapters/SECTION/SECTION-IAAS.md
../bin/markup-single.py ../chapters/SECTION/SECTION-IAAS.md 1
../bin/header.py dest/chapters/SECTION/SECTION-IAAS.md 1
dest/chapters/iaas/iaas.md: ../chapters/iaas/iaas.md
../bin/markup-single.py ../chapters/iaas/iaas.md 2
../bin/header.py dest/chapters/iaas/iaas.md 2
dest/chapters/iaas/aws/aws.md: ../chapters/iaas/aws/aws.md
../bin/markup-single.py ../chapters/iaas/aws/aws.md 2
../bin/header.py dest/chapters/iaas/aws/aws.md 2
dest/chapters/iaas/azure/azure.md: ../chapters/iaas/azure/azure.md
../bin/markup-single.py ../chapters/iaas/azure/azure.md 2
../bin/header.py dest/chapters/iaas/azure/azure.md 2
dest/chapters/iaas/watson/watson.md: ../chapters/iaas/watson/watson.md
../bin/markup-single.py ../chapters/iaas/watson/watson.md 2
../bin/header.py dest/chapters/iaas/watson/watson.md 2
dest/chapters/iaas/gcloud/gcloud.md: ../chapters/iaas/gcloud/gcloud.md
../bin/markup-single.py ../chapters/iaas/gcloud/gcloud.md 2
../bin/header.py dest/chapters/iaas/gcloud/gcloud.md 2
dest/chapters/iaas/openstack/openstack.md: ../chapters/iaas/openstack/openstack.md
../bin/markup-single.py ../chapters/iaas/openstack/openstack.md 2
../bin/header.py dest/chapters/iaas/openstack/openstack.md 2
dest/chapters/iaas/libcloud.md: ../chapters/iaas/libcloud.md
../bin/markup-single.py ../chapters/iaas/libcloud.md 2
../bin/header.py dest/chapters/iaas/libcloud.md 2
dest/chapters/iaas/boto.md: ../chapters/iaas/boto.md
../bin/markup-single.py ../chapters/iaas/boto.md 2
../bin/header.py dest/chapters/iaas/boto.md 2
dest/chapters/SECTION/SECTION-MAPREDUCE.md: ../chapters/SECTION/SECTION-MAPREDUCE.md
../bin/markup-single.py ../chapters/SECTION/SECTION-MAPREDUCE.md 1
../bin/header.py dest/chapters/SECTION/SECTION-MAPREDUCE.md 1
dest/chapters/mapreduce/mapreduce.md: ../chapters/mapreduce/mapreduce.md
../bin/markup-single.py ../chapters/mapreduce/mapreduce.md 2
../bin/header.py dest/chapters/mapreduce/mapreduce.md 2
dest/chapters/mapreduce/hadoop-lectures.md: ../chapters/mapreduce/hadoop-lectures.md
../bin/markup-single.py ../chapters/mapreduce/hadoop-lectures.md 2
../bin/header.py dest/chapters/mapreduce/hadoop-lectures.md 2
dest/chapters/mapreduce/hadoop-installation.md: ../chapters/mapreduce/hadoop-installation.md
../bin/markup-single.py ../chapters/mapreduce/hadoop-installation.md 3
../bin/header.py dest/chapters/mapreduce/hadoop-installation.md 3
dest/chapters/mapreduce/cm-hadoop.md: ../chapters/mapreduce/cm-hadoop.md
../bin/markup-single.py ../chapters/mapreduce/cm-hadoop.md 3
../bin/header.py dest/chapters/mapreduce/cm-hadoop.md 3
dest/chapters/SECTION/SECTION-SPARK.md: ../chapters/SECTION/SECTION-SPARK.md
../bin/markup-single.py ../chapters/SECTION/SECTION-SPARK.md 2
../bin/header.py dest/chapters/SECTION/SECTION-SPARK.md 2
dest/chapters/mapreduce/spark-lectures.md: ../chapters/mapreduce/spark-lectures.md
../bin/markup-single.py ../chapters/mapreduce/spark-lectures.md 3
../bin/header.py dest/chapters/mapreduce/spark-lectures.md 3
dest/chapters/mapreduce/spark-installation.md: ../chapters/mapreduce/spark-installation.md
../bin/markup-single.py ../chapters/mapreduce/spark-installation.md 3
../bin/header.py dest/chapters/mapreduce/spark-installation.md 3
dest/chapters/mapreduce/spark-streaming.md: ../chapters/mapreduce/spark-streaming.md
../bin/markup-single.py ../chapters/mapreduce/spark-streaming.md 3
../bin/header.py dest/chapters/mapreduce/spark-streaming.md 3
dest/chapters/mapreduce/spark-udf.md: ../chapters/mapreduce/spark-udf.md
../bin/markup-single.py ../chapters/mapreduce/spark-udf.md 3
../bin/header.py dest/chapters/mapreduce/spark-udf.md 3
dest/chapters/SECTION/SECTION-HADOOP-ADVANCED.md: ../chapters/SECTION/SECTION-HADOOP-ADVANCED.md
../bin/markup-single.py ../chapters/SECTION/SECTION-HADOOP-ADVANCED.md 2
../bin/header.py dest/chapters/SECTION/SECTION-HADOOP-ADVANCED.md 2
dest/chapters/mapreduce/amazon-emr-1.md: ../chapters/mapreduce/amazon-emr-1.md
../bin/markup-single.py ../chapters/mapreduce/amazon-emr-1.md 3
../bin/header.py dest/chapters/mapreduce/amazon-emr-1.md 3
dest/chapters/mapreduce/amazon-emr-2.md: ../chapters/mapreduce/amazon-emr-2.md
../bin/markup-single.py ../chapters/mapreduce/amazon-emr-2.md 3
../bin/header.py dest/chapters/mapreduce/amazon-emr-2.md 3
dest/chapters/mapreduce/twister.md: ../chapters/mapreduce/twister.md
../bin/markup-single.py ../chapters/mapreduce/twister.md 3
../bin/header.py dest/chapters/mapreduce/twister.md 3
dest/chapters/mapreduce/twister-installation.md: ../chapters/mapreduce/twister-installation.md
../bin/markup-single.py ../chapters/mapreduce/twister-installation.md 3
../bin/header.py dest/chapters/mapreduce/twister-installation.md 3
dest/chapters/mapreduce/twister2-example.md: ../chapters/mapreduce/twister2-example.md
../bin/markup-single.py ../chapters/mapreduce/twister2-example.md 3
../bin/header.py dest/chapters/mapreduce/twister2-example.md 3
dest/chapters/mapreduce/harp.md: ../chapters/mapreduce/harp.md
../bin/markup-single.py ../chapters/mapreduce/harp.md 3
../bin/header.py dest/chapters/mapreduce/harp.md 3
dest/chapters/mapreduce/hadoop-rdma.md: ../chapters/mapreduce/hadoop-rdma.md
../bin/markup-single.py ../chapters/mapreduce/hadoop-rdma.md 3
../bin/header.py dest/chapters/mapreduce/hadoop-rdma.md 3
dest/chapters/SECTION/SECTION-CONTAINER.md: ../chapters/SECTION/SECTION-CONTAINER.md
../bin/markup-single.py ../chapters/SECTION/SECTION-CONTAINER.md 1
../bin/header.py dest/chapters/SECTION/SECTION-CONTAINER.md 1
dest/chapters/container/container.md: ../chapters/container/container.md
../bin/markup-single.py ../chapters/container/container.md 2
../bin/header.py dest/chapters/container/container.md 2
dest/chapters/SECTION/SECTION-DOCKER.md: ../chapters/SECTION/SECTION-DOCKER.md
../bin/markup-single.py ../chapters/SECTION/SECTION-DOCKER.md 2
../bin/header.py dest/chapters/SECTION/SECTION-DOCKER.md 2
dest/chapters/container/docker-intro.md: ../chapters/container/docker-intro.md
../bin/markup-single.py ../chapters/container/docker-intro.md 3
../bin/header.py dest/chapters/container/docker-intro.md 3
dest/chapters/container/docker-local.md: ../chapters/container/docker-local.md
../bin/markup-single.py ../chapters/container/docker-local.md 3
../bin/header.py dest/chapters/container/docker-local.md 3
dest/chapters/container/dockerfile.md: ../chapters/container/dockerfile.md
../bin/markup-single.py ../chapters/container/dockerfile.md 3
../bin/header.py dest/chapters/container/dockerfile.md 3
dest/chapters/container/dockerhub.md: ../chapters/container/dockerhub.md
../bin/markup-single.py ../chapters/container/dockerhub.md 3
../bin/header.py dest/chapters/container/dockerhub.md 3
dest/chapters/SECTION/SECTION-DOCKER-PAAS.md: ../chapters/SECTION/SECTION-DOCKER-PAAS.md
../bin/markup-single.py ../chapters/SECTION/SECTION-DOCKER-PAAS.md 2
../bin/header.py dest/chapters/SECTION/SECTION-DOCKER-PAAS.md 2
dest/chapters/container/docker-swarm.md: ../chapters/container/docker-swarm.md
../bin/markup-single.py ../chapters/container/docker-swarm.md 3
../bin/header.py dest/chapters/container/docker-swarm.md 3
dest/chapters/container/docker-fs.md: ../chapters/container/docker-fs.md
../bin/markup-single.py ../chapters/container/docker-fs.md 3
../bin/header.py dest/chapters/container/docker-fs.md 3
dest/chapters/container/docker-hadoop.md: ../chapters/container/docker-hadoop.md
../bin/markup-single.py ../chapters/container/docker-hadoop.md 3
../bin/header.py dest/chapters/container/docker-hadoop.md 3
dest/chapters/container/docker-pagerank-example-instruction.md: ../chapters/container/docker-pagerank-example-instruction.md
../bin/markup-single.py ../chapters/container/docker-pagerank-example-instruction.md 3
../bin/header.py dest/chapters/container/docker-pagerank-example-instruction.md 3
dest/chapters/container/docker-spark.md: ../chapters/container/docker-spark.md
../bin/markup-single.py ../chapters/container/docker-spark.md 3
../bin/header.py dest/chapters/container/docker-spark.md 3
dest/chapters/SECTION/SECTION-KUBERNETES.md: ../chapters/SECTION/SECTION-KUBERNETES.md
../bin/markup-single.py ../chapters/SECTION/SECTION-KUBERNETES.md 2
../bin/header.py dest/chapters/SECTION/SECTION-KUBERNETES.md 2
dest/chapters/container/kubernetes-intro.md: ../chapters/container/kubernetes-intro.md
../bin/markup-single.py ../chapters/container/kubernetes-intro.md 3
../bin/header.py dest/chapters/container/kubernetes-intro.md 3
dest/chapters/container/kubernetes-fs.md: ../chapters/container/kubernetes-fs.md
../bin/markup-single.py ../chapters/container/kubernetes-fs.md 3
../bin/header.py dest/chapters/container/kubernetes-fs.md 3
dest/chapters/container/exercise.md: ../chapters/container/exercise.md
../bin/markup-single.py ../chapters/container/exercise.md 2
../bin/header.py dest/chapters/container/exercise.md 2
dest/chapters/SECTION/SECTION-SERVERLESS.md: ../chapters/SECTION/SECTION-SERVERLESS.md
../bin/markup-single.py ../chapters/SECTION/SECTION-SERVERLESS.md 1
../bin/header.py dest/chapters/SECTION/SECTION-SERVERLESS.md 1
dest/chapters/faas/introduction.md: ../chapters/faas/introduction.md
../bin/markup-single.py ../chapters/faas/introduction.md 2
../bin/header.py dest/chapters/faas/introduction.md 2
dest/chapters/faas/aws-lambda.md: ../chapters/faas/aws-lambda.md
../bin/markup-single.py ../chapters/faas/aws-lambda.md 2
../bin/header.py dest/chapters/faas/aws-lambda.md 2
dest/chapters/faas/openwhisk.md: ../chapters/faas/openwhisk.md
../bin/markup-single.py ../chapters/faas/openwhisk.md 2
../bin/header.py dest/chapters/faas/openwhisk.md 2
dest/chapters/faas/kubeless.md: ../chapters/faas/kubeless.md
../bin/markup-single.py ../chapters/faas/kubeless.md 2
../bin/header.py dest/chapters/faas/kubeless.md 2
dest/chapters/faas/microsoft-azure-functions.md: ../chapters/faas/microsoft-azure-functions.md
../bin/markup-single.py ../chapters/faas/microsoft-azure-functions.md 2
../bin/header.py dest/chapters/faas/microsoft-azure-functions.md 2
dest/chapters/faas/google-cloud-functions.md: ../chapters/faas/google-cloud-functions.md
../bin/markup-single.py ../chapters/faas/google-cloud-functions.md 2
../bin/header.py dest/chapters/faas/google-cloud-functions.md 2
dest/chapters/faas/openfaas.md: ../chapters/faas/openfaas.md
../bin/markup-single.py ../chapters/faas/openfaas.md 2
../bin/header.py dest/chapters/faas/openfaas.md 2
dest/chapters/faas/riff.md: ../chapters/faas/riff.md
../bin/markup-single.py ../chapters/faas/riff.md 2
../bin/header.py dest/chapters/faas/riff.md 2
dest/chapters/faas/fission.md: ../chapters/faas/fission.md
../bin/markup-single.py ../chapters/faas/fission.md 2
../bin/header.py dest/chapters/faas/fission.md 2
dest/chapters/faas/ironfunction.md: ../chapters/faas/ironfunction.md
../bin/markup-single.py ../chapters/faas/ironfunction.md 2
../bin/header.py dest/chapters/faas/ironfunction.md 2
dest/chapters/faas/fn.md: ../chapters/faas/fn.md
../bin/markup-single.py ../chapters/faas/fn.md 2
../bin/header.py dest/chapters/faas/fn.md 2
dest/chapters/faas/gestalt.md: ../chapters/faas/gestalt.md
../bin/markup-single.py ../chapters/faas/gestalt.md 2
../bin/header.py dest/chapters/faas/gestalt.md 2
dest/chapters/faas/openlambda.md: ../chapters/faas/openlambda.md
../bin/markup-single.py ../chapters/faas/openlambda.md 2
../bin/header.py dest/chapters/faas/openlambda.md 2
dest/chapters/faas/spring-cloud-function.md: ../chapters/faas/spring-cloud-function.md
../bin/markup-single.py ../chapters/faas/spring-cloud-function.md 2
../bin/header.py dest/chapters/faas/spring-cloud-function.md 2
dest/chapters/SECTION/SECTION-DEVTOOLS.md: ../chapters/SECTION/SECTION-DEVTOOLS.md
../bin/markup-single.py ../chapters/SECTION/SECTION-DEVTOOLS.md 1
../bin/header.py dest/chapters/SECTION/SECTION-DEVTOOLS.md 1
dest/chapters/linux/refcards.md: ../chapters/linux/refcards.md
../bin/markup-single.py ../chapters/linux/refcards.md 2
../bin/header.py dest/chapters/linux/refcards.md 2
dest/chapters/cloud/virtualbox.md: ../chapters/cloud/virtualbox.md
../bin/markup-single.py ../chapters/cloud/virtualbox.md 2
../bin/header.py dest/chapters/cloud/virtualbox.md 2
dest/chapters/cloud/vagrant.md: ../chapters/cloud/vagrant.md
../bin/markup-single.py ../chapters/cloud/vagrant.md 2
../bin/header.py dest/chapters/cloud/vagrant.md 2
dest/chapters/cloud/packer.md: ../chapters/cloud/packer.md
../bin/markup-single.py ../chapters/cloud/packer.md 2
../bin/header.py dest/chapters/cloud/packer.md 2
dest/chapters/os/ubuntu-usb-osx.md: ../chapters/os/ubuntu-usb-osx.md
../bin/markup-single.py ../chapters/os/ubuntu-usb-osx.md 2
../bin/header.py dest/chapters/os/ubuntu-usb-osx.md 2
dest/chapters/git/github.md: ../chapters/git/github.md
../bin/markup-single.py ../chapters/git/github.md 2
../bin/header.py dest/chapters/git/github.md 2
dest/chapters/git/gitpullreqest.md: ../chapters/git/gitpullreqest.md
../bin/markup-single.py ../chapters/git/gitpullreqest.md 3
../bin/header.py dest/chapters/git/gitpullreqest.md 3
dest/chapters/linux/linux.md: ../chapters/linux/linux.md
../bin/markup-single.py ../chapters/linux/linux.md 2
../bin/header.py dest/chapters/linux/linux.md 2
dest/chapters/linux/ssh.md: ../chapters/linux/ssh.md
../bin/markup-single.py ../chapters/linux/ssh.md 2
../bin/header.py dest/chapters/linux/ssh.md 2
dest/chapters/linux/ssh-futuresystems.md: ../chapters/linux/ssh-futuresystems.md
../bin/markup-single.py ../chapters/linux/ssh-futuresystems.md 2
../bin/header.py dest/chapters/linux/ssh-futuresystems.md 2
dest/chapters/linux/ssh-excerise.md: ../chapters/linux/ssh-excerise.md
../bin/markup-single.py ../chapters/linux/ssh-excerise.md 2
../bin/header.py dest/chapters/linux/ssh-excerise.md 2
dest/chapters/devops/devops.md: ../chapters/devops/devops.md
../bin/markup-single.py ../chapters/devops/devops.md 1
../bin/header.py dest/chapters/devops/devops.md 1
dest/chapters/devops/travis.md: ../chapters/devops/travis.md
../bin/markup-single.py ../chapters/devops/travis.md 2
../bin/header.py dest/chapters/devops/travis.md 2
dest/chapters/devops/ansible.md: ../chapters/devops/ansible.md
../bin/markup-single.py ../chapters/devops/ansible.md 2
../bin/header.py dest/chapters/devops/ansible.md 2
dest/chapters/prg/SECTION-PYTHON.md: ../chapters/prg/SECTION-PYTHON.md
../bin/markup-single.py ../chapters/prg/SECTION-PYTHON.md 1
../bin/header.py dest/chapters/prg/SECTION-PYTHON.md 1
dest/chapters/prg/python/python-intro.md: ../chapters/prg/python/python-intro.md
../bin/markup-single.py ../chapters/prg/python/python-intro.md 2
../bin/header.py dest/chapters/prg/python/python-intro.md 2
dest/chapters/prg/python/python-install.md: ../chapters/prg/python/python-install.md
../bin/markup-single.py ../chapters/prg/python/python-install.md 2
../bin/header.py dest/chapters/prg/python/python-install.md 2
dest/chapters/prg/python/python-interactive.md: ../chapters/prg/python/python-interactive.md
../bin/markup-single.py ../chapters/prg/python/python-interactive.md 2
../bin/header.py dest/chapters/prg/python/python-interactive.md 2
dest/chapters/prg/python/python-editor.md: ../chapters/prg/python/python-editor.md
../bin/markup-single.py ../chapters/prg/python/python-editor.md 2
../bin/header.py dest/chapters/prg/python/python-editor.md 2
dest/chapters/prg/python/python.md: ../chapters/prg/python/python.md
../bin/markup-single.py ../chapters/prg/python/python.md 2
../bin/header.py dest/chapters/prg/python/python.md 2
dest/chapters/prg/python/python-libraries.md: ../chapters/prg/python/python-libraries.md
../bin/markup-single.py ../chapters/prg/python/python-libraries.md 2
../bin/header.py dest/chapters/prg/python/python-libraries.md 2
dest/chapters/prg/python/python-data.md: ../chapters/prg/python/python-data.md
../bin/markup-single.py ../chapters/prg/python/python-data.md 3
../bin/header.py dest/chapters/prg/python/python-data.md 3
dest/chapters/prg/python/python-matplotlib.md: ../chapters/prg/python/python-matplotlib.md
../bin/markup-single.py ../chapters/prg/python/python-matplotlib.md 3
../bin/header.py dest/chapters/prg/python/python-matplotlib.md 3
dest/chapters/prg/python/python-docopts.md: ../chapters/prg/python/python-docopts.md
../bin/markup-single.py ../chapters/prg/python/python-docopts.md 3
../bin/header.py dest/chapters/prg/python/python-docopts.md 3
dest/chapters/prg/python/python-cmd5.md: ../chapters/prg/python/python-cmd5.md
../bin/markup-single.py ../chapters/prg/python/python-cmd5.md 3
../bin/header.py dest/chapters/prg/python/python-cmd5.md 3
dest/chapters/prg/python/python-cmd.md: ../chapters/prg/python/python-cmd.md
../bin/markup-single.py ../chapters/prg/python/python-cmd.md 3
../bin/header.py dest/chapters/prg/python/python-cmd.md 3
dest/chapters/prg/python/opencv/opencv.md: ../chapters/prg/python/opencv/opencv.md
../bin/markup-single.py ../chapters/prg/python/opencv/opencv.md 3
../bin/header.py dest/chapters/prg/python/opencv/opencv.md 3
dest/chapters/prg/python/opencv/secchi.md: ../chapters/prg/python/opencv/secchi.md
../bin/markup-single.py ../chapters/prg/python/opencv/secchi.md 3
../bin/header.py dest/chapters/prg/python/opencv/secchi.md 3
dest/chapters/SECTION/SECTION-DATA.md: ../chapters/SECTION/SECTION-DATA.md
../bin/markup-single.py ../chapters/SECTION/SECTION-DATA.md 3
../bin/header.py dest/chapters/SECTION/SECTION-DATA.md 3
dest/chapters/data/formats.md: ../chapters/data/formats.md
../bin/markup-single.py ../chapters/data/formats.md 4
../bin/header.py dest/chapters/data/formats.md 4
dest/chapters/data/mongoengine.md: ../chapters/data/mongoengine.md
../bin/markup-single.py ../chapters/data/mongoengine.md 4
../bin/header.py dest/chapters/data/mongoengine.md 4
dest/chapters/prg/python/python-wordcount.md: ../chapters/prg/python/python-wordcount.md
../bin/markup-single.py ../chapters/prg/python/python-wordcount.md 2
../bin/header.py dest/chapters/prg/python/python-wordcount.md 2
dest/chapters/prg/python/numpy/numpy.md: ../chapters/prg/python/numpy/numpy.md
../bin/markup-single.py ../chapters/prg/python/numpy/numpy.md 2
../bin/header.py dest/chapters/prg/python/numpy/numpy.md 2
dest/chapters/prg/python/scipy/scipy.md: ../chapters/prg/python/scipy/scipy.md
../bin/markup-single.py ../chapters/prg/python/scipy/scipy.md 2
../bin/header.py dest/chapters/prg/python/scipy/scipy.md 2
dest/chapters/prg/python/scikit-learn/scikit-learn-k-means.md: ../chapters/prg/python/scikit-learn/scikit-learn-k-means.md
../bin/markup-single.py ../chapters/prg/python/scikit-learn/scikit-learn-k-means.md 2
../bin/header.py dest/chapters/prg/python/scikit-learn/scikit-learn-k-means.md 2
dest/chapters/prg/python/python-parallel.md: ../chapters/prg/python/python-parallel.md
../bin/markup-single.py ../chapters/prg/python/python-parallel.md 2
../bin/header.py dest/chapters/prg/python/python-parallel.md 2
dest/chapters/prg/python/dask/dask.md: ../chapters/prg/python/dask/dask.md
../bin/markup-single.py ../chapters/prg/python/dask/dask.md 2
../bin/header.py dest/chapters/prg/python/dask/dask.md 2
dest/chapters/prg/python/random-forest/random-forest.md: ../chapters/prg/python/random-forest/random-forest.md
../bin/markup-single.py ../chapters/prg/python/random-forest/random-forest.md 2
../bin/header.py dest/chapters/prg/python/random-forest/random-forest.md 2
dest/chapters/prg/python/fingerprint/fingerprint.md: ../chapters/prg/python/fingerprint/fingerprint.md
../bin/markup-single.py ../chapters/prg/python/fingerprint/fingerprint.md 2
../bin/header.py dest/chapters/prg/python/fingerprint/fingerprint.md 2
dest/chapters/prg/python/facedetection/facedetection.md: ../chapters/prg/python/facedetection/facedetection.md
../bin/markup-single.py ../chapters/prg/python/facedetection/facedetection.md 2
../bin/header.py dest/chapters/prg/python/facedetection/facedetection.md 2
dest/chapters/prg/go/go-intro.md: ../chapters/prg/go/go-intro.md
../bin/markup-single.py ../chapters/prg/go/go-intro.md 1
../bin/header.py dest/chapters/prg/go/go-intro.md 1
dest/chapters/prg/go/go-install.md: ../chapters/prg/go/go-install.md
../bin/markup-single.py ../chapters/prg/go/go-install.md 2
../bin/header.py dest/chapters/prg/go/go-install.md 2
dest/chapters/prg/go/go-editor.md: ../chapters/prg/go/go-editor.md
../bin/markup-single.py ../chapters/prg/go/go-editor.md 2
../bin/header.py dest/chapters/prg/go/go-editor.md 2
dest/chapters/prg/go/go-language.md: ../chapters/prg/go/go-language.md
../bin/markup-single.py ../chapters/prg/go/go-language.md 2
../bin/header.py dest/chapters/prg/go/go-language.md 2
dest/chapters/prg/go/go-libraries.md: ../chapters/prg/go/go-libraries.md
../bin/markup-single.py ../chapters/prg/go/go-libraries.md 2
../bin/header.py dest/chapters/prg/go/go-libraries.md 2
dest/chapters/prg/go/go-cmd.md: ../chapters/prg/go/go-cmd.md
../bin/markup-single.py ../chapters/prg/go/go-cmd.md 2
../bin/header.py dest/chapters/prg/go/go-cmd.md 2
dest/chapters/prg/go/go-rest.md: ../chapters/prg/go/go-rest.md
../bin/markup-single.py ../chapters/prg/go/go-rest.md 2
../bin/header.py dest/chapters/prg/go/go-rest.md 2
dest/chapters/prg/go/go-openapi.md: ../chapters/prg/go/go-openapi.md
../bin/markup-single.py ../chapters/prg/go/go-openapi.md 2
../bin/header.py dest/chapters/prg/go/go-openapi.md 2
dest/chapters/prg/go/go-cloud.md: ../chapters/prg/go/go-cloud.md
../bin/markup-single.py ../chapters/prg/go/go-cloud.md 2
../bin/header.py dest/chapters/prg/go/go-cloud.md 2
dest/chapters/prg/go/go-links.md: ../chapters/prg/go/go-links.md
../bin/markup-single.py ../chapters/prg/go/go-links.md 2
../bin/header.py dest/chapters/prg/go/go-links.md 2
dest/chapters/prg/julia/julia-language.md: ../chapters/prg/julia/julia-language.md
../bin/markup-single.py ../chapters/prg/julia/julia-language.md 1
../bin/header.py dest/chapters/prg/julia/julia-language.md 1
dest/chapters/prg/scala/scala.md: ../chapters/prg/scala/scala.md
../bin/markup-single.py ../chapters/prg/scala/scala.md 1
../bin/header.py dest/chapters/prg/scala/scala.md 1
dest/chapters/MSG.md: ../chapters/MSG.md
../bin/markup-single.py ../chapters/MSG.md 1
../bin/header.py dest/chapters/MSG.md 1
dest/chapters/msg/mqtt.md: ../chapters/msg/mqtt.md
../bin/markup-single.py ../chapters/msg/mqtt.md 2
../bin/header.py dest/chapters/msg/mqtt.md 2
dest/chapters/msg/graphql.md: ../chapters/msg/graphql.md
../bin/markup-single.py ../chapters/msg/graphql.md 2
../bin/header.py dest/chapters/msg/graphql.md 2
dest/chapters/msg/avro.md: ../chapters/msg/avro.md
../bin/markup-single.py ../chapters/msg/avro.md 2
../bin/header.py dest/chapters/msg/avro.md 2
dest/chapters/msg/flink.md: ../chapters/msg/flink.md
../bin/markup-single.py ../chapters/msg/flink.md 2
../bin/header.py dest/chapters/msg/flink.md 2
dest/chapters/SECTION/SECTION-FAQ.md: ../chapters/SECTION/SECTION-FAQ.md
../bin/markup-single.py ../chapters/SECTION/SECTION-FAQ.md 1
../bin/header.py dest/chapters/SECTION/SECTION-FAQ.md 1
dest/chapters/faq.md: ../chapters/faq.md
../bin/markup-single.py ../chapters/faq.md 2
../bin/header.py dest/chapters/faq.md 2
dest/chapters/faq-516.md: ../chapters/faq-516.md
../bin/markup-single.py ../chapters/faq-516.md 2
../bin/header.py dest/chapters/faq-516.md 2
dest/chapters/SECTION/SECTION-APPENDIX.md: ../chapters/SECTION/SECTION-APPENDIX.md
../bin/markup-single.py ../chapters/SECTION/SECTION-APPENDIX.md 1
../bin/header.py dest/chapters/SECTION/SECTION-APPENDIX.md 1
dest/chapters/iaas/aws/products.md: ../chapters/iaas/aws/products.md
../bin/markup-single.py ../chapters/iaas/aws/products.md 2
../bin/header.py dest/chapters/iaas/aws/products.md 2
dest/chapters/iaas/azure/products.md: ../chapters/iaas/azure/products.md
../bin/markup-single.py ../chapters/iaas/azure/products.md 2
../bin/header.py dest/chapters/iaas/azure/products.md 2
dest/chapters/iaas/futuresystems/futuresystems.md: ../chapters/iaas/futuresystems/futuresystems.md
../bin/markup-single.py ../chapters/iaas/futuresystems/futuresystems.md 1
../bin/header.py dest/chapters/iaas/futuresystems/futuresystems.md 1
dest/chapters/SECTION/SECTION-CHAMELEON.md: ../chapters/SECTION/SECTION-CHAMELEON.md
../bin/markup-single.py ../chapters/SECTION/SECTION-CHAMELEON.md 1
../bin/header.py dest/chapters/SECTION/SECTION-CHAMELEON.md 1
dest/chapters/cloud/chameleon/resources.md: ../chapters/cloud/chameleon/resources.md
../bin/markup-single.py ../chapters/cloud/chameleon/resources.md 2
../bin/header.py dest/chapters/cloud/chameleon/resources.md 2
dest/chapters/cloud/chameleon/hardware.md: ../chapters/cloud/chameleon/hardware.md
../bin/markup-single.py ../chapters/cloud/chameleon/hardware.md 2
../bin/header.py dest/chapters/cloud/chameleon/hardware.md 2
dest/chapters/cloud/chameleon/charge.md: ../chapters/cloud/chameleon/charge.md
../bin/markup-single.py ../chapters/cloud/chameleon/charge.md 2
../bin/header.py dest/chapters/cloud/chameleon/charge.md 2
dest/chapters/cloud/chameleon/start.md: ../chapters/cloud/chameleon/start.md
../bin/markup-single.py ../chapters/cloud/chameleon/start.md 2
../bin/header.py dest/chapters/cloud/chameleon/start.md 2
dest/chapters/cloud/chameleon/user-guide.md: ../chapters/cloud/chameleon/user-guide.md
../bin/markup-single.py ../chapters/cloud/chameleon/user-guide.md 2
../bin/header.py dest/chapters/cloud/chameleon/user-guide.md 2
dest/chapters/cloud/chameleon/cli.md: ../chapters/cloud/chameleon/cli.md
../bin/markup-single.py ../chapters/cloud/chameleon/cli.md 2
../bin/header.py dest/chapters/cloud/chameleon/cli.md 2
dest/chapters/cloud/chameleon/horizon.md: ../chapters/cloud/chameleon/horizon.md
../bin/markup-single.py ../chapters/cloud/chameleon/horizon.md 2
../bin/header.py dest/chapters/cloud/chameleon/horizon.md 2
dest/chapters/cloud/chameleon/heat.md: ../chapters/cloud/chameleon/heat.md
../bin/markup-single.py ../chapters/cloud/chameleon/heat.md 2
../bin/header.py dest/chapters/cloud/chameleon/heat.md 2
dest/chapters/cloud/chameleon/baremetal.md: ../chapters/cloud/chameleon/baremetal.md
../bin/markup-single.py ../chapters/cloud/chameleon/baremetal.md 2
../bin/header.py dest/chapters/cloud/chameleon/baremetal.md 2
dest/chapters/cloud/chameleon/faq.md: ../chapters/cloud/chameleon/faq.md
../bin/markup-single.py ../chapters/cloud/chameleon/faq.md 2
../bin/header.py dest/chapters/cloud/chameleon/faq.md 2
dest/chapters/container/glossary.md: ../chapters/container/glossary.md
../bin/markup-single.py ../chapters/container/glossary.md 1
../bin/header.py dest/chapters/container/glossary.md 1
dest/chapters/SECTION/SECTION-INCOMING.md: ../chapters/SECTION/SECTION-INCOMING.md
../bin/markup-single.py ../chapters/SECTION/SECTION-INCOMING.md 1
../bin/header.py dest/chapters/SECTION/SECTION-INCOMING.md 1
dest/chapters/in/azure-services.md: ../chapters/in/azure-services.md
../bin/markup-single.py ../chapters/in/azure-services.md 2
../bin/header.py dest/chapters/in/azure-services.md 2
dest/chapters/in/box.md: ../chapters/in/box.md
../bin/markup-single.py ../chapters/in/box.md 2
../bin/header.py dest/chapters/in/box.md 2
dest/chapters/in/cloud-foundary.md: ../chapters/in/cloud-foundary.md
../bin/markup-single.py ../chapters/in/cloud-foundary.md 2
../bin/header.py dest/chapters/in/cloud-foundary.md 2
dest/chapters/in/cloud-usecases.md: ../chapters/in/cloud-usecases.md
../bin/markup-single.py ../chapters/in/cloud-usecases.md 2
../bin/header.py dest/chapters/in/cloud-usecases.md 2
dest/chapters/in/cm-burn.md: ../chapters/in/cm-burn.md
../bin/markup-single.py ../chapters/in/cm-burn.md 2
../bin/header.py dest/chapters/in/cm-burn.md 2
dest/chapters/in/compliance.md: ../chapters/in/compliance.md
../bin/markup-single.py ../chapters/in/compliance.md 2
../bin/header.py dest/chapters/in/compliance.md 2
dest/chapters/in/packer.md: ../chapters/in/packer.md
../bin/markup-single.py ../chapters/in/packer.md 2
../bin/header.py dest/chapters/in/packer.md 2
dest/chapters/in/vis.md: ../chapters/in/vis.md
../bin/markup-single.py ../chapters/in/vis.md 2
../bin/header.py dest/chapters/in/vis.md 2
dest/chapters/in/visual-studio.md: ../chapters/in/visual-studio.md
../bin/markup-single.py ../chapters/in/visual-studio.md 2
../bin/header.py dest/chapters/in/visual-studio.md 2
dest/chapters/in/windows-subsystem-for-linux.md: ../chapters/in/windows-subsystem-for-linux.md
../bin/markup-single.py ../chapters/in/windows-subsystem-for-linux.md 2
../bin/header.py dest/chapters/in/windows-subsystem-for-linux.md 2
dest/chapters/SECTION/SECTION-INDEX.md: ../chapters/SECTION/SECTION-INDEX.md
../bin/markup-single.py ../chapters/SECTION/SECTION-INDEX.md 1
../bin/header.py dest/chapters/SECTION/SECTION-INDEX.md 1
dest/chapters/index.md: ../chapters/index.md
../bin/markup-single.py ../chapters/index.md 2
../bin/header.py dest/chapters/index.md 2
dest/chapters/SECTION/SECTION-REFERENCES.md: ../chapters/SECTION/SECTION-REFERENCES.md
../bin/markup-single.py ../chapters/SECTION/SECTION-REFERENCES.md 1
../bin/header.py dest/chapters/SECTION/SECTION-REFERENCES.md 1