-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.xml
13168 lines (13168 loc) · 578 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" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://alvarogarcia7.github.io/articles/</loc>
<lastmod>2024-08-31T18:04:28+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/articles/2024/08/31/building-private-tools-open/</loc>
<lastmod>2024-08-31T18:04:28+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/</loc>
<lastmod>2024-08-31T18:04:28+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/private-tool/</loc>
<lastmod>2024-08-31T18:04:28+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/rebase/</loc>
<lastmod>2024-08-31T18:04:28+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/repository-pattern/</loc>
<lastmod>2024-08-31T18:04:28+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/rewrite-history/</loc>
<lastmod>2024-08-31T18:04:28+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/separation/</loc>
<lastmod>2024-08-31T18:04:28+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/</loc>
<lastmod>2024-08-31T18:04:28+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/tool/</loc>
<lastmod>2024-08-31T18:04:28+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/version/</loc>
<lastmod>2024-08-31T18:04:28+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/2024/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/3803/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ac/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/agent/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ai/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/air-conditioning/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/airpod/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/alan-kay/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/algorithm/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/analysis/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/anki/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/anxiety/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/api/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/app/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/atomic/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/august/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/basic/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/bitwisevibe/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/blog/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/blog/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/book/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/bootloader/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/bovem/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/breakdown/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/burnout/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/business/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/californiakarl/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/career-management/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/censorship/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/certificate/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/certificate-authority/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/chart/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/cloudflare/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/coding-horror/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/commit/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/compiler/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/copilot/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/cpython/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/crcastle/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/cryptography/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/d2lang/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/data-independence/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/data-pipeline/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/database/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/datasette/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/dave_universetf/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/david-cain/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/davidbarker/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/debug/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/decompiler/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/detective/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/development/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/diggan/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/digicert/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/distributed-database/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/dogsheep/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/downtime/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/durable-app/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/dx/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/editor/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/encryption/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/exfiltration/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/exploit/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/expression-problem/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/eye-hazard/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/eye-protection/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/findmy/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/fork-bomber/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/freewheeling-app/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/game/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/garbage-collection/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/gdpr/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/git/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/git-commit/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/go/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/goal/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/hackernews/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/handfuloflight/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/heap/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/heatpump/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/heinz-kabutz/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/high-availability/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/hosting/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ida-pro/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/igitur/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/imported/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/in-memory/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/inference/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ingve/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/injury/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/insight/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/instrumentation/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/interface/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/interpreter/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/interview/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/java/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/java-enhancement-proposal/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/java-tip/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/jaxe/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/jeff-atwood/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/jep/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/joelp/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/john-s-mccain/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/justinskycak/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/karpathy/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/kartik-agaram/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/language/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/larsdu88/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/laser/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/layman/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/leak/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/learning/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/lichtenberger/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/lifestyle-business/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/lisp/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/list/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/llm/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/local/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/lock/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/lost/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/low-level/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/make/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/makefile/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/market/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/math/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/mathematics/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/maturity-level/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/maturity-scale/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/memory/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/memory-address/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/memory-allocation/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/memory-usage/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/messaging/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/mifare/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/mill/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/model/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/mooreds/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/mxstbr/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/nasa/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ndiddy/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/neovim/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/nonce/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/novel/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/nullability/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ollama/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/omnibrain/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/otoolep/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/passion/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/path-finder/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/persistance/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/personal/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/personal-data-pipeline/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/personal-project/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/personalized/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/physical-design/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/pinescript/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/planning/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/plugin/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/pointer/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/posthog/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/prime/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/prime-number/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/privacy/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/process/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/programming/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/programming-book/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/project/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/project-interface/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/prompt/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/python/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/quanta-ray/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/quest/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ranebo/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/raptitude.com/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/rayw/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/rce/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/recroad/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/recursive/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/reflection/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/reliability/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/remote-code-execution/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/repair/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/report/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/resignation/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/responsibility/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/retention/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/reverse-engineering/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/rich-hickey/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/risc-v/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/rockrobotrock/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/rop-chain/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/rqlite/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/rspivak/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/rust/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/rust-compiler/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/saas/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/secure-boot/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/security/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/blog/2024/08/01/self-study-august-2024/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/self-study-aggregation/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/selfhosting/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/server/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ship/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/shoggouth/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/side-hustle/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/slack/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/smali/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/spaced-repetition/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/sqlite/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/sre/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/stack/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/storage/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/strcpy/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/study/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/surprisetalk/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/swah/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/switowski/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/syntax/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/tactile-feedback/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/tdrhq/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/teaching/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/technology-readiness-level/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/time-management/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/time-planning/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/timothy-lister/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/tip/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/tom-demarco/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/tosh/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/tprow50/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/trading/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/transcribe/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/transcription/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/transport/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/trl/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ui/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/usage/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ux/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/vi/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/vim/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/wal/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/watch/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/web-development/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/xal/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/xbox/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/zdw/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/zed/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/zerojames/</loc>
<lastmod>2024-08-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/boilerplate/</loc>
<lastmod>2024-07-28T10:03:01+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/github/</loc>
<lastmod>2024-07-28T10:03:01+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/july/</loc>
<lastmod>2024-07-28T10:03:01+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/kata/</loc>
<lastmod>2024-07-28T10:03:01+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/blog/2024/07/28/python-3-boilerplate/</loc>
<lastmod>2024-07-28T10:03:01+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/repository/</loc>
<lastmod>2024-07-28T10:03:01+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/8organicbits/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/a16z/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/aceraopen/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/adr/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ag/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/amazon/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/architectural-pattern/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/architecture-decisional-record/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/argument/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/asicsp/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/assessment/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/attack/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/audio/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/audio-processing/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/aws/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/azeemba/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/b20000/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/backtracking/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/barcode/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/battery/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/belter/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/bisect/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/blogging/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/blue-friday/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/bounding-box/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/brendan-gregg/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/brian-kernighan/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/bril/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/bug/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/burntsushi/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/c-ffi/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/c-language/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/cancellation/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/career/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/charles_f/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/chris_overseas/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/chumpgpt/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/ci/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/clang/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/clean-architecture/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/clean-code/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/cli/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/coding-interview/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/collision/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/comparison/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/concert/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/concurrency/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/consultant/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/continuous-integration/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/contractual-terms/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/cookbook/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/cpp/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/crisis/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/crowdstrike/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/dahlia/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/dark-pattern/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/darpa/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/data-access/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/data-structure/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/date/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/dcs/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/debugging/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/deep-cycle-systems/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/deepcyclesystems.com.au/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/deepfake/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/defect/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/dell/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>
<loc>https://alvarogarcia7.github.io/categories/demo/</loc>
<lastmod>2024-07-01T00:00:00+04:00</lastmod>
</url><url>