-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
915 lines (915 loc) · 53.4 KB
/
.gitignore
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
/.perltidyrc
/.sass-cache
/.tidyall.d
/Makefile
/Tests/case-insense-file-collision.t
/Tests/data/cache/hebrew-spelling-timestamp.json
/Tests/data/cache/spelling-timestamp.json
/Tests/data/cache/vnu-html-validator.json
/Tests/lib/__pycache__/
/Tests/scss.t
/Tests/spell-check-is-sorted.t
/Tests/tidyall.t
/bin/Run-YUI-Compressor
/bin/add-css-classes-using-jquery.js
/bin/batch-inplace-html-minifier
/bin/clean-up-docbook-xhtml-1.1.xslt
/bin/common-required-deps.yml
/bin/extract-spelling-errors.pl
/bin/gen-build-deps
/bin/gen-rpm-for-build-deps
/bin/html-min-cli-config-file.conf
/bin/inkscape-wrapper
/bin/render
/bin/shlom.in-redirect/A.pm
/bin/shlom.in-redirect/D.pm
/bin/shlom.in-redirect/dest/1/A.pm
/bin/shlom.in-redirect/dest/1/D.pm
/bin/shlom.in-redirect/dest/1/front.txt
/bin/shlom.in-redirect/dest/1/shlom.in-refer.pl
/bin/shlom.in-redirect/front.txt
/bin/sort-check-spelling-file
/bin/spell-checker-iface
/bin/spell.bash
/bin/translate-Vered-XML
/bower_components/
/common/images/bk2hp.png
/common/js/jq.js
/dest
/eslint-ts.json
/lib/HTML/Latemp/DocBook/DocsList.pm
/lib/HTML/Latemp/DocBook/EndFormats.pm
/lib/HTML/Latemp/DocBook/GenMake.pm
/lib/HTML/Latemp/GenDeps.pm
/lib/HTML/Latemp/GenDepsTT2.pm
/lib/HTML/Latemp/GenWmlHSects.pm
/lib/Inc/cpan_dists.wml
/lib/Inc/h_sections.wml
/lib/Inc/html5-shims.wml
/lib/Shlomif/Spelling/Check.pm
/lib/Shlomif/Spelling/Iface.pm
/lib/Shlomif/Spelling/Whitelist.pm
/lib/Shlomif/factoids-nav.json
/lib/asciidocs/letter-to-christina-grimmie.asciidoc.xhtml
/lib/c-begin/
/lib/cache/STAMP.post-dest
/lib/cache/STAMP.sects-includes
/lib/cache/combined/
/lib/docbook/5/essays/A-hashtag-SummerNSA-s-Reading/all-in-one.xhtml
/lib/docbook/5/essays/Spark-Pre-Birth-of-a-Modern-Lisp/all-in-one.xhtml
/lib/docbook/5/essays/SummerNSA-2014-09-call-for-action/all-in-one.xhtml
/lib/docbook/5/essays/The-Earth-Angel-english/all-in-one.xhtml
/lib/docbook/5/essays/The-Earth-Angel-hebrew/all-in-one.xhtml
/lib/docbook/5/essays/The-Enemy-English-v7/all-in-one.xhtml
/lib/docbook/5/essays/The-Enemy-English-v8/all-in-one.xhtml
/lib/docbook/5/essays/The-Enemy-Hebrew-rev6/all-in-one.xhtml
/lib/docbook/5/essays/The-Enemy-Hebrew-v7/all-in-one.xhtml
/lib/docbook/5/essays/The-Pope-Died-on-Sunday-english/all-in-one.xhtml
/lib/docbook/5/essays/The-Pope-Died-on-Sunday-hebrew/all-in-one.xhtml
/lib/docbook/5/essays/about-the-origins-of-consciousness-craziness-and-normativity-conformism-and-nevua/all-in-one.xhtml
/lib/docbook/5/essays/c-and-cpp-elements-to-avoid/all-in-one.xhtml
/lib/docbook/5/essays/case-for-drug-legalisation--hebrew-v3/all-in-one.xhtml
/lib/docbook/5/essays/case-for-drug-legalisation-rev2/all-in-one.xhtml
/lib/docbook/5/essays/case-for-drug-legalisation-v3/all-in-one.xhtml
/lib/docbook/5/essays/case-for-drug-legalisation/all-in-one.xhtml
/lib/docbook/5/essays/case-for-file-swapping-rev2/all-in-one.xhtml
/lib/docbook/5/essays/case-for-file-swapping-rev3/all-in-one.xhtml
/lib/docbook/5/essays/case-for-file-swapping/all-in-one.xhtml
/lib/docbook/5/essays/dealing-with-hypomanias/all-in-one.xhtml
/lib/docbook/5/essays/end-of-it-slavery/all-in-one.xhtml
/lib/docbook/5/essays/fiction-text-example-for-X-G-Fiction-demo/all-in-one.xhtml
/lib/docbook/5/essays/foss-and-other-beasts-v3/all-in-one.xhtml
/lib/docbook/5/essays/foss-and-other-beasts/all-in-one.xhtml
/lib/docbook/5/essays/foss-licences-wars-rev2/all-in-one.xhtml
/lib/docbook/5/essays/foss-licences-wars/all-in-one.xhtml
/lib/docbook/5/essays/hebrew-html-tutorial/all-in-one.xhtml
/lib/docbook/5/essays/how-to-share-code-online/all-in-one.xhtml
/lib/docbook/5/essays/human-hacking-field-guide-v2--arabic/all-in-one.xhtml
/lib/docbook/5/essays/human-hacking-field-guide-v2--english/all-in-one.xhtml
/lib/docbook/5/essays/human-hacking-field-guide-v2--hebrew/all-in-one.xhtml
/lib/docbook/5/essays/human-hacking-field-guide/all-in-one.xhtml
/lib/docbook/5/essays/introductory-language/all-in-one.xhtml
/lib/docbook/5/essays/isr-pales-conflict-solution/all-in-one.xhtml
/lib/docbook/5/essays/multiverse-cosmology-v0.4.x/all-in-one.xhtml
/lib/docbook/5/essays/my-real-person-fiction/all-in-one.xhtml
/lib/docbook/5/essays/objectivism-and-open-source-r1/all-in-one.xhtml
/lib/docbook/5/essays/objectivism-and-open-source/all-in-one.xhtml
/lib/docbook/5/essays/park-lisp-informal-spec/all-in-one.xhtml
/lib/docbook/5/essays/perfect-it-workplace-v2/all-in-one.xhtml
/lib/docbook/5/essays/perfect-it-workplace/all-in-one.xhtml
/lib/docbook/5/essays/putting-all-cards-on-the-table-2013/all-in-one.xhtml
/lib/docbook/5/essays/putting-cards-on-the-table-2019-2020/all-in-one.xhtml
/lib/docbook/5/essays/putting-more-cards-on-the-table-2014/all-in-one.xhtml
/lib/docbook/5/essays/reflections-on-software-quality-trends/all-in-one.xhtml
/lib/docbook/5/essays/rindolf-spec/all-in-one.xhtml
/lib/docbook/5/essays/samsmith/all-in-one.xhtml
/lib/docbook/5/essays/shlomif-cocktails/all-in-one.xhtml
/lib/docbook/5/essays/the-eternal-jew/all-in-one.xhtml
/lib/docbook/5/essays/usability-of-perl-world-for-newcomers/all-in-one.xhtml
/lib/docbook/5/essays/validate-your-html/all-in-one.xhtml
/lib/docbook/5/essays/what-makes-software-high-quality-rev2/all-in-one.xhtml
/lib/docbook/5/essays/what-makes-software-high-quality/all-in-one.xhtml
/lib/docbook/5/essays/who-gets-the-final-say/all-in-one.xhtml
/lib/docbook/5/essays/why-openly-bipolar-people-should-not-be-medicated/all-in-one.xhtml
/lib/docbook/5/essays/why-the-so-called-real-world-makes-little-sense/all-in-one.xhtml
/lib/docbook/5/fo/A-hashtag-SummerNSA-s-Reading.fo
/lib/docbook/5/fo/Spark-Pre-Birth-of-a-Modern-Lisp.fo
/lib/docbook/5/fo/SummerNSA-2014-09-call-for-action.fo
/lib/docbook/5/fo/The-Earth-Angel-english.fo
/lib/docbook/5/fo/The-Earth-Angel-hebrew.fo
/lib/docbook/5/fo/The-Enemy-English-v7.fo
/lib/docbook/5/fo/The-Enemy-English-v8.fo
/lib/docbook/5/fo/The-Enemy-Hebrew-rev6.fo
/lib/docbook/5/fo/The-Enemy-Hebrew-v7.fo
/lib/docbook/5/fo/The-Pope-Died-on-Sunday-english.fo
/lib/docbook/5/fo/The-Pope-Died-on-Sunday-hebrew.fo
/lib/docbook/5/fo/about-the-origins-of-consciousness-craziness-and-normativity-conformism-and-nevua.fo
/lib/docbook/5/fo/c-and-cpp-elements-to-avoid.fo
/lib/docbook/5/fo/case-for-drug-legalisation--hebrew-v3.fo
/lib/docbook/5/fo/case-for-drug-legalisation-rev2.fo
/lib/docbook/5/fo/case-for-drug-legalisation-v3.fo
/lib/docbook/5/fo/case-for-drug-legalisation.fo
/lib/docbook/5/fo/case-for-file-swapping-rev2.fo
/lib/docbook/5/fo/case-for-file-swapping-rev3.fo
/lib/docbook/5/fo/case-for-file-swapping.fo
/lib/docbook/5/fo/dealing-with-hypomanias.fo
/lib/docbook/5/fo/end-of-it-slavery.fo
/lib/docbook/5/fo/fiction-text-example-for-X-G-Fiction-demo.fo
/lib/docbook/5/fo/foss-and-other-beasts-v3.fo
/lib/docbook/5/fo/foss-and-other-beasts.fo
/lib/docbook/5/fo/foss-licences-wars-rev2.fo
/lib/docbook/5/fo/foss-licences-wars.fo
/lib/docbook/5/fo/hebrew-html-tutorial.fo
/lib/docbook/5/fo/how-to-share-code-online.fo
/lib/docbook/5/fo/human-hacking-field-guide-v2--arabic.fo
/lib/docbook/5/fo/human-hacking-field-guide-v2--english.fo
/lib/docbook/5/fo/human-hacking-field-guide-v2--hebrew.fo
/lib/docbook/5/fo/human-hacking-field-guide.fo
/lib/docbook/5/fo/introductory-language.fo
/lib/docbook/5/fo/isr-pales-conflict-solution.fo
/lib/docbook/5/fo/multiverse-cosmology-v0.4.x.fo
/lib/docbook/5/fo/my-real-person-fiction.fo
/lib/docbook/5/fo/objectivism-and-open-source-r1.fo
/lib/docbook/5/fo/objectivism-and-open-source.fo
/lib/docbook/5/fo/park-lisp-informal-spec.fo
/lib/docbook/5/fo/perfect-it-workplace-v2.fo
/lib/docbook/5/fo/perfect-it-workplace.fo
/lib/docbook/5/fo/putting-all-cards-on-the-table-2013.fo
/lib/docbook/5/fo/putting-cards-on-the-table-2019-2020.fo
/lib/docbook/5/fo/putting-more-cards-on-the-table-2014.fo
/lib/docbook/5/fo/reflections-on-software-quality-trends.fo
/lib/docbook/5/fo/rindolf-spec.fo
/lib/docbook/5/fo/samsmith.fo
/lib/docbook/5/fo/shlomif-cocktails.fo
/lib/docbook/5/fo/the-eternal-jew.fo
/lib/docbook/5/fo/usability-of-perl-world-for-newcomers.fo
/lib/docbook/5/fo/validate-your-html.fo
/lib/docbook/5/fo/what-makes-software-high-quality-rev2.fo
/lib/docbook/5/fo/what-makes-software-high-quality.fo
/lib/docbook/5/fo/who-gets-the-final-say.fo
/lib/docbook/5/fo/why-openly-bipolar-people-should-not-be-medicated.fo
/lib/docbook/5/fo/why-the-so-called-real-world-makes-little-sense.fo
/lib/docbook/5/indiv-nodes
/lib/docbook/5/rendered/A-hashtag-SummerNSA-s-Reading.xhtml
/lib/docbook/5/rendered/Spark-Pre-Birth-of-a-Modern-Lisp.xhtml
/lib/docbook/5/rendered/SummerNSA-2014-09-call-for-action.xhtml
/lib/docbook/5/rendered/The-Earth-Angel-english.xhtml
/lib/docbook/5/rendered/The-Earth-Angel-hebrew.xhtml
/lib/docbook/5/rendered/The-Enemy-English-v7.xhtml
/lib/docbook/5/rendered/The-Enemy-English-v8.xhtml
/lib/docbook/5/rendered/The-Enemy-Hebrew-rev6.xhtml
/lib/docbook/5/rendered/The-Enemy-Hebrew-v7.xhtml
/lib/docbook/5/rendered/The-Pope-Died-on-Sunday-english.xhtml
/lib/docbook/5/rendered/The-Pope-Died-on-Sunday-hebrew.xhtml
/lib/docbook/5/rendered/about-the-origins-of-consciousness-craziness-and-normativity-conformism-and-nevua.xhtml
/lib/docbook/5/rendered/c-and-cpp-elements-to-avoid.xhtml
/lib/docbook/5/rendered/case-for-drug-legalisation--hebrew-v3.xhtml
/lib/docbook/5/rendered/case-for-drug-legalisation-rev2.xhtml
/lib/docbook/5/rendered/case-for-drug-legalisation-v3.xhtml
/lib/docbook/5/rendered/case-for-drug-legalisation.xhtml
/lib/docbook/5/rendered/case-for-file-swapping-rev2.xhtml
/lib/docbook/5/rendered/case-for-file-swapping-rev3.xhtml
/lib/docbook/5/rendered/case-for-file-swapping.xhtml
/lib/docbook/5/rendered/dealing-with-hypomanias.xhtml
/lib/docbook/5/rendered/end-of-it-slavery.xhtml
/lib/docbook/5/rendered/fiction-text-example-for-X-G-Fiction-demo.xhtml
/lib/docbook/5/rendered/foss-and-other-beasts-v3.xhtml
/lib/docbook/5/rendered/foss-and-other-beasts.xhtml
/lib/docbook/5/rendered/foss-licences-wars-rev2.xhtml
/lib/docbook/5/rendered/foss-licences-wars.xhtml
/lib/docbook/5/rendered/hebrew-html-tutorial.xhtml
/lib/docbook/5/rendered/how-to-share-code-online.xhtml
/lib/docbook/5/rendered/human-hacking-field-guide-v2--arabic.xhtml
/lib/docbook/5/rendered/human-hacking-field-guide-v2--english.xhtml
/lib/docbook/5/rendered/human-hacking-field-guide-v2--hebrew.xhtml
/lib/docbook/5/rendered/human-hacking-field-guide.xhtml
/lib/docbook/5/rendered/introductory-language.xhtml
/lib/docbook/5/rendered/isr-pales-conflict-solution.xhtml
/lib/docbook/5/rendered/multiverse-cosmology-v0.4.x.xhtml
/lib/docbook/5/rendered/my-real-person-fiction.xhtml
/lib/docbook/5/rendered/objectivism-and-open-source-r1.xhtml
/lib/docbook/5/rendered/objectivism-and-open-source.xhtml
/lib/docbook/5/rendered/park-lisp-informal-spec.xhtml
/lib/docbook/5/rendered/perfect-it-workplace-v2.xhtml
/lib/docbook/5/rendered/perfect-it-workplace.xhtml
/lib/docbook/5/rendered/putting-all-cards-on-the-table-2013.xhtml
/lib/docbook/5/rendered/putting-cards-on-the-table-2019-2020.xhtml
/lib/docbook/5/rendered/putting-more-cards-on-the-table-2014.xhtml
/lib/docbook/5/rendered/reflections-on-software-quality-trends.xhtml
/lib/docbook/5/rendered/rindolf-spec.xhtml
/lib/docbook/5/rendered/samsmith.xhtml
/lib/docbook/5/rendered/shlomif-cocktails.xhtml
/lib/docbook/5/rendered/the-eternal-jew.xhtml
/lib/docbook/5/rendered/usability-of-perl-world-for-newcomers.xhtml
/lib/docbook/5/rendered/validate-your-html.xhtml
/lib/docbook/5/rendered/what-makes-software-high-quality-rev2.xhtml
/lib/docbook/5/rendered/what-makes-software-high-quality.xhtml
/lib/docbook/5/rendered/who-gets-the-final-say.xhtml
/lib/docbook/5/rendered/why-openly-bipolar-people-should-not-be-medicated.xhtml
/lib/docbook/5/rendered/why-the-so-called-real-world-makes-little-sense.xhtml
/lib/docbook/5/xml/Spark-Pre-Birth-of-a-Modern-Lisp.xml
/lib/docbook/5/xml/The-Earth-Angel-english.xml
/lib/docbook/5/xml/The-Earth-Angel-hebrew.xml
/lib/docbook/5/xml/The-Enemy-Hebrew-rev6.xml
/lib/docbook/5/xml/The-Enemy-Hebrew-v7.xml
/lib/docbook/5/xml/The-Pope-Died-on-Sunday-english.xml
/lib/docbook/5/xml/The-Pope-Died-on-Sunday-hebrew.xml
/lib/docbook/5/xml/about-the-origins-of-consciousness-craziness-and-normativity-conformism-and-nevua.xml
/lib/docbook/5/xml/c-and-cpp-elements-to-avoid.xml
/lib/docbook/5/xml/fiction-text-example-for-X-G-Fiction-demo.xml
/lib/docbook/5/xml/hebrew-html-tutorial.xml
/lib/docbook/5/xml/how-to-share-code-online.xml
/lib/docbook/5/xml/human-hacking-field-guide-v2--english.xml
/lib/docbook/5/xml/human-hacking-field-guide-v2--hebrew.xml
/lib/docbook/5/xml/multiverse-cosmology-v0.4.x.xml
/lib/docbook/5/xml/putting-cards-on-the-table-2019-2020.xml
/lib/docbook/5/xml/samsmith.xml
/lib/docbook/5/xml/validate-your-html.xml
/lib/docbook/5/xml/who-gets-the-final-say.xml
/lib/docbook/5/xml/why-openly-bipolar-people-should-not-be-medicated.xml
/lib/docbook/5/xml/why-the-so-called-real-world-makes-little-sense.xml
/lib/ebookmaker
/lib/factoids/TIMESTAMP
/lib/factoids/common-out/tags.tt2
/lib/factoids/indiv-lists-xhtmls/buffy_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/buffy_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/chuck_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/chuck_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/clarissa_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/clarissa_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/emma_watson_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/emma_watson_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/in_soviet_russia_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/in_soviet_russia_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/knuth_is_not_god_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/knuth_is_not_god_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/larry_wall_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/larry_wall_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/nsa_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/nsa_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/sglau_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/sglau_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/taylor_swift_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/taylor_swift_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/windows_update_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/windows_update_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/xena_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/xena_facts--he-IL.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/xslt_facts--en-US.xhtml.reduced
/lib/factoids/indiv-lists-xhtmls/xslt_facts--he-IL.xhtml.reduced
/lib/factoids/pages/buffy_facts.tt2
/lib/factoids/pages/chuck_facts.tt2
/lib/factoids/pages/clarissa_facts.tt2
/lib/factoids/pages/emma_watson_facts.tt2
/lib/factoids/pages/in_soviet_russia_facts.tt2
/lib/factoids/pages/knuth_is_not_god_facts.tt2
/lib/factoids/pages/larry_wall_facts.tt2
/lib/factoids/pages/nsa_facts.tt2
/lib/factoids/pages/sglau_facts.tt2
/lib/factoids/pages/taylor_swift_facts.tt2
/lib/factoids/pages/windows_update_facts.tt2
/lib/factoids/pages/xena_facts.tt2
/lib/factoids/pages/xslt_facts.tt2
/lib/fiction-xml/from-vcs/Human-Hacking-Field-Guide
/lib/fiction-xml/from-vcs/The-Earth-Angel
/lib/fiction-xml/from-vcs/The-Pope-Died-on-Sunday
/lib/fiction-xml/txt/The-Earth-Angel-english.txt
/lib/fiction-xml/txt/The-Earth-Angel-hebrew.txt
/lib/fiction-xml/txt/The-Pope-Died-on-Sunday-english.txt
/lib/fiction-xml/txt/The-Pope-Died-on-Sunday-hebrew.txt
/lib/fiction-xml/txt/fiction-text-example-for-X-G-Fiction-demo.txt.html-for-quad-pres
/lib/fiction-xml/txt/human-hacking-field-guide-v2--hebrew.txt
/lib/fiction-xml/xml/The-Earth-Angel-english.xml
/lib/fiction-xml/xml/The-Earth-Angel-hebrew.xml
/lib/fiction-xml/xml/The-Enemy-Hebrew-rev6.xml
/lib/fiction-xml/xml/The-Enemy-Hebrew-v7.xml
/lib/fiction-xml/xml/The-Pope-Died-on-Sunday-english.xml
/lib/fiction-xml/xml/The-Pope-Died-on-Sunday-hebrew.xml
/lib/fiction-xml/xml/fiction-text-example-for-X-G-Fiction-demo.xml
/lib/fiction-xml/xml/human-hacking-field-guide-v2--hebrew.xml
/lib/for-node/js/decss_for_typescript.js
/lib/for-node/js/fortunes-info-datetime.js
/lib/for-node/js/fortunes_show.js
/lib/for-node/js/previous-and-next-fortunes.js
/lib/for-node/js/resize-iframe.js
/lib/for-node/js/reverse-fortunes-order.js
/lib/for-node/js/selfl.js
/lib/for-node/js/sub_menu.js
/lib/for-node/js/to-jqtree-2.js
/lib/for-node/js/to-jqtree.js
/lib/for-node/js/toggle_sect.js
/lib/for-node/js/toggler.js
/lib/fortunes/xhtmls/*.toc-xhtml
/lib/fortunes/xhtmls/*.xhtml
/lib/fortunes/xhtmls/*.xhtml-for-input
/lib/fortunes/xhtmls/book.json
/lib/fortunes/xhtmls/fortunes-shlomif.epub
/lib/fortunes/xhtmls/shlomif-fortunes.jpg
/lib/fortunes/xhtmls/shlomif-fortunes.png
/lib/h_sections.tt2
/lib/htmls/The-Enemy-English-rev5.html-part
/lib/htmls/The-Enemy-English-rev6.html-part
/lib/htmls/The-Enemy-rev5.html-part
/lib/jquery/jquery-ui-webpack/dist/tot.js
/lib/js/MathJax/
/lib/js/jquery-expander/
/lib/make/build-deps/build-deps.mak
/lib/make/build-deps/build-deps.stamp
/lib/make/docbook/sf-docbook-common-docbook4.mak
/lib/make/docbook/sf-docbook-common.mak
/lib/make/docbook/sf-homepage-docbook-gen.tt
/lib/make/generated/asciidocs2db5-include.mak
/lib/make/generated/copies-generated-include.mak
/lib/make/generated/copies-generated-screenplay-images.mak
/lib/make/generated/deps.mak
/lib/make/generated/factoids-deps.mak
/lib/make/generated/include.mak
/lib/make/generated/long_stories.mak
/lib/make/generated/rules.mak
/lib/make/generated/screenplays-copy-operations.mak
/lib/make/generated/sf-fictions-list.mak
/lib/make/generated/sf-fictions.mak
/lib/make/generated/sf-homepage-docbooks-generated.mak
/lib/make/generated/sf-homepage-quadpres-generated.mak
/lib/make/generated/shlomif-screenplays.mak
/lib/make/generated/tt2.txt
/lib/make/shlomif_common.mak
/lib/out-babel/js/decss_for_typescript.js
/lib/out-babel/js/fortunes-info-datetime.js
/lib/out-babel/js/fortunes_show.js
/lib/out-babel/js/previous-and-next-fortunes.js
/lib/out-babel/js/resize-iframe.js
/lib/out-babel/js/reverse-fortunes-order.js
/lib/out-babel/js/selfl.js
/lib/out-babel/js/sub_menu.js
/lib/out-babel/js/to-jqtree-2.js
/lib/out-babel/js/to-jqtree.js
/lib/out-babel/js/toggle_sect.js
/lib/out-babel/js/toggler.js
/lib/pages/t2/philosophy/how-to-get-help-online.xhtml.processed-stripped
/lib/pages/t2/philosophy/putting-all-cards-on-the-table.xhtml.processed-stripped
/lib/presentations/docbook/html-tutorial
/lib/presentations/qp/**/.quadpres/is_root
/lib/presentations/qp/**/.wmlrc
/lib/presentations/qp/**/Contents.pm
/lib/presentations/qp/**/src/slidy.js
/lib/presentations/qp/**/src/style.css
/lib/presentations/qp/Autotools/FINISH_STAMP
/lib/presentations/qp/Autotools/SOURCE
/lib/presentations/qp/Autotools/all-in-one/
/lib/presentations/qp/Autotools/quadpres.ini
/lib/presentations/qp/Autotools/rendered
/lib/presentations/qp/Autotools/serve.pl
/lib/presentations/qp/Autotools/src/Makefile_am/sources/Makefile.am.html-for-quad-pres
/lib/presentations/qp/Autotools/src/acconfig.h/acconfig.h.html-for-quad-pres
/lib/presentations/qp/Autotools/src/changequote/configure.in.html-for-quad-pres
/lib/presentations/qp/Autotools/src/common_macros/AC_ARG_ENABLE/configure.in.html-for-quad-pres
/lib/presentations/qp/Autotools/src/common_macros/AC_CHECK_LIB/configure.in.html-for-quad-pres
/lib/presentations/qp/Autotools/src/common_macros/AC_DEFINE/configure.in.html-for-quad-pres
/lib/presentations/qp/Autotools/src/common_macros/AC_OUTPUT/configure.in.html-for-quad-pres
/lib/presentations/qp/Autotools/src/simple_project/Makefile.am.html-for-quad-pres
/lib/presentations/qp/Autotools/src/simple_project/configure.in.html-for-quad-pres
/lib/presentations/qp/Autotools/template.wml
/lib/presentations/qp/CatB/FINISH_STAMP
/lib/presentations/qp/CatB/SOURCE
/lib/presentations/qp/CatB/all-in-one/
/lib/presentations/qp/CatB/quadpres.ini
/lib/presentations/qp/CatB/rendered
/lib/presentations/qp/CatB/serve.pl
/lib/presentations/qp/CatB/template.wml
/lib/presentations/qp/Freecell-Solver/1/FINISH_STAMP
/lib/presentations/qp/Freecell-Solver/1/SOURCE
/lib/presentations/qp/Freecell-Solver/1/all-in-one/
/lib/presentations/qp/Freecell-Solver/1/quadpres.ini
/lib/presentations/qp/Freecell-Solver/1/rendered
/lib/presentations/qp/Freecell-Solver/1/serve.pl
/lib/presentations/qp/Freecell-Solver/1/template.wml
/lib/presentations/qp/Freecell-Solver/The-Next-Pres/FINISH_STAMP
/lib/presentations/qp/Freecell-Solver/The-Next-Pres/SOURCE
/lib/presentations/qp/Freecell-Solver/The-Next-Pres/all-in-one/
/lib/presentations/qp/Freecell-Solver/The-Next-Pres/quadpres.ini
/lib/presentations/qp/Freecell-Solver/The-Next-Pres/rendered
/lib/presentations/qp/Freecell-Solver/The-Next-Pres/serve.pl
/lib/presentations/qp/Freecell-Solver/The-Next-Pres/template.wml
/lib/presentations/qp/Freecell-Solver/project-intro/FINISH_STAMP
/lib/presentations/qp/Freecell-Solver/project-intro/SOURCE
/lib/presentations/qp/Freecell-Solver/project-intro/all-in-one/
/lib/presentations/qp/Freecell-Solver/project-intro/quadpres.ini
/lib/presentations/qp/Freecell-Solver/project-intro/rendered
/lib/presentations/qp/Freecell-Solver/project-intro/serve.pl
/lib/presentations/qp/Freecell-Solver/project-intro/template.wml
/lib/presentations/qp/Gimp/1.2/FINISH_STAMP
/lib/presentations/qp/Gimp/1.2/SOURCE
/lib/presentations/qp/Gimp/1.2/all-in-one/
/lib/presentations/qp/Gimp/1.2/quadpres.ini
/lib/presentations/qp/Gimp/1.2/rendered
/lib/presentations/qp/Gimp/1.2/serve.pl
/lib/presentations/qp/Gimp/1.2/template.wml
/lib/presentations/qp/Gimp/2.2/FINISH_STAMP
/lib/presentations/qp/Gimp/2.2/SOURCE
/lib/presentations/qp/Gimp/2.2/all-in-one/
/lib/presentations/qp/Gimp/2.2/quadpres.ini
/lib/presentations/qp/Gimp/2.2/rendered
/lib/presentations/qp/Gimp/2.2/serve.pl
/lib/presentations/qp/Gimp/2.2/template.wml
/lib/presentations/qp/LM-Solve/FINISH_STAMP
/lib/presentations/qp/LM-Solve/SOURCE
/lib/presentations/qp/LM-Solve/all-in-one/
/lib/presentations/qp/LM-Solve/quadpres.ini
/lib/presentations/qp/LM-Solve/rendered
/lib/presentations/qp/LM-Solve/serve.pl
/lib/presentations/qp/LM-Solve/template.wml
/lib/presentations/qp/Quad-Pres/FINISH_STAMP
/lib/presentations/qp/Quad-Pres/SOURCE
/lib/presentations/qp/Quad-Pres/all-in-one/
/lib/presentations/qp/Quad-Pres/quadpres.ini
/lib/presentations/qp/Quad-Pres/rendered
/lib/presentations/qp/Quad-Pres/serve.pl
/lib/presentations/qp/Quad-Pres/template.wml
/lib/presentations/qp/Website-Meta-Lecture/FINISH_STAMP
/lib/presentations/qp/Website-Meta-Lecture/SOURCE
/lib/presentations/qp/Website-Meta-Lecture/all-in-one/
/lib/presentations/qp/Website-Meta-Lecture/quadpres.ini
/lib/presentations/qp/Website-Meta-Lecture/rendered
/lib/presentations/qp/Website-Meta-Lecture/serve.pl
/lib/presentations/qp/Website-Meta-Lecture/src/examples/APIs/grid/index.html.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/APIs/toc/index.html.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/bolding/template.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/common_look/Makefile.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/common_look/download.html.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/common_look/index.html.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/common_look/links.html.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/common_look/template.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/faq-l/answers.html.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/faq-l/api.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/faq-l/index.html.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/faq-l/questions.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/frames/Makefile.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/frames/navbar-frame.html.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/frames/navbar.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/frames/template.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/src/examples/meta-tag/template.wml.html-for-quad-pres
/lib/presentations/qp/Website-Meta-Lecture/template.wml
/lib/presentations/qp/common/VimIface.pm
/lib/presentations/qp/haskell-for-perl-programmers/FINISH_STAMP
/lib/presentations/qp/haskell-for-perl-programmers/SOURCE
/lib/presentations/qp/haskell-for-perl-programmers/all-in-one/
/lib/presentations/qp/haskell-for-perl-programmers/quadpres.ini
/lib/presentations/qp/haskell-for-perl-programmers/rendered
/lib/presentations/qp/haskell-for-perl-programmers/serve.pl
/lib/presentations/qp/haskell-for-perl-programmers/template.wml
/lib/presentations/qp/joel-test/FINISH_STAMP
/lib/presentations/qp/joel-test/SOURCE
/lib/presentations/qp/joel-test/all-in-one/
/lib/presentations/qp/joel-test/quadpres.ini
/lib/presentations/qp/joel-test/rendered
/lib/presentations/qp/joel-test/serve.pl
/lib/presentations/qp/joel-test/template.wml
/lib/presentations/qp/meta-data-database-access/FINISH_STAMP
/lib/presentations/qp/meta-data-database-access/SOURCE
/lib/presentations/qp/meta-data-database-access/all-in-one/
/lib/presentations/qp/meta-data-database-access/quadpres.ini
/lib/presentations/qp/meta-data-database-access/rendered
/lib/presentations/qp/meta-data-database-access/serve.pl
/lib/presentations/qp/meta-data-database-access/template.wml
/lib/presentations/qp/perl-for-newbies/1/FINISH_STAMP
/lib/presentations/qp/perl-for-newbies/1/SOURCE
/lib/presentations/qp/perl-for-newbies/1/all-in-one
/lib/presentations/qp/perl-for-newbies/1/quadpres.ini
/lib/presentations/qp/perl-for-newbies/1/rendered
/lib/presentations/qp/perl-for-newbies/1/serve.pl
/lib/presentations/qp/perl-for-newbies/1/src/arrays/comma1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/arrays/comma2.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/arrays/foreach/foreach.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/arrays/join.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/arrays/pop.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/arrays/primes1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/arrays/primes2.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/arrays/push.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/arrays/reverse.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/arrays/shift.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/arrays/x.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/conditionals/elsif.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/conditionals/letter_a.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/conditionals/name_abc.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/conditionals/non_div3_numbers.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/conditionals/range.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/conditionals/string_compare.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/expressions/concat.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/expressions/int.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/expressions/length.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/expressions/operators.out.txt.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/expressions/operators.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/expressions/strings/escape.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/expressions/strings/strings_and_numbers.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/expressions/substr.out.txt.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/expressions/substr.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/expressions/substr2.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/for_loop/1to100.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/for_loop/multiplication_board.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/input/input1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/input/input2.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/output/hello.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/output/oftf1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/output/oftf2.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/variables/plus-equal1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/variables/plus-equal2.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/variables/var1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/while/all_as.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/while/all_as_with_last.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/while/power_of_2.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/src/while/pyramid1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/1/template.wml
/lib/presentations/qp/perl-for-newbies/2/FINISH_STAMP
/lib/presentations/qp/perl-for-newbies/2/SOURCE
/lib/presentations/qp/perl-for-newbies/2/all-in-one
/lib/presentations/qp/perl-for-newbies/2/quadpres.ini
/lib/presentations/qp/perl-for-newbies/2/rendered
/lib/presentations/qp/perl-for-newbies/2/serve.pl
/lib/presentations/qp/perl-for-newbies/2/src/argv/copy.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/files/line_count.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/files/line_numbers.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/files/print.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/files/print2.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/for/multiplication_board.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/for/primes.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/for/primes_while.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/functions/min_max.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/functions/pythagoras.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/functions/splitting.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/functions/splitting_shift.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/hashes/bank.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/hashes/comma.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/hashes/delete.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/hashes/unique.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/interpolate1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/my/my1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/my/primes_us.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/references/deref1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/references/hanoi.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/references/lol.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/references/print_contents.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/references/update_sum.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/references/vector_sum.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/all_as.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/flags/index.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/hello.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/l---x.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/perl_var.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/semicolons_and_commas.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/sentence.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/string_ends_ellip.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/substitute/length.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/substitute/number.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/substitute/reverse_words.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/substitute/ungreedy.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/regexps/substitute/uppercase.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/useful_funcs/double.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/useful_funcs/grep.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/useful_funcs/primes.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/useful_funcs/rle.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/useful_funcs/sort/integer_sort.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/useful_funcs/sort/integer_sort_cmp.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/useful_funcs/sort/reverse_string_sort.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/useful_funcs/uid.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/src/useful_funcs/words.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/2/template.wml
/lib/presentations/qp/perl-for-newbies/3/FINISH_STAMP
/lib/presentations/qp/perl-for-newbies/3/SOURCE
/lib/presentations/qp/perl-for-newbies/3/all-in-one
/lib/presentations/qp/perl-for-newbies/3/quadpres.ini
/lib/presentations/qp/perl-for-newbies/3/rendered
/lib/presentations/qp/perl-for-newbies/3/serve.pl
/lib/presentations/qp/perl-for-newbies/3/src/modules/MyLog.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/modules/declaring/Hoola/Hoop.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/modules/declaring/MyModule.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/modules/loading/Calc.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/modules/loading/MyModule.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/modules/loading/MyVar.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/modules/loading/exporting_code.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/modules/loading/test.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/modules/loading/test_export.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/modules/loading/test_myvar.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/objects/making/Count.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/objects/making/Foo.more-methods.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/objects/making/Foo.orig.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/objects/making/inheritance/Bar.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/objects/making/inheritance/Bar2.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/objects/making/test.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/objects/making/test_methods.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/objects/object_use/data_dumper.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/refs_to_funcs/calling1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/refs_to_funcs/dynamic/closures.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/refs_to_funcs/dynamic/dispatch.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/src/refs_to_funcs/dynamic/dynamic.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/3/template.wml
/lib/presentations/qp/perl-for-newbies/4/FINISH_STAMP
/lib/presentations/qp/perl-for-newbies/4/SOURCE
/lib/presentations/qp/perl-for-newbies/4/all-in-one
/lib/presentations/qp/perl-for-newbies/4/quadpres.ini
/lib/presentations/qp/perl-for-newbies/4/rendered
/lib/presentations/qp/perl-for-newbies/4/serve.pl
/lib/presentations/qp/perl-for-newbies/4/src/and_or/open-or.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/and_or/shift-or.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/and_or/sort-or.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/exceptions/die-eval.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/processes/count-dirs.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/processes/open1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/processes/open2.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/processes/system.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/sprintf/conv-examples.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/sprintf/flags-examples.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/sprintf/sprintf1.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/sprintf/width.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/string-forms/here-doc.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/string-forms/q_qq-examples.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/system-funcs/r.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/src/system-funcs/search-mp3s.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/4/template.wml
/lib/presentations/qp/perl-for-newbies/5/FINISH_STAMP
/lib/presentations/qp/perl-for-newbies/5/SOURCE
/lib/presentations/qp/perl-for-newbies/5/all-in-one
/lib/presentations/qp/perl-for-newbies/5/quadpres.ini
/lib/presentations/qp/perl-for-newbies/5/rendered
/lib/presentations/qp/perl-for-newbies/5/serve.pl
/lib/presentations/qp/perl-for-newbies/5/src/accessors/Person.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/accessors/test-person.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/module-build-and-starter/MyMath-Ops-with-MyMath-Ops-Add-pm/lib/MyMath/Ops/Add.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/module-build-and-starter/MyMath-Ops-with-add-t/t/add.t.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/module-build-and-starter/invoke-m-s.bash.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/module-build-and-starter/module-starter.help.txt.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/module-build-and-starter/perl-Build-PL-1-output.txt.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/module-build-and-starter/perl-Build-and-Build-test-1.txt.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/new-features/copy.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/new-features/ls.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/pod-documentation/code-block.pod.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/pod-documentation/headers.pod.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/pod-documentation/list1.pod.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/testing/MockModules.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/testing/demo/Add1.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/testing/demo/Add2.pm.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/testing/demo/Test-Count-transcript.txt.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/testing/demo/Test-More-1.t.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/testing/demo/add1-test-2.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/testing/demo/add1-test.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/src/testing/demo/add2-test-2.pl.html-for-quad-pres
/lib/presentations/qp/perl-for-newbies/5/template.wml
/lib/presentations/qp/web-publishing-with-LAMP/FINISH_STAMP
/lib/presentations/qp/web-publishing-with-LAMP/SOURCE
/lib/presentations/qp/web-publishing-with-LAMP/all-in-one/
/lib/presentations/qp/web-publishing-with-LAMP/quadpres.ini
/lib/presentations/qp/web-publishing-with-LAMP/rendered
/lib/presentations/qp/web-publishing-with-LAMP/serve.pl
/lib/presentations/qp/web-publishing-with-LAMP/template.wml
/lib/presentations/qp/welcome-to-linux/Basic_Use-2/FINISH_STAMP
/lib/presentations/qp/welcome-to-linux/Basic_Use-2/SOURCE
/lib/presentations/qp/welcome-to-linux/Basic_Use-2/all-in-one/
/lib/presentations/qp/welcome-to-linux/Basic_Use-2/quadpres.ini
/lib/presentations/qp/welcome-to-linux/Basic_Use-2/rendered
/lib/presentations/qp/welcome-to-linux/Basic_Use-2/serve.pl
/lib/presentations/qp/welcome-to-linux/Basic_Use-2/template.wml
/lib/presentations/qp/welcome-to-linux/Blitz/FINISH_STAMP
/lib/presentations/qp/welcome-to-linux/Blitz/SOURCE
/lib/presentations/qp/welcome-to-linux/Blitz/all-in-one/
/lib/presentations/qp/welcome-to-linux/Blitz/quadpres.ini
/lib/presentations/qp/welcome-to-linux/Blitz/rendered
/lib/presentations/qp/welcome-to-linux/Blitz/serve.pl
/lib/presentations/qp/welcome-to-linux/Blitz/template.wml
/lib/presentations/qp/welcome-to-linux/Development/FINISH_STAMP
/lib/presentations/qp/welcome-to-linux/Development/SOURCE
/lib/presentations/qp/welcome-to-linux/Development/all-in-one/
/lib/presentations/qp/welcome-to-linux/Development/quadpres.ini
/lib/presentations/qp/welcome-to-linux/Development/rendered
/lib/presentations/qp/welcome-to-linux/Development/serve.pl
/lib/presentations/qp/welcome-to-linux/Development/template.wml
/lib/presentations/qp/welcome-to-linux/Mini-Intro/FINISH_STAMP
/lib/presentations/qp/welcome-to-linux/Mini-Intro/SOURCE
/lib/presentations/qp/welcome-to-linux/Mini-Intro/all-in-one/
/lib/presentations/qp/welcome-to-linux/Mini-Intro/quadpres.ini
/lib/presentations/qp/welcome-to-linux/Mini-Intro/rendered
/lib/presentations/qp/welcome-to-linux/Mini-Intro/serve.pl
/lib/presentations/qp/welcome-to-linux/Mini-Intro/template.wml
/lib/presentations/qp/welcome-to-linux/Networking/FINISH_STAMP
/lib/presentations/qp/welcome-to-linux/Networking/SOURCE
/lib/presentations/qp/welcome-to-linux/Networking/all-in-one/
/lib/presentations/qp/welcome-to-linux/Networking/quadpres.ini
/lib/presentations/qp/welcome-to-linux/Networking/rendered
/lib/presentations/qp/welcome-to-linux/Networking/serve.pl
/lib/presentations/qp/welcome-to-linux/Networking/template.wml
/lib/presentations/qp/welcome-to-linux/Technion/FINISH_STAMP
/lib/presentations/qp/welcome-to-linux/Technion/SOURCE
/lib/presentations/qp/welcome-to-linux/Technion/all-in-one/
/lib/presentations/qp/welcome-to-linux/Technion/quadpres.ini
/lib/presentations/qp/welcome-to-linux/Technion/rendered
/lib/presentations/qp/welcome-to-linux/Technion/serve.pl
/lib/presentations/qp/welcome-to-linux/Technion/template.wml
/lib/presentations/spork/Perl/Graham-Function/plugin
/lib/presentations/spork/Perl/Graham-Function/slides
/lib/presentations/spork/Perl/Graham-Function/template
/lib/presentations/spork/Perl/Lightning/Opt-Multi-Task-in-PDL/common/
/lib/presentations/spork/Perl/Lightning/Opt-Multi-Task-in-PDL/plugin
/lib/presentations/spork/Perl/Lightning/Opt-Multi-Task-in-PDL/slides
/lib/presentations/spork/Perl/Lightning/Opt-Multi-Task-in-PDL/template
/lib/presentations/spork/Perl/Lightning/Test-Run/common/
/lib/presentations/spork/Perl/Lightning/Test-Run/plugin
/lib/presentations/spork/Perl/Lightning/Test-Run/slides/*.html
/lib/presentations/spork/Perl/Lightning/Test-Run/slides/favicon.png
/lib/presentations/spork/Perl/Lightning/Test-Run/slides/images/Test-Run-Plugin-ColorSummary.png
/lib/presentations/spork/Perl/Lightning/Test-Run/slides/images/screenshot02.png
/lib/presentations/spork/Perl/Lightning/Test-Run/slides/slide.css
/lib/presentations/spork/Perl/Lightning/Test-Run/template
/lib/presentations/spork/Perl/Lightning/Too-Many-Ways/common/
/lib/presentations/spork/Perl/Lightning/Too-Many-Ways/plugin
/lib/presentations/spork/Perl/Lightning/Too-Many-Ways/slides/*.html
/lib/presentations/spork/Perl/Lightning/Too-Many-Ways/slides/favicon.png
/lib/presentations/spork/Perl/Lightning/Too-Many-Ways/slides/images/TestBeforeYouTouchCARD.jpg
/lib/presentations/spork/Perl/Lightning/Too-Many-Ways/slides/images/bono.jpg
/lib/presentations/spork/Perl/Lightning/Too-Many-Ways/slides/images/coachella-crowd.jpg
/lib/presentations/spork/Perl/Lightning/Too-Many-Ways/slides/images/coachella-crowd.webp
/lib/presentations/spork/Perl/Lightning/Too-Many-Ways/slides/slide.css
/lib/presentations/spork/Perl/Lightning/Too-Many-Ways/template
/lib/presentations/spork/SCM/subversion/for-pythoneers/common/
/lib/presentations/spork/SCM/subversion/for-pythoneers/plugin
/lib/presentations/spork/SCM/subversion/for-pythoneers/slides
/lib/presentations/spork/SCM/subversion/for-pythoneers/template
/lib/presentations/spork/Vim/beginners/Spork.slides
/lib/presentations/spork/Vim/beginners/plugin
/lib/presentations/spork/Vim/beginners/slides
/lib/presentations/spork/Vim/beginners/template
/lib/prod-synd/films/include-me.html
/lib/prod-synd/music/include-me.html
/lib/prod-synd/non-fiction-books/include-me.html
/lib/repos/Captioned-Image--Little-Red-Riding-Hood-of-Messiahs
/lib/repos/Captioned-Image-Ayn-Rand-to-Christina-Grimmie
/lib/repos/Captioned-Image-Badass-Schwarzenegger
/lib/repos/Captioned-Image-Carpe-Diem--Mofo
/lib/repos/Captioned-Image-Every-mighty-Klingon-Warrior
/lib/repos/Captioned-Image-Evolution-of-Girls-with-Weapons
/lib/repos/Captioned-Image-GNU-slash-Linux
/lib/repos/Captioned-Image-Holocaust
/lib/repos/Captioned-Image-Interesting-Hypothesis
/lib/repos/Captioned-Image-Nothing-Sexier
/lib/repos/Captioned-Image-One-does-not-Simply-Say-No-to-an-Alpha-Female
/lib/repos/Captioned-Image-One-does-not-Simply-cast-an-American-Actress
/lib/repos/Captioned-Image-One-does-not-Simply-set-up-an-Email-Service
/lib/repos/Captioned-Image-Princess-Bride-Greek-Philosophers
/lib/repos/Captioned-Image-SLP-Pinned-It-On-Me
/lib/repos/Captioned-Image-Standup-Philosopher
/lib/repos/Captioned-Image-Truly-You-Have
/lib/repos/Captioned-Image-Yo-NSA-Publish-or-Perish
/lib/repos/Shlomi-Fish-Back-to-my-Homepage-Logo
/lib/repos/Star-Wars-opening-crawl-from-1977-Remake
/lib/repos/XML-Grammar-Vered
/lib/repos/captioned-image--badass-fluttershy--terminator-liberation
/lib/repos/captioned-image--emma-watson-doesnt-need-a-wand
/lib/repos/captioned-images--repo
/lib/repos/how-to-share-code-online
/lib/repos/my-real-person-fan-fiction
/lib/repos/putting-cards-2019-2020
/lib/repos/shlomif-business-card
/lib/repos/shlomif-humour-fortunes-archives-assets
/lib/repos/shlomif-tech-diary
/lib/repos/shlomif-tech-diary--tech-tips.xhtml
/lib/repos/validate-your-html
/lib/repos/why-openly-bipolar-people-should-not-be-medicated
/lib/screenplay-xml/from-vcs/All-in-an-Atypical-Day-Work/All-in-an-Atypical-Day-Work/screenplay/All-in-an-Atypical-Day-Work.screenplay-text.txt
/lib/screenplay-xml/from-vcs/All-in-an-Atypical-Day-Work/All-in-an-Atypical-Day-Work/screenplay/scripts/prepare-epub.pl
/lib/screenplay-xml/from-vcs/Blue-Rabbit-Log
/lib/screenplay-xml/from-vcs/Buffy-a-Few-Good-Slayers
/lib/screenplay-xml/from-vcs/Cookie-Monster--The-Slayer
/lib/screenplay-xml/from-vcs/He-Damsel-in-Distress-and-a-Distressing-Damsel/He-Damsel-in-Distress-and-a-Distressing-Damsel/screenplay/He-Damsel-in-Distress-and-a-Distressing-Damsel.screenplay-text.txt
/lib/screenplay-xml/from-vcs/He-Damsel-in-Distress-and-a-Distressing-Damsel/He-Damsel-in-Distress-and-a-Distressing-Damsel/screenplay/scripts/prepare-epub.pl
/lib/screenplay-xml/from-vcs/How-Ronda-Rousey-Lost-her-UFC-Streak
/lib/screenplay-xml/from-vcs/How-to-Play-Strip-Dungeons-and-Dragons/How-to-Play-Strip-Dungeons-and-Dragons/graphics/Green-d10-dice.png
/lib/screenplay-xml/from-vcs/How-to-Play-Strip-Dungeons-and-Dragons/How-to-Play-Strip-Dungeons-and-Dragons/screenplay/How-to-Play-Strip-Dungeons-and-Dragons.screenplay-text.txt
/lib/screenplay-xml/from-vcs/How-to-Play-Strip-Dungeons-and-Dragons/How-to-Play-Strip-Dungeons-and-Dragons/screenplay/scripts/prepare-epub.pl
/lib/screenplay-xml/from-vcs/Humanity-the-Movie
/lib/screenplay-xml/from-vcs/One-does-not-simply-start-a-story-with-And-they-all-lived-happily-ever-after/One-does-not-simply-start-a-story-with-And-they-all-lived-happily-ever-after/screenplay/One-does-not-simply-start-a-story-with-And-they-all-lived-happily-ever-after.screenplay-text.txt
/lib/screenplay-xml/from-vcs/One-does-not-simply-start-a-story-with-And-they-all-lived-happily-ever-after/One-does-not-simply-start-a-story-with-And-they-all-lived-happily-ever-after/screenplay/scripts/prepare-epub.pl
/lib/screenplay-xml/from-vcs/Queen-Padme-Tales
/lib/screenplay-xml/from-vcs/Selina-Mandrake
/lib/screenplay-xml/from-vcs/So-Who-the-Hell-Is-Qoheleth
/lib/screenplay-xml/from-vcs/Star-Trek--We-the-Living-Dead
/lib/screenplay-xml/from-vcs/Summerschool-at-the-NSA
/lib/screenplay-xml/from-vcs/TOW-Fountainhead
/lib/screenplay-xml/from-vcs/Terminator-Liberation
/lib/screenplay-xml/from-vcs/The-10th-Muse
/lib/screenplay-xml/from-vcs/The-Muppets-Show--The-New-Incarnation
/lib/screenplay-xml/from-vcs/Who-will-ride-Princess-Celestia/Who-will-ride-Princess-Celestia/screenplay/Who-will-ride-Princess-Celestia.screenplay-text.txt
/lib/screenplay-xml/from-vcs/Who-will-ride-Princess-Celestia/Who-will-ride-Princess-Celestia/screenplay/scripts/prepare-epub.pl
/lib/screenplay-xml/from-vcs/end-game-for-shlomif-as-a-false-prophet/end-game-for-shlomif-as-a-false-prophet/graphics/Green-d10-dice.png
/lib/screenplay-xml/from-vcs/end-game-for-shlomif-as-a-false-prophet/end-game-for-shlomif-as-a-false-prophet/screenplay/end-game-for-shlomif-as-a-false-prophet.screenplay-text.txt
/lib/screenplay-xml/from-vcs/end-game-for-shlomif-as-a-false-prophet/end-game-for-shlomif-as-a-false-prophet/screenplay/scripts/prepare-epub.pl
/lib/screenplay-xml/from-vcs/screenplays-common
/lib/screenplay-xml/from-vcs/usr-bin-perl/usr-bin-perl/graphics/Green-d10-dice.png
/lib/screenplay-xml/from-vcs/usr-bin-perl/usr-bin-perl/screenplay/scripts/prepare-epub.pl
/lib/screenplay-xml/from-vcs/usr-bin-perl/usr-bin-perl/screenplay/usr-bin-perl--total.screenplay-text.txt
/lib/screenplay-xml/html/*.html
/lib/screenplay-xml/rendered-html/*.html
/lib/screenplay-xml/txt/All-in-an-Atypical-Day-Work.txt
/lib/screenplay-xml/txt/Blue-Rabbit-Log-part-1.txt
/lib/screenplay-xml/txt/Buffy--a-Few-Good-Slayers.txt
/lib/screenplay-xml/txt/Cookie-Monster--The-Slayer.txt
/lib/screenplay-xml/txt/He-Damsel-in-Distress-and-a-Distressing-Damsel.txt
/lib/screenplay-xml/txt/How-to-Play-Strip-Dungeons-and-Dragons.txt
/lib/screenplay-xml/txt/Humanity-Movie-hebrew.txt
/lib/screenplay-xml/txt/Humanity-Movie.txt
/lib/screenplay-xml/txt/Muppets-Show--Harry-Potter.txt
/lib/screenplay-xml/txt/Muppets-Show--Jennifer-Lawrence.txt
/lib/screenplay-xml/txt/Muppets-Show--Summer-Glau-and-Chuck-Norris.txt
/lib/screenplay-xml/txt/Muppets-Show--Tiffany-Alvord.txt
/lib/screenplay-xml/txt/One-does-not-simply-start-a-story-with-And-they-all-lived-happily-ever-after.txt
/lib/screenplay-xml/txt/Queen-Padme-Tales--Nighttime-Flight.txt
/lib/screenplay-xml/txt/Queen-Padme-Tales--Planting-Trees.txt
/lib/screenplay-xml/txt/Queen-Padme-Tales--Queen-Amidala-vs-the-Klingon-Warriors.txt
/lib/screenplay-xml/txt/Queen-Padme-Tales--Take-It-Over.txt
/lib/screenplay-xml/txt/Queen-Padme-Tales--The-Fifth-Sith.txt
/lib/screenplay-xml/txt/So-Who-the-Hell-is-Qoheleth.txt
/lib/screenplay-xml/txt/Star-Trek--We-the-Living-Dead.txt
/lib/screenplay-xml/txt/Summerschool-at-the-NSA.txt
/lib/screenplay-xml/txt/TOW_Fountainhead_1.txt
/lib/screenplay-xml/txt/TOW_Fountainhead_2.txt
/lib/screenplay-xml/txt/Terminator--Liberation.txt
/lib/screenplay-xml/txt/humanity-excerpt-for-X-G-Screenplay-demo.txt.html-for-quad-pres
/lib/screenplay-xml/txt/selina-mandrake-the-slayer.txt
/lib/screenplay-xml/xml/*.xml
/lib/sgml/
/lib/split-html/__pycache__/
/node_modules/
/printable
/src/humour/Star-Trek/We-the-Living-Dead/images/fiery-Q.png
/src/humour/fortunes/*.dat
/src/humour/fortunes/__pycache__/
/src/humour/fortunes/all-in-one.uncompressed.html.tt2
/src/humour/fortunes/arcs-list.mak
/src/humour/fortunes/bbt
/src/humour/fortunes/bbt.html.tt2
/src/humour/fortunes/fortunes-shlomif-*.tar.xz
/src/humour/fortunes/fortunes-shlomif-all.atom
/src/humour/fortunes/fortunes-shlomif-all.rss
/src/humour/fortunes/fortunes-shlomif-lookup.sqlite3
/src/humour/fortunes/fortunes-shlomif.spec
/src/humour/fortunes/fortunes_show.py
/src/humour/fortunes/friends
/src/humour/fortunes/friends.html.tt2
/src/humour/fortunes/joel-on-software
/src/humour/fortunes/joel-on-software.html.tt2
/src/humour/fortunes/my_htaccess.conf
/src/humour/fortunes/nyh-sigs
/src/humour/fortunes/nyh-sigs.html.tt2
/src/humour/fortunes/osp_rules
/src/humour/fortunes/osp_rules.html.tt2
/src/humour/fortunes/paul-graham
/src/humour/fortunes/paul-graham.html.tt2
/src/humour/fortunes/sharp-perl
/src/humour/fortunes/sharp-perl.html.tt2
/src/humour/fortunes/sharp-programming
/src/humour/fortunes/sharp-programming.html.tt2
/src/humour/fortunes/shlomif
/src/humour/fortunes/shlomif-factoids
/src/humour/fortunes/shlomif-factoids.html.tt2
/src/humour/fortunes/shlomif-factoids.xml
/src/humour/fortunes/shlomif-fav
/src/humour/fortunes/shlomif-fav.html.tt2
/src/humour/fortunes/shlomif.html.tt2
/src/humour/fortunes/source-files-list.html
/src/humour/fortunes/subversion
/src/humour/fortunes/subversion.html.tt2
/src/humour/fortunes/tinic
/src/humour/fortunes/tinic.html.tt2
/src/images/bk2hp-v2.svg
/src/images/evilphish-svg--facing-right.svg
/src/images/evilphish-svg.svg
/src/images/presentations/coachella-crowd.webp
/src/images/sect-arr-left-disabled.svg
/src/images/sect-arr-left-pressed.svg
/src/images/sect-arr-left.svg
/src/images/sect-arr-right-disabled.svg
/src/images/sect-arr-right-pressed.svg
/src/images/sect-arr-right.svg
/src/images/sect-arr-up-disabled.svg
/src/images/sect-arr-up-pressed.svg
/src/images/sect-arr-up.svg
/src/me/images/bizcard.svg
/tags
/tslint.json