-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtechio.yml
665 lines (665 loc) · 28.2 KB
/
techio.yml
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
# !!!!!!!!!!!!!!!!!! Autogenerated using make !!!!!!!!!!!!!!!!!!
title: Computing with Data
cover: https://images.springer.com/sgw/books/big/9783319981482.jpg
projects:
sh:
root: /projects/sh
runner: computingwithdata/bash
cpp:
root: /projects/cpp
runner: computingwithdata/cpp
java:
root: /projects/java
runner: computingwithdata/java
ps1:
root: /projects/ps1
runner: computingwithdata/powershell
py:
root: /projects/py
runner: computingwithdata/python
R:
root: /projects/R
runner: computingwithdata/r-base
plan:
- title: Chapter 2
description: "Essential Knowledge: Hardware"
plan:
- title: Rounding
statement: markdowns/chapter2/0-rounding.md
- title: Overflow
statement: markdowns/chapter2/1-overflow.md
- title: Underflow
statement: markdowns/chapter2/2-underflow.md
- title: Comparing Real Numbers
statement: markdowns/chapter2/3-comparing-real-numbers.md
- title: The Log-Scale Trick
statement: markdowns/chapter2/4-log-scale.md
- title: Use of Assembly Language in High-Level Languages
statement: markdowns/chapter2/5-assembly.md
- title: Chapter 3
description: "Essential Knowledge: Operating Systems"
plan:
- title: Bash - Introduction
statement: markdowns/chapter3/0-bash-introduction.md
- title: Bash - Variables
statement: markdowns/chapter3/1-bash-variables.md
- title: Bash - Pipes
statement: markdowns/chapter3/2-bash-pipes.md
- title: Bash - Loops
statement: markdowns/chapter3/3-bash-loops.md
- title: Bash - Conditional Logic
statement: markdowns/chapter3/4-bash-conditional-logic.md
- title: Bash - Aliases
statement: markdowns/chapter3/5-bash-aliases.md
- title: Command Prompt - Introduction
statement: markdowns/chapter3/6-command-prompt-introduction.md
- title: Command Prompt - Variables
statement: markdowns/chapter3/7-command-prompt-variables.md
- title: Command Prompt - Pipes
statement: markdowns/chapter3/8-command-prompt-pipes.md
- title: Command Prompt - Loop
statement: markdowns/chapter3/9-command-prompt-loops.md
- title: Command Prompt - Conditional Logic
statement: markdowns/chapter3/A-command-prompt-conditional-logic.md
- title: PowerShell - Introduction
statement: markdowns/chapter3/B-powershell-introduction.md
- title: PowerShell - Pipes
statement: markdowns/chapter3/C-powershell-pipes.md
- title: PowerShell - Variables
statement: markdowns/chapter3/D-powershell-variables.md
- title: PowerShell - Loops
statement: markdowns/chapter3/E-powershell-loops.md
- title: PowerShell - Conditional Logic
statement: markdowns/chapter3/F-powershell-conditional-logic.md
- title: Processes in Linux - Part I
statement: markdowns/chapter3/G-processes-in-linux-part-i.md
- title: Processes in Linux - Part II
statement: markdowns/chapter3/H-processes-in-linux-part-ii.md
- title: Processes in Windows
statement: markdowns/chapter3/I-processes-in-windows.md
- title: Files in Linux
statement: markdowns/chapter3/J0-files-in-linux.md
- title: Displaying Files
statement: markdowns/chapter3/J1-displaying-files.md
- title: Moving, Copying, and Removing Files and Directories
statement: markdowns/chapter3/J2-moving-copying-and-removing-files-and-directories.md
- title: Wildcard Characters
statement: markdowns/chapter3/J3-wildcard-characters.md
- title: Soft Links
statement: markdowns/chapter3/J4-soft-links.md
- title: Listing Directory Contents
statement: markdowns/chapter3/J5-listing-directory-contents.md
- title: The PATH Environment Variable
statement: markdowns/chapter3/J6-the-path-environment-variable.md
- title: Compression in Linux
statement: markdowns/chapter3/J7-compression-in-linux.md
- title: Bash Initialization File
statement: markdowns/chapter3/J8-bash-initialization-file.md
- title: Script Files
statement: markdowns/chapter3/J9-script-files.md
- title: Files in Windows
statement: markdowns/chapter3/K0-files-in-windows.md
- title: Hierarchy of Directories
statement: markdowns/chapter3/K1-hierarchy-of-directories.md
- title: Compression in Windows
statement: markdowns/chapter3/K2-compression-in-windows.md
- title: Users and Permissions in Linux
statement: markdowns/chapter3/L0-users-and-permissions-in-linux.md
- title: Users and Permissions in Windows
statement: markdowns/chapter3/L1-users-and-permissions-in-windows.md
- title: Redirecting Input and Output in Linux
statement: markdowns/chapter3/M0-redirecting-input-and-output-in-linux.md
- title: Redirecting Input and Output in Windows
statement: markdowns/chapter3/M1-redirecting-input-and-output-in-windows.md
- title: Working on Remote Linux Computers
statement: markdowns/chapter3/N-working-on-remote-linux-computers.md
- title: Chapter 4
description: "Learning C++"
plan:
- title: Compilation
statement: markdowns/chapter4/0-compilation.md
- title: Variables
statement: markdowns/chapter4/1-variables.md
- title: Scope
statement: markdowns/chapter4/2-scope.md
- title: Operators
statement: markdowns/chapter4/3-operators.md
- title: Type Conversions
statement: markdowns/chapter4/4-type-conversions.md
- title: References
statement: markdowns/chapter4/5-references.md
- title: Pointers
statement: markdowns/chapter4/6-pointers.md
- title: Arrays
statement: markdowns/chapter4/7-arrays.md
- title: Preprocessor and Namespaces - Part I
statement: markdowns/chapter4/8-preprocessor-and-namespaces-part-i.md
- title: Preprocessor and Namespaces - Part II
statement: markdowns/chapter4/9-preprocessor-and-namespaces-part-ii.md
- title: Strings - Part I
statement: markdowns/chapter4/A0-strings-part-i.md
- title: Strings - Part II
statement: markdowns/chapter4/A1-strings-part-ii.md
- title: Input - Part I
statement: markdowns/chapter4/B1-input-part-i.md
- title: Input - Part II
statement: markdowns/chapter4/B2-input-part-ii.md
- title: Input - Part III
statement: markdowns/chapter4/B3-input-part-iii.md
- title: Output
statement: markdowns/chapter4/C-output.md
- title: If-Else Clauses
statement: markdowns/chapter4/D0-if-else-clauses.md
- title: While-Loops
statement: markdowns/chapter4/D1-while-loops.md
- title: For-Loops - Part I
statement: markdowns/chapter4/D2-for-loops-part-i.md
- title: For-Loops - Part II
statement: markdowns/chapter4/D3-for-loops-part-ii.md
- title: For-Loops - Part III
statement: markdowns/chapter4/D4-for-loops-part-iii.md
- title: Functions
statement: markdowns/chapter4/E0-functions.md
- title: Return Value
statement: markdowns/chapter4/E1-return-value.md
- title: Function Parameters
statement: markdowns/chapter4/E2-function-parameters.md
- title: Function Definition and Function Declaration
statement: markdowns/chapter4/E3-function-definition-and-function-declaration.md
- title: Scope of Function Variables
statement: markdowns/chapter4/E4-scope-of-function-variables.md
- title: Pointer Parameters
statement: markdowns/chapter4/E5-pointer-parameters.md
- title: Reference Parameters
statement: markdowns/chapter4/E6-reference-parameters.md
- title: Recursion - Part I
statement: markdowns/chapter4/E7-recursion-part-i.md
- title: Recursion - Part II
statement: markdowns/chapter4/E8-recursion-part-ii.md
- title: Recursion - Part III
statement: markdowns/chapter4/E9-recursion-part-iii.md
- title: Recursion - Part IV
statement: markdowns/chapter4/EA-recursion-part-iv.md
- title: Passing Arguments to Main
statement: markdowns/chapter4/EB-passing-arguments-to-main.md
- title: Overloading Functions
statement: markdowns/chapter4/EC-overloading-functions.md
- title: Structs - Part I
statement: markdowns/chapter4/F0-structs-part-i.md
- title: Structs - Part II
statement: markdowns/chapter4/F1-structs-part-ii.md
- title: Structs - Part III
statement: markdowns/chapter4/F2-structs-part-iii.md
- title: Structs - Part IV
statement: markdowns/chapter4/F3-structs-part-iv.md
- title: Structs - Part V
statement: markdowns/chapter4/F4-structs-part-v.md
- title: Classes
statement: markdowns/chapter4/G0-classes.md
- title: Constructors - Part I
statement: markdowns/chapter4/G1-constructors-part-i.md
- title: Constructors - Part II
statement: markdowns/chapter4/G2-constructors-part-ii.md
- title: The Destructor
statement: markdowns/chapter4/G3-the-destructor.md
- title: The Copy Constructor
statement: markdowns/chapter4/G4-the-copy-constructor.md
- title: The Converting Constructor
statement: markdowns/chapter4/G5-the-converting-constructor.md
- title: The Implicit Converting Constructor
statement: markdowns/chapter4/G6-the-implicit-converting-constructor.md
- title: The Explicit Converting Constructor
statement: markdowns/chapter4/G7-the-explicit-converting-constructor.md
- title: Operator Overloading
statement: markdowns/chapter4/G8-operator-overloading.md
- title: Friend Functions and Classes
statement: markdowns/chapter4/G9-friend-functions-and-classes.md
- title: Inheritance
statement: markdowns/chapter4/GA-inheritance.md
- title: Polymorphism
statement: markdowns/chapter4/GB-polymorphism.md
- title: Static Binding
statement: markdowns/chapter4/GC-static-binding.md
- title: Virtual Functions
statement: markdowns/chapter4/GD-virtual-functions.1.md
- title: Static Variables and Functions - Part I
statement: markdowns/chapter4/GE-static-variables-and-functions-part-i.md
- title: Static Variables and Functions - Part II
statement: markdowns/chapter4/GF-static-variables-and-functions-part-ii.md
- title: Dynamic Memory Allocation - Part I
statement: markdowns/chapter4/H0-dynamic-memory-allocation-part-i.md
- title: Dynamic Memory Allocation - Part II
statement: markdowns/chapter4/H1-dynamic-memory-allocation-part-ii.md
- title: Dynamic Memory Allocation - Part III
statement: markdowns/chapter4/H2-dynamic-memory-allocation-part-iii.md
- title: Smart Pointers - Part I
statement: markdowns/chapter4/H3-smart-pointers-part-i.md
- title: Smart Pointers - Part II
statement: markdowns/chapter4/H4-smart-pointers-part-ii.md
- title: Smart Pointers - Part III
statement: markdowns/chapter4/H5-smart-pointers-part-iii.md
- title: Template Functions - Part I
statement: markdowns/chapter4/I0-template-functions-part-i.md
- title: Template Functions - Part II
statement: markdowns/chapter4/I1-template-functions-part-ii.md
- title: Template Classes
statement: markdowns/chapter4/I2-template-classes.md
- title: Vectors
statement: markdowns/chapter4/J0-vectors.md
- title: Arrays
statement: markdowns/chapter4/J1-arrays.md
- title: Sets
statement: markdowns/chapter4/J2-sets.md
- title: Maps - Part I
statement: markdowns/chapter4/J3-maps-part-i.md
- title: Maps - Part II
statement: markdowns/chapter4/J4-maps-part-ii.md
- title: Unordered Maps
statement: markdowns/chapter4/J5-unordered-maps.md
- title: Chapter 5
description: "Learning Java"
plan:
- title: Compilation
statement: markdowns/chapter5/0-compilation.md
- title: Types, Variables, and Scope
statement: markdowns/chapter5/1-types-variables-and-scope.md
- title: Primitive and Non-Primitive Types
statement: markdowns/chapter5/2-primitive-and-non-primitive-types.md
- title: Arrays
statement: markdowns/chapter5/3-arrays.md
- title: Multidimensional Arrays
statement: markdowns/chapter5/4-multidimensional-arrays.md
- title: Ragged Multidimensional Arrays
statement: markdowns/chapter5/5-ragged-multidimensional-arrays.md
- title: Classpath
statement: markdowns/chapter5/6-classpath.md
- title: Strings
statement: markdowns/chapter5/7-strings.md
- title: Functions
statement: markdowns/chapter5/8-functions.md
- title: Classes - Part I
statement: markdowns/chapter5/9-classes-part-i.md
- title: Classes - Part II
statement: markdowns/chapter5/A-classes-part-ii.md
- title: Classes - Part III
statement: markdowns/chapter5/B-classes-part-iii.md
- title: Inheritance
statement: markdowns/chapter5/C-inheritance.md
- title: Interfaces
statement: markdowns/chapter5/D-interfaces.md
- title: Generics
statement: markdowns/chapter5/E-generics.md
- title: ArrayList
statement: markdowns/chapter5/F-arraylist.md
- title: HashMap
statement: markdowns/chapter5/G-hashmap.md
- title: Chapter 6
description: "Learning Python"
plan:
- title: Getting Started
statement: markdowns/chapter6/0-getting-started.md
- title: Objects
statement: markdowns/chapter6/1-objects.md
- title: Importing Modules
statement: markdowns/chapter6/2-importing-modules.md
- title: Executing Shell Commands
statement: markdowns/chapter6/3-executing-shell-commands-in-python.md
- title: Scalar Data Types
statement: markdowns/chapter6/4-scalar-data-types.md
- title: Strings
statement: markdowns/chapter6/5-strings.md
- title: Duck Typing
statement: markdowns/chapter6/6-duck-typing.md
- title: Tuples
statement: markdowns/chapter6/7-tuples.md
- title: Lists
statement: markdowns/chapter6/8-lists.md
- title: Ranges
statement: markdowns/chapter6/9-ranges.md
- title: Slicing
statement: markdowns/chapter6/A-slicing.md
- title: Sets
statement: markdowns/chapter6/B-sets.md
- title: Dictionaries
statement: markdowns/chapter6/C-dictionaries.md
- title: Counters
statement: markdowns/chapter6/D-counters.md
- title: Dictionaries with Default Values
statement: markdowns/chapter6/E-dictionaries-with-default-values.md
- title: Hashable Objects
statement: markdowns/chapter6/F-hashable-objects.md
- title: List Comprehensions
statement: markdowns/chapter6/G-list-comprehensions.md
- title: Set Comprehensions
statement: markdowns/chapter6/H-set-comprehensions.md
- title: Dictionary Comprehensions
statement: markdowns/chapter6/I-dictionary-comprehensions.md
- title: Nested Comprehensions
statement: markdowns/chapter6/J-nested-comprehensions.md
- title: Control Flow
statement: markdowns/chapter6/K-control-flow.md
- title: The Empty Statement
statement: markdowns/chapter6/L-the-empty-statement.md
- title: Functions - Part I
statement: markdowns/chapter6/M-functions-part-i.md
- title: Functions - Part II
statement: markdowns/chapter6/N-functions-part-ii.md
- title: Functions - Part III
statement: markdowns/chapter6/O-functions-part-iii.md
- title: Classes
statement: markdowns/chapter6/P-classes.md
- title: Inheritance
statement: markdowns/chapter6/Q-inheritance.md
- title: The Empty Class
statement: markdowns/chapter6/R-the-empty-class.md
- title: The NumPy Package
statement: markdowns/chapter6/S-the-numpy-package.md
- title: Linear Algebra
statement: markdowns/chapter6/T-linear-algebra.md
- title: Random Number Generation
statement: markdowns/chapter6/U-random-number-generation.md
- title: The SciPy Package
statement: markdowns/chapter6/V-the-scipy-package.md
- title: The pandas Package
statement: markdowns/chapter6/W-the-pandas-package.md
- title: The scikit-learn Package
statement: markdowns/chapter6/X0-the-scikit-learn-package.md
- title: Clustering
statement: markdowns/chapter6/X1-clustering.md
- title: Classification
statement: markdowns/chapter6/X2-classification.md
- title: Regression
statement: markdowns/chapter6/X3-regression.md
- title: Reading and Writing Data in Text Format
statement: markdowns/chapter6/Y0-reading-and-writing-data-in-text-format.md
- title: Reading and Writing Ndarrays
statement: markdowns/chapter6/Y1-reading-and-writing-ndarrays.md
- title: Reading and Writing Dataframes
statement: markdowns/chapter6/Y2-reading-and-writing-dataframes.md
- title: Material Differences between Python 3 and 2
statement: markdowns/chapter6/Z-material-differences-between-python-3-and-2.md
- title: Chapter 7
description: "Learning R"
plan:
- title: Getting Started
statement: markdowns/chapter7/0-getting-started.md
- title: Executing Shell Commands
statement: markdowns/chapter7/1-executing-shell-commands.md
- title: Installing Packages
statement: markdowns/chapter7/2-installing-packages.md
- title: Scope
statement: markdowns/chapter7/3-scope.md
- title: Input and Output Files
statement: markdowns/chapter7/4-input-and-output-files.md
- title: Scalar Data Types
statement: markdowns/chapter7/5-scalar-data-types.md
- title: Vectors, Arrays, Lists, and Dataframes
statement: markdowns/chapter7/6-vectors-arrays-lists-and-dataframes.md
- title: The Iris Dataset
statement: markdowns/chapter7/7-the-iris-dataset.md
- title: Functions
statement: markdowns/chapter7/8-functions.md
- title: Conditionals
statement: markdowns/chapter7/9-conditionals.md
- title: Loops
statement: markdowns/chapter7/A-loops.md
- title: Vectorization
statement: markdowns/chapter7/B-vectorization.md
- title: Running Compiled Code
statement: markdowns/chapter7/C-running-compiled-code.md
- title: Interfacing with C Code
statement: markdowns/chapter7/D-interfacing-with-c-code.md
- title: Modern Interfaces to C Code
statement: markdowns/chapter7/E-modern-interfaces-to-c-code.md
- title: Customization
statement: markdowns/chapter7/F-customization.md
- title: Chapter 8
description: "Visualizing Data in R and Python"
plan:
- title: Graphing Data in R
statement: markdowns/chapter8/0-graphing-data-in-r.md
- title: Datasets
statement: markdowns/chapter8/1-datasets.md
- title: Packages
statement: markdowns/chapter8/2-packages.md
- title: Strip Plots
statement: markdowns/chapter8/3-strip-plots.md
- title: Histograms
statement: markdowns/chapter8/4-histograms.md
- title: Line Plots
statement: markdowns/chapter8/5-line-plots.md
- title: Kernel Functions
statement: markdowns/chapter8/6-kernel-functions.md
- title: Smoothing Histograms Using Gaussian Kernels
statement: markdowns/chapter8/7-smoothing-histograms-using-gaussian-kernels.md
- title: Smoothing Histograms Using qplot
statement: markdowns/chapter8/8-smoothing-histograms-using-qplot.md
- title: Smoothing Histograms Using ggplot
statement: markdowns/chapter8/9-smoothing-histograms-using-ggplot.md
- title: Scatter Plots
statement: markdowns/chapter8/A-scatter-plots.md
- title: Smoothing Scatter Plots
statement: markdowns/chapter8/B-smoothing-scatter-plots.md
- title: Facets
statement: markdowns/chapter8/C-facets.md
- title: All-Pairs Relationships
statement: markdowns/chapter8/D-all-pairs-relationships.md
- title: Contour Plots
statement: markdowns/chapter8/E-contour-plots.md
- title: Box Plots
statement: markdowns/chapter8/F-box-plots.md
- title: qq-Plots
statement: markdowns/chapter8/G-qq-plots.md
- title: Devices
statement: markdowns/chapter8/H-devices.md
- title: Data Preparation
statement: markdowns/chapter8/I-data-preparation.md
- title: Graphing Data in Python
statement: markdowns/chapter8/J-graphing-data-in-python.md
- title: Line Plots
statement: markdowns/chapter8/K-line-plots.md
- title: Histograms
statement: markdowns/chapter8/L-histograms.md
- title: Contour Plots
statement: markdowns/chapter8/M-contour-plots.md
- title: Surface Plots
statement: markdowns/chapter8/N-surface-plots.md
- title: Chapter 9
description: "Processing Data in R and Python"
plan:
- title: Missing Data in R - Part I
statement: markdowns/chapter9/0-missing-data-in-r-part-i.md
- title: Missing Data in R - Part II
statement: markdowns/chapter9/1-missing-data-in-r-part-ii.md
- title: Missing Data in Python
statement: markdowns/chapter9/2-missing-data-in-python.md
- title: Outliers
statement: markdowns/chapter9/3-outliers.md
- title: Skewness and Power Transformation - Part I
statement: markdowns/chapter9/4-skewness-and-power-transformation-part-i.md
- title: Skewness and Power Transformation - Part II
statement: markdowns/chapter9/5-skewness-and-power-transformation-part-ii.md
- title: Binning
statement: markdowns/chapter9/6-binning.md
- title: Indicator Variables
statement: markdowns/chapter9/7-indicator-values.md
- title: Random Sampling, Partitioning, and Shuffling
statement: markdowns/chapter9/8-random-sampling-partitioning-and-shuffling.md
- title: Concatenations and Joins
statement: markdowns/chapter9/9-concatenations-and-joins.md
- title: Reshaping Data
statement: markdowns/chapter9/A-reshaping-data.md
- title: The Split-Apply-Combine Framework
statement: markdowns/chapter9/B-the-split-apply-combine-framework.md
- title: Chapter 10
description: "Essential Knowledge: Parallel Programming"
plan:
- title: Thread Safety - Part I
statement: markdowns/chapter10/0-thread-safety-part-i.md
- title: Thread Safety - Part II
statement: markdowns/chapter10/1-thread-safety-part-ii.md
- title: Volatility - Part I
statement: markdowns/chapter10/2-volatility-part-i.md
- title: Volatility - Part II
statement: markdowns/chapter10/3-volatility-part-ii.md
- title: Synchronization
statement: markdowns/chapter10/4-synchronization.md
- title: Ineffectual Synchronization - Part I
statement: markdowns/chapter10/5-ineffectual-synchronization-part-i.md
- title: Ineffectual Synchronization - Part II
statement: markdowns/chapter10/6-ineffectual-synchronization-part-ii.md
- title: Ineffectual Synchronization - Part III
statement: markdowns/chapter10/7-ineffectual-synchronization-part-iii.md
- title: Synchronization vs. Volatility
statement: markdowns/chapter10/8-synchronization-vs-volatility.md
- title: Starvation
statement: markdowns/chapter10/9-starvation.md
- title: Deadlocks - Part I
statement: markdowns/chapter10/A0-deadlocks-part-i.md
- title: Deadlocks - Part II
statement: markdowns/chapter10/A1-deadlocks-part-ii.md
- title: Deadlocks - Part II
statement: markdowns/chapter10/A2-deadlocks-part-iii.md
- title: The Producer-Consumer Problem - Part I
statement: markdowns/chapter10/B0-the-producer-consumer-problem-part-i.md
- title: The Producer-Consumer Problem - Part II
statement: markdowns/chapter10/B1-the-producer-consumer-problem-part-ii.md
- title: The Producer-Consumer Problem - Part III
statement: markdowns/chapter10/B2-the-producer-consumer-problem-part-iii.md
- title: The Producer-Consumer Problem - Part IV
statement: markdowns/chapter10/B3-the-producer-consumer-problem-part-iv.md
- title: The Producer-Consumer Problem - Part V
statement: markdowns/chapter10/B4-the-producer-consumer-problem-part-v.md
- title: The Producer-Consumer Problem - Part VI
statement: markdowns/chapter10/B5-the-producer-consumer-problem-part-vi.md
- title: Reader-Writer Locks - Part I
statement: markdowns/chapter10/C0-reader-writer-locks-part-i.md
- title: Reader-Writer Locks - Part II
statement: markdowns/chapter10/C1-reader-writer-locks-part-ii.md
- title: Reader-Writer Locks - Part III
statement: markdowns/chapter10/C2-reader-writer-locks-part-iii.md
- title: Reader-Writer Locks - Part IV
statement: markdowns/chapter10/C3-reader-writer-locks-part-iv.md
- title: Reentrant Locks - Part I
statement: markdowns/chapter10/D0-reentrant-locks-part-i.md
- title: Reentrant Locks - Part II
statement: markdowns/chapter10/D1-reentrant-locks-part-ii.md
- title: Reentrant Locks - Part III
statement: markdowns/chapter10/D2-reentrant-locks-part-iii.md
- title: Reentrant Locks - Part IV
statement: markdowns/chapter10/D3-reentrant-locks-part-iv.md
- title: Thread Pools - Part I
statement: markdowns/chapter10/E0-thread-pools-part-i.md
- title: Thread Pools - Part II
statement: markdowns/chapter10/E1-thread-pools-part-ii.md
- title: Thread Pools - Part III
statement: markdowns/chapter10/E2-thread-pools-part-iii.md
- title: Scheduled Executor Services
statement: markdowns/chapter10/F-scheduled-executor-services.md
- title: Futures
statement: markdowns/chapter10/G-futures.md
- title: Streams
statement: markdowns/chapter10/H-streams.md
- title: ParSeq - Part I
statement: markdowns/chapter10/I-parseq-part-i.md
- title: ParSeq - Part II
statement: markdowns/chapter10/I-parseq-part-ii.md
- title: ParSeq - Part III
statement: markdowns/chapter10/I-parseq-part-iii.md
- title: ParSeq - Part IV
statement: markdowns/chapter10/I-parseq-part-iv.md
- title: File Locks
statement: markdowns/chapter10/J-file-locks.md
- title: Distributed Locks
statement: markdowns/chapter10/K-distributed-locks.md
- title: Linearizable Counters
statement: markdowns/chapter10/L-linearizable-counters.md
- title: Chapter 11
description: "Essential Knowledge: Testing"
plan:
- title: White-Box Testing
statement: markdowns/chapter11/0-white-box-testing.md
- title: Gray-Box Testing
statement: markdowns/chapter11/1-gray-box-testing.md
- title: Black-Box Testing
statement: markdowns/chapter11/2-black-box-testing.md
- title: Mocking
statement: markdowns/chapter11/3-mocking.md
- title: EasyMock
statement: markdowns/chapter11/4-easymock.md
- title: Test Hooks - Part I
statement: markdowns/chapter11/5-test-hooks-part-i.md
- title: Test Hooks - Part II
statement: markdowns/chapter11/6-test-hooks-part-ii.md
- title: Dealing with Randomness - Part I
statement: markdowns/chapter11/7-dealing-with-randomness-part-i.md
- title: Dealing with Randomness - Part II
statement: markdowns/chapter11/8-dealing-with-randomness-part-ii.md
- title: Test Case Anatomy - Part I
statement: markdowns/chapter11/9-test-case-anatomy-part-i.md
- title: Test Case Anatomy - Part II
statement: markdowns/chapter11/A-test-case-anatomy-part-ii.md
- title: Data-Driven Testing
statement: markdowns/chapter11/B-data-driven-testing.md
- title: Chapter 12
description: "A Few More Things About Programming"
plan:
- title: Git
statement: markdowns/chapter12/0-git.md
- title: Subversion
statement: markdowns/chapter12/1-subversion.md
- title: Ant
statement: markdowns/chapter12/2-ant.md
- title: Exceptions
statement: markdowns/chapter12/3-exceptions.md
- title: Handling Exceptions - Part I
statement: markdowns/chapter12/4-handling-exceptions-part-i.md
- title: Handling Exceptions - Part II
statement: markdowns/chapter12/5-handling-exceptions-part-ii.md
- title: Handling Exceptions - Part III
statement: markdowns/chapter12/6-handling-exceptions-part-iii.md
- title: Handling Exceptions - Part III
statement: markdowns/chapter12/7-custom-exceptions.md
- title: Docstrings
statement: markdowns/chapter12/8-docstrings.md
- title: Debugging
statement: markdowns/chapter12/9-debugging.md
- title: Chapter 13
description: "Essential Knowledge: Data Stores"
plan:
- title: JSON Serialization
statement: markdowns/chapter13/0-json-serialization.md
- title: Pickling
statement: markdowns/chapter13/1-pickling.md
- title: Shelving
statement: markdowns/chapter13/2-shelving.md
- title: Java Object Serialization
statement: markdowns/chapter13/3-java-object-serialization.md
- title: Accessing HDF from Python using PyTables
statement: markdowns/chapter13/4-accessing-hdf-from-python-using-pytables.md
- title: Working with Databases
statement: markdowns/chapter13/5-working-with-databases.md
- title: Chapter 14
description: "Thoughts on System Design for Big Data"
plan:
- title: Partitioning
statement: markdowns/chapter14/0-partitioning.md
- title: Retry Policies
statement: markdowns/chapter14/1-retry-policies.md
- title: Amazon DynamoDB - Part I
statement: markdowns/chapter14/3-amazon-dynamodb-part-i.md
- title: Amazon DynamoDB - Part II
statement: markdowns/chapter14/4-amazon-dynamodb-part-ii.md
- title: Amazon DynamoDB - Part III
statement: markdowns/chapter14/5-amazon-dynamodb-part-iii.md
- title: Amazon DynamoDB - Part IV
statement: markdowns/chapter14/6-amazon-dynamodb-part-iv.md
- title: Amazon DynamoDB - Part V
statement: markdowns/chapter14/7-amazon-dynamodb-part-v.md
- title: Amazon DynamoDB - Part VI
statement: markdowns/chapter14/8-amazon-dynamodb-part-vi.md
- title: Chapter 15
description: "Thoughts on Software Craftsmanship"
plan:
- title: Overview
statement: markdowns/chapter15/0-overview.md