-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
1224 lines (1224 loc) · 67.1 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://prokopov.me/pages/projects/</loc>
<lastmod>2024-12-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/pages/talks/</loc>
</url><url>
<loc>https://prokopov.me/pages/about/</loc>
<lastmod>2020-12-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/</loc>
<lastmod>2024-12-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/</loc>
<lastmod>2024-12-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/starlink/</loc>
<lastmod>2024-12-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/2024/</loc>
<lastmod>2024-12-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-year-tech-in-review/</loc>
<lastmod>2024-12-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/</loc>
<lastmod>2024-12-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/review/</loc>
<lastmod>2024-12-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-12-07/</loc>
<lastmod>2024-12-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/productivity/</loc>
<lastmod>2024-12-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-12-06/</loc>
<lastmod>2024-12-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/philosophy/</loc>
<lastmod>2024-12-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/philosophy-smalltalk/</loc>
<lastmod>2024-12-05T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-12-05/</loc>
<lastmod>2024-12-05T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/pages/</loc>
<lastmod>2024-12-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-10-11-hashicorp-waypoint/</loc>
<lastmod>2024-10-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-07-14/</loc>
<lastmod>2024-07-14T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-06-30/</loc>
<lastmod>2024-06-30T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/emacs/</loc>
<lastmod>2024-05-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/emacs-for-beginners/</loc>
<lastmod>2024-05-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-03-27-ansible/</loc>
<lastmod>2024-03-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-03-27/</loc>
<lastmod>2024-03-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-03-26/</loc>
<lastmod>2024-03-26T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-03-25/</loc>
<lastmod>2024-03-25T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-03-17/</loc>
<lastmod>2024-03-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-03-10/</loc>
<lastmod>2024-03-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-02-02/</loc>
<lastmod>2024-02-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-01-24/</loc>
<lastmod>2024-01-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/monitoring/</loc>
<lastmod>2024-01-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/prometheus/</loc>
<lastmod>2024-01-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/</loc>
<lastmod>2024-01-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2024-01-17/</loc>
<lastmod>2024-01-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/emacs/</loc>
<lastmod>2024-01-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/hugo/</loc>
<lastmod>2024-01-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/org-mode/</loc>
<lastmod>2024-01-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/ruby-macos-install/</loc>
<lastmod>2023-08-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/macos/</loc>
<lastmod>2023-08-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/ruby/</loc>
<lastmod>2023-08-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2023-07-15-cloudflare-tunnel-terraform/</loc>
<lastmod>2023-07-15T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D0%B1%D0%B5%D0%B7-%D0%BA%D0%B0%D1%82%D0%B5%D0%B3%D0%BE%D1%80%D0%B8%D0%B8/</loc>
<lastmod>2023-07-15T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2023-04-03/</loc>
<lastmod>2023-04-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2023-03-17/</loc>
<lastmod>2023-03-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/news/</loc>
<lastmod>2023-02-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2023-02-24/</loc>
<lastmod>2023-02-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/business/</loc>
<lastmod>2022-09-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/it-support/</loc>
<lastmod>2022-09-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/why-is-it-support-so-hard/</loc>
<lastmod>2022-09-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/git/</loc>
<lastmod>2022-08-15T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/til-2022-08-15/</loc>
<lastmod>2022-08-15T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/til/</loc>
<lastmod>2022-08-15T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/emacs-ergonomics-apple/</loc>
<lastmod>2022-06-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/sre-concepts-sla-slo-sli/</loc>
<lastmod>2021-11-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-11-02-how-much-driver-license-cost/</loc>
<lastmod>2021-11-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-week-29/</loc>
<lastmod>2021-07-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/links/</loc>
<lastmod>2021-07-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-04-23-oxid-api-coding-days/</loc>
<lastmod>2021-04-23T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-04-13-on-late-binding/</loc>
<lastmod>2021-04-13T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-04-08/</loc>
<lastmod>2021-04-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-04-07/</loc>
<lastmod>2021-04-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-03-27/</loc>
<lastmod>2021-03-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-03-04/</loc>
<lastmod>2021-03-04T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-02-02-org-protocol-chrome-no-confirmation/</loc>
<lastmod>2021-02-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/org-mode/</loc>
<lastmod>2021-02-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-01-08/</loc>
<lastmod>2021-01-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-01-07/</loc>
<lastmod>2021-01-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2021-01-06/</loc>
<lastmod>2021-01-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-12-24/</loc>
<lastmod>2020-12-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-12-07/</loc>
<lastmod>2020-12-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-10-09/</loc>
<lastmod>2020-10-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-07-11/</loc>
<lastmod>2020-07-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-week-28/</loc>
<lastmod>2020-07-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/education/</loc>
<lastmod>2020-07-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-07-09/</loc>
<lastmod>2020-07-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-06-19-date-printing-go/</loc>
<lastmod>2020-06-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-week-24-links/</loc>
<lastmod>2020-06-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-week-23-links/</loc>
<lastmod>2020-06-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/setting-up-a-php-development-environment-with-apache2-and-php-fpm-on-macos-catalina-21d74a90aeac/</loc>
<lastmod>2020-06-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D0%B2%D0%B5%D0%B1-%D1%80%D0%B0%D0%B7%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%BA%D0%B0/</loc>
<lastmod>2020-06-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-06-02-pharo-raspberry-pi/</loc>
<lastmod>2020-06-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-06-01-move-to-hugo/</loc>
<lastmod>2020-06-01T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-week-22/</loc>
<lastmod>2020-05-31T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-05-31/</loc>
<lastmod>2020-05-31T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-week-21-links/</loc>
<lastmod>2020-05-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-05-24-ruby/</loc>
<lastmod>2020-05-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/how-to-increase-kubernetes-pvc-size-for-aws-ebs-b3d4a99c006a/</loc>
<lastmod>2020-05-12T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/my-new-modern-web-site-stack-f9645e78ae16/</loc>
<lastmod>2020-04-12T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2020-03-03-my-recent-tasks/</loc>
<lastmod>2020-03-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2020/02/applescript-instantly-open-zoom-link-from-the-ical-calendar/</loc>
<lastmod>2020-02-26T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D0%B7%D0%B0-%D0%B6%D0%B8%D0%B7%D0%BD%D1%8C/</loc>
<lastmod>2020-02-26T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/applescript-instant-open-zoom-link/</loc>
<lastmod>2020-02-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/tips-and-tricks/</loc>
<lastmod>2020-02-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2020-01-01/</loc>
<lastmod>2020-01-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/the-bad-thing-about-rails-is-that-by-default-it-suggests-using-own-messy-design-patterns-like-fat-37d81b3e7def/</loc>
<lastmod>2019-09-15T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2019-08-01-old-langs/</loc>
<lastmod>2019-08-01T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2019/01/%D0%B4%D0%B2%D0%B0-%D0%B4%D1%80%D0%B5%D0%B2%D0%BD%D0%B8%D1%85-%D1%8F%D0%B7%D1%8B%D0%BA%D0%B0-%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D1%8B%D0%B5-%D0%BD%D1%83%D0%B6%D0%BD%D0%BE-%D0%B8%D0%B7%D1%83%D1%87%D0%B8/</loc>
<lastmod>2019-01-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/how-to-improve-ruby-code-with-dup-and-tap-methods-95fa1d1bb9fe/</loc>
<lastmod>2018-06-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2018-05-29_-----------prolog-e0878ac7fe40/</loc>
<lastmod>2018-05-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2018-05-27_---------------------------------------------------------------dbe59a2cbade/</loc>
<lastmod>2018-05-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/brief-introduction-to-the-kubernetes-f1050c4daa51/</loc>
<lastmod>2018-05-26T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/kubernetes/</loc>
<lastmod>2018-05-26T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2018-03-28_--------------------------2285686116fa/</loc>
<lastmod>2018-03-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/noteworthy-clojure-projects-634af849e01d/</loc>
<lastmod>2018-01-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/clojure/</loc>
<lastmod>2018-01-16T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2018/01/%D0%B2%D0%B5%D1%89%D0%B8-%D0%B2-%D0%B2%D0%B5%D0%B1-%D0%B4%D0%B5%D0%B2%D0%B5-%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D1%8B%D0%B5-%D0%BC%D0%B5%D0%BD%D1%8F-%D0%B4%D0%B5%D0%B9%D1%81%D1%82%D0%B2%D0%B8%D1%82%D0%B5/</loc>
<lastmod>2018-01-16T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2018/01/%D0%BF%D1%80%D0%BE-%D1%80%D0%B5%D0%B4%D0%B0%D0%BA%D1%82%D0%BE%D1%80%D1%8B-%D0%B8-ide/</loc>
<lastmod>2018-01-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2017/11/%D0%BC%D0%BE%D0%BD%D0%BE%D0%BA%D0%BE%D0%BB%D0%B5%D1%81%D0%BE-ninebot-one-s2-%D1%80%D0%B5%D0%BC%D0%BE%D0%BD%D1%82-%D0%BF%D1%80%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0-%D0%BA%D0%B0%D0%BC%D0%B5%D1%80%D1%8B-%D1%81/</loc>
<lastmod>2017-11-01T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/quick-fix-for-rubygems-ssl-error-5126c73cb7f6/</loc>
<lastmod>2017-10-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/compare-postgres-speed-within-docker-and-without-be8d87b5b10c/</loc>
<lastmod>2017-09-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/gitlab-continuous-delivery-setup-for-clojure-java-with-docker-472320d5aa52/</loc>
<lastmod>2017-09-05T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/fully-automated-docker-mysql-database-backup-from-remote-host-bd02e24b5009/</loc>
<lastmod>2017-08-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/ansible/</loc>
<lastmod>2017-08-15T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/ansible-containers-d89258cdf5de/</loc>
<lastmod>2017-08-15T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2017-08-11_---------------d42877e2368d/</loc>
<lastmod>2017-08-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/deployment-of-clojure-app-to-production-with-docker-9dbffeac6ef5/</loc>
<lastmod>2017-08-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2017/07/%D1%87%D1%82%D0%BE-%D0%BF%D0%BE%D1%87%D0%B8%D1%81%D1%82%D0%B8%D1%82%D1%8C-%D0%BD%D0%B0-%D0%B2%D0%B0%D1%88%D0%B5%D0%BC-mac/</loc>
<lastmod>2017-07-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2017/07/%D1%80%D0%B0%D0%B7%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%BA%D0%B0-%D1%84%D1%80%D0%BE%D0%BD%D1%82%D0%B5%D0%BD%D0%B4%D0%B0-%D0%BD%D0%B0-%D0%B2%D0%B5%D0%B1-%D0%BA%D0%B0%D1%82%D0%B8%D1%82%D1%81%D1%8F-%D0%BD/</loc>
<lastmod>2017-07-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2017-07-11_----docker---ruby-on-rails-sprockets-and-precompiled-assets-9686ab933bb7/</loc>
<lastmod>2017-07-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2017/06/%D0%BC%D1%83%D0%B7%D0%B5%D0%B9-%D0%BC%D0%B5%D1%80%D1%81%D0%B5%D0%B4%D0%B5%D1%81-%D0%B1%D0%B5%D0%BD%D1%86-%D0%B2-%D1%88%D1%82%D1%83%D1%82%D1%82%D0%B3%D0%B0%D1%80%D1%82%D0%B5/</loc>
<lastmod>2017-06-01T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2017/03/%D0%BA%D0%B0%D0%BA-%D1%8F-%D0%B7%D0%B0%D0%BF%D1%83%D1%81%D0%BA%D0%B0%D0%BB-%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%BD%D0%B5%D1%82-%D0%BC%D0%B0%D0%B3%D0%B0%D0%B7%D0%B8%D0%BD-%D1%87%D0%B0%D1%81%D1%82%D1%8C-4/</loc>
<lastmod>2017-03-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2017/02/%D0%BE%D1%82%D0%BB%D0%B8%D1%87%D0%BD%D1%8B%D0%B5-%D0%B8%D0%BB%D0%BB%D1%8E%D1%81%D1%82%D1%80%D0%B0%D1%86%D0%B8%D0%B8-%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D1%8B-%D0%B8%D0%B7%D0%B2%D0%B5%D1%81%D1%82%D0%BD/</loc>
<lastmod>2017-02-15T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/12/%D0%B2%D0%BE%D1%82-%D1%8F-%D0%B8-%D1%81%D1%82%D0%B0%D0%BB-%D0%BA%D0%BE%D0%BC%D0%BC%D0%B8%D1%82%D0%B8%D1%82%D1%8C-%D0%B2-clojure-%D0%BE%D0%BF%D0%B5%D0%BD%D1%81%D0%BE%D1%80%D1%86/</loc>
<lastmod>2016-12-30T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/why-docker-for-rails-development-sucks-a43f230f62f6/</loc>
<lastmod>2016-11-04T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/10/%D0%B4%D0%B0%D0%B9%D0%B4%D0%B6%D0%B5%D1%81%D1%82-%D0%BD%D0%B0%D1%85%D0%BE%D0%B4%D0%BE%D0%BA-%D0%B2%D0%B5%D0%B1%D0%BC%D0%B0%D1%81%D1%82%D0%B5%D1%80%D0%B0-2016-10-27/</loc>
<lastmod>2016-10-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/10/%D0%B1%D0%BB%D0%B5%D1%81%D0%BA-%D0%B8-%D0%BD%D0%B8%D1%89%D0%B5%D1%82%D0%B0-opencart-%D0%BA%D0%B0%D0%BA-%D0%B4%D0%B2%D0%B8%D0%B6%D0%BA%D0%B0-%D0%B4%D0%BB%D1%8F-%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%BD/</loc>
<lastmod>2016-10-13T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2016-10-13_---------------opencart----------------------------------6bbee7eabb95/</loc>
<lastmod>2016-10-13T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/09/%D0%B4%D0%B0%D0%B9%D0%B4%D0%B6%D0%B5%D1%81%D1%82-%D0%BC%D0%BE%D0%B8%D1%85-%D0%BD%D0%B0%D1%85%D0%BE%D0%B4%D0%BE%D0%BA/</loc>
<lastmod>2016-09-20T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/08/apfs-%D0%B4%D0%BE%D1%81%D1%82%D1%83%D0%BF%D0%B5%D0%BD-%D0%B2-macos-sierra/</loc>
<lastmod>2016-08-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/07/%D0%BA%D0%B0%D0%BA-%D1%8F-%D0%B7%D0%B0%D0%BF%D1%83%D1%81%D0%BA%D0%B0%D0%BB-%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%BD%D0%B5%D1%82-%D0%BC%D0%B0%D0%B3%D0%B0%D0%B7%D0%B8%D0%BD-%D1%87%D0%B0%D1%81%D1%82%D1%8C-2/</loc>
<lastmod>2016-07-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/07/%D0%BE%D0%B1%D0%B7%D0%BE%D1%80-xiaomi-roidme-2s/</loc>
<lastmod>2016-07-25T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/07/tern-%D1%83%D0%BC%D0%BD%D1%8B%D0%B9-autocomplete-%D0%B4%D0%BB%D1%8F-javascript-%D0%B2-%D1%80%D0%B0%D0%B7%D0%BB%D0%B8%D1%87%D0%BD%D1%8B%D1%85-%D1%80%D0%B5%D0%B4%D0%B0%D0%BA%D1%82%D0%BE%D1%80%D0%B0/</loc>
<lastmod>2016-07-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/07/%D0%BA%D0%B0%D0%BA-%D1%8F-%D0%B7%D0%B0%D0%BF%D1%83%D1%81%D0%BA%D0%B0%D0%BB-%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%BD%D0%B5%D1%82-%D0%BC%D0%B0%D0%B3%D0%B0%D0%B7%D0%B8%D0%BD-%D1%87%D0%B0%D1%81%D1%82%D1%8C-1/</loc>
<lastmod>2016-07-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/07/%D0%BC%D0%BD%D0%BE%D0%B3%D0%BE-%D0%BF%D1%80%D0%BE-docker-coreos-ansible-%D0%B8-xen/</loc>
<lastmod>2016-07-15T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D0%B0%D0%B4%D0%BC%D0%B8%D0%BD%D0%B8%D1%81%D1%82%D1%80%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5/</loc>
<lastmod>2016-07-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/07/itil-for-business/</loc>
<lastmod>2016-07-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/06/spacemacs/</loc>
<lastmod>2016-06-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2016-06-06_-----------------------------------------emacs-----vim-------------74190dffa34e/</loc>
<lastmod>2016-06-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D1%81%D0%BE%D1%84%D1%82/</loc>
<lastmod>2016-06-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/docker/</loc>
<lastmod>2016-04-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/i-discovered-much-faster-way-to-speed-up-docker-image-creation-c7485fbf6aec/</loc>
<lastmod>2016-04-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D0%B1%D1%8B%D1%82%D0%BE%D0%B2%D0%B0%D1%8F-%D1%82%D0%B5%D1%85%D0%BD%D0%B8%D0%BA%D0%B0/</loc>
<lastmod>2016-04-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2016/04/%D0%BF%D1%80%D0%B8%D0%BA%D0%BE%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5-%D0%BE%D1%87%D0%BA%D0%B8-%D1%81-%D0%BF%D0%BE%D0%B4%D1%81%D0%B2%D0%B5%D1%82%D0%BA%D0%BE%D0%B9/</loc>
<lastmod>2016-04-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/@mprokopov/%d0%be%d1%87%d0%b5%d0%bd%d1%8c-%d1%85%d0%be%d1%80%d0%be%d1%88%d0%be-%d0%bf%d0%b8%d1%88%d0%b5%d1%82%d0%b5-%d0%bb%d0%b5%d0%b3%d0%ba%d0%be-%d1%87%d0%b8%d1%82%d0%b0%d0%b5%d1%82%d1%81%d1%8f-575c5e67ecca/</loc>
<lastmod>2016-02-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2015/12/%D0%BF%D1%80%D0%BE-%D0%BC%D0%BE%D0%B9-%D1%82%D0%B0%D0%B9%D0%BC-%D0%BC%D0%B5%D0%BD%D0%B5%D0%B4%D0%B6%D0%BC%D0%B5%D0%BD%D1%82/</loc>
<lastmod>2015-12-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2015/12/%D0%BF%D1%80%D0%BE-%D1%83%D0%BA%D1%80%D0%B7%D0%B0%D0%BB%D0%B8%D0%B7%D0%BD%D1%8B%D1%86%D1%8E-%D0%B8-%D0%B1%D0%B8%D0%BB%D0%B5%D1%82%D1%8B/</loc>
<lastmod>2015-12-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2015/12/%D0%BF%D0%BE%D1%81%D1%82-%D0%B2-%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D0%BE%D0%BC-%D1%8F-%D0%BF%D1%80%D0%B8%D0%B7%D0%BD%D0%B0%D1%8E%D1%81%D1%8C-%D0%B2-%D0%BB%D1%8E%D0%B1%D0%B2%D0%B8-devcards-figwheel/</loc>
<lastmod>2015-12-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/posts/2015-11-02_--------------------------------------slack----15-------8ee097578b6b/</loc>
<lastmod>2015-11-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2015/09/os-x-el-capitan-gm-candidate/</loc>
<lastmod>2015-09-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D0%BC%D0%B0%D0%BA/</loc>
<lastmod>2015-09-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2015/04/to-pay-or-not-to-pay-virus-chipher/</loc>
<lastmod>2015-04-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/10/%D1%87%D1%82%D0%BE-%D1%8F-%D1%83%D0%B7%D0%BD%D0%B0%D0%BB-%D0%B8%D0%B7-%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D1%8B-%D1%81-rails-assets-pipeline-%D0%B8-javascript-knockoutjs-vs-angularjs/</loc>
<lastmod>2014-10-30T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/06/%D1%83%D0%B4%D0%BE%D0%B2%D0%BE%D0%BB%D1%8C%D1%81%D1%82%D0%B2%D0%B8%D0%B5-%D0%BE%D1%82-%D0%BC%D0%B0%D1%82%D0%B5%D0%BC%D0%B0%D1%82%D0%B8%D0%BA%D0%B8/</loc>
<lastmod>2014-06-23T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/lifehack/</loc>
<lastmod>2014-05-14T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/05/%D1%83%D1%87%D0%B5%D1%82-%D0%BF%D0%B5%D1%80%D1%81%D0%BE%D0%BD%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D1%85-%D1%84%D0%B8%D0%BD%D0%B0%D0%BD%D1%81%D0%BE%D0%B2/</loc>
<lastmod>2014-05-14T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/05/tips-and-tricks-for-mac-os-part-3/</loc>
<lastmod>2014-05-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/04/mac-tips-and-tricks-part-2/</loc>
<lastmod>2014-04-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/04/favorite-mac-tips-and-tricks/</loc>
<lastmod>2014-04-25T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/04/chef-recipe-for-nginx-passenger-install-ubuntu-debian-from-repository/</loc>
<lastmod>2014-04-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/03/customer-is-everything/</loc>
<lastmod>2014-03-21T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D0%B3%D0%B0%D0%B4%D0%B6%D0%B5%D1%82%D1%8B/</loc>
<lastmod>2014-02-13T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/02/%D0%B3%D0%BE%D1%82%D0%BE%D0%B2%D0%BE%D0%B5-%D1%83%D1%81%D1%82%D1%80%D0%BE%D0%B9%D1%81%D1%82%D0%B2%D0%BE-%D0%B4%D0%BB%D1%8F-%D0%B2%D0%B7%D0%BB%D0%BE%D0%BC%D0%B0-wifi-%D0%B5%D1%81%D1%82%D1%8C-%D1%82/</loc>
<lastmod>2014-02-13T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D0%B6%D0%B5%D0%BB%D0%B5%D0%B7%D0%BE/</loc>
<lastmod>2014-02-13T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/02/%D0%BD%D0%B0%D1%88%D0%B0-%D0%BF%D0%BE%D0%BB%D0%B8%D1%82%D0%BE%D1%82%D0%B0/</loc>
<lastmod>2014-02-13T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/02/dakh-daughters/</loc>
<lastmod>2014-02-12T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/02/%D1%8D%D0%BA%D0%BE%D0%BD%D0%BE%D0%BC%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B0%D1%8F-%D1%82%D0%B5%D0%BE%D1%80%D0%B8%D1%8F/</loc>
<lastmod>2014-02-05T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D0%B7%D0%B4%D0%BE%D1%80%D0%BE%D0%B2%D1%8C%D0%B5/</loc>
<lastmod>2014-02-04T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/02/%D0%BA%D1%80%D1%83%D1%82%D1%8B%D0%B5-%D0%BF%D1%80%D0%B5%D0%B7%D0%B5%D0%BD%D1%82%D0%B0%D1%86%D0%B8%D0%B8-%D0%BE-%D0%B2%D0%BE%D0%B7%D0%B4%D0%B5%D0%B9%D1%81%D1%82%D0%B2%D0%B8%D0%B8-%D0%BD%D0%B0%D1%80/</loc>
<lastmod>2014-02-04T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2014/01/%D0%BA%D0%BD%D0%B8%D0%B3%D0%B8-%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D1%8B%D0%B5-%D0%B1%D1%8B%D0%BB%D0%B8-%D0%BF%D1%80%D0%BE%D1%87%D0%B8%D1%82%D0%B0%D0%BD%D1%8B-%D0%B2-%D1%81%D0%B5%D0%BD%D1%82%D1%8F%D0%B1/</loc>
<lastmod>2014-01-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/11/%D0%BA%D0%BE%D0%BC%D1%83-%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%8B%D0%B9-%D0%B0%D0%BC%D0%B5%D1%80%D0%B8%D0%BA%D0%B0%D0%BD%D1%81%D0%BA%D0%B8%D0%B9-vpn/</loc>
<lastmod>2013-11-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/10/%D1%87%D1%82%D0%BE-%D0%BD%D0%B0%D0%BC%D0%B8-%D0%B4%D0%B2%D0%B8%D0%B6%D0%B5%D1%82-%D0%B2-%D0%BB%D1%8E%D0%B1%D0%B2%D0%B8-%D0%B1%D0%B8%D0%BE%D1%85%D0%B8%D0%BC%D0%B8%D1%8F-%D0%BF%D1%80%D0%BE%D1%86%D0%B5/</loc>
<lastmod>2013-10-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/10/%D0%BA%D0%BE%D0%BD%D1%81%D0%BF%D0%B5%D0%BA%D1%82-%D0%BF%D0%BE-%D0%BB%D0%B5%D0%BA%D1%86%D0%B8%D1%8F%D0%BC-%D1%82%D1%80%D0%B8%D0%B7/</loc>
<lastmod>2013-10-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/10/amazon-kindle-paperwhite-%D0%B4%D0%BB%D1%8F-%D1%82%D0%B5%D1%85-%D0%BA%D1%82%D0%BE-%D0%BB%D1%8E%D0%B1%D0%B8%D1%82-%D1%87%D0%B8%D1%82%D0%B0%D1%82%D1%8C/</loc>
<lastmod>2013-10-02T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/09/%D0%BB%D0%B5%D0%B3%D0%BA%D0%B8%D0%B9-%D1%81%D0%BF%D0%BE%D1%81%D0%BE%D0%B1-%D0%BF%D0%B5%D1%80%D0%B5%D1%81%D1%82%D0%B0%D1%82%D1%8C-%D0%BE%D0%B1%D0%B8%D0%B6%D0%B0%D1%82%D1%8C%D1%81%D1%8F/</loc>
<lastmod>2013-09-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/09/%D0%BF%D0%BE%D1%81%D1%82%D1%80%D0%BE%D0%B5%D0%BD%D0%B8%D0%B5-%D0%B1%D0%B8%D0%B7%D0%BD%D0%B5%D1%81-%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D1%81%D1%81%D0%BE%D0%B2-%D0%B8%D1%82-%D0%BA%D0%BE%D0%BC%D0%BF%D0%B0-2/</loc>
<lastmod>2013-09-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D0%BC%D0%B0%D1%80%D0%BA%D0%B5%D1%82%D0%B8%D0%BD%D0%B3/</loc>
<lastmod>2013-09-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/09/%D0%BF%D0%BE%D1%81%D1%82%D1%80%D0%BE%D0%B5%D0%BD%D0%B8%D0%B5-%D0%B1%D0%B8%D0%B7%D0%BD%D0%B5%D1%81-%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D1%81%D1%81%D0%BE%D0%B2-%D0%B8%D1%82-%D0%BA%D0%BE%D0%BC%D0%BF%D0%B0/</loc>
<lastmod>2013-09-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D1%83%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5/</loc>
<lastmod>2013-09-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/09/%D0%BF%D0%BE%D1%81%D1%82%D1%80%D0%BE%D0%B5%D0%BD%D0%B8%D0%B5-%D0%B1%D0%B8%D0%B7%D0%BD%D0%B5%D1%81-%D0%BF%D1%80%D0%BE%D1%86%D0%B5%D1%81%D1%81%D0%BE%D0%B2-%D0%B4%D0%BB%D1%8F-%D0%B8%D1%82-%D0%BA%D0%BE/</loc>
<lastmod>2013-09-16T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/09/dont-use-dukan-diet/</loc>
<lastmod>2013-09-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/08/%D0%B5%D1%81%D0%BB%D0%B8-%D0%BE%D1%82%D0%B2%D0%B0%D0%BB%D0%B8%D0%BB%D0%B0%D1%81%D1%8C-java-%D0%BD%D0%B0-mac-os/</loc>
<lastmod>2013-08-14T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/08/%D1%85%D0%BE%D0%B7%D1%8F%D0%B9%D0%BA%D0%B5-mac-%D0%BD%D0%B0-%D0%B7%D0%B0%D0%BC%D0%B5%D1%82%D0%BA%D1%83-%D0%BA%D0%B0%D0%BA-%D1%83%D0%B7%D0%BD%D0%B0%D1%82%D1%8C-%D0%BA%D1%83%D0%B4%D0%B0-%D0%B4%D0%B5/</loc>
<lastmod>2013-08-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/08/%D0%B6%D0%B8%D0%B7%D0%BD%D0%B5%D0%BD%D0%BD%D1%8B%D0%B9-%D0%B0%D0%BD%D0%B5%D0%BA%D0%B4%D0%BE%D1%82/</loc>
<lastmod>2013-08-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/%D1%8E%D0%BC%D0%BE%D1%80/</loc>
<lastmod>2013-08-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/08/new-blog-theme/</loc>
<lastmod>2013-08-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/08/mac-dictionary/</loc>
<lastmod>2013-08-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/08/%D0%BB%D0%B0%D0%B9%D1%84%D1%85%D0%B0%D0%BA-%D0%BA%D0%B0%D0%BA-%D0%BF%D1%80%D0%B0%D0%B2%D0%B8%D0%BB%D1%8C%D0%BD%D0%BE-%D1%81%D0%BB%D0%BE%D0%B6%D0%B8%D1%82%D1%8C-%D1%80%D1%83%D0%B1%D0%B0%D1%88%D0%BA/</loc>
<lastmod>2013-08-01T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/07/my-mac-apps/</loc>
<lastmod>2013-07-25T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/07/%D1%87%D1%82%D0%BE-%D0%BF%D0%BE%D1%87%D0%B8%D1%82%D0%B0%D1%82%D1%8C/</loc>
<lastmod>2013-07-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/07/ikea-%D0%B2-%D1%83%D0%BA%D1%80%D0%B0%D0%B8%D0%BD%D0%B5/</loc>
<lastmod>2013-07-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/06/tatoo-bad/</loc>
<lastmod>2013-06-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/gtd/</loc>
<lastmod>2013-06-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/06/taskpaper-keyboard-maestro-enhancement/</loc>
<lastmod>2013-06-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/05/%D0%B0%D0%BD%D0%B5%D0%BA%D0%B4%D0%BE%D1%82/</loc>
<lastmod>2013-05-14T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/05/%D0%BF%D1%80%D0%BE-%D1%86%D0%B5%D0%BB%D0%B8/</loc>
<lastmod>2013-05-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/03/errors-workaround/</loc>
<lastmod>2013-03-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/03/about-history/</loc>
<lastmod>2013-03-25T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/03/%D0%BD%D0%B5%D0%B2%D0%B5%D1%80%D0%BE%D1%8F%D1%82%D0%BD%D0%BE-%D0%BA%D1%80%D1%83%D1%82%D0%BE-%D1%81%D0%B4%D0%B5%D0%BB%D0%B0%D0%BD%D0%BE-%D0%B2%D0%BD%D1%83%D1%82%D1%80%D0%B5%D0%BD%D0%BD%D0%B8%D0%B9/</loc>
<lastmod>2013-03-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/03/water-on-mars/</loc>
<lastmod>2013-03-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/03/about-stress-human-body/</loc>
<lastmod>2013-03-16T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/03/puten-i-yanukovich/</loc>
<lastmod>2013-03-14T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/03/emile-muller/</loc>
<lastmod>2013-03-13T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/03/%D0%BF%D1%80%D0%BE-%D1%81%D0%B0%D0%B9%D1%82%D1%8B/</loc>
<lastmod>2013-03-13T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/03/beautiful-women/</loc>
<lastmod>2013-03-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/03/design-principles/</loc>
<lastmod>2013-03-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/03/life-upgrade/</loc>
<lastmod>2013-03-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/01/%D0%BD%D0%B5-%D0%BC%D0%BE%D0%B3%D1%83-%D1%8D%D1%82%D0%BE-%D0%BF%D1%80%D1%8F%D1%82%D0%B0%D1%82%D1%8C-%D0%BF%D1%80%D0%B0%D0%B2%D0%B4%D0%B0-%D0%BE-%D0%B4%D0%B8%D0%B7%D0%B0%D0%B9%D0%BD%D0%B5-%D0%B2/</loc>
<lastmod>2013-01-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/01/privatbank-story/</loc>
<lastmod>2013-01-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/01/taskpaper-getting-results-agile-way/</loc>
<lastmod>2013-01-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/01/%D1%85%D0%BE%D0%B7%D1%8F%D0%B9%D0%BA%D0%B5-%D0%BD%D0%B0-%D0%B7%D0%B0%D0%BC%D0%B5%D1%82%D0%BA%D1%83-%D0%BA%D0%B0%D0%BA-%D1%81%D0%BD%D1%8F%D1%82%D1%8C-%D0%BC%D0%B0%D0%B3%D0%BD%D0%B8%D1%82%D0%BD%D1%83/</loc>
<lastmod>2013-01-13T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/01/%D0%BE%D0%BC%D0%BD%D0%B8%D1%84%D0%BE%D0%BA%D1%83%D1%81-1-x-%D1%81%D0%BA%D0%B0%D1%87%D0%B0%D1%82%D1%8C-%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D0%BE/</loc>
<lastmod>2013-01-12T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/01/%D1%81%D0%BA%D1%80%D0%B8%D0%BF%D1%82%D0%B8%D0%BD%D0%B3-%D0%BD%D0%B0-applescript/</loc>
<lastmod>2013-01-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2013/01/%D1%88%D1%82%D1%83%D0%BA%D0%B8-%D0%BF%D1%80%D0%BE-%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D1%8B%D0%B5-%D1%85%D0%BE%D1%82%D0%B5%D0%BB%D0%BE%D1%81%D1%8C-%D0%B1%D1%8B-%D0%BD%D0%B0%D0%BF%D0%B8%D1%81%D0%B0%D1%82/</loc>
<lastmod>2013-01-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/09/%D1%81%D1%81%D1%8B%D0%BB%D0%BA%D0%B0-%D0%B4%D0%BD%D1%8F-%D0%B4%D0%BB%D1%8F-%D1%83%D0%B2%D0%BB%D0%B5%D0%BA%D0%B0%D1%8E%D1%89%D0%B8%D1%85%D1%81%D1%8F-itil-free-itil-training/</loc>
<lastmod>2012-09-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/08/%D0%B2%D0%BF%D0%B5%D1%87%D0%B0%D1%82%D0%BB%D0%B5%D0%BD%D0%B8%D1%8F-%D0%BE%D1%82-%D0%BF%D0%BE%D1%81%D0%B5%D1%89%D0%B5%D0%BD%D0%B8%D1%8F-%D1%81%D0%B5%D0%BC%D0%B8%D0%BD%D0%B0%D1%80%D0%B0-%D0%BF%D0%BE-iti/</loc>
<lastmod>2012-08-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/07/how-to-fix-icq-html-tags-in-imessage/</loc>
<lastmod>2012-07-26T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/itunes/</loc>
<lastmod>2012-04-30T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/last-added/</loc>
<lastmod>2012-04-30T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/04/%D1%85%D0%BE%D0%B7%D1%8F%D0%B9%D0%BA%D0%B5-%D0%BD%D0%B0-%D0%B7%D0%B0%D0%BC%D0%B5%D1%82%D0%BA%D1%83-%D0%BA%D0%B0%D0%BA-%D0%B4%D0%BE%D0%B1%D0%B0%D0%B2%D0%B8%D1%82%D1%8C-%D0%B2-itunes-%D0%BF%D0%BB%D0%B5/</loc>
<lastmod>2012-04-30T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/04/%D1%85%D0%BE%D0%B7%D1%8F%D0%B9%D0%BA%D0%B5-%D0%BD%D0%B0-%D0%B7%D0%B0%D0%BC%D0%B5%D1%82%D0%BA%D1%83-%D0%BA%D0%B0%D0%BA-%D0%BE%D0%BF%D1%80%D0%B5%D0%B4%D0%B5%D0%BB%D0%B8%D1%82%D1%8C-%D0%BF%D0%BE%D0%B4/</loc>
<lastmod>2012-04-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%B2%D0%B0%D0%BA%D0%B0%D0%BD%D1%81%D0%B8%D1%8F/</loc>
<lastmod>2012-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/03/%D0%BF%D1%80%D0%BE%D1%81%D0%BC%D0%B0%D1%82%D1%80%D0%B8%D0%B2%D0%B0%D1%8F-%D1%80%D0%B5%D0%B7%D1%8E%D0%BC%D0%B5-%D0%BB%D0%BE%D0%B2%D0%B8%D0%BC-%D0%BF%D1%80%D0%B5%D0%BA%D1%80%D0%B0%D1%81%D0%BD%D0%BE/</loc>
<lastmod>2012-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0/</loc>
<lastmod>2012-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D1%80%D0%B5%D0%B7%D1%8E%D0%BC%D0%B5/</loc>
<lastmod>2012-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D1%81%D0%BE%D0%B1%D0%B5%D1%81%D0%B5%D0%B4%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F/</loc>
<lastmod>2012-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/colorize/</loc>
<lastmod>2012-03-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/mac/</loc>
<lastmod>2012-03-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/terminal/</loc>
<lastmod>2012-03-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/03/%D1%86%D0%B2%D0%B5%D1%82%D0%B0-%D0%B2-%D1%82%D0%B5%D1%80%D0%BC%D0%B8%D0%BD%D0%B0%D0%BB%D0%B5-mac-os-x-lion/</loc>
<lastmod>2012-03-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/howto/</loc>
<lastmod>2012-02-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/windows/</loc>
<lastmod>2012-02-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/windows-concept/</loc>
<lastmod>2012-02-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/02/%D0%BA%D0%B0%D0%BA-%D1%81%D0%BC%D0%B5%D0%BD%D0%B8%D1%82%D1%8C-%D0%BF%D0%B0%D1%80%D0%BE%D0%BB%D1%8C-%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D1%82%D0%B5%D0%BB%D1%8F-%D0%B2-%D1%82%D0%B5%D1%80/</loc>
<lastmod>2012-02-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/02/%D0%BA%D0%BE%D0%BD%D1%86%D0%B5%D0%BF%D1%82-windows-desktop/</loc>
<lastmod>2012-02-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/02/%D0%BF%D0%BE%D1%82%D1%80%D1%8F%D1%81%D0%B0%D1%8E%D1%89%D0%B8%D0%B5-%D0%B2%D0%B5%D1%89%D0%B8-%D0%BF%D0%BE%D1%8F%D0%B2%D0%BB%D1%8F%D1%8E%D1%82%D1%81%D1%8F-%D0%B2-%D0%BC%D0%B8%D1%80%D0%B5/</loc>
<lastmod>2012-02-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%BA%D0%B5%D0%B9%D1%81-%D1%81%D1%82%D0%B0%D0%B4%D0%B8/</loc>
<lastmod>2012-02-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/02/%D0%BA%D0%BB%D0%B0%D1%81%D1%81%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B9-%D0%BA%D0%B5%D0%B9%D1%81-%D1%81%D1%82%D0%B0%D0%B4%D0%B8-%D0%BD%D0%B0-%D0%BF%D1%80%D0%B8%D0%BC%D0%B5%D1%80%D0%B5-%D0%BE%D0%B4/</loc>
<lastmod>2012-02-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%BC%D0%B0%D1%80%D0%BA%D0%B5%D1%82%D0%B8%D0%BD%D0%B3/</loc>
<lastmod>2012-02-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%BE%D0%B4%D0%B8%D0%BD%D0%B5%D1%81%D0%BA%D0%BE/</loc>
<lastmod>2012-02-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/visio/</loc>
<lastmod>2012-02-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%BA%D0%B0-%D0%BE%D0%BD%D0%BB%D0%B0%D0%B9%D0%BD/</loc>
<lastmod>2012-02-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%B4%D0%B8%D0%B0%D0%B3%D1%80%D0%B0%D0%BC%D0%BC%D1%8B/</loc>
<lastmod>2012-02-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/02/%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8-%D0%BA%D0%B0%D0%BA-visio-%D0%BE%D0%BD%D0%BB%D0%B0%D0%B9%D0%BD/</loc>
<lastmod>2012-02-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D1%81%D1%85%D0%B5%D0%BC%D1%8B/</loc>
<lastmod>2012-02-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/asterisk/</loc>
<lastmod>2012-02-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/02/%D0%BC%D0%BE%D0%B9-%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4-%D0%BD%D0%B0-%D1%85%D0%B0%D0%B1%D1%80%D0%B0%D0%B2%D1%81%D1%82%D1%80%D0%B5%D1%87%D0%B5-%D0%BE-%D1%86%D0%B8%D1%84%D1%80%D0%BE%D0%B2%D0%BE%D0%B9/</loc>
<lastmod>2012-02-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/habrahabr/</loc>
<lastmod>2012-02-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4/</loc>
<lastmod>2012-02-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%B8%D1%82-%D0%B0%D1%83%D1%82%D1%81%D0%BE%D1%80%D1%81%D0%B8%D0%BD%D0%B3/</loc>
<lastmod>2012-02-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/02/%D0%BC%D0%BE%D0%B9-%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4-%D0%BD%D0%B0-%D0%BF%D1%80%D0%BE%D1%88%D0%BB%D0%BE%D0%B9-%D1%85%D0%B0%D0%B1%D1%80%D0%B0%D0%B2%D1%81%D1%82%D1%80%D0%B5%D1%87%D0%B5/</loc>
<lastmod>2012-02-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/02/lightpack-%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%B5%D1%81%D0%BD%D0%BE%D0%B5-%D0%B8%D0%B7%D0%BE%D0%B1%D1%80%D0%B5%D1%82%D0%B5%D0%BD%D0%B8%D0%B5/</loc>
<lastmod>2012-02-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/openvpn/</loc>
<lastmod>2012-02-04T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/vpn/</loc>
<lastmod>2012-02-04T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/02/%D1%87%D1%83%D0%B4%D0%B5%D1%81%D0%BD%D0%B0%D1%8F-%D0%BD%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-openvpn/</loc>
<lastmod>2012-02-04T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/arm/</loc>
<lastmod>2012-02-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/dns-320/</loc>
<lastmod>2012-02-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/fun_plug/</loc>
<lastmod>2012-02-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/linux/</loc>
<lastmod>2012-02-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/02/%D0%B2%D1%8B%D1%88%D0%B5%D0%BB-%D0%BD%D0%BE%D0%B2%D1%8B%D0%B9-fun_plug-0-7/</loc>
<lastmod>2012-02-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/design/</loc>
<lastmod>2012-01-23T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/wordpress/</loc>
<lastmod>2012-01-23T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/01/%D0%BD%D0%BE%D0%B2%D0%B0%D1%8F-%D1%82%D0%B5%D0%BC%D0%B0-wordpress-%D0%B4%D0%BB%D1%8F-nexusnotes-ru/</loc>
<lastmod>2012-01-23T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/apache/</loc>
<lastmod>2012-01-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/apache/</loc>
<lastmod>2012-01-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/redirect/</loc>
<lastmod>2012-01-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/01/%D1%81%D0%B0%D0%BC%D1%8B%D0%B9-%D0%BF%D1%80%D0%B0%D0%B2%D0%B8%D0%BB%D1%8C%D0%BD%D1%8B%D0%B9-%D1%80%D0%B5%D0%B4%D0%B8%D1%80%D0%B5%D0%BA%D1%82-301/</loc>
<lastmod>2012-01-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%B8%D0%BD%D1%84%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%BA%D0%B0/</loc>
<lastmod>2012-01-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2012/01/%D1%81%D0%B5%D0%BA%D1%80%D0%B5%D1%82-%D1%83%D1%81%D0%BF%D0%B5%D1%85%D0%B0/</loc>
<lastmod>2012-01-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D1%81%D0%B5%D0%BA%D1%80%D0%B5%D1%82-%D1%83%D1%81%D0%BF%D0%B5%D1%85%D0%B0/</loc>
<lastmod>2012-01-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/12/%D0%B2%D1%8B%D0%B1%D0%BE%D1%80-%D1%8D%D0%BB%D0%B5%D0%BA%D1%82%D1%80%D0%BE%D0%B1%D1%80%D0%B8%D1%82%D0%B2%D1%8B/</loc>
<lastmod>2011-12-20T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D1%8D%D0%BB%D0%B5%D0%BA%D1%82%D1%80%D0%BE%D0%B1%D1%80%D0%B8%D1%82%D0%B2%D0%B0/</loc>
<lastmod>2011-12-20T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%B4%D1%80%D0%B5%D0%B2%D0%BD%D0%B5%D1%80%D1%83%D1%81%D1%81%D0%BA%D0%B0%D1%8F-%D1%82%D0%BE%D1%81%D0%BA%D0%B0/</loc>
<lastmod>2011-12-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%BF%D0%B5%D1%87%D0%B0%D0%BB%D1%8C%D0%BA%D0%B0/</loc>
<lastmod>2011-12-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/12/it-outsource-tragedy/</loc>
<lastmod>2011-12-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/windows/</loc>
<lastmod>2011-12-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D1%83%D1%87%D0%B5%D1%82-%D1%82%D0%B5%D1%85%D0%BD%D0%B8%D0%BA%D0%B8/</loc>
<lastmod>2011-12-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/12/%D1%83%D1%87%D0%B5%D1%82-%D1%82%D0%B5%D1%85%D0%BD%D0%B8%D0%BA%D0%B8-%D0%BD%D0%B0-%D0%BF%D1%80%D0%B5%D0%B4%D0%BF%D1%80%D0%B8%D1%8F%D1%82%D0%B8%D0%B8/</loc>
<lastmod>2011-12-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/pbx/</loc>
<lastmod>2011-11-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/11/%D0%BE%D1%82%D0%BA%D1%80%D1%8B%D0%B2%D0%B0%D1%8E%D1%82%D1%81%D1%8F-%D0%BA%D1%83%D1%80%D1%81%D1%8B-%D0%BF%D0%BE-%D0%BE%D0%B1%D1%83%D1%87%D0%B5%D0%BD%D0%B8%D1%8E-ip-pbx-asterisk/</loc>
<lastmod>2011-11-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D1%80%D0%B5%D0%BA%D0%BB%D0%B0%D0%BC%D0%BD%D0%BE%D0%B5/</loc>
<lastmod>2011-11-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/11/%D0%B5%D1%89%D0%B5-%D1%80%D0%B0%D0%B7-%D0%BF%D0%BE%D1%81%D0%BB%D0%B5%D0%B4%D0%BD%D0%B8%D0%B9-%D0%BE-tp-link-tp-wr1043nd/</loc>
<lastmod>2011-11-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/10/what-is-life/</loc>
<lastmod>2011-10-16T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/08/%D1%85%D0%BE%D0%B7%D1%8F%D0%B9%D0%BA%D0%B5-mac-os-%D0%BD%D0%B0-%D0%B7%D0%B0%D0%BC%D0%B5%D1%82%D0%BA%D1%83-%D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%B0%D1%82%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%BE%D0%B5-%D0%BE/</loc>
<lastmod>2011-08-30T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/08/%D0%B4%D0%BE%D0%B1%D0%B0%D0%B2%D0%B8%D1%82%D1%8C-icq-%D0%B2-ichat-%D0%B2-mac-os-x-lion/</loc>
<lastmod>2011-08-24T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/08/%D1%85%D0%BE%D0%B7%D1%8F%D0%B9%D0%BA%D0%B5-mac-os-%D0%BD%D0%B0-%D0%B7%D0%B0%D0%BC%D0%B5%D1%82%D0%BA%D1%83-%D0%BE%D1%87%D0%B8%D1%81%D1%82%D0%BA%D0%B0-dns-%D0%BA%D0%B5%D1%88%D0%B0/</loc>
<lastmod>2011-08-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/07/mac-os-x-ios-lion-hacks/</loc>
<lastmod>2011-07-07T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/07/%D0%BF%D1%80%D0%BE%D0%B4%D0%B0%D0%BC-%D0%BC%D0%B0%D0%B9%D0%BD%D0%BE/</loc>
<lastmod>2011-07-01T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/06/coverradio-fm/</loc>
<lastmod>2011-06-21T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/06/mac-layout-switch-caps-lock/</loc>
<lastmod>2011-06-21T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/freebsd/</loc>
<lastmod>2011-06-20T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/06/mac-os-x-leopard-%D0%B8-%D0%B1%D0%B0%D0%B3-%D1%81-pppoe-%D1%87%D0%B5%D1%80%D0%B5%D0%B7-tagged-vlan-802-1q/</loc>
<lastmod>2011-06-20T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/06/zabbix-freebsd-program-counter-not-available-for-this-architecture/</loc>
<lastmod>2011-06-20T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/06/%D1%83%D0%B4%D0%B0%D0%BB%D0%B5%D0%BD%D0%BD%D0%B0%D1%8F-%D1%83%D1%81%D1%82%D0%B0%D0%BD%D0%BE%D0%B2%D0%BA%D0%B0-pap2t/</loc>
<lastmod>2011-06-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/05/%D0%BE-%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%B5-%D0%B4%D0%B2%D1%83%D1%85-%D0%B8-%D0%B1%D0%BE%D0%BB%D0%B5%D0%B5-%D0%BC%D0%BE%D0%BD%D0%B8%D1%82%D0%BE%D1%80%D0%BE%D0%B2/</loc>
<lastmod>2011-05-27T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/05/%D0%B0%D0%BD%D0%B0%D0%BB%D0%B8%D1%82%D0%B8%D0%BA%D0%B0-%D0%B2%D1%85%D0%BE%D0%B4%D1%8F%D1%89%D0%B8%D1%85-%D0%B7%D0%B2%D0%BE%D0%BD%D0%BA%D0%BE%D0%B2-%D0%BD%D0%B0-%D0%BD%D0%B0%D1%88-%D0%BA%D0%BE%D0%BB/</loc>
<lastmod>2011-05-20T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%B0%D0%BA%D0%BA%D1%83%D0%BC%D1%83%D0%BB%D1%8F%D1%82%D0%BE%D1%80%D1%8B/</loc>
<lastmod>2011-05-16T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/tags/%D0%B7%D0%B0%D1%80%D1%8F%D0%B4%D0%BD%D0%BE%D0%B5-%D1%83%D1%81%D1%82%D1%80%D0%BE%D0%B9%D1%81%D1%82%D0%B2%D0%BE/</loc>
<lastmod>2011-05-16T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/05/%D0%BE%D0%B1%D0%B7%D0%BE%D1%80-%D0%B7%D0%B0%D1%80%D1%8F%D0%B4%D0%BA%D0%B8-la-crosse-bc9009/</loc>
<lastmod>2011-05-16T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/05/%D0%B5%D1%81%D0%BB%D0%B8-%D0%B1%D1%8B-%D0%B2%D0%BE%D0%B4%D0%B8%D1%82%D0%B5%D0%BB%D0%B5%D0%B9-%D0%BF%D1%80%D0%B8%D0%BD%D0%B8%D0%BC%D0%B0%D0%BB%D0%B8-%D0%BD%D0%B0-%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D1%83/</loc>
<lastmod>2011-05-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/05/%D0%BF%D1%80%D0%BE-%D0%B0%D0%BA%D0%BA%D1%83%D0%BC%D1%83%D0%BB%D1%8F%D1%82%D0%BE%D1%80%D1%8B-aa-godp-3000mah/</loc>
<lastmod>2011-05-08T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/05/%D1%81%D0%B1%D1%80%D0%BE%D1%81%D0%B8%D1%82%D1%8C-%D0%B7%D0%B0%D0%B1%D1%8B%D1%82%D1%8B%D0%B9-%D0%BF%D0%B0%D1%80%D0%BE%D0%BB%D1%8C-%D0%B4%D0%BB%D1%8F-sa-%D0%BD%D0%B0-mssql-2000/</loc>
<lastmod>2011-05-05T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/05/ip-over-dns/</loc>
<lastmod>2011-05-04T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/04/%D0%BF%D1%80%D0%BE-%D0%B1%D0%B5%D1%81%D0%BF%D1%80%D0%BE%D0%B2%D0%BE%D0%B4%D0%BD%D0%BE%D0%B9-%D0%BC%D0%B0%D1%80%D1%88%D1%80%D1%83%D1%82%D0%B8%D0%B7%D0%B0%D1%82%D0%BE%D1%80-tp-link-802-11n-tl-wr1043nd/</loc>
<lastmod>2011-04-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/04/%D0%BF%D0%BE%D0%BB%D0%B5%D0%B7%D0%BD%D1%8B%D0%B5-%D1%88%D0%BE%D1%80%D1%82%D0%BA%D0%B0%D1%82%D1%8B-%D0%B4%D0%BB%D1%8F-mac/</loc>
<lastmod>2011-04-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/04/%D0%BF%D1%80%D0%BE-%D0%B3%D0%BE%D1%81%D1%83%D0%B4%D0%B0%D1%80%D1%81%D1%82%D0%B2%D0%B5%D0%BD%D0%BD%D1%8B%D0%B5-%D0%B3%D0%BE%D0%B2%D0%BD%D0%BE%D1%81%D0%B0%D0%B9%D1%82%D1%8B/</loc>
<lastmod>2011-04-26T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/04/%D0%B7%D0%B0%D0%BF%D1%83%D1%81%D0%BA-%D0%B2%D0%B8%D1%80%D1%82%D1%83%D0%B0%D0%BB%D1%8C%D0%BD%D0%BE%D0%B9-%D0%BC%D0%B0%D1%88%D0%B8%D0%BD%D1%8B-%D0%B2-vmware-fusion-%D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%B0/</loc>
<lastmod>2011-04-21T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/vmware/</loc>
<lastmod>2011-04-21T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/linux/</loc>
<lastmod>2011-04-20T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/04/linux-%D0%BC%D0%B8%D0%B3%D1%80%D0%B0%D1%86%D0%B8%D1%8F-%D1%81-%D0%BE%D0%B4%D0%BD%D0%BE%D0%B3%D0%BE-hdd-%D0%BD%D0%B0-%D0%B2%D1%82%D0%BE%D1%80%D0%BE%D0%B9-ext3-%D1%81-%D1%83%D0%B2%D0%B5%D0%BB%D0%B8/</loc>
<lastmod>2011-04-20T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/rails/</loc>
<lastmod>2011-04-12T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/04/ruby-on-rails-%D1%85%D0%BE%D0%B7%D1%8F%D0%B9%D0%BA%D0%B5-%D0%BD%D0%B0-%D0%B7%D0%B0%D0%BC%D0%B5%D1%82%D0%BA%D1%83-%D0%BC%D0%B5%D0%BD%D0%B5%D0%B4%D0%B6%D0%B5%D1%80-%D0%BB%D0%BE%D0%BA%D0%B0%D0%BB%D1%8C/</loc>
<lastmod>2011-04-12T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/04/mac-os-x-transparent-squid-ipfw-bugfix/</loc>
<lastmod>2011-04-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/03/main-gtd-problem/</loc>
<lastmod>2011-03-04T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/02/freshtel-suxx/</loc>
<lastmod>2011-02-28T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/02/omnifocus-vs-thigs-vs-firetask-gtd/</loc>
<lastmod>2011-02-18T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/02/%D0%BF%D0%BE%D0%BB%D0%B5%D0%B7%D0%BD%D0%BE-%D0%B8-%D0%BD%D0%B0%D0%B3%D0%BB%D1%8F%D0%B4%D0%BD%D0%BE-%D0%BA%D0%B0%D0%BA-%D0%B7%D0%B0%D0%B2%D1%8F%D0%B7%D1%8B%D0%B2%D0%B0%D1%82%D1%8C-%D0%B3%D0%B0%D0%BB/</loc>
<lastmod>2011-02-16T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/02/%D0%B8%D0%BD%D1%81%D1%82%D1%80%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D0%B0%D1%80%D0%B8%D0%B9-%D0%B2%D0%B5%D1%80%D1%81%D1%82%D0%B0%D0%BB%D1%8C%D1%89%D0%B8%D0%BA%D0%B0/</loc>
<lastmod>2011-02-13T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/01/%D0%BA%D0%B0%D0%BA-%D0%B8%D1%81%D0%BA%D0%BB%D1%8E%D1%87%D0%B8%D1%82%D1%8C-%D0%BF%D0%B0%D0%BF%D0%BA%D0%B8-%D0%BF%D1%80%D0%B8-%D0%BF%D0%BE%D0%B8%D1%81%D0%BA%D0%B5-%D0%B2-alfred/</loc>
<lastmod>2011-01-29T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/01/must-have-app-mac/</loc>
<lastmod>2011-01-22T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/01/commandlinefu-%D0%B4%D0%BE%D0%BC%D0%B0%D1%88%D0%BD%D1%8F%D1%8F-%D1%81%D1%82%D1%80%D0%B0%D0%BD%D0%B8%D1%86%D0%B0-%D1%8E%D0%BD%D0%B8%D0%BA%D1%81%D0%BE%D0%B8%D0%B4%D0%B0/</loc>
<lastmod>2011-01-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/01/gtd-%D0%BA%D0%B0%D0%BA-%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D1%82%D1%8C/</loc>
<lastmod>2011-01-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/01/omnifocus-webdav-sync/</loc>
<lastmod>2011-01-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/01/apple-magic-trackpad-expirience/</loc>
<lastmod>2011-01-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/01/iterm2-for-mac/</loc>
<lastmod>2011-01-05T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2011/01/freebsd-exim-logrotate/</loc>
<lastmod>2011-01-03T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2010/12/%D0%B1%D0%BB%D0%BE%D0%B3%D0%B8-%D0%B0%D1%86%D1%86%D0%BA%D0%B8%D1%85-%D0%B0%D0%B4%D0%BC%D0%B8%D0%BD%D0%BE%D0%B2/</loc>
<lastmod>2010-12-17T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2010/12/quick-shell-cd/</loc>
<lastmod>2010-12-12T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/categories/iphone/</loc>
<lastmod>2010-11-30T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2010/11/%D0%BF%D0%B0%D0%BB%D1%8C%D0%BC%D0%B0-%D0%BF%D0%B5%D1%80%D0%B2%D0%B5%D0%BD%D1%81%D1%82%D0%B2%D0%B0-%D1%81%D1%80%D0%B5%D0%B4%D0%B8-%D1%81%D0%B0%D0%B9%D1%82%D0%BE%D0%B2-%D0%BF%D0%BE-%D0%BF%D1%80%D0%B8/</loc>
<lastmod>2010-11-30T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2010/11/ichat-icq-aim/</loc>
<lastmod>2010-11-19T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2010/10/%D0%BE-%D0%BD%D0%B5%D0%B8%D1%81%D1%82%D0%BE%D1%89%D0%B8%D0%BC%D0%BE%D1%81%D1%82%D0%B8-%D1%84%D0%B0%D0%BD%D1%82%D0%B0%D0%B7%D0%B8%D0%B8-%D0%B2-%D0%BE%D0%B1%D0%BB%D0%B0%D1%81%D1%82%D0%B8-%D0%BE%D0%B1/</loc>
<lastmod>2010-10-14T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2010/09/%D1%87%D1%82%D0%BE-%D1%87%D0%B0%D1%89%D0%B5-%D0%B2%D1%81%D0%B5%D0%B3%D0%BE-%D0%BB%D0%BE%D0%BC%D0%B0%D0%B5%D1%82%D1%81%D1%8F-%D1%83-%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D1%82%D0%B5%D0%BB/</loc>
<lastmod>2010-09-21T00:00:00+00:00</lastmod>
</url><url>
<loc>https://prokopov.me/2010/09/macswitch/</loc>