-
Notifications
You must be signed in to change notification settings - Fork 0
/
archives.html
1584 lines (1558 loc) · 95.6 KB
/
archives.html
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
<!DOCTYPE html>
<html lang="en"
>
<head>
<title>Archives - Notes</title>
<!-- Using the latest rendering mode for IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://znotdead.github.io/static/img/ico/logo.png" rel="icon">
<link rel="apple-touch-icon" href="http://znotdead.github.io/static/img/ico/logo.png">
<meta name="author" content="znotdead" />
<!-- Open Graph tags -->
<meta property="og:site_name" content="Notes" />
<meta property="og:type" content="website"/>
<meta property="og:title" content="Notes"/>
<meta property="og:url" content="http://znotdead.github.io"/>
<meta property="og:description" content="Notes"/>
<!-- Bootstrap -->
<link rel="stylesheet" href="http://znotdead.github.io/theme/css/bootstrap.min.css" type="text/css"/>
<link href="http://znotdead.github.io/theme/css/font-awesome.min.css" rel="stylesheet">
<link href="http://znotdead.github.io/theme/css/pygments/monokai.css" rel="stylesheet">
<link rel="stylesheet" href="http://znotdead.github.io/theme/css/style.css" type="text/css"/>
<link href="http://znotdead.github.io/static/css/main.css" rel="stylesheet">
<script src="http://znotdead.github.io/theme/js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="http://znotdead.github.io/theme/js/bootstrap.min.js"></script>
<!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) -->
<script src="http://znotdead.github.io/theme/js/respond.min.js"></script>
<script src="http://znotdead.github.io/static/js/jquery-latest.js"></script>
<script src="http://znotdead.github.io/static/js/jquery.tablesorter.min.js"></script>
<script src="http://znotdead.github.io/static/js/main.js"></script>
<link href="http://znotdead.github.io/feeds/all.atom.xml" type="application/atom+xml" rel="alternate"
title="Notes ATOM Feed"/>
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="http://znotdead.github.io/" class="navbar-brand">
<img src="http://znotdead.github.io/static/img/ico/logo.png" width="50"/> Notes </a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li >
<a href="http://znotdead.github.io/category/car.html">
<img src='/static/img/ico/car.png' width='50'>
</a>
</li>
<li >
<a href="http://znotdead.github.io/category/health.html">
<img src='/static/img/ico/health.png' width='50'>
</a>
</li>
<li >
<a href="http://znotdead.github.io/category/knitting.html">
<img src='/static/img/ico/knitting.png' width='50'>
</a>
</li>
<li >
<a href="http://znotdead.github.io/category/misc.html">
<img src='/static/img/ico/misc.png' width='50'>
</a>
</li>
<li >
<a href="http://znotdead.github.io/category/modeling.html">
<img src='/static/img/ico/modeling.png' width='50'>
</a>
</li>
<li >
<a href="http://znotdead.github.io/category/programming.html">
<img src='/static/img/ico/programming.png' width='50'>
</a>
</li>
<li >
<a href="http://znotdead.github.io/category/recipes.html">
<img src='/static/img/ico/recipes.png' width='50'>
</a>
</li>
<li >
<a href="http://znotdead.github.io/category/songs.html">
<img src='/static/img/ico/songs.png' width='50'>
</a>
</li>
<li >
<a href="http://znotdead.github.io/category/vim.html">
<img src='/static/img/ico/vim.png' width='50'>
</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="http://znotdead.github.io/archives.html"><i class="fa fa-th-list"></i><span class="icon-label">Archives</span></a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
</div> <!-- /.navbar -->
<div class="container">
<div class="row">
<div class="col-sm-9">
<section id="content">
<h1>Archives for Notes</h1>
<div id="archives">
<p>
<span class="categories-timestamp"><time datetime="2017-05-11T18:14:00+02:00">Thu 11 May 2017</time></span>
<a href="http://znotdead.github.io/upgrade_all_pip_from_requirements-ru.html">PYTHON: Upgrade all pip from requirements</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-12-10T16:05:00+01:00">Sat 10 December 2016</time></span>
<a href="http://znotdead.github.io/hk_tai_tam_waterworks_heritage_trail-ru.html">HK: Tai Tam Waterworks Heritage Trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-12-10T15:56:00+01:00">Sat 10 December 2016</time></span>
<a href="http://znotdead.github.io/hk_tai_tam_family_walk-ru.html">HK: Tai Tam Family Walk</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-12-10T15:47:00+01:00">Sat 10 December 2016</time></span>
<a href="http://znotdead.github.io/hk_forest_track-ru.html">HK: Forest track</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-09-21T19:41:00+02:00">Wed 21 September 2016</time></span>
<a href="http://znotdead.github.io/fitness-ru.html">Sport</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-08-11T17:40:00+02:00">Thu 11 August 2016</time></span>
<a href="http://znotdead.github.io/hk_eastern_nature_trail-ru.html">HK: Eastern Nature Trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-08-11T17:30:00+02:00">Thu 11 August 2016</time></span>
<a href="http://znotdead.github.io/hk_bowen_fitness_trail-ru.html">HK: Bowen Fitness Trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-08-11T17:18:00+02:00">Thu 11 August 2016</time></span>
<a href="http://znotdead.github.io/hk_tai_po_kau_blue_walk-ru.html">HK: Tai Po Kau Blue Walk</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-08-11T17:15:00+02:00">Thu 11 August 2016</time></span>
<a href="http://znotdead.github.io/hk_tai_po_kau_red_walk-ru.html">HK: Tai Po Kau Red Walk</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-07-26T14:13:00+02:00">Tue 26 July 2016</time></span>
<a href="http://znotdead.github.io/hk_kam_shan_tree_walk-ru.html">HK: Kam Shan Tree Walk</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-07-26T14:03:00+02:00">Tue 26 July 2016</time></span>
<a href="http://znotdead.github.io/hk_eagles_nest_nature_trail-ru.html">HK: Eagle's Nest Nature Trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-07-05T17:03:00+02:00">Tue 05 July 2016</time></span>
<a href="http://znotdead.github.io/hk_hok_tau_reservoir_family_walk-ru.html">HK: Hok Tau Reservoir Family Walk</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-07-05T16:51:00+02:00">Tue 05 July 2016</time></span>
<a href="http://znotdead.github.io/hk_tsz_lo_lan_shan_path-ru.html">HK: Tsz Lo Lan Shan Path</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-07-05T16:38:00+02:00">Tue 05 July 2016</time></span>
<a href="http://znotdead.github.io/hk_shing_mun_jogging_trail-ru.html">HK: Shing Mun Jogging Trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-07-05T16:24:00+02:00">Tue 05 July 2016</time></span>
<a href="http://znotdead.github.io/hk_lung_mun_country_trail-ru.html">HK: Lung Mun Country Trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-07-05T16:12:00+02:00">Tue 05 July 2016</time></span>
<a href="http://znotdead.github.io/hk_kap_lung_ancient_trail-ru.html">HK: Kap Lung Ancient Trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-07-04T19:45:00+02:00">Mon 04 July 2016</time></span>
<a href="http://znotdead.github.io/docker_django_travis_heroku_quickstart_quide-ru.html">DOCKER: Docker/Django/Travis/Heroku quickstart quide.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-07-04T19:06:00+02:00">Mon 04 July 2016</time></span>
<a href="http://znotdead.github.io/bliny-ru.html">Блины</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-06-03T21:22:00+02:00">Fri 03 June 2016</time></span>
<a href="http://znotdead.github.io/disney_movies.html">Disney movies</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-05-11T20:48:00+02:00">Wed 11 May 2016</time></span>
<a href="http://znotdead.github.io/fritatta-ru.html">Фритатта</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-04-11T20:44:00+02:00">Mon 11 April 2016</time></span>
<a href="http://znotdead.github.io/zhele_smetannoe_s_kakao-ru.html">Желе сметанное с какао</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-03-17T13:58:00+01:00">Thu 17 March 2016</time></span>
<a href="http://znotdead.github.io/hk_kap_lung_forest_trail-ru.html">HK: Kap Lung Forest Trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-03-17T13:40:00+01:00">Thu 17 March 2016</time></span>
<a href="http://znotdead.github.io/hk_twisk_nature_trail-ru.html">HK: Twisk Nature Trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-03-17T13:27:00+01:00">Thu 17 March 2016</time></span>
<a href="http://znotdead.github.io/hk_yuen_tsuen_ancient_trail-ru.html">HK: Yuen Tsuen Ancient Trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-03-17T13:13:00+01:00">Thu 17 March 2016</time></span>
<a href="http://znotdead.github.io/rublenye_kotlety-ru.html">Рубленые котлеты</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-02-19T21:56:00+01:00">Fri 19 February 2016</time></span>
<a href="http://znotdead.github.io/hk_trail_table.html">HK: ALL trails</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-01-06T17:41:00+01:00">Wed 06 January 2016</time></span>
<a href="http://znotdead.github.io/hk_wilson_trail_8_part_9-ru.html">HK: Wilson trail 8(part), 9</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2016-01-01T18:37:00+01:00">Fri 01 January 2016</time></span>
<a href="http://znotdead.github.io/hk_tai_mo_shan_rotary_park-ru.html">HK: Tai Mo Shan Rotary Park</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-29T19:41:00+01:00">Tue 29 December 2015</time></span>
<a href="http://znotdead.github.io/syrniki-ru.html">Сырники</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T18:16:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/hk_olympic_trail-ru.html">HK: Olympic trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T18:02:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/masha_i_medved_s_dnem_rozhdeniia-ru.html">Маша и медведь - С днем рождения</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T18:00:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/masha_i_medved_kartina_maslom-ru.html">Маша и медведь - Картина маслом</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T17:59:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/masha_i_medved_krasota_strashnaia_sila-ru.html">Маша и медведь - Красота — страшная сила</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T17:58:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/masha_i_medved_pro_ikotu-ru.html">Маша и медведь - Про икоту</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T17:57:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/masha_i_medved_sladkaia_zhizn-ru.html">Маша и медведь - Сладкая жизнь</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T17:53:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/masha_i_medved_tri_zhelaniia-ru.html">Маша и медведь - Три желания</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T17:52:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/masha_i_medved_konki-ru.html">Маша и медведь - Коньки</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T17:49:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/masha_i_medved_novogodniaia_pesnia-ru.html">Маша и медведь - Новогодняя песня</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T17:48:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/masha_i_medved_pro_sledy-ru.html">Маша и медведь - Про следы</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T17:47:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/masha_i_medved_pro_druzhbu-ru.html">Маша и медведь - Про дружбу</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-28T17:46:00+01:00">Mon 28 December 2015</time></span>
<a href="http://znotdead.github.io/masha_i_medved_pro_varene-ru.html">Маша и медведь - Про варенье</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-23T18:27:00+01:00">Wed 23 December 2015</time></span>
<a href="http://znotdead.github.io/soup_shchavelevyi-ru.html">Суп щавелевый</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-23T18:22:00+01:00">Wed 23 December 2015</time></span>
<a href="http://znotdead.github.io/soup_bolon_kurinyi-ru.html">Суп больон куриный</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-23T14:12:00+01:00">Wed 23 December 2015</time></span>
<a href="http://znotdead.github.io/chuchelo-ru.html">Чучело</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-12-22T20:50:00+01:00">Tue 22 December 2015</time></span>
<a href="http://znotdead.github.io/hk_maclehose_trail_4-ru.html">HK: Maclehose trail 4</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-11-23T11:14:00+01:00">Mon 23 November 2015</time></span>
<a href="http://znotdead.github.io/hk_lantau_trail_1_2-ru.html">HK: Lantau trail 1 2</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-11-15T12:45:00+01:00">Sun 15 November 2015</time></span>
<a href="http://znotdead.github.io/hk_maclehose_trail_1_2.html">HK: Maclehose trail 2 - Maclehose trail 1</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-11-09T11:07:00+01:00">Mon 09 November 2015</time></span>
<a href="http://znotdead.github.io/hk_nei_lak_shan_country_trail_maclehose_4-ru.html">HK: Nei Lak Shan Country trail - Maclehose 4</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-11-09T10:51:00+01:00">Mon 09 November 2015</time></span>
<a href="http://znotdead.github.io/hk_wilson_trail_7-ru.html">HK: Wilson trail 7</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-11-01T22:05:00+01:00">Sun 01 November 2015</time></span>
<a href="http://znotdead.github.io/hk_maclehose_trail_3-ru.html">HK: Maclehose trail 3</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-10-28T22:04:00+01:00">Wed 28 October 2015</time></span>
<a href="http://znotdead.github.io/hk_wilson_trail_3-ru.html">HK: Wilson trail 3</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-10-13T16:50:00+02:00">Tue 13 October 2015</time></span>
<a href="http://znotdead.github.io/hk_tsing_yi_nature_trail-ru.html">HK: Tsing Yi Nature trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-10-13T16:34:00+02:00">Tue 13 October 2015</time></span>
<a href="http://znotdead.github.io/hk_wilson_trail_2-ru.html">HK: Wilson trail 2</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-09-29T15:35:00+02:00">Tue 29 September 2015</time></span>
<a href="http://znotdead.github.io/hk_wilson_trail_5_4-ru.html">HK: Wilson trail 5,4</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-09-21T15:28:00+02:00">Mon 21 September 2015</time></span>
<a href="http://znotdead.github.io/hk_maclehose_trail_6-ru.html">HK: Maclehose trail 6</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-09-15T10:42:00+02:00">Tue 15 September 2015</time></span>
<a href="http://znotdead.github.io/hk_wilson_trail_1-ru.html">HK: Wilson trail 1</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-08-17T15:56:00+02:00">Mon 17 August 2015</time></span>
<a href="http://znotdead.github.io/hk_lantau_trail_3-ru.html">HK: Lantau trail 3</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-08-07T19:36:00+02:00">Fri 07 August 2015</time></span>
<a href="http://znotdead.github.io/kovrizhka-ru.html">Коврижка</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-08-01T14:58:00+02:00">Sat 01 August 2015</time></span>
<a href="http://znotdead.github.io/hk_wilson_trail_6-ru.html">HK: Wilson trail 6</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-07-27T11:57:00+02:00">Mon 27 July 2015</time></span>
<a href="http://znotdead.github.io/hk_maclehose_trail_7-ru.html">HK: MacLehose trail 7</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-07-20T15:06:00+02:00">Mon 20 July 2015</time></span>
<a href="http://znotdead.github.io/hk_lantau_trail_9_10_11-ru.html">HK: Lantau trail 9, 10, 11</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-07-13T17:34:00+02:00">Mon 13 July 2015</time></span>
<a href="http://znotdead.github.io/hk_maclehose_trail_9_10-ru.html">HK: Maclehose trail 9, 10</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-07-06T17:54:00+02:00">Mon 06 July 2015</time></span>
<a href="http://znotdead.github.io/hk_lantau_trail_12-ru.html">HK: Lantau trail 12</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-07-03T16:50:00+02:00">Fri 03 July 2015</time></span>
<a href="http://znotdead.github.io/bananovyi_keks-ru.html">Банановый кекс</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-07-03T11:34:00+02:00">Fri 03 July 2015</time></span>
<a href="http://znotdead.github.io/hk_river_walk-ru.html">HK: River walk</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-06-21T12:24:00+02:00">Sun 21 June 2015</time></span>
<a href="http://znotdead.github.io/hk_hong_kong_trail_4_5_6-ru.html">HK: Hong Kong trail 4 5 6</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-06-08T12:41:00+02:00">Mon 08 June 2015</time></span>
<a href="http://znotdead.github.io/hk_hong_kong_trail_1_2_3-ru.html">HK: Hong Kong trail 1 2 3</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-06-08T12:31:00+02:00">Mon 08 June 2015</time></span>
<a href="http://znotdead.github.io/hk_hong_kong_trail_7-ru.html">HK: Hong Kong trail 7</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-06-01T16:09:00+02:00">Mon 01 June 2015</time></span>
<a href="http://znotdead.github.io/hk_maclehose_trail_5-ru.html">HK: MacLehose trail 5</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-05-18T11:30:00+02:00">Mon 18 May 2015</time></span>
<a href="http://znotdead.github.io/azhurnaia_tunika-ru.html">Ажурная туника</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-05-18T11:28:00+02:00">Mon 18 May 2015</time></span>
<a href="http://znotdead.github.io/detskaia_sumochka_filin-ru.html">Детская сумочка Филин</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-05-11T20:11:00+02:00">Mon 11 May 2015</time></span>
<a href="http://znotdead.github.io/hk_maclehose_trail_8-ru.html">HK: MacLehose trail 8</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-05-03T22:21:00+02:00">Sun 03 May 2015</time></span>
<a href="http://znotdead.github.io/hk_lantau_trail_5_6-ru.html">HK: Lantau trail 5, 6</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-05-03T21:22:00+02:00">Sun 03 May 2015</time></span>
<a href="http://znotdead.github.io/children_books-ru.html">Children books</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-02-26T12:25:00+01:00">Thu 26 February 2015</time></span>
<a href="http://znotdead.github.io/hk_shing_mun_reservoir_walk-ru.html">HK: Shing Mun Reservoir Walk</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-02-19T21:56:00+01:00">Thu 19 February 2015</time></span>
<a href="http://znotdead.github.io/hk_trail_list.html">HK: Trail list</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-02-15T16:40:00+01:00">Sun 15 February 2015</time></span>
<a href="http://znotdead.github.io/hk_hong_kong_trail_section_8-ru.html">HK: Hong Kong trail section 8</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-02-08T12:55:00+01:00">Sun 08 February 2015</time></span>
<a href="http://znotdead.github.io/hk_lantau_trail_section_4_part_1-ru.html">HK: Lantau trail section 4 (part 1)</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-31T23:29:00+01:00">Sat 31 January 2015</time></span>
<a href="http://znotdead.github.io/hk_tung_chung_to_tai_o-ru.html">HK: Tung Chung to Tai O</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-29T14:39:00+01:00">Thu 29 January 2015</time></span>
<a href="http://znotdead.github.io/hk_notes-ru.html">HK: notes</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-29T11:15:00+01:00">Thu 29 January 2015</time></span>
<a href="http://znotdead.github.io/hk_cheung_chau-ru.html">HK: Cheung Chau</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-29T11:15:00+01:00">Thu 29 January 2015</time></span>
<a href="http://znotdead.github.io/hk_peng_chau-ru.html">HK: Peng Chau</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-27T21:06:00+01:00">Tue 27 January 2015</time></span>
<a href="http://znotdead.github.io/hk_tree_walk_and_down_to_central-ru.html">HK: Tree Walk and down to Central</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-27T21:04:00+01:00">Tue 27 January 2015</time></span>
<a href="http://znotdead.github.io/hk_the_peak_to_pok_fu_lam-ru.html">HK: The Peak to Pok Fu Lam</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-27T21:01:00+01:00">Tue 27 January 2015</time></span>
<a href="http://znotdead.github.io/hk_the_peak_morning_trail-ru.html">HK: The Peak Morning trail</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-25T23:39:00+01:00">Sun 25 January 2015</time></span>
<a href="http://znotdead.github.io/hk_lamma_island.html">HK: Lamma Island</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-25T17:28:00+01:00">Sun 25 January 2015</time></span>
<a href="http://znotdead.github.io/hk_ngong_ping_360_to_tung_chung_mtr.html">HK: Ngong Ping 360 to Tung Chung MTR</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-15T17:57:00+01:00">Thu 15 January 2015</time></span>
<a href="http://znotdead.github.io/chizkeik-ru.html">Чизкейк</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-10T01:40:00+01:00">Sat 10 January 2015</time></span>
<a href="http://znotdead.github.io/peugeot_307_1997.html">Peugeot 307 1997</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-10T01:39:00+01:00">Sat 10 January 2015</time></span>
<a href="http://znotdead.github.io/volvo_s60_2003.html">Volvo S60 2003</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-10T00:55:00+01:00">Sat 10 January 2015</time></span>
<a href="http://znotdead.github.io/development_useful_links-ru.html">DEVELOPMENT: useful links</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-10T00:48:00+01:00">Sat 10 January 2015</time></span>
<a href="http://znotdead.github.io/git_ssh-ru.html">GIT: ssh</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-10T00:29:00+01:00">Sat 10 January 2015</time></span>
<a href="http://znotdead.github.io/ubuntu_change_user_directory_names-ru.html">UBUNTU: change user directory names.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-09T22:55:00+01:00">Fri 09 January 2015</time></span>
<a href="http://znotdead.github.io/zaiats-ru.html">Заяц</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-09T22:28:00+01:00">Fri 09 January 2015</time></span>
<a href="http://znotdead.github.io/zhiletka-ru.html">Жилетка</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-09T22:10:00+01:00">Fri 09 January 2015</time></span>
<a href="http://znotdead.github.io/odeialo-ru.html">Одеяло</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-09T18:10:00+01:00">Fri 09 January 2015</time></span>
<a href="http://znotdead.github.io/azhurnoe_detskoe_plate-ru.html">Ажурное детское платье</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-09T18:07:00+01:00">Fri 09 January 2015</time></span>
<a href="http://znotdead.github.io/oranzhevaia_shapka-ru.html">Оранжевая шапка</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-09T17:56:00+01:00">Fri 09 January 2015</time></span>
<a href="http://znotdead.github.io/uzory-ru.html">Узоры</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-09T17:30:00+01:00">Fri 09 January 2015</time></span>
<a href="http://znotdead.github.io/kombinezon-ru.html">Комбинезон</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-09T16:25:00+01:00">Fri 09 January 2015</time></span>
<a href="http://znotdead.github.io/bolero-ru.html">Болеро</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-09T15:48:00+01:00">Fri 09 January 2015</time></span>
<a href="http://znotdead.github.io/shapka_s_olenem_i_snezhinkoi-ru.html">Шапка с оленем и снежинкой</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-09T15:01:00+01:00">Fri 09 January 2015</time></span>
<a href="http://znotdead.github.io/korobka_s_karandashami-ru.html">Коробка с карандашами</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-02T09:05:00+01:00">Fri 02 January 2015</time></span>
<a href="http://znotdead.github.io/glazur-ru.html">Глазурь</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2015-01-02T08:59:00+01:00">Fri 02 January 2015</time></span>
<a href="http://znotdead.github.io/tort_medovyi_angarskii-ru.html">Торт медовый "Ангарский"</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-17T14:22:00+01:00">Wed 17 December 2014</time></span>
<a href="http://znotdead.github.io/manishka-ru.html">Манишка</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-14T00:06:00+01:00">Sun 14 December 2014</time></span>
<a href="http://znotdead.github.io/palto-ru.html">Пальто</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-11T12:56:00+01:00">Thu 11 December 2014</time></span>
<a href="http://znotdead.github.io/pulover-ru.html">Пуловер</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-11T00:22:00+01:00">Thu 11 December 2014</time></span>
<a href="http://znotdead.github.io/swordfish_torpedo_plane.html">Swordfish Torpedo plane</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-11T00:20:00+01:00">Thu 11 December 2014</time></span>
<a href="http://znotdead.github.io/helicopter_mi_28a.html">Helicopter Mi-28A</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-10T23:54:00+01:00">Wed 10 December 2014</time></span>
<a href="http://znotdead.github.io/samba_bus.html">Samba Bus</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-10T21:54:00+01:00">Wed 10 December 2014</time></span>
<a href="http://znotdead.github.io/chem_zaniat_rebenka-ru.html">Чем занять ребенка</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-10T20:57:00+01:00">Wed 10 December 2014</time></span>
<a href="http://znotdead.github.io/do_re_mi-ru.html">До Ре Ми</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-10T19:41:00+01:00">Wed 10 December 2014</time></span>
<a href="http://znotdead.github.io/back.html">Back</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-10T19:41:00+01:00">Wed 10 December 2014</time></span>
<a href="http://znotdead.github.io/psoriasis.html">Psoriasis</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-10T19:41:00+01:00">Wed 10 December 2014</time></span>
<a href="http://znotdead.github.io/sport.html">Sport</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-07T22:43:00+01:00">Sun 07 December 2014</time></span>
<a href="http://znotdead.github.io/sharlotka-ru.html">Шарлотка</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-12-02T20:05:00+01:00">Tue 02 December 2014</time></span>
<a href="http://znotdead.github.io/vareniki_lenivye-ru.html">Вареники ленивые (галушки из творога)</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-24T12:09:00+01:00">Mon 24 November 2014</time></span>
<a href="http://znotdead.github.io/ext4_fs.html">LINUX: ext4 fs</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-06T21:02:00+01:00">Thu 06 November 2014</time></span>
<a href="http://znotdead.github.io/dobrym_byt_na_belom_svete_veselei-ru.html">Добрым быть на белом свете веселей</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-06T21:02:00+01:00">Thu 06 November 2014</time></span>
<a href="http://znotdead.github.io/ne_volnuites_ponaprasnu-ru.html">Не волнуйтесь понапрасну</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-06T21:01:00+01:00">Thu 06 November 2014</time></span>
<a href="http://znotdead.github.io/spi_moia_radost_usni-ru.html">Спи, моя радость, усни</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-06T21:01:00+01:00">Thu 06 November 2014</time></span>
<a href="http://znotdead.github.io/vse_my_delim_popolam-ru.html">Все мы делим пополам</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-06T21:01:00+01:00">Thu 06 November 2014</time></span>
<a href="http://znotdead.github.io/vse_na_svete_mozhesh_ty-ru.html">Все на свете можешь ты</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-06T21:01:00+01:00">Thu 06 November 2014</time></span>
<a href="http://znotdead.github.io/zvezdy_kontinentov-ru.html">Звезды континентов</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-06T21:00:00+01:00">Thu 06 November 2014</time></span>
<a href="http://znotdead.github.io/pokhvalialsia_medved-ru.html">Похвалялся медведь</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-06T20:57:00+01:00">Thu 06 November 2014</time></span>
<a href="http://znotdead.github.io/zovu_myshei_na_boi-ru.html">Зову мышей на бой</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-06T19:12:00+01:00">Thu 06 November 2014</time></span>
<a href="http://znotdead.github.io/soup_pure_broccoli-ru.html">Суп-пюре из брокколи</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T15:08:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/zdravstvui_detstvo-ru.html">Здравствуй, детство!</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:58:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesenka_pro_zhirafa-ru.html">Песенка про жирафа</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:58:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesenka_zaitsa_i_volka_na_karnavale-ru.html">Песенка Зайца и Волка на карнавале</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:57:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/samaia_schastlivaia-ru.html">Самая счастливая</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:57:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/uchat_v_shkole-ru.html">Учат в школе</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:56:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/dobryi_zhuk-ru.html">Добрый жук</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:56:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/volshebnik_nedouchka-ru.html">Волшебник-недоучка</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:55:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/dozhd_poidet_po_ulitse-ru.html">Дождь пойдет по улице.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:55:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesenka_vodianogo-ru.html">Песенка Водяного</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:54:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/vmeste_veselo_shagat-ru.html">Вместе весело шагать</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:53:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/v_kazhdom_malenkom_rebenke-ru.html">В каждом маленьком ребенке</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:52:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesenka_vinni_pukha-ru.html">Песенка Винни-Пуха</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:51:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/ulybka-ru.html">Улыбка</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:50:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/genialnyi_syshchik-ru.html">Гениальный сыщик</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:50:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pervye_shagi-ru.html">Первые шаги</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:49:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/sobaka_byvaet_kusachei-ru.html">Собака бывает кусачей</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:49:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/spiat_ustalye_igrushki-ru.html">Спят усталые игрушки</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:48:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/ryzhii_ryzhii_konopatyi-ru.html">Рыжий, рыжий, конопатый</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:48:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/s_chego_nachinaetsia_rodina-ru.html">С чего начинается Родина?</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:47:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/den_rozhdeniia-ru.html">День рождения</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:46:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesnia_pereodetykh_bremenskikh_muzykantov-ru.html">Песня переодетых Бременских музыкантов</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:46:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/row_row_row_your_boat.html">Row, row, row your boat</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:45:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesenka_razboinikov-ru.html">Песенка разбойников</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:44:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/propala_sobaka-ru.html">Пропала собака</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:43:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/do_chego_doshel_progress-ru.html">До чего дошел прогресс</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:43:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/prekrasnoe_daleko-ru.html">Прекрасное далеко.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:42:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/po_sekretu_vsemu_svetu-ru.html">По секрету всему свету</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:42:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pogonia-ru.html">Погоня</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:41:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesenka_mamontenka-ru.html">Песенка мамонтенка</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:41:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/prostaia_skazka-ru.html">Простая сказка.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:40:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/oranzhevaia_pesnia-ru.html">Оранжевая песня.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:39:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/korolevskaia_okhrana-ru.html">Королевская охрана</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:39:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/lesnoi_olen-ru.html">Лесной олень</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:38:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/oblaka-ru.html">Облака</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:37:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/nepriiatnost_etu_my_perezhivem-ru.html">Неприятность эту мы переживем.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:36:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/nichego_ia_ne_khochu-ru.html">Ничего я не хочу!!!</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:35:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesenka_kota_leopolda-ru.html">Песенка Кота Леопольда</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:35:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesenka_pro_kuznechika-ru.html">Песенка про кузнечика</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:34:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/kuda_ukhodit_detstvo-ru.html">Куда уходит детство</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:33:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/krylatye_kacheli-ru.html">Крылатые качели.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:32:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/chto_tebe_snitsia_kreiser_avrora-ru.html">Что тебе снится, крейсер Аврора?</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:31:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/kolybelnaia_medveditsy-ru.html">Колыбельная медведицы</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:31:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesenka_krasnoi_shapochki-ru.html">Песенка Красной Шапочки</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:30:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/kolybelnaia-ru.html">Колыбельная</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:29:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesenka_o_kapitane-ru.html">Песенка о капитане</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:28:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/kaby_ne_bylo_zimy-ru.html">Кабы не было зимы.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:27:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/iz_chego_sdelany_malchiki_i_devochki-ru.html">Из чего сделаны мальчики и девочки</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:27:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesenka_lvenka_i_cherepakhi-ru.html">Песенка львенка и черепахи.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:26:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/goluboi_vagon-ru.html">Голубой вагон.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:26:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/kogda_moi_druzia_so_mnoi-ru.html">Когда мои друзья со мной</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:25:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/elochka-ru.html">Елочка.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:25:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/esli_dobryi_ty-ru.html">Если добрый ты</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:25:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/malenkaia_elochka-ru.html">Маленькая елочка</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:24:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/my_edem_edem_edem-ru.html">Мы едем, едем, едем</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:23:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/dva_veselykh_gusia-ru.html">Два веселых гуся</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:21:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/shopping_links.html">Shopping links</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:21:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/vot_chto_znachit_nastoiashchii_vernyi_drug-ru.html">Вот что значит настоящий, верный друг</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:20:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/chunga_changa-ru.html">Чунга-чанга</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:20:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/istoriia_o_malchike_bobbi-ru.html">История о мальчике Бобби</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:19:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/chelovek_sobake_drug-ru.html">Человек собаке друг</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:18:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/pesnia_cheburashki-ru.html">Песня Чебурашки</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:17:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/bremenskie_muzykanty-ru.html">Бременские музыканты</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:14:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/babushki_starushki-ru.html">Бабушки-старушки</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:13:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/chastushki_babok_iozhek-ru.html">Частушки Бабок-Ёжек</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:12:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/antoshka-ru.html">Антошка</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:06:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/tridtsat_tri_korovy-ru.html">Тридцать три коровы.</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-05T14:04:00+01:00">Wed 05 November 2014</time></span>
<a href="http://znotdead.github.io/dvazhdy_dva_chetyre-ru.html">Дважды два - четыре</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-02T22:40:00+01:00">Sun 02 November 2014</time></span>
<a href="http://znotdead.github.io/wheels_on_the_bus_go_round-ru.html">The wheels on the bus go round</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-01T16:20:00+01:00">Sat 01 November 2014</time></span>
<a href="http://znotdead.github.io/pust_vsegda_budet_solnce-ru.html">Пусть всегда будет солнце</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-01T16:20:00+01:00">Sat 01 November 2014</time></span>
<a href="http://znotdead.github.io/soup_pure_tykva-ru.html">Тыквенный суп-пюре</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-11-01T16:20:00+01:00">Sat 01 November 2014</time></span>
<a href="http://znotdead.github.io/v_unom_mecjace_aprele-ru.html">Крылатые качели</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-09-01T12:17:00+02:00">Mon 01 September 2014</time></span>
<a href="http://znotdead.github.io/my_cnf.html">MYSQL: my.cnf</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2014-03-10T10:25:00+01:00">Mon 10 March 2014</time></span>
<a href="http://znotdead.github.io/linux_usb_flash_drive_as_swap.html">LINUX: usb flash drive as swap</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2013-02-08T13:23:00+01:00">Fri 08 February 2013</time></span>
<a href="http://znotdead.github.io/linux_limit_speed_on_apt_get.html">LINUX: limit speed on apt-get</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-10T21:09:00+01:00">Mon 10 December 2012</time></span>
<a href="http://znotdead.github.io/linux_make_deb_from_tarball.html">LINUX: make deb from tarball</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-10T19:04:00+01:00">Mon 10 December 2012</time></span>
<a href="http://znotdead.github.io/increment_decrement_numbers_in_normal_mode.html">NORMAL MODE: Increment/Decrement numbers</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-10T19:04:00+01:00">Mon 10 December 2012</time></span>
<a href="http://znotdead.github.io/nerdtree_refresh_tree.html">NERDTree: refresh tree</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-10T19:03:00+01:00">Mon 10 December 2012</time></span>
<a href="http://znotdead.github.io/insert_empty_lines_in_normal_mode.html">NORMAL_MODE: Insert empty lines</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-10T19:03:00+01:00">Mon 10 December 2012</time></span>
<a href="http://znotdead.github.io/run_file_in_console_wile_editing.html">run file in console wile editing</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-10T19:03:00+01:00">Mon 10 December 2012</time></span>
<a href="http://znotdead.github.io/transpose_two_letters.html">NORMAL MODE: transpose two letters</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-10T19:02:00+01:00">Mon 10 December 2012</time></span>
<a href="http://znotdead.github.io/visual_mode_editing.html">VISUAL MODE: editing</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-10T19:02:00+01:00">Mon 10 December 2012</time></span>
<a href="http://znotdead.github.io/visual_mode_search_and_replace_in_selected.html">VISUAL MODE: Search and replace in selected</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-10T19:01:00+01:00">Mon 10 December 2012</time></span>
<a href="http://znotdead.github.io/delete_lines_containing_pattern.html">Delete lines containing pattern</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-10T19:01:00+01:00">Mon 10 December 2012</time></span>
<a href="http://znotdead.github.io/nerdtree_show_hidden_files.html">NERDTree: show hidden files</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-10T19:01:00+01:00">Mon 10 December 2012</time></span>
<a href="http://znotdead.github.io/recording_and_repeat_actions.html">Recording and repeat actions</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-12-09T13:35:00+01:00">Sun 09 December 2012</time></span>
<a href="http://znotdead.github.io/vim_diff_usage.html">VIM: diff usage</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-07-30T16:04:00+02:00">Mon 30 July 2012</time></span>
<a href="http://znotdead.github.io/minsk-kirishi-ru.html">Minsk (Belarus) - Kirishi (Russia)</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-07-24T06:48:00+02:00">Tue 24 July 2012</time></span>
<a href="http://znotdead.github.io/mysql_create_table_from_another_clever_way.html">MYSQL: create table from another clever way</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-07-04T07:14:00+02:00">Wed 04 July 2012</time></span>
<a href="http://znotdead.github.io/mimetypes.html">PYTHON: mimetypes</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-06-25T04:24:00+02:00">Mon 25 June 2012</time></span>
<a href="http://znotdead.github.io/linux_ps_displays_uid_numeric.html">LINUX: ps displays UID numeric</a>
</p>
<p>
<span class="categories-timestamp"><time datetime="2012-06-22T03:52:00+02:00">Fri 22 June 2012</time></span>