This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample_ebook_toc.xml
2259 lines (2259 loc) · 94.5 KB
/
sample_ebook_toc.xml
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
<?xml version="1.0" ?>
<ncx:ncx xmlns:ncx="http://www.daisy.org/z3986/2005/ncx/" version="2005-1">
<ncx:head>
<ncx:meta name="cover" content="cover"/>
<ncx:meta name="dtb:uid" content="isbn:9780596158439"/>
<ncx:meta name="dtb:depth" content="-1"/>
<ncx:meta name="dtb:totalPageCount" content="0"/>
<ncx:meta name="dtb:maxPageNumber" content="0"/>
</ncx:head>
<ncx:docTitle>
<ncx:text>Beautiful Code</ncx:text>
</ncx:docTitle>
<ncx:navMap>
<ncx:navPoint id="id2385699" playOrder="1">
<ncx:navLabel>
<ncx:text>Beautiful Code</ncx:text>
</ncx:navLabel>
<ncx:content src="index.html"/>
<ncx:navPoint id="id2389538" playOrder="2">
<ncx:navLabel>
<ncx:text>Foreword</ncx:text>
</ncx:navLabel>
<ncx:content src="pr01.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2389625" playOrder="3">
<ncx:navLabel>
<ncx:text>Preface</ncx:text>
</ncx:navLabel>
<ncx:content src="pr02.html"/>
<ncx:navPoint id="id2386060" playOrder="4">
<ncx:navLabel>
<ncx:text>How This Book Is Organized</ncx:text>
</ncx:navLabel>
<ncx:content src="pr02.html#how_this_book_is_organized"/>
</ncx:navPoint>
<ncx:navPoint id="id2393069" playOrder="5">
<ncx:navLabel>
<ncx:text>Conventions Used in This Book</ncx:text>
</ncx:navLabel>
<ncx:content src="pr02s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2393122" playOrder="6">
<ncx:navLabel>
<ncx:text>Using Code Examples</ncx:text>
</ncx:navLabel>
<ncx:content src="pr02s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2393169" playOrder="7">
<ncx:navLabel>
<ncx:text>How to Contact Us</ncx:text>
</ncx:navLabel>
<ncx:content src="pr02s04.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2393224" playOrder="8">
<ncx:navLabel>
<ncx:text>Safari® Enabled</ncx:text>
</ncx:navLabel>
<ncx:content src="pr02s05.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2393273" playOrder="9">
<ncx:navLabel>
<ncx:text>1. A Regular Expression Matcher</ncx:text>
</ncx:navLabel>
<ncx:content src="ch01.html"/>
<ncx:navPoint id="id2391236" playOrder="10">
<ncx:navLabel>
<ncx:text>1.1. The Practice of Programming</ncx:text>
</ncx:navLabel>
<ncx:content src="ch01.html#the_practice_of_programming"/>
</ncx:navPoint>
<ncx:navPoint id="id2391504" playOrder="11">
<ncx:navLabel>
<ncx:text>1.2. Implementation</ncx:text>
</ncx:navLabel>
<ncx:content src="ch01s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2391592" playOrder="12">
<ncx:navLabel>
<ncx:text>1.3. Discussion</ncx:text>
</ncx:navLabel>
<ncx:content src="ch01s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2391943" playOrder="13">
<ncx:navLabel>
<ncx:text>1.4. Alternatives</ncx:text>
</ncx:navLabel>
<ncx:content src="ch01s04.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2392128" playOrder="14">
<ncx:navLabel>
<ncx:text>1.5. Building on It</ncx:text>
</ncx:navLabel>
<ncx:content src="ch01s05.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2455048" playOrder="15">
<ncx:navLabel>
<ncx:text>1.6. Conclusion</ncx:text>
</ncx:navLabel>
<ncx:content src="ch01s06.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2455128" playOrder="16">
<ncx:navLabel>
<ncx:text>2. Subversion's Delta Editor: Interface As Ontology</ncx:text>
</ncx:navLabel>
<ncx:content src="ch02.html"/>
<ncx:navPoint id="id2392579" playOrder="17">
<ncx:navLabel>
<ncx:text>2.1. Version Control and Tree Transformation</ncx:text>
</ncx:navLabel>
<ncx:content src="ch02.html#version_control_and_tree_transformation"/>
</ncx:navPoint>
<ncx:navPoint id="id2455929" playOrder="18">
<ncx:navLabel>
<ncx:text>2.2. Expressing Tree Differences</ncx:text>
</ncx:navLabel>
<ncx:content src="ch02s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2456060" playOrder="19">
<ncx:navLabel>
<ncx:text>2.3. The Delta Editor Interface</ncx:text>
</ncx:navLabel>
<ncx:content src="ch02s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2457091" playOrder="20">
<ncx:navLabel>
<ncx:text>2.4. But Is It Art?</ncx:text>
</ncx:navLabel>
<ncx:content src="ch02s04.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2457359" playOrder="21">
<ncx:navLabel>
<ncx:text>2.5. Abstraction As a Spectator Sport</ncx:text>
</ncx:navLabel>
<ncx:content src="ch02s05.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2457800" playOrder="22">
<ncx:navLabel>
<ncx:text>2.6. Conclusions</ncx:text>
</ncx:navLabel>
<ncx:content src="ch02s06.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2457879" playOrder="23">
<ncx:navLabel>
<ncx:text>3. The Most Beautiful Code I Never Wrote</ncx:text>
</ncx:navLabel>
<ncx:content src="ch03.html"/>
<ncx:navPoint id="id2457953" playOrder="24">
<ncx:navLabel>
<ncx:text>3.1. The Most Beautiful Code I Ever Wrote</ncx:text>
</ncx:navLabel>
<ncx:content src="ch03.html#the_most_beautiful_code_i_ever_wrote"/>
</ncx:navPoint>
<ncx:navPoint id="id2458240" playOrder="25">
<ncx:navLabel>
<ncx:text>3.2. More and More with Less and Less</ncx:text>
</ncx:navLabel>
<ncx:content src="ch03s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2459591" playOrder="26">
<ncx:navLabel>
<ncx:text>3.3. Perspective</ncx:text>
</ncx:navLabel>
<ncx:content src="ch03s03.html"/>
<ncx:navPoint id="id2460291" playOrder="27">
<ncx:navLabel>
<ncx:text>3.3.1. A Bonus Analysis</ncx:text>
</ncx:navLabel>
<ncx:content src="ch03s03.html#a_bonus_analysis"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2460441" playOrder="28">
<ncx:navLabel>
<ncx:text>3.4. What Is Writing?</ncx:text>
</ncx:navLabel>
<ncx:content src="ch03s04.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2460546" playOrder="29">
<ncx:navLabel>
<ncx:text>3.5. Conclusion</ncx:text>
</ncx:navLabel>
<ncx:content src="ch03s05.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2460777" playOrder="30">
<ncx:navLabel>
<ncx:text>3.6. Acknowledgments</ncx:text>
</ncx:navLabel>
<ncx:content src="ch03s06.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2460802" playOrder="31">
<ncx:navLabel>
<ncx:text>4. Finding Things</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04.html"/>
<ncx:navPoint id="id2460869" playOrder="32">
<ncx:navLabel>
<ncx:text>4.1. On Time</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04.html#on_time"/>
</ncx:navPoint>
<ncx:navPoint id="id2460889" playOrder="33">
<ncx:navLabel>
<ncx:text>4.2. Problem: Weblog Data</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s02.html"/>
<ncx:navPoint id="id2461027" playOrder="34">
<ncx:navLabel>
<ncx:text>4.2.1. Regular Expressions</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s02.html#regular_expressions"/>
</ncx:navPoint>
<ncx:navPoint id="id2461210" playOrder="35">
<ncx:navLabel>
<ncx:text>4.2.2. Putting Regular Expressions to Work</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s02.html#putting_regular_expressions_to_work"/>
</ncx:navPoint>
<ncx:navPoint id="id2371878" playOrder="36">
<ncx:navLabel>
<ncx:text>4.2.3. Content-Addressable Storage</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s02.html#content-addressable_storage"/>
</ncx:navPoint>
<ncx:navPoint id="id2372494" playOrder="37">
<ncx:navLabel>
<ncx:text>4.2.4. Time to Optimize?</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s02.html#time_to_optimize"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2372731" playOrder="38">
<ncx:navLabel>
<ncx:text>4.3. Problem: Who Fetched What, When?</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s03.html"/>
<ncx:navPoint id="id2372898" playOrder="39">
<ncx:navLabel>
<ncx:text>4.3.1. Binary Search</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s03.html#binary_search"/>
</ncx:navPoint>
<ncx:navPoint id="id2373212" playOrder="40">
<ncx:navLabel>
<ncx:text>4.3.2. Binary Search Trade-offs</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s03.html#binary_search_trade-offs"/>
</ncx:navPoint>
<ncx:navPoint id="id2373353" playOrder="41">
<ncx:navLabel>
<ncx:text>4.3.3. Escaping the Loop</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s03.html#escaping_the_loop"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2373456" playOrder="42">
<ncx:navLabel>
<ncx:text>4.4. Search in the Large</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s04.html"/>
<ncx:navPoint id="id2373534" playOrder="43">
<ncx:navLabel>
<ncx:text>4.4.1. Searching with Postings</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s04.html#searching_with_postings"/>
</ncx:navPoint>
<ncx:navPoint id="id2373614" playOrder="44">
<ncx:navLabel>
<ncx:text>4.4.2. Ranking Results</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s04.html#ranking_results"/>
</ncx:navPoint>
<ncx:navPoint id="id2373662" playOrder="45">
<ncx:navLabel>
<ncx:text>4.4.3. Searching the Web</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s04.html#searching_the_web"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2373808" playOrder="46">
<ncx:navLabel>
<ncx:text>4.5. Conclusion</ncx:text>
</ncx:navLabel>
<ncx:content src="ch04s05.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2373831" playOrder="47">
<ncx:navLabel>
<ncx:text>5. Correct, Beautiful, Fast (in That Order): Lessons from Designing XML Verifiers</ncx:text>
</ncx:navLabel>
<ncx:content src="ch05.html"/>
<ncx:navPoint id="id2373905" playOrder="48">
<ncx:navLabel>
<ncx:text>5.1. The Role of XML Validation</ncx:text>
</ncx:navLabel>
<ncx:content src="ch05.html#the_role_of_xml_validation"/>
</ncx:navPoint>
<ncx:navPoint id="id2374023" playOrder="49">
<ncx:navLabel>
<ncx:text>5.2. The Problem</ncx:text>
</ncx:navLabel>
<ncx:content src="ch05s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2374247" playOrder="50">
<ncx:navLabel>
<ncx:text>5.3. Version 1: The Naïve Implementation</ncx:text>
</ncx:navLabel>
<ncx:content src="ch05s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2374408" playOrder="51">
<ncx:navLabel>
<ncx:text>5.4. Version 2: Imitating the BNF Grammar O(N)</ncx:text>
</ncx:navLabel>
<ncx:content src="ch05s04.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2374626" playOrder="52">
<ncx:navLabel>
<ncx:text>5.5. Version 3: First Optimization O(log N)</ncx:text>
</ncx:navLabel>
<ncx:content src="ch05s05.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2374769" playOrder="53">
<ncx:navLabel>
<ncx:text>5.6. Version 4: Second Optimization: Don't Check Twice</ncx:text>
</ncx:navLabel>
<ncx:content src="ch05s06.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2375079" playOrder="54">
<ncx:navLabel>
<ncx:text>5.7. Version 5: Third Optimization O(1)</ncx:text>
</ncx:navLabel>
<ncx:content src="ch05s07.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2375709" playOrder="55">
<ncx:navLabel>
<ncx:text>5.8. Version 6: Fourth Optimization: Caching</ncx:text>
</ncx:navLabel>
<ncx:content src="ch05s08.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2375914" playOrder="56">
<ncx:navLabel>
<ncx:text>5.9. The Moral of the Story</ncx:text>
</ncx:navLabel>
<ncx:content src="ch05s09.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2375954" playOrder="57">
<ncx:navLabel>
<ncx:text>6. Framework for Integrated Test: Beauty Through Fragility</ncx:text>
</ncx:navLabel>
<ncx:content src="ch06.html"/>
<ncx:navPoint id="id2376064" playOrder="58">
<ncx:navLabel>
<ncx:text>6.1. An Acceptance Testing Framework in Three Classes</ncx:text>
</ncx:navLabel>
<ncx:content src="ch06.html#an_acceptance_testing_framework_in_three_classes"/>
</ncx:navPoint>
<ncx:navPoint id="id2376431" playOrder="59">
<ncx:navLabel>
<ncx:text>6.2. The Challenge of Framework Design</ncx:text>
</ncx:navLabel>
<ncx:content src="ch06s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2376723" playOrder="60">
<ncx:navLabel>
<ncx:text>6.3. An Open Framework</ncx:text>
</ncx:navLabel>
<ncx:content src="ch06s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2377020" playOrder="61">
<ncx:navLabel>
<ncx:text>6.4. How Simple Can an HTML Parser Be?</ncx:text>
</ncx:navLabel>
<ncx:content src="ch06s04.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2377498" playOrder="62">
<ncx:navLabel>
<ncx:text>6.5. Conclusion</ncx:text>
</ncx:navLabel>
<ncx:content src="ch06s05.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2377656" playOrder="63">
<ncx:navLabel>
<ncx:text>7. Beautiful Tests</ncx:text>
</ncx:navLabel>
<ncx:content src="ch07.html"/>
<ncx:navPoint id="id2377887" playOrder="64">
<ncx:navLabel>
<ncx:text>7.1. That Pesky Binary Search</ncx:text>
</ncx:navLabel>
<ncx:content src="ch07.html#that_pesky_binary_search"/>
</ncx:navPoint>
<ncx:navPoint id="id2378269" playOrder="65">
<ncx:navLabel>
<ncx:text>7.2. Introducing JUnit</ncx:text>
</ncx:navLabel>
<ncx:content src="ch07s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2378454" playOrder="66">
<ncx:navLabel>
<ncx:text>7.3. Nailing Binary Search</ncx:text>
</ncx:navLabel>
<ncx:content src="ch07s03.html"/>
<ncx:navPoint id="id2398285" playOrder="67">
<ncx:navLabel>
<ncx:text>7.3.1. Smoking Allowed (and Encouraged)</ncx:text>
</ncx:navLabel>
<ncx:content src="ch07s03.html#smoking_allowed_and_encouraged"/>
</ncx:navPoint>
<ncx:navPoint id="id2398406" playOrder="68">
<ncx:navLabel>
<ncx:text>7.3.2. Pushing the Boundaries</ncx:text>
</ncx:navLabel>
<ncx:content src="ch07s03.html#pushing_the_boundaries"/>
</ncx:navPoint>
<ncx:navPoint id="id2399068" playOrder="69">
<ncx:navLabel>
<ncx:text>7.3.3. Random Acts of Testing</ncx:text>
</ncx:navLabel>
<ncx:content src="ch07s03.html#random_acts_of_testing"/>
</ncx:navPoint>
<ncx:navPoint id="id2400063" playOrder="70">
<ncx:navLabel>
<ncx:text>7.3.4. Performance Anxiety</ncx:text>
</ncx:navLabel>
<ncx:content src="ch07s03.html#performance_anxiety"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2400394" playOrder="71">
<ncx:navLabel>
<ncx:text>7.4. Conclusion</ncx:text>
</ncx:navLabel>
<ncx:content src="ch07s04.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2400478" playOrder="72">
<ncx:navLabel>
<ncx:text>8. On-the-Fly Code Generation for Image Processing</ncx:text>
</ncx:navLabel>
<ncx:content src="ch08.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2405455" playOrder="73">
<ncx:navLabel>
<ncx:text>9. Top Down Operator Precedence</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09.html"/>
<ncx:navPoint id="id2405702" playOrder="74">
<ncx:navLabel>
<ncx:text>9.1. JavaScript</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09.html#javascript"/>
</ncx:navPoint>
<ncx:navPoint id="id2405929" playOrder="75">
<ncx:navLabel>
<ncx:text>9.2. Symbol Table</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2420814" playOrder="76">
<ncx:navLabel>
<ncx:text>9.3. Tokens</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2420991" playOrder="77">
<ncx:navLabel>
<ncx:text>9.4. Precedence</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s04.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2421233" playOrder="78">
<ncx:navLabel>
<ncx:text>9.5. Expressions</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s05.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2421338" playOrder="79">
<ncx:navLabel>
<ncx:text>9.6. Infix Operators</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s06.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2421743" playOrder="80">
<ncx:navLabel>
<ncx:text>9.7. Prefix Operators</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s07.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2421876" playOrder="81">
<ncx:navLabel>
<ncx:text>9.8. Assignment Operators</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s08.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2421987" playOrder="82">
<ncx:navLabel>
<ncx:text>9.9. Constants</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s09.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2422059" playOrder="83">
<ncx:navLabel>
<ncx:text>9.10. Scope</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s10.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2422476" playOrder="84">
<ncx:navLabel>
<ncx:text>9.11. Statements</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s11.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2423015" playOrder="85">
<ncx:navLabel>
<ncx:text>9.12. Functions</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s12.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2423189" playOrder="86">
<ncx:navLabel>
<ncx:text>9.13. Array and Object Literals</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s13.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2423287" playOrder="87">
<ncx:navLabel>
<ncx:text>9.14. Things to Do and Think About</ncx:text>
</ncx:navLabel>
<ncx:content src="ch09s14.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2423408" playOrder="88">
<ncx:navLabel>
<ncx:text>10. The Quest for an Accelerated Population Count</ncx:text>
</ncx:navLabel>
<ncx:content src="ch10.html"/>
<ncx:navPoint id="id2423541" playOrder="89">
<ncx:navLabel>
<ncx:text>10.1. Basic Methods</ncx:text>
</ncx:navLabel>
<ncx:content src="ch10.html#basic_methods"/>
</ncx:navPoint>
<ncx:navPoint id="id2423772" playOrder="90">
<ncx:navLabel>
<ncx:text>10.2. Divide and Conquer</ncx:text>
</ncx:navLabel>
<ncx:content src="ch10s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2424185" playOrder="91">
<ncx:navLabel>
<ncx:text>10.3. Other Methods</ncx:text>
</ncx:navLabel>
<ncx:content src="ch10s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2424419" playOrder="92">
<ncx:navLabel>
<ncx:text>10.4. Sum and Difference of Population Counts of Two Words</ncx:text>
</ncx:navLabel>
<ncx:content src="ch10s04.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2424577" playOrder="93">
<ncx:navLabel>
<ncx:text>10.5. Comparing the Population Counts of Two Words</ncx:text>
</ncx:navLabel>
<ncx:content src="ch10s05.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2424734" playOrder="94">
<ncx:navLabel>
<ncx:text>10.6. Counting the 1-Bits in an Array</ncx:text>
</ncx:navLabel>
<ncx:content src="ch10s06.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2425940" playOrder="95">
<ncx:navLabel>
<ncx:text>10.7. Applications</ncx:text>
</ncx:navLabel>
<ncx:content src="ch10s07.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2426486" playOrder="96">
<ncx:navLabel>
<ncx:text>11. Secure Communication: The Technology Of Freedom</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11.html"/>
<ncx:navPoint id="id2426704" playOrder="97">
<ncx:navLabel>
<ncx:text>11.1. The Heart of the Start</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11.html#the_heart_of_the_start"/>
</ncx:navPoint>
<ncx:navPoint id="id2426868" playOrder="98">
<ncx:navLabel>
<ncx:text>11.2. Untangling the Complexity of Secure Messaging</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2427154" playOrder="99">
<ncx:navLabel>
<ncx:text>11.3. Usability Is the Key</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2427550" playOrder="100">
<ncx:navLabel>
<ncx:text>11.4. The Foundation</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s04.html"/>
<ncx:navPoint id="id2427724" playOrder="101">
<ncx:navLabel>
<ncx:text>11.4.1. Design Goals and Decisions</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s04.html#design_goals_and_decisions"/>
</ncx:navPoint>
<ncx:navPoint id="id2427847" playOrder="102">
<ncx:navLabel>
<ncx:text>11.4.2. Basic System Design</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s04.html#basic_system_design"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2428133" playOrder="103">
<ncx:navLabel>
<ncx:text>11.5. The Test Suite</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s05.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2428258" playOrder="104">
<ncx:navLabel>
<ncx:text>11.6. The Functioning Prototype</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s06.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2428482" playOrder="105">
<ncx:navLabel>
<ncx:text>11.7. Clean Up, Plug In, Rock On…</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s07.html"/>
<ncx:navPoint id="id2428695" playOrder="106">
<ncx:navLabel>
<ncx:text>11.7.1. Revamping the Mail Store</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s07.html#revamping_the_mail_store"/>
</ncx:navPoint>
<ncx:navPoint id="id2428976" playOrder="107">
<ncx:navLabel>
<ncx:text>11.7.2. Persistence of Decryption</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s07.html#persistence_of_decryption"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2429238" playOrder="108">
<ncx:navLabel>
<ncx:text>11.8. Hacking in the Himalayas</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s08.html"/>
<ncx:navPoint id="id2406166" playOrder="109">
<ncx:navLabel>
<ncx:text>11.8.1. Securing the Code</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s08.html#securing_the_code"/>
</ncx:navPoint>
<ncx:navPoint id="id2406406" playOrder="110">
<ncx:navLabel>
<ncx:text>11.8.2. Auditing Crypt::GPG</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s08.html#auditing_cryptgpg"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2406731" playOrder="111">
<ncx:navLabel>
<ncx:text>11.9. The Invisible Hand Moves</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s09.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2407030" playOrder="112">
<ncx:navLabel>
<ncx:text>11.10. Speed Does Matter</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s10.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2407184" playOrder="113">
<ncx:navLabel>
<ncx:text>11.11. Communications Privacy for Individual Rights</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s11.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2407359" playOrder="114">
<ncx:navLabel>
<ncx:text>11.12. Hacking the Civilization</ncx:text>
</ncx:navLabel>
<ncx:content src="ch11s12.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2407486" playOrder="115">
<ncx:navLabel>
<ncx:text>12. Growing Beautiful Code in BioPerl</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12.html"/>
<ncx:navPoint id="id2407556" playOrder="116">
<ncx:navLabel>
<ncx:text>12.1. BioPerl and the Bio::Graphics Module</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12.html#bioperl_and_the_biographics_module"/>
<ncx:navPoint id="id2407758" playOrder="117">
<ncx:navLabel>
<ncx:text>12.1.1. Example of Bio::Graphics Output</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12.html#example_of_biographics_output"/>
</ncx:navPoint>
<ncx:navPoint id="id2407984" playOrder="118">
<ncx:navLabel>
<ncx:text>12.1.2. Bio::Graphics Requirements</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12.html#biographics_requirements"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2408302" playOrder="119">
<ncx:navLabel>
<ncx:text>12.2. The Bio::Graphics Design Process</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s02.html"/>
<ncx:navPoint id="id2408360" playOrder="120">
<ncx:navLabel>
<ncx:text>12.2.1. Designing How the Developer Interacts with the Module</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s02.html#designing_how_the_developer_interacts_with_the_module"/>
</ncx:navPoint>
<ncx:navPoint id="id2409083" playOrder="121">
<ncx:navLabel>
<ncx:text>12.2.2. Setting Options</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s02.html#setting_options"/>
</ncx:navPoint>
<ncx:navPoint id="id2409478" playOrder="122">
<ncx:navLabel>
<ncx:text>12.2.3. Choosing Object Classes</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s02.html#choosing_object_classes"/>
</ncx:navPoint>
<ncx:navPoint id="id2410013" playOrder="123">
<ncx:navLabel>
<ncx:text>12.2.4. Option Processing</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s02.html#option_processing"/>
</ncx:navPoint>
<ncx:navPoint id="id2411100" playOrder="124">
<ncx:navLabel>
<ncx:text>12.2.5. Code Example</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s02.html#code_example"/>
</ncx:navPoint>
<ncx:navPoint id="id2411381" playOrder="125">
<ncx:navLabel>
<ncx:text>12.2.6. Dynamic Options</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s02.html#dynamic_options"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2412108" playOrder="126">
<ncx:navLabel>
<ncx:text>12.3. Extending Bio::Graphics</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s03.html"/>
<ncx:navPoint id="id2412142" playOrder="127">
<ncx:navLabel>
<ncx:text>12.3.1. Supporting Web Developers</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s03.html#supporting_web_developers"/>
</ncx:navPoint>
<ncx:navPoint id="id2412420" playOrder="128">
<ncx:navLabel>
<ncx:text>12.3.2. Supporting Publication-Quality Images</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s03.html#supporting_publication-quality_images"/>
</ncx:navPoint>
<ncx:navPoint id="id2412663" playOrder="129">
<ncx:navLabel>
<ncx:text>12.3.3. Adding New Glyphs</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s03.html#adding_new_glyphs"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2412903" playOrder="130">
<ncx:navLabel>
<ncx:text>12.4. Conclusions and Lessons Learned</ncx:text>
</ncx:navLabel>
<ncx:content src="ch12s04.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2413052" playOrder="131">
<ncx:navLabel>
<ncx:text>13. The Design of the Gene Sorte</ncx:text>
</ncx:navLabel>
<ncx:content src="ch13.html"/>
<ncx:navPoint id="id2413226" playOrder="132">
<ncx:navLabel>
<ncx:text>13.1. The User Interface of the Gene Sorter</ncx:text>
</ncx:navLabel>
<ncx:content src="ch13.html#the_user_interface_of_the_gene_sorter"/>
</ncx:navPoint>
<ncx:navPoint id="id2413333" playOrder="133">
<ncx:navLabel>
<ncx:text>13.2. Maintaining a Dialog with the User over the Web</ncx:text>
</ncx:navLabel>
<ncx:content src="ch13s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2413762" playOrder="134">
<ncx:navLabel>
<ncx:text>13.3. A Little Polymorphism Can Go a Long Way</ncx:text>
</ncx:navLabel>
<ncx:content src="ch13s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2414276" playOrder="135">
<ncx:navLabel>
<ncx:text>13.4. Filtering Down to Just the Relevant Genes</ncx:text>
</ncx:navLabel>
<ncx:content src="ch13s04.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2414479" playOrder="136">
<ncx:navLabel>
<ncx:text>13.5. Theory of Beautiful Code in the Large</ncx:text>
</ncx:navLabel>
<ncx:content src="ch13s05.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2414930" playOrder="137">
<ncx:navLabel>
<ncx:text>13.6. Conclusion</ncx:text>
</ncx:navLabel>
<ncx:content src="ch13s06.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2414993" playOrder="138">
<ncx:navLabel>
<ncx:text>14. How Elegant Code Evolves with Hardware The Case of Gaussian Elimination</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14.html"/>
<ncx:navPoint id="id2415282" playOrder="139">
<ncx:navLabel>
<ncx:text>14.1. The Effects of Computer Architectures on Matrix Algorithms</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14.html#the_effects_of_computer_architectures_on_matrix_algorithms"/>
</ncx:navPoint>
<ncx:navPoint id="id2415661" playOrder="140">
<ncx:navLabel>
<ncx:text>14.2. A Decompositional Approach</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2415894" playOrder="141">
<ncx:navLabel>
<ncx:text>14.3. A Simple Version</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2416235" playOrder="142">
<ncx:navLabel>
<ncx:text>14.4. LINPACK's DGEFA Subroutine</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14s04.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2416586" playOrder="143">
<ncx:navLabel>
<ncx:text>14.5. LAPACK DGETRF</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14s05.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2417106" playOrder="144">
<ncx:navLabel>
<ncx:text>14.6. Recursive LU</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14s06.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2417608" playOrder="145">
<ncx:navLabel>
<ncx:text>14.7. ScaLAPACK PDGETRF</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14s07.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2418337" playOrder="146">
<ncx:navLabel>
<ncx:text>14.8. Multithreading for Multi-Core Systems</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14s08.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2418820" playOrder="147">
<ncx:navLabel>
<ncx:text>14.9. A Word About the Error Analysis and Operation Count</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14s09.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2419001" playOrder="148">
<ncx:navLabel>
<ncx:text>14.10. Future Directions for Research</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14s10.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2419088" playOrder="149">
<ncx:navLabel>
<ncx:text>14.11. Further Reading</ncx:text>
</ncx:navLabel>
<ncx:content src="ch14s11.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2419224" playOrder="150">
<ncx:navLabel>
<ncx:text>15. The Long-Term Benefits of Beautiful Design</ncx:text>
</ncx:navLabel>
<ncx:content src="ch15.html"/>
<ncx:navPoint id="id2419301" playOrder="151">
<ncx:navLabel>
<ncx:text>15.1. My Idea of Beautiful Code</ncx:text>
</ncx:navLabel>
<ncx:content src="ch15.html#my_idea_of_beautiful_code"/>
</ncx:navPoint>
<ncx:navPoint id="id2419356" playOrder="152">
<ncx:navLabel>
<ncx:text>15.2. Introducing the CERN Library</ncx:text>
</ncx:navLabel>
<ncx:content src="ch15s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2419415" playOrder="153">
<ncx:navLabel>
<ncx:text>15.3. Outer Beauty</ncx:text>
</ncx:navLabel>
<ncx:content src="ch15s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2420147" playOrder="154">
<ncx:navLabel>
<ncx:text>15.4. Inner Beauty</ncx:text>
</ncx:navLabel>
<ncx:content src="ch15s04.html"/>
<ncx:navPoint id="id2420183" playOrder="155">
<ncx:navLabel>
<ncx:text>15.4.1. Beauty in Brevity and Simplicity</ncx:text>
</ncx:navLabel>
<ncx:content src="ch15s04.html#beauty_in_brevity_and_simplicity"/>
</ncx:navPoint>
<ncx:navPoint id="id2420378" playOrder="156">
<ncx:navLabel>
<ncx:text>15.4.2. Beauty in Frugality</ncx:text>
</ncx:navLabel>
<ncx:content src="ch15s04.html#beauty_in_frugality"/>
</ncx:navPoint>
<ncx:navPoint id="id2420675" playOrder="157">
<ncx:navLabel>
<ncx:text>15.4.3. Beauty in Flow</ncx:text>
</ncx:navLabel>
<ncx:content src="ch15s04.html#beauty_in_flow"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2490192" playOrder="158">
<ncx:navLabel>
<ncx:text>15.5. Conclusion</ncx:text>
</ncx:navLabel>
<ncx:content src="ch15s05.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2490240" playOrder="159">
<ncx:navLabel>
<ncx:text>16. The Linux Kernel Driver Model: The Benefits of Working Together</ncx:text>
</ncx:navLabel>
<ncx:content src="ch16.html"/>
<ncx:navPoint id="id2490533" playOrder="160">
<ncx:navLabel>
<ncx:text>16.1. Humble Beginnings</ncx:text>
</ncx:navLabel>
<ncx:content src="ch16.html#humble_beginnings"/>
</ncx:navPoint>
<ncx:navPoint id="id2491220" playOrder="161">
<ncx:navLabel>
<ncx:text>16.2. Reduced to Even Smaller Bits</ncx:text>
</ncx:navLabel>
<ncx:content src="ch16s02.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2491844" playOrder="162">
<ncx:navLabel>
<ncx:text>16.3. Scaling Up to Thousands of Devices</ncx:text>
</ncx:navLabel>
<ncx:content src="ch16s03.html"/>
</ncx:navPoint>
<ncx:navPoint id="id2492112" playOrder="163">
<ncx:navLabel>
<ncx:text>16.4. Small Objects Loosely Joined</ncx:text>
</ncx:navLabel>
<ncx:content src="ch16s04.html"/>
</ncx:navPoint>
</ncx:navPoint>
<ncx:navPoint id="id2492177" playOrder="164">
<ncx:navLabel>
<ncx:text>17. Another Level of Indirection</ncx:text>
</ncx:navLabel>
<ncx:content src="ch17.html"/>
<ncx:navPoint id="id2492303" playOrder="165">
<ncx:navLabel>
<ncx:text>17.1. From Code to Pointers</ncx:text>
</ncx:navLabel>
<ncx:content src="ch17.html#from_code_to_pointers"/>