-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsitemap.xml
1500 lines (1500 loc) · 130 KB
/
sitemap.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" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url><loc>https://dirtysalt.github.io/html/10-lessons-from-10-years-of-aws.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/10-lessons-learned-from-the-early-days-of-google.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/1024-cores-lock-free-section.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/12-classic-mistakes.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/1984.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/2012-birthday.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/2015-house-clean.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/26-lessons-from-being-a-developer-at-a-startup.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/2pc-vs-paxos.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/40-tips-that-will-change-your-coding-skills-forever.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/42-things-I-learned-from-building-a-production-database.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/44-eng-mag-lessons.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/5-lessons-we-have-learned-using-aws.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/7-links-to-convince-you-that-big-data-is-not-your-problem.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/7-tips-for-improving-mapreduce-performance.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/8-mistakes-of-investing-high-tech-company.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-better-way-to-learn-math.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-comparison-of-approaches-to-large-scale-data-analysis.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-conversation-with-werner-vogels.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-decade-at-google.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-deep-dive-into-common-open-formats-for-olap.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-few-days-at-village.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-great-developer-can-come-from-anywhere.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-guide-to-making-your-science-matter.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-little-architecture.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-love-for-legacy.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-man-for-all-markets.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-mathematician-plays-the-stock-market.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-note-of-nobel-winner.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-page-about-call-cc.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-possible-impl-of-abtest-sys.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-possible-impl-of-reco-sys.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-programmers-rantings.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-star-to-find-shortest-path.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-tour-inside-cloudflare-latest-generation-servers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-tour-of-machine-learning-algorithms.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-typical-data-processing-system.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-way-to-learn-history.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-word-on-scalability.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/a-year-in-tokyo.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/abandoned-probabilistic-option.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/about-dna-sequencing.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/about-intermittent-fasting.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/about-network-latency-and-bandwidth.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/about-storage-system-iops-and-performance.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ace.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/achieving-rapid-response-times-in-large-online-services.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/adaptive-and-robust-query-execution-for-lakehouse-at-scale.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/adaptive-self-tunning-memory-in-db2.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/advice-for-ambitious-19-years-olds.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ai-meets-database-ai4db-db4fi-tutorial-track-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/albis-high-perf-file-format-for-big-data-sys.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/algorithm-design-steps-in-interview.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/algorithmica-comp-arch-and-language.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/algorithmica-compilation-profiling.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/algorithmica-ram-cpu-caches.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/algorithmica-simd.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/alibaba-hbase-practice.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/aliyun-singapore-region-fire-disaster.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/all-my-fav-tracing-tools.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/alleged-rc4.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/alpha-beta-pruning.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/always-measure-one-level-deeper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/amazon-aurora-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/amazon-dynamodb.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/amazon-firecracker.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/amazon-redshift-reinvented-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/america-alone-talk.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/amsuing-ourselves-to-death.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/an-adaptive-io-tasks-implementation-based-on-speculation.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/an-example-of-java-class-loading-chaos.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/an-impact-guide-for-engineers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/an-incremental-approach-to-compiler-construction.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/an-interview-with-edw.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/anaconda-high-perf-solution.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/analysis-of-hdfs-under-hbase-a-facebook-messages-case-study.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/animal-farm.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ansi-common-lisp.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/anti-destruction-in-china.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/antifragile.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/aoc2023-day25-graph-min-cut-karger.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/aosa.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/apache-arrow-theory-and-practice-explained.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/apache-calcite-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/apache-hadoop-goes-realtime-at-facebook.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/apache-kudu-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/application-resilience-in-a-service-oriented-architecture.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/applied-philosophy-aka-hacking.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/apply-visa-for-finland.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/apply-visa-for-usa.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/apps-survive-on-bad-alloc.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/apue-v2.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/arch-of-dbms.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/area-of-triangle.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/as-a-software-engineer-why-did-you-receive-a-promotion.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ascii-hex-codes.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/atlassian-user-onboarding-magic.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/attempt-to-work-on-windows.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/authority-and-merit.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/automate-to-save-mental-energy-not-time.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/automated-locality-opt-based-on-reuse-dist-of-string-ops.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/automation-on-finacial-report.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/availability-vs-durability.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/avoiding-burnout.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/aws-ec2-instances.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/aws-region-code-explain.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/baby-sleep-training.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/back-fuzhou-take-care-aunt.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/backblaze-storage-pod.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/baidu-bit-shanghai-route.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/balance-of-solving-problem-and-learn-knowledge.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/barbarians-at-gateways.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/barely-friend-and-close-friend.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/basic-cost-of-building-a-small-website.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/basic-economics.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/bayesian-methods-for-hackers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/bcc-tools-bpftrace.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/be-careful-when-you-drive.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/beating-the-cap-theorem-checklist.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/beautiful-code.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/beauty-of-math.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/becoming-cto.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/before-you-code-write.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/beginning-of-a-hard-journey.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/benefitting-pow-and-performance-sleep-loops.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/best-practices-for-applying-deep-learning-for-novel-applications.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/best-practices-for-selecting-apache-hadoop-hardware.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/best-practices-for-using-the-jni.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/better-bitmap-perf-with-roaring-bitmaps.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/big-data-and-revolution.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/big-data-is-supposed-to-be.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/biglake-bigquery-evolution-toward-a-multi-cloud-lakehouse.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/bigtable.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/binary-indexed-tree.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/binghe-blogs-notes.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/bipartite-maximum-matching.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/bitcoin-through-brand-and-use-case-models.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/bitcoin.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/black-swan.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/blink.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/blogs.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/bob-dylan-bio-like-a-rolling-stone.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/boost-shadowsocks-with-tcp-bbr.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/boots-of-spanish-leather.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/borg.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/boss-an-arch-for-db-kernel-composition.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/boyer-moore-majority-vote-algorithm.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/bpf-performance-tools.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/brain-of-the-child.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/brainfuck-jit-compiler.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/branchless-programming-in-cpp.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/break-it-and-absorb-everything-to-learn.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/bringing-spark-closer-to-bare-metal.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/build-an-unorthodox-guide-to-making-things-worth-making.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/build-ask-system-on-gpt.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/build-nginx-from-source-on-ubuntu.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/build-system.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/building-a-career-in-technology.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/building-a-production-machine-learning-infrastructure.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/building-a-terabyte-scale-data-cycle-at-linkedin-with-hadoop-and-project-voldemort.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/building-an-elastic-query-engine-on-disaggregated-storage.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/building-data-science-teams.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/building-machine-learning-systems-with-python.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/building-scalable-highly-concurrent-and-fault-tolerant-systems.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/building-software-systems-at-google-and-lessons-learned.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/busting-4-modern-hardware-myths-are-memory-hdds-and-ssds-really-random-access.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/c-switch-table-in-asm.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cache-hash-space-efficient-bloom-filters.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/caffe.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/calm-down-to-avoid-mistake.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/car.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cardinal-sin-of-software-engineering.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/career-path-myth.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/case-study-gfs-evolution-on-fast-forward.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cassandra.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ccc-x86-64.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/central-limit-theorem.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ceph.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/certificate-transparency.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cf-1359c-mixing-water.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cf-1359d-yet-another-yet-another-task.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/channel-UCSs4A6HYKmHA2MG_0z-F0xw.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/channel-UCYO_jab_esuFRV4b17AJtAw.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/char-encoding.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/chasing-the-shiny-and-new.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/chatgpt-prompt-design-doc.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/chatgpt-prompt-engineering-for-developers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/chengdu-travel.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/chenyu-on-internet-finance.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/chimp-floating-point-compression.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/chn-24-season-times.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/chubby.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/church-counter.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cities-and-ambition.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/claude-shannon-autobiography-a-mind-at-play.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/clickhouse-lightning-fast-analytics-for-everyone.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/climbing-the-wrong-hill.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/clojure.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cloudera-impala-real-time-queries-in-apache-hadoop-for-real.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmb-hk-account.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-buffer-pools.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-concurrency-control-theory.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-database-storage.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-hash-index.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-index-concurrency-control.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-logging-and-crash-recovery.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-mvcc.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-query-planning.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-query-processing.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-sort-agg-join.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-talk-on-photon.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cmudb-tree-indexes.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/code-complete.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/code-in-space.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/code-quality-the-open-source-perspective.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/code-simplicity.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/codehaus-manifesto.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/coders-at-work.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/coding-for-ssd.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cola-and-water.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/colleague-creates-spaghetti-code.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/collection-of-advices-how-to-learn-security.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/column-stores-vs-row-stores-how-different.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/columnar-storage-optimization-and-caching-for-data-lakes.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/commit-to-competence-in-this-coming-year.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/comp-arch-readings-princeton-branch-pred-addr-trans-gpu.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/comp-arch-readings-princeton-review-superscalar-vliw.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/competitive-strategy.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/competitors-are-not-the-enemy.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/compilation-in-sqlserver-hekaton-engine.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/compiled-and-vectorized-query-comparison.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/complexity-is-the-enemy.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/computational-advertising.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/compute-number-of-digits-of-an-integer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/computer-system-reading.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/computing-performance-2021-whats-on-the-horizon.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/concurrency-hazards.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/concurrency.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/confession-of-a-advertising-man.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/confessions-of-an-advertising-man.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/config-cuda-env-on-linux.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/configure-topcoder-env.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/consultant-and-best-practice.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/continuation.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/convert-array-int64-to-int8.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/convict-conditioning.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/convolutional-neural-networks.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cool-retro-term.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cops-causal-consistency.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/core-java-v1-fundamentals.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/core-java-v2-advanced-features.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/corona.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/coroutine.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/counting-number-of-matching-chars-in-ascii-strings.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cpp-atomics-basic-to-advanced.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cpp.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cracking-the-coding-interview.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/crash-course-in-modern-hardware.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cross-ocean.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/crystal-unified-cache-storage-system-for-analytical-databases.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cstore-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cuckoo-filter-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/cv.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dapper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dark-time.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/data-center-computers-modern-challenges-in-cpu-design.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/data-info-knowledge-and-wisdom.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/data-infra-at-airbnb.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/data-processing-at-the-speed-of-100gbps-using-apache-crail.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/data-structure-size-and-cache-line-accesses.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/data-structures-and-algorithms-for-big-databases.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/database-unbound-querying-all-of-the-worlds-bytes-with-ai.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/databricks-photon-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/databricks-product-stack.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/david-and-goliath.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dbms-impl.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dbms-intro.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dear-andreas.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/decision-making-and-error-correction-costs.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/deconstructing-recommender-systems.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/deep-learning-material-recommendations.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/definition-of-meta-physics.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/delivering-happiness.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/delta-lake-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/derangement-problem.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/design-a-good-non-crypt-hash-func.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/design-data-intensive-applications.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/design-patterns-head-first.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/design-patterns.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/design-reading.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/designing-userspace-diskio-scheduler-scylladb-example.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/designs-lessons-and-advice-from-building-large-distributed-systems.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/developers-who-can-build-things-from-scratch.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/did-you-ever-try-your-best.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/diff-lock-free-and-wait-free.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/difference-between-poor-rich-on-zhihu.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/discussion-on-rs.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/disruptor-tech-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/distributed-algorithms-in-nosql-databases.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/distributed-operating-systems.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/distributed-system-reading.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/do-house-work-as-leisure.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/do-we-need-to-think-while-we-have-powerful-search-engine.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/do-you-think-you-have-gambling-problem.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/docker.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dont-call-yourself-a-programmer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dont-know-what-to-program.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dont-stay-for-too-long.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dont-switch-to-yinxiang-note.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/doris-hash-index.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dreaming-in-code.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dremel-a-decade-of-interactive-sql-analysis-at-web-scale.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dremel.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dremio-c3-effect.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dremio-reflections-docs-summary.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/drive-learning.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/druid-a-real-time-analytical-data-store.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/druid-part-deux-three-principles-for-fast-dist-olap.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/dynamo.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/earlybird-realtime-search-at-twitter.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ebpf-rethinking-the-linux-kernel.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/effective-programming-more-than-writing-code.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/effective-scala.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/efficiency-is-a-fragile-game.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/efficiency-tips-for-engineers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/efficient-bit-unpacking.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/efficient-external-sorting-in-duckdb.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/efficiently-compiling-efficient-query-plans-for-modern-hardware.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/efficiently-exploiting-multiple-cores-with-python.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/elastic-search.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/employee-equity.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/enchiridion-by-epictetus.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ending-of-ming-dynasty.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/engineering-management.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/enlightment-of-civilization.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/equipped-with-ssd.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/erlang-prog-lang-book.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/erlang.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/etsy-activity-feeds-architecture.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/euler-and-fermat-little-theorem.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/eureka-on-career.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/every-infrastructure-decision-i-endorse-or-regret-after-4-years-running-infrastructure-at-a-startup.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/excellent-advice-for-living-kevin-kelly.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/experience-of-research-from-outsider.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/experience-of-running-coffee-shop-for-40-years.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/exploiting-cloud-object-storage-for-high-performance-analytics.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/extended-gcd.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/f1-query-declarative-quqey-at-scale.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/f1-talk.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/f1.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/face-landmark-detection-dlib.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/facebook-cachelib-document-overview.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/fallacies-of-distributed-computing-explained.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/fast-inverse-sqrt-quake.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/fast-memcmp-and-memcpy-simd.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/feels-like-faster-and-actually-faster.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/few-blogs-of-elite-course.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/few-simd-code-snippets.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/few-tips-of-mongodb-best-practice.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ffmpeg.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/fidgety-mind-and-thought.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/filter-range-optimization.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/finagle.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/financial-markets-class.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/find-10-digits-prime-in-consecutive-digits-of-e.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/find-lca-using-rmq.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/find-which-process-use-tcp-port.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/finding-great-developers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/first-10km-running.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/first-foot-massage.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/first-swimming.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/firstday-at-china-microsoft.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/firstday-ddb.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/five-years-phd.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/fizzbuzz-optimzied-program.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/flexpushdowndb-hybrid-pushdown-and-caching-in-cloud-dbms.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/flowers-to-algernon.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/flumejava.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/forces-of-habit.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ford-fulkerson-network-flow-problem.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/foudationdb-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/frangipani.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/from-cloud-computing-to-sky-computing.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/from-running-to-life.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/from-zero-to-one.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/fsst-fast-random-access-string-compression.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/fun.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/future-of-code.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/galera.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/garbage-collect-algorithm-and-implementation-book.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/gcc-10-optimzation-bug-on-type-based-aliasing.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/gcc-asm.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/general-algorithm.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/generalists-and-specialists-thoughts-on-hiring.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/generate-maze.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/geoffrey-hinton-interview-in-coursera.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/get-marriage-identity.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/getting-real-about-distributed-system-reliability.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/getting-real.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/getting-started-elk-beat.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/getting-things-done-when-you-are-only-a-grunt.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/gfs.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/git.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/github-flow.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/go-course-day.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/go-scheduler-talk-dmitry-vyukov.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/goal-oriented-vs-process-oriented.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/god-father.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/golang-prog-book.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/golang.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/good-and-bad-reasons-to-become-an-entrepreneur.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/good-to-have-slack-time.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/goodbye-dyy.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/google-borg-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/google-io-2009-tx-across-dc.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/google-mesa.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/google-napa-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/google-photon-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/google-secret-and-linear-algebra.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/google-the-dataflow-model-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/gperftools.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/graduate-final-report.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/graph-edge-type-and-articulation-node.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/graphics-programming-black-book.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/graphite.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/great-mathematicians.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/growth-hacker.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/guide-to-advanced-programming-in-c.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/guilin-travel.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/gunicorn-spawn-worker-exception.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/gunicorn.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/gwp.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ha-namenode-for-hdfs-with-hadoop1.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hackers-and-painters.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hadoop-at-a-crossroads.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hadoop-benchmark.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hadoop-definitive-guide.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hadoop-io-files.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hadoop-overview.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hadoop.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hangzhou-travel.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/happiness-comes-from-comprehensive-and-compounded-growth.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/haproxy.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hard-to-believe.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hashmap-perf-comparison.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hashtable-perf-comparison.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/have-a-baby.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/have-a-baby2.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/have-a-nice-sleep-and-straighten-up.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/haystack.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hbase-configuration.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hbase-definitive-guide.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hbase-log-splitting.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hbase-write-path.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hbase.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hdfs-reliability-with-namenode-and-avatarnode.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hdfs-reliability.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hdfs-scalability-the-limits-to-growth.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hdfs.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/health-comes-first.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/health-life-against-market-advertisement.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/heart-broken.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/helsinki-travel.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/helsinki-travel2.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hft-engineer-zhihu.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/high-cpu-utilization-by-log4j.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/highest-investor-perspective-as-god-view.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hints-for-computer-system-design.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/history-of-apache-storm-and-lessons-learned.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hit-refresh.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hive-getting-started.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/homo-deus-brief-history-of-tomorrow.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/house.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-did-you-learn-so-much-stuff.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-env-impacts-on-person.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-gfw-discovers-hidden-circumvention-servers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-google-works.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-investment-make-money.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-long-does-it-take-to-make-context-switch.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-math-important-to-ml.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-not-to-measure-latency.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-the-economic-machine-works-by-ray-dalio.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-apply-domain.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-be-a-programmer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-be-successful.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-beat-the-cap-theorem.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-build-behaviour.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-build-good-software.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-build-your-own-alpha-zero-ai.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-build-your-personal-brand-as-a-new-developer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-choose-baseline.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-define-software-stability.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-do-cross-validation.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-get-a-job-like-mine-aaron-swartz.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-get-useful-answers-to-your-questions.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-launch-a-mac-app-and-become-1-top-paid-app-globally.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-learn-in-systematic-way.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-pick-your-battles-on-a-software-team.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-read-a-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-receive-a-million-packets-per-second.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-sign-extend.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-solve-it-a-new-apsect-of-math-method.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-stop-worring-and-start-living.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-study-stem-efficiently.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-use-medicine-properly-in-china.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-win-friends-and-influence-people.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-to-write-a-good-software-design-doc.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/how-yelp-runs-millions-of-tests-every-day.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/hpserver.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/image-decompression-bomb.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/impala-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/impala.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/important-things-are-often-invisible.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/improving-deep-neural-networks.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/in-house-programmer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/in-stream-big-data-processing.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/incorrect-self-eval.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/index.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/influence.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/information-dilution-effect.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/information-rules.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/innovation-diffusion-theory-models-and-pitfalls.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/inside-job.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/inside-look-at-modern-web-browser.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/inside-nginx-how-we-designed-for-performance-scale.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/inside-the-python-gil.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/inside-the-sql-server-query-optimizer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/instagram-engineering-3-rules-to-a-scalable-cloud-application-architecture.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/instagram-under-the-hood.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/install-compiled-bcc-bpftrace.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/instruction-set-wants-to-be-free-riscv-case.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/integrating-compression-and-execution-in-cstore.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/integrating-deep-learning-frameworks-into-main-memory-databases.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/intentional-parenting.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/interview-psychological-tricks.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/interview-with-gmail-creator-and-y-combinator-partner-paul-buchheit.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/intro-apache-yarn.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/intro-druid-real-time-analytics-at-a-billion-rows-per-second.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/intro-quantum-computing.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/intro-to-cnn.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/introduction-to-computing-systems.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/introduction-to-http2.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/intuition-pumps-and-other-tools-for-thinking.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/iphone-charles-http-proxy-issue.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/is-hadoop-out-of-date.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/is-there-a-simple-algorithm-for-intelligence.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/issue-of-retry-after-field.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/java-at-speed.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/java-tools.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/java.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/javascript-prototype-chain-tests.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/javascript-the-good-parts.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/jeju-travel.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/jemalloc-paper.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/jit-compiling-sql-queries-in-pgsql-using-llvm.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/jni.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/jobs.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/joe-duffy-software-leadership-series.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/jonathon-ive.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/journey-through-genius.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/json-tiles-fast-analytics-on-semi-structured-data.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/just-pain-is-useless.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/jvm-print-assembly-code.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/jvm.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/kafka.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/kaggle-bike-sharing-demand.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/kaggle-digit-recongnizer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/kaggle-facial-keypoints-detection.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/keras-author-on-software-engineering.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/keynes-vs-hayek.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/klotski-or-sliding-puzzle-revised.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/klotski-solving.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/know-how-to-show-weakness.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/kylin.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lang-detect-and-encoding-detect.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lang-reflects-your-subconscious.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/large-scale-data-and-computation-chanllenges-and-opportunities.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/large-scale-deep-learning-for-intelligent-computer-systems.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/laws-of-performant-software.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100112-maximum-balanced-subsequence-sum.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100124-maximum-strong-pair-xor-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100136-count-the-number-of-good-partitions.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100240-minimize-manhattan-distances.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100241-find-the-sum-of-the-power-of-all-subsequences.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100249-replace-question-marks-in-string-to-minimize-its-value.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100259-minimum-sum-of-values-by-dividing-array.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100267-kth-smallest-amount-with-single-denomination-combination.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100293-find-all-possible-stable-binary-arrays-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100306-maximum-sum-of-subsequence-with-non-adjacent-elements.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100312-find-the-minimum-cost-array-permutation.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100314-block-placement-queries.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100318-find-minimum-diameter-after-merging-two-trees.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100320-maximum-total-reward-using-operations-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100321-find-the-number-of-good-pairs-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100327-find-the-maximum-length-of-a-good-subsequence-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-100333-count-the-number-of-inversions.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1014-best-sightseeing-pair.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1025-divisor-game.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1027-longest-arithmetic-sequence.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1035-uncrossed-lines.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1073-adding-two-negabinary-numbers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1074-number-of-submatrices-that-sum-to-target.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1109-corporate-flight-bookings.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1139-the-kth-subarray.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1201-ugly-number-iii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1227-airplane-seat-assignment-probability.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-126-word-ladder-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1307-verbal-arithmetic-puzzle.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1330-reverse-subarray-to-maximize-array-value.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1371-find-the-longest-substring-containing-vowels-in-even-counts.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1388-pizza-with-3n-slices.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1453-maximum-number-of-darts-inside-of-a-circular-dartboard.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1483-kth-ancestor-of-a-tree-node.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-149-max-points-on-a-line.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1494-parallel-courses-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1498-number-of-subsequences-that-satisfy-the-given-sum-condition.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1504-count-submatrices-with-all-ones.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1505-minimum-possible-integer-after-at-most-k-adjacent-swaps-on-digits.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1515-best-position-for-a-service-centre.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1520-maximum-number-of-non-overlapping-substrings.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1521-find-a-value-of-a-mysterious-function-closest-to-target.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1526-minimum-number-of-increments-on-subarrays-to-form-a-target-array.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1562-find-latest-group-of-size-m.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1585-check-if-string-is-transformable-with-substring-sort-operations.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1595-minimum-cost-to-connect-two-groups-of-points.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1605-find-valid-matrix-given-row-and-column-sums.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1621-number-of-sets-of-k-non-overlapping-line-segments.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1622-fancy-sequence.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1626-best-team-with-no-conflicts.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1627-graph-connectivity-with-threshold.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1655-distribute-repeating-integers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1659-maximize-grid-happiness.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1665-minimum-initial-energy-to-finish-tasks.org.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1676-minimize-deviation-in-array.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1703-minimum-adjacent-swaps-for-k-consecutive-ones.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1727-largest-submatrix-with-rearrangements.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1734-decode-xored-permutation.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1735-count-ways-to-make-array-with-product.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1835-find-xor-sum-of-all-pairs-bitwise-and.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1840-maximum-building-height.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1847-closest-room.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1851-minimum-interval-to-include-each-query.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1862-sum-of-floored-pairs.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1866-number-of-ways-to-rearrange-sticks-with-k-sticks-visible.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1872-stone-game-viii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1878-get-biggest-three-rhombus-sums-in-a-grid.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1882-process-tasks-using-servers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1897-meeting-room-iii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1915-number-of-wonderful-substrings.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1916-count-ways-to-build-rooms-in-an-ant-colony.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1938-maximum-genetic-difference-query.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1977-number-of-ways-to-separate-numbers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1982-find-array-given-subset-sums.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1994-the-number-of-good-subsets.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1997-first-day-where-you-have-been-in-all-the-rooms.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-1998-gcd-sort-of-an-array.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2029-stone-game-ix.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2132-stamping-the-grid.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2134-minimum-swaps-to-group-all-1s-together-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2136-earliest-possible-day-of-full-bloom.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2141-maximum-running-time-of-n-computers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2157-groups-of-strings.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-218-the-skyline-problem.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2188-minimum-time-to-finish-the-race.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-220-contains-duplicate-iii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2513-minimize-the-maximum-of-two-arrays.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2518-number-of-great-partitions.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2527-find-xor-beauty-of-array.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2528-maximize-the-minimum-powered-city.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2568-minimum-impossible-or.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2569-handling-sum-queries-after-update.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2571-minimum-operations-to-reduce-an-integer-to-0.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2572-count-the-number-of-square-free-subsets.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2573-find-the-string-with-lcp.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2576-find-the-maximum-number-of-marked-indices.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2577-minimum-time-to-visit-a-cell-in-a-grid.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2581-count-number-of-possible-root-nodes.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2584-split-the-array-to-make-coprime-products.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2603-collect-coins-in-a-tree.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2608-shortest-cycle-in-a-graph.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2612-minimum-reverse-operations.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2699-modify-graph-edge-weights.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2719-count-of-integers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2790-maximum-number-of-groups-with-increasing-length.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2791-count-paths-that-can-form-a-palindrome-in-a-tree.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2809-minimum-time-to-make-array-sum-at-most-x.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2813-maximum-elegance-of-a-k-length-subsequence.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2836-maximize-value-of-function-in-a-ball-passing-game.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2846-minimum-edge-weight-equilibrium-queries-in-a-tree.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2866-beautiful-towers-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2867-count-valid-paths-in-a-tree.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2902-count-of-sub-multisets-with-bounded-sum.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2916-subarrays-distinct-element-sum-of-squares-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2939-maximum-xor-product.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2945-find-maximum-non-decreasing-array-length.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2952-minimum-number-of-coins-to-be-added.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2953-count-complete-substrings.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2954-count-the-number-of-infection-sequences.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2967-minimum-cost-to-make-array-equalindromic.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2968-apply-operations-to-maximize-frequency-score.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2972-count-the-number-of-incremovable-subarrays-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2977-minimum-cost-to-convert-string-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-2983-palindrome-rearrangement-queries.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3012-minimize-length-of-array-using-operations.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3022-minimize-or-of-remaining-elements-using-operations.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3031-minimum-time-to-revert-word-to-initial-state-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3108-minimum-cost-walk-in-weighted-graph.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3234-count-the-number-of-substrings-with-dominant-ones.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3235-check-if-the-rectangle-corner-is-reachable.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3257-maximum-value-sum-by-placing-three-rooks-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3261-count-substrings-that-satisfy-k-constraint-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3272-find-the-count-of-good-integers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3273-minimum-amount-of-damage-dealt-to-bob.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3276-select-cells-in-grid-with-maximum-score.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3277-maximum-xor-score-subarray-queries.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3292-minimum-number-of-valid-strings-to-form-target-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-33-search-in-rotated-sorted-array.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3317-find-the-number-of-possible-ways-for-an-event.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3336-find-the-number-of-subsequences-with-equal-gcd.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3337-maximum-frequency-of-an-element-after-performing-operations-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3337-total-characters-in-string-after-transformations-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3348-smallest-divisible-digit-product-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3357-minimize-the-maximum-adjacent-element-difference.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-3362-zero-array-transformation-iii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-33670maximize-sum-of-weights-after-edge-removals.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-407-trapping-rain-water-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-42-trapping-rain-water.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-47-permutations-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-493-reverse-pairs.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-517-super-washing-machines.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-5220-maximum-product-of-the-length-of-two-palindromic-substrings.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-5716-maximize-number-of-nice-divisors.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-5725-number-of-different-subsequences-gcds.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-5752-maximum-subarray-min-product.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-5932-valid-arrangement-of-pairs.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-5970-maximum-employees-to-be-invited-to-a-meeting.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6040-maximum-total-beauty-of-the-gardens.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6103-minimum-score-after-removals-on-a-tree.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6115-count-the-number-of-ideal-arrays.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6118-minimum-sum-of-squared-difference.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6119-subarray-with-elements-greater-than-varying-threshold.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6144-minimum-replacements-to-sort-the-array.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6151-count-special-integers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6155-find-the-k-sum-of-an-array.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6211-create-components-with-same-value.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6223-height-of-binary-tree-after-subtree-removal-queries.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6260-maximum-number-of-points-from-grid-queries.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-629-k-inverse-pairs-array.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-630-course-schedule-iii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6305-disconnect-path-in-a-binary-matrix-by-at-most-one-flip.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6318-minimum-time-to-complete-all-tasks.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6344-lexicographically-smallest-beautiful-string.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-664-strange-printer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6919-apply-operations-to-make-all-array-elements-equal-to-zero.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-6957-count-stepping-numbers-in-range.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-730-count-different-palindromic-subsequences.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-754-reach-a-number.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-8013-number-of-beautiful-integers-in-the-range.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-8020-string-transformation.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-8026-construct-product-matrix.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-805-split-array-with-same-average.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-810-chalkboard-xor-game.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-858-mirror-reflection.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-862-shortest-subarray-with-sum-at-least-k.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-873-new-21-game.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-889-orderly-queue.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-898-bitwise-ors-of-subarrays.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-910-smallest-range-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-932-beautiful-array.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-950-reveal-cards-in-increasing-order.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-986-interval-list-intersections.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-ccbft-2021fall-04.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lc-find-the-shortest-superstring.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lcp-09-least-jump.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lcp-13-xun-bao.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lcp-14-qie-fen-shu-zu.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lcp-65-2022-fall-5.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lcp-69-hello-leetcode.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lean-a-high-performance-storage-engine-for-nvme-ssds.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lean-in.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/leanstore-in-memory-data-management-beyond-main-memory.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/learn-stop-using-shiny-new-things-and-love-mysql.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/leaving-from-china-amazon.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/leetcode-hhrc-2022.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lessons-learned-from-fighting-against-haze.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lessons-learned-from-reading-postmortems.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lessons-learned-in-national-days-2021.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lessons-learned-while-building-infrastructure-software-at-google.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lessons-learned-while-working-on-large-scale-server-softwarre.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lessons-learned-writing-highly-available-code.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lets-talk-locks.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/letting-go-of-idealism-towards-the-world.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/leveldb.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/libev.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/license.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/life-3.0.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/life-is-just-a-moment.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/life-is-not-easy-but-magical.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/life-lessons-from-the-first-half-century-of-my-career.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lingaoqiming.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/linker-and-loader.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/linux-kernel-development.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/linux-kernel-management-style.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/linux-perf.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/linux-proc-fs.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/linux-system-and-performance-monitoring.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/linux-tools.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/linux.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/little-prolog-code.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/living-in-county.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lmax-arch-martin-fowler.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lock.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/logrotate-conf-for-nginx.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/look-clojure-from-outsider.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/look-house-with-xcq.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lottery-and-exp-dist.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/love-money-and-parenting.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/love-your-bugs.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/low-latency-compilation-of-sql-queries-to-machine-code.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lua-applicaiton-programming.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lua-prog-lang-book.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lz-vs-sz.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lzf.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lzma.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lzo-algorithm-and-codec.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/lzw-algorithm-in-python.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mac-root-certification.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mac-talk.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mac.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/machine-learning-for-trading-class.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/machine-learning-tom-mitchell.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/macosx-rootless-mode.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/made-in-america.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/main-memory-database-systems-an-overview.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/make-a-workable-dns.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/make-non-obvious-hires.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/make-startup-usb-stick-under-mac.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/making-it-big-in-software.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/making-money-along-the-way.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/making-photos-smaller.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/management-actually-is-engineering.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/management-behaviour-in-chinese-way.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/manhattan.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mapred.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mapreduce-a-flexible-data-processing-tool.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mapreduce-a-major-step-backwards-ii.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mapreduce-a-major-step-backwards.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mapreduce-a-minor-step-forward.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mapreduce-and-parellel-dbms-friends-or-foes.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mapreduce-patterns-algos-and-use-cases.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mapreduce-versus-parellel-dbms.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mapreduce.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mastering-study.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/math-a-very-short-intro.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/math-mul-div-sqrt-impl.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/math-read.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/matrix-transpose-cache-analysis.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/matz-on-programming.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/maven.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mcts-for-nim.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mcts-shortest-version.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mean-people-fail.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/measure-your-system-performance-using-software-go-edition.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/meeting-dyq.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/megastore.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/memcached.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/memory-allocation-buddy-system.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/memory-allocation-impact-on-high-perf-query-processing.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/memory-barrier.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/memory-deep-dive-bandwidth.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/memory-deep-dive-ddr4.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/memory-deep-dive-performance.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/memory-deep-dive-subsystem.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/memory-ordering-in-modern-microprocessors.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/memory.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mesos-omega-borg-a-survey.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mesos.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/micro-mu-project-overview.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/microservices-not-a-free-lunch.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/millwheel.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/minimal-wsgi-app-in-python.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mining-massive-datasets.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mistakess-as-new-manager.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ml-class.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ml-foundations.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ml-reading.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ml-techniques.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ml-the-hard-way.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/modern-operating-systems.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/monetdb-x100-hyper-pipelining-query-execution.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/money-doggy.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mongodb.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mongodb34-perf-issue-checkpoint.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/morality-of-surrogacy-and-what-we-concern.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/more-joel-on-software.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/morsel-driven-parallelism-framework.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ms-interview-2.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ms-interview.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ms-presentation.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/msr-farm.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/muduo.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/multicore-opt-notur-2009.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mxnet-neural-art.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/my-amoi-n821.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/my-first-english-conversation.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/my-first-moxa-wool-moxibustion.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/my-iphone5s.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/my-thoughts-on-startup.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/my-toy-dict-book.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/my-without-wife-wedding.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mysql.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/mysterious-memcpy-assembly-code.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/myth-10x-engineer-context-paris.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nand2tetris-hardware-part.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nand2tetris-software-part.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/narrow-python-build.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/negative-feedback-and-trap-in-real-life.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/neo-a-learned-query-optimizer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/netty.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/network-as-the-key-to-success.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/neural-networks-and-deep-learning.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/neuralnets.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/new-era-carmack.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nginx-forwarding-proxy.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nginx-https-redirect-loop.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nginx-log-parser-opt.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nginx-site-redirect.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nginx.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nine-algos-that-changed-the-future.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nju-ics-pa.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nlp-sequence-models.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nmstl.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nnt-words-archive.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nobody-ever-got-fired-for-buying-a-cluster.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nolearn.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nosql-back-to-the-feature-or-yet-another-db-feature.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/nosql-database-notes.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/not-easy-as-you-think.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/notes-on-distributed-systems-for-young-bloods.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/notes-on-programming.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/notes-on-side-project.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/numa-an-overview.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/numa-deep-dive-part1-from-uma-to-numa.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/numa-deep-dive-part2-system-architecture.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/numa-deep-dive-part3-cache-coherency.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/numa-deep-dive-part4-local-memory-optimization.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/numa.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/numbers-everyone-should-know.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/object-storage-on-craq.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/oh-i-have-seen-this-idea-before.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/old-summer-palace-travel.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/omega.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/on-being-a-senior-engineer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/on-career-and-management.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/on-designing-and-deploying-internet-scale-services.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/on-facebook-newsfeed.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/on-python-profiling.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/on-stories-in-neural-networks.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/on-the-future-of-neural-networks.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/on-top-of-tides.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/on-working-remotely.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/one-hundred-years-of-solitude.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/only-the-paranoid-survive.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/open-life-the-philosophy-of-open-source.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/open-source-from-community-to-commercialization.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/openresty-best-practices-lua.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/opentsdb.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/oprofile.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/optimize-data-skew-hash-join.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/optimize-fixed-length-binary-to-integer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/optimize-linux-pipe-case.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/optimize-math-function-case.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/optimize-reading-small-stripe-orc-file.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/optimizing-software-in-cpp.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/orca-a-modular-query-optimizer.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/orcfile.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/organizing-containers-of-balls.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ostep-con-cv.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ostep-con-lock.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ostep-persist-disk.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ostep-persist-file.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ostep-readings.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ostep-virt-cpu.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ostep-virt-vax-vms.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ostep-virt-vm-page.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/ostep-virt-vm-seg.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/outliers.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/outlive.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/pain-think-and-change.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/parquet.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/paste.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/patch-oriented-software-development.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/patterns-in-confusing-explanations.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/paxos.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/percolator.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/perf-analysis-and-tuning-on-modern-cpus.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/performance-at-top-after-moore-law.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/performance-degradation-by-denormal-floating-point.html</loc></url>
<url><loc>https://dirtysalt.github.io/html/performance-matters.html</loc></url>