-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2022-01.html
3799 lines (3196 loc) · 165 KB
/
2022-01.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>iceagefarmer Telegram archive on Jan 2022 page 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="iceagefarmer Telegram archive" />
<meta name="referrer" content="no-referrer">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="media/avatar_1392849104.jpg" />
<meta property="og:title" content="iceagefarmer Telegram archive on Jan 2022 page 1" />
<meta property="og:description" content="iceagefarmer Telegram archive" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://milahu.github.io/iceagefarmer/.html" />
<meta property="og:image" content="https://milahu.github.io/iceagefarmer/static/thumb.png" />
<link rel="alternate" type="application/rss+xml" title="RSS feed " href="index.xml" />
<link rel="alternate" type="application/atom+xml" title="Atom feed " href="index.atom" />
<!--
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
-->
<link href="static/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
div.logo > a { display: block; height: 64px; width: 64px; border-radius: 100%; position: relative; overflow: hidden; }
</style>
</head>
<body>
<div class="wrap">
<div class="container">
<nav class="nav">
<a href="./">iceagefarmer</a>
<label class="burger" for="burger" tabindex="0"><span></span><span></span><span></span></label>
</nav>
<input type="checkbox" id="burger" />
<section class="sidebar" id="sidebar">
<header class="header">
<div class="logo">
<a href="https://milahu.github.io/iceagefarmer">
<img src="media/avatar_1392849104.jpg" alt="" />
</a>
<div class="desc">
<a href="https://t.me/iceagefarmer" rel="noreferer nopener nofollow">iceagefarmer</a>
<br>Telegram archive<br><div class="github-url" style="display:inline">(<a href="https://github.com/milahu/iceagefarmer">Github</a>)</div>
</div>
</div>
</header>
<ul class="timeline index">
<li>
<h3 class="year"><a href="2022-01.html">2022</a></h3>
<ul class="months">
<li>
<a href="2022-11.html">
Nov 2022
</a>
</li>
<li>
<a href="2022-10.html">
Oct 2022
</a>
</li>
<li>
<a href="2022-09.html">
Sep 2022
</a>
</li>
<li>
<a href="2022-08.html">
Aug 2022
</a>
</li>
<li>
<a href="2022-07.html">
Jul 2022
</a>
</li>
<li>
<a href="2022-06.html">
Jun 2022
</a>
</li>
<li>
<a href="2022-05.html">
May 2022
</a>
</li>
<li>
<a href="2022-04.html">
Apr 2022
</a>
</li>
<li>
<a href="2022-03.html">
Mar 2022
</a>
</li>
<li>
<a href="2022-02.html">
Feb 2022
</a>
</li>
<li class="selected">
<a href="2022-01.html">
Jan 2022
</a>
</li>
</ul>
</li>
<li>
<h3 class="year"><a href="2021-01.html">2021</a></h3>
<ul class="months">
<li>
<a href="2021-12.html">
Dec 2021
</a>
</li>
<li>
<a href="2021-11.html">
Nov 2021
</a>
</li>
<li>
<a href="2021-10.html">
Oct 2021
</a>
</li>
<li>
<a href="2021-09.html">
Sep 2021
</a>
</li>
<li>
<a href="2021-08.html">
Aug 2021
</a>
</li>
<li>
<a href="2021-07.html">
Jul 2021
</a>
</li>
<li>
<a href="2021-06.html">
Jun 2021
</a>
</li>
<li>
<a href="2021-05.html">
May 2021
</a>
</li>
<li>
<a href="2021-04.html">
Apr 2021
</a>
</li>
<li>
<a href="2021-03.html">
Mar 2021
</a>
</li>
<li>
<a href="2021-02.html">
Feb 2021
</a>
</li>
<li>
<a href="2021-01.html">
Jan 2021
</a>
</li>
</ul>
</li>
<li>
<h3 class="year"><a href="2020-01.html">2020</a></h3>
<ul class="months">
<li>
<a href="2020-12.html">
Dec 2020
</a>
</li>
<li>
<a href="2020-11.html">
Nov 2020
</a>
</li>
<li>
<a href="2020-10.html">
Oct 2020
</a>
</li>
<li>
<a href="2020-09.html">
Sep 2020
</a>
</li>
<li>
<a href="2020-08.html">
Aug 2020
</a>
</li>
<li>
<a href="2020-07.html">
Jul 2020
</a>
</li>
<li>
<a href="2020-06.html">
Jun 2020
</a>
</li>
<li>
<a href="2020-05.html">
May 2020
</a>
</li>
<li>
<a href="2020-03.html">
Mar 2020
</a>
</li>
<li>
<a href="2020-01.html">
Jan 2020
</a>
</li>
</ul>
</li>
</ul>
<footer class="footer">
<a href="index.xml">RSS feed.</a>
Made with <a href="https://github.com/knadh/tg-archive">tg-archive</a>
</footer>
</section>
<section class="content">
<ul class="messages">
<li class="day" id="2022-01-01">
<span class="title">
01 January 2022
</span>
</li>
<li class="message type-message" id="2442">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2442">#2442</a>
<span class="date">05:33 PM, 01 Jan 2022</span>
</div>
<div class="text">
UAE bans unvaccinated from leaving the country.
<br />
<br />Unvaccinated UAE citizens will be banned from traveling abroad starting January 10, according to local media, citing the country’s crisis management agencies. Only the fully-vaxxed and boosted will be permitted to leave.
<br />
<br />Most countries have barred the unvaccinated from entering their countries, rather than prohibiting them from leaving.
<br />
<br />https://www.rt.com/news/544964-uae-bars-unvaxxed-citizens-leaving/
</div>
<div class="media">
<a href="https://www.rt.com/news/544964-uae-bars-unvaxxed-citizens-leaving/" rel="noreferer nopener nofollow">Country bans unvaccinated from leaving it</a>
<div>Unvaccinated UAE citizens will be banned from traveling abroad starting January 10, according to local media, citing the country’s crisis management agencies. Only the fully-vaxxed and boosted will be permitted to leave.</div>
</div>
</div>
</li>
<li class="day" id="2022-01-02">
<span class="title">
02 January 2022
</span>
</li>
<li class="message type-message" id="2443">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2443">#2443</a>
<span class="date">11:08 PM, 02 Jan 2022</span>
</div>
<div class="text">
Farmers facing exploding input prices (and shortages).
<br />
<br />#FoodPrices #Inflation
</div>
<div class="media">
<a href="media/2443.jpg">
<img src="media/thumb_2443.jpg" class="thumb" /><br />
<span class="filename">photo_2022-01-02_23-08-41.jpg</span>
</a>
</div>
</div>
</li>
<li class="day" id="2022-01-03">
<span class="title">
03 January 2022
</span>
</li>
<li class="message type-message" id="2444">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2444">#2444</a>
<span class="date">04:13 PM, 03 Jan 2022</span>
</div>
<div class="text">
Prion diseases are arriving, as we spoke of last year:
<br />
<br />Bizarre neurological illness plagues young Canadians
<br />
<br />Dozens of young people with no preexisting conditions are developing symptoms of a new disease as activists and families suspect a cover-up on the part of the local government.
<br />
<br />A whistleblower with Vitalité Health Network in New Brunswick told The Guardian on Sunday that symptoms include hallucinations, difficulty thinking, limited mobility, insomnia, and rapid weight loss. Local government has reportedly struggled to dismiss the growing number of cases as Alzheimer’s or other neurological diseases uncommon outside the elderly.
<br />
<br />One of the more disturbing elements of the condition is how little is known regarding transmission. In at least nine cases, caretakers and others in close contact with sick individuals have developed similar symptoms to the ailing party, suggesting the illness not only spreads readily between unrelated individuals but that there may be environmental factors involved. Some have compared the illness to Creutzfeldt-Jakob disease, a fatal brain disease caused by misshapen proteins called prions, though screening reportedly produced no confirmed CJD cases.
<br />
<br />The province has struggled to keep the cases under wraps – the case cluster only became public last year when a memo was leaked to the media, and the government has insisted the “cluster” itself is merely the result of “misdiagnoses” grouping unrelated illnesses together. Officials declared in October that eight fatal cases were due to “known and unrelated pathologies,” rather than a shared and unknown illness. An epidemiological report released in October supposedly ruled out any food, behavioral, or environmental exposure that could explain the problem.
<br />
<br />However, another public health scientist who sought to remain anonymous suggested the government was covering something up. “The fact that we have a younger spectrum of patients here argues very strongly against what appears to be the preferred position of the government of New Brunswick – that the cases in this cluster are being mistakenly lumped together.”
<br />
<br />Also salient, that last paragraph: “If a group of people wanted to breed conspiracy theorists, then our government has done a wonderful job at promoting it,” Beatty told The Guardian. “Are they just trying to create a narrative for the public that they hope we’ll absorb and walk away from? I just don’t understand it.”
<br />
<br />#PrionDisease
<br />
<br />https://www.rt.com/news/545015-new-brunswick-cognitive-decline-epidemic/
</div>
<div class="media">
<a href="https://www.rt.com/news/545015-new-brunswick-cognitive-decline-epidemic/" rel="noreferer nopener nofollow">Bizarre neurological illness plagues young Canadians</a>
<div>Dozens of young people with no preexisting conditions are developing symptoms of a new disease as activists and families suspect a cover-up on the part of the local government.</div>
</div>
</div>
</li>
<li class="message type-message" id="2445">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2445">#2445</a>
<span class="date">04:14 PM, 03 Jan 2022</span>
</div>
<div class="text">
New study: RNA injections and risk of Prion diseases:
<br />
<br />There is an old saying in medicine that “the cure may be worse than the disease.” The phrase can be applied to vaccines. In the current paper the concern is raised that the RNA based COVID vaccines have the potential to cause more disease than the epidemic of COVID-19. This paper focuses on a novel potential adverse event mechanism causing prion disease which could be even more common and debilitating than the viral infection the vaccine is designed to prevent.
<br />
<br />#PrionDisease
<br />
<br />https://scivisionpub.com/pdfs/covid19-rna-based-vaccines-and-the-risk-of-prion-disease-1503.pdf
</div>
<div class="media">
<a href="media/https://scivisionpub.com/pdfs/covid19-rna-based-vaccines-and-the-risk-of-prion-disease-1503.pdf">None</a>
</div>
</div>
</li>
<li class="message type-message" id="2446">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2446">#2446</a>
<span class="date">04:20 PM, 03 Jan 2022</span>
</div>
<div class="text">
GRAINS-Wheat and corn up over 20% in 2021, soybeans edge to third year of gains
<br />
<br />U.S. corn, wheat and soybean futures were set to post yearly gains, with strong demand and supply constraints in some key production areas of the globe underpinning the markets throughout 2021.
<br />
<br />Corn futures Sv1, which have jumped 23.4% this year, have paced the grain markets, supported by increased feed usage by livestock as well as a rebound in the ethanol sector as drivers returned to the roads due to easing COVID-19 restrictions. The corn market has risen for four years in a row.
<br />
<br />Wheat futures were up 20.6% for the year and were on track for their fifth straight yearly gain and their biggest since 2010. Crop problems in Australia and worries about export curbs in Russia have supported the wheat market throughout 2021.
<br />
<br />Soybean futures, which hit their highest level since 2012 in May, were up just 2.4% for the year, as a bumper harvest in the United States and good growing weather in Brazil have pressured prices during the fourth quarter.
<br />
<br />#Corn #soybeans #Wheat #FoodPrices
<br />
<br />https://www.nasdaq.com/articles/grains-wheat-and-corn-up-over-20-in-2021-soybeans-edge-to-third-year-of-gains
</div>
<div class="media">
<a href="https://www.nasdaq.com/articles/grains-wheat-and-corn-up-over-20-in-2021-soybeans-edge-to-third-year-of-gains" rel="noreferer nopener nofollow">GRAINS-Wheat and corn up over 20% in 2021, soybeans edge to third year of gains</a>
<div>U.S. corn, wheat and soybean futures were set to post yearly gains, with strong demand and supply constraints in some key production areas of the globe underpinning the markets throughout 2021.</div>
</div>
</div>
</li>
<li class="message type-message" id="2447">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2447">#2447</a>
<span class="date">04:21 PM, 03 Jan 2022</span>
</div>
<div class="text">
Fertilizer Inflation Contributing to Higher Food Prices
<br />
<br />Food prices are expected to rise going into 2022, and one major contributing factor is the rising price of fertilizer. The American Farm Bureau Federation stated that all nutrients had risen dramatically in cost over the last year: ammonia has increased over 210%; liquid nitrogen has increased over 159%; urea is up 155%; MAP has increased 125%; DAP is up over 100%, and potash has risen above 134%. This does not include the growing cost of transportation.
<br />
<br />IAF: It is becoming economically infeasible to produce food…by design.
<br />
<br />#FoodsPrices #fertilizer #Inflation
<br />
<br />https://www.armstrongeconomics.com/armstrongeconomics101/inflation/fertilizer-inflation-contributing-to-higher-food-prices/
</div>
<div class="media">
<a href="https://www.armstrongeconomics.com/armstrongeconomics101/inflation/fertilizer-inflation-contributing-to-higher-food-prices/" rel="noreferer nopener nofollow">Fertilizer Inflation Contributing to Higher Food Prices | Armstrong Economics</a>
<div>Food prices are expected to rise going into 2022, and one major contributing factor is the rising price of fertilizer. The American Farm Bureau Federation stated that all nutrients had risen dramatically in cost over the last year: ammonia has increased over 210%; liquid nitrogen has increased over 159%; urea is up 155%; MAP has</div>
</div>
</div>
</li>
<li class="message type-message" id="2448">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2448">#2448</a>
<span class="date">09:24 PM, 03 Jan 2022</span>
</div>
<div class="text">
Interview with Marjory Wildcraft is dropping now! Join the stream:
<br />__
<br />
<br />Building Food Security through Community - Marjory Wildcraft
<br />
<br />As supply chain disruptions and fertilizer shortages disrupt the "mainstream" food supply, Marjory Wildcraft joins the Ice Age Farmer broadcast to discuss how and why YOU must work within your community to stand up a local, de-centralized, regenerative, abundant "alternative" food system. This is not just about growing food (although it does that better than industrial farming!), but is also a key method to thwart the technocrats' planned "Great Food Transformation" intended to render us wholly dependent on their lab-grown meat and insect protein. We discuss how to craft a project plan, how to build support within the community, finding land and setting up the space, and how to leverage volunteers. You CAN do this!
<br />
<br />FULL SHOW NOTES: <a href="https://www.iceagefarmer.com/2022/01/03/building-food-security-through-community-marjory-wildcraft/" rel="noopener">https://www.iceagefarmer.com/2022/01/03/building-food-security-through-community-marjory-wildcraft/</a>
<br />
<br />youtube: <a href="https://www.youtube.com/watch?v=MtnwReH24Ls" rel="noopener">https://www.youtube.com/watch?v=MtnwReH24Ls</a>
<br />bitchute: [ processing ]
<br />
<br />#iafvideo #FoodPrices #FoodShortages #Community #Solutions
</div>
<div class="media">
<a href="https://youtu.be/MtnwReH24Ls" rel="noreferer nopener nofollow">Building Food Security through Community - Marjory Wildcraft</a>
<div>As supply chain disruptions and fertilizer shortages disrupt the "mainstream" food supply, Marjory Wildcraft joins the Ice Age Farmer broadcast to discuss how and why YOU must work within your community to stand up a local, de-centralized, regenerative, abundant "alternative" food system. This is not just about growing food (although it does that better than industrial farming!), but is also a key method to thwart the technocrats' planned "Great Food Transformation" intended to render us wholly dependent on their lab-grown meat and insect protein. We discuss how to craft a project plan, how to build support within the community, finding land and setting up the space, and how to leverage volunteers. You CAN do this!
Register here for FREE webinar on growing your own food:
https://iceagefarmer.com/grow
Marjory's 1st interview on IAF: 3-part system to grow half your food in small space:
https://iceagefarmer.com/marjory
FULL SHOW NOTES: https://www.iceagefarmer.com/2022/01/03/building-food-security-through-community-marjory-wildcraft/
GET OFF YOUTUBE NOW! On TELEGRAM: https://t.me/iceagefarmer
SUBSCRIBE on bitchute: https://bitchute.com/iceagefarmer
On Odysee: https://odysee.com/@iceagefarmer
THANK YOU FOR YOUR SUPPORT:
https://patreon.com/iceagefarmer
https://paypal.me/iceagefarmer
- other methods: https://iceagefarmer.com/support
Ice Age Farmer Guilded (chat) group:
http://iceagefarmer.com/guilded
The Victory Seed -- easy pamphlet to share:
http://thevictoryseed.org
__
⇒ IAF Wiki - read history, understand cycles, know what's coming:
http://wiki.iceagefarmer.com/wiki/History
⇒ Maps from previous cycles:
http://wiki.iceagefarmer.com/wiki/Strategic_Relocation:_Maps
⇒ Join the email list - stay connected:
http://iceagefarmer.com/mail
*** SUPPORTERS - I recommend (because I use personally) ***
STORED FOOD (+ more) @ MyPatriotSupply:
https://iceagefarmer.com/prep
FREEZE DRY YOUR OWN FOOD (like printing money, but food):
https://iceagefarmer.com/harvestright
BUY SEEDS @ TRUE LEAF MARKET:
https://iceagefarmer.com/trueleaf
EMP-proof Solar: mention IAF save $250
https://Sol-ark.com
BEST CBD:
https://bignuggetfarm.com 10% code: IAF2018
⇒ More books: http://amazon.com/shop/iceagefarmer
⇒ Stored food: http://iceagefarmer.com/prep
___
LINKS:
Register here for FREE webinar on growing your own food:
https://iceagefarmer.com/grow
Marjory's 1st interview on IAF: 3-part system to grow half your food in small space:
https://iceagefarmer.com/marjory
How to grow more vegetables than you ever thought possible (John Jeavons):
https://amzn.to/3FNjxMO</div>
</div>
</div>
</li>
<li class="day" id="2022-01-04">
<span class="title">
04 January 2022
</span>
</li>
<li class="message type-message" id="2449">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2449">#2449</a>
<span class="date">12:27 PM, 04 Jan 2022</span>
</div>
<div class="text">
Meat industry warns food shortages imminent unless workers can access rapid antigen testing
<br />
<br />Australians are being warned there could be meat shortages within two weeks unless meat workers are being given priority rapid antigen testing.
<br />
<br />The meat industry says it’s now an emergency, with hundreds of workers forced into COVID isolation.
<br />
<br />In some supermarkets, meat shelves are completely bare, emptied by a perfect storm of holiday shortages and the COVID effect.
<br />
<br />The big grocery chains such as Woolworths and Coles say the stock is often there - the problem is getting it into stores, because COVID is causing high absentee rates among retail staff and distribution workers.
<br />
<br />“We do expect the supply chain issues will continue for at least 12 months,” Retailers Association’ spokesperson Fleur Brown told 7NEWS.
<br />
<br />“However, they are critical at the moment.
<br />
<br />Meat Industry Council CEO Patrick Hutchinson has called it an “emergency” situation right now. “We’re now seeing a large amount of meat workers who actually can’t get to work,” he said. “There’s hundreds and hundreds of staff up and down the eastern seaboard, certainly QLD, NSW and VIC who aren’t able to get to work at this stage.” He’s also calling for rapid COVID tests to keep meat workers on the job or risk meat shortages within two weeks.
<br />
<br />#WarOnMeat #Australia
<br />
<br />https://7news.com.au/news/australia/meat-industry-warns-food-shortages-imminent-unless-workers-can-access-rapid-antigen-testing-c-5182666
</div>
<div class="media">
<a href="https://7news.com.au/news/australia/meat-industry-warns-food-shortages-imminent-unless-workers-can-access-rapid-antigen-testing-c-5182666" rel="noreferer nopener nofollow">Meat shortages loom as hundreds of workers forced into COVID isolation</a>
<div>The meat industry predicts “critical” shortages in Australia within two weeks.</div>
</div>
</div>
</li>
<li class="message type-message" id="2450">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2450">#2450</a>
<span class="date">01:24 PM, 04 Jan 2022</span>
</div>
<div class="text">
“Though the problems of our world are increasingly complex, the solutions remain embarrassingly simple.”
<br />
<br /> - Bill Mollison
<br />
<br />#Permaculture
</div>
</div>
</li>
<li class="message type-message" id="2451">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2451">#2451</a>
<span class="date">01:26 PM, 04 Jan 2022</span>
</div>
<div class="text">
NEWS BREAK: German farmer arranges his sheep in the shape of a syringe for photo op. Says it was easy, just put out some bread crumbs.
<br />
<br />There’s something to be explored here about using FOOD to get sheep to line up for vaccines. But I think we’ll just leave it unsaid…
<br />
<br />https://www.huffpost.com/entry/germany-sheep-covid-vaccination_n_61d3d924e4b0bb04a63bf8eb
</div>
<div class="media">
<a href="https://www.huffpost.com/entry/germany-sheep-covid-vaccination_n_61d3d924e4b0bb04a63bf8eb" rel="noreferer nopener nofollow">Sheep, Goats Dip Into COVID Vaccine Debate With Giant Syringe Formation</a>
<div>“Sheep are such likable animals — maybe they can get the message over better."</div>
</div>
</div>
</li>
<li class="message type-message" id="2452">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2452">#2452</a>
<span class="date">01:32 PM, 04 Jan 2022</span>
</div>
<div class="text">
Wastewater samples reveal record levels of Covid-19 across U.S.
<br />
<br />Who needs faulty PCR tests when we can just trust the government to use municipal sewage to check for C19? Perfect surveillance of everything that goes IN and comes OUT of your body is part of the Fourth Industrial Revolution, after all… so cue the shortage of tests.
<br />
<br />If you missed my 2020 report on BioBots to monitor sewage, not just c19 but also for DIETS:
<br /> <a href="https://www.iceagefarmer.com/2020/10/14/bio-bots-to-surveil-sewage-monitor-your-diet-drug-intake-for-covid19-detection/" rel="noopener">https://www.iceagefarmer.com/2020/10/14/bio-bots-to-surveil-sewage-monitor-your-diet-drug-intake-for-covid19-detection/</a>
<br />__
<br />
<br />"Wastewater is going to be a leading indicator for what's going on in a given community and what's to come," said a senior scholar at the Johns Hopkins Center [IAF: naturally…] for Health Security.
<br />
<br />With at-home Covid-19 tests in high demand and their efficacy in question, health departments from California to Massachusetts are turning to sewage samples to get a better idea of how much the coronavirus is spreading through communities and what might be in store for health care systems.
<br />
<br />Experts say wastewater holds the key to better understanding the public health of cities and neighborhoods, especially in underserved areas that do not have equal access to care. [Nice woke appeal to the “disadvantaged”]
<br />
<br />#ir4 #IoT #IoB #5g
<br />
<br />https://www.nbcnews.com/news/us-news/wastewater-samples-reveal-record-levels-covid-19-us-rcna10451
</div>
<div class="media">
<a href="https://www.nbcnews.com/news/us-news/wastewater-samples-reveal-record-levels-covid-19-us-rcna10451" rel="noreferer nopener nofollow">Wastewater samples reveal record levels of coronavirus across U.S.</a>
<div>"Wastewater is going to be a leading indicator for what's going on in a given community and what's to come," said a senior scholar at the Johns Hopkins Center for Health Security.</div>
</div>
</div>
</li>
<li class="message type-message" id="2453">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2453">#2453</a>
<span class="date">01:36 PM, 04 Jan 2022</span>
</div>
<div class="text">
USDA’s new rules for GMO foods have gone into effect — be aware that it is now bioengineered that indicates a GMO. They don’t even hide the fact that this is because people don’t want GMO:
<br />
<br />“This choice was in large measure because “GMO” had come to be perceived as pejorative.”
<br />
<br />You don’t say! We don’t want your CRISPR-modified fake food trash.
<br />
<br />#gmo
<br />
<br />https://www.washingtonpost.com/business/2022/01/01/usda-bioengineered-food-rules/
</div>
</div>
</li>
<li class="message type-message" id="2454">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2454">#2454</a>
<span class="date">02:07 PM, 04 Jan 2022</span>
</div>
<div class="text">
How To Grow Lots Of Food In A Grid Down Situation Even If You Have No Experience, Are Older, And Out Of Shape
<br />
<br />If you enjoyed our interview, Marjory Wildcraft is hosting a FREE webinar this SATURDAY, including her take on:
<br />
<br />- Status of global food shortages
<br />- How long the crisis will last
<br />- How much space you need to grow food
<br />- Easiest, highest calorie foods you can produce
<br />- A complete plan for producing all the food you need
<br />- How to get started today (regardless of season)
<br />
<br />Check it out here: <a href="https://iceagefarmer.com/grow" rel="noopener">https://iceagefarmer.com/grow</a>
</div>
<div class="media">
<a href="https://iceagefarmer.com/grow" rel="noreferer nopener nofollow">The safest, fastest way to produce food</a>
<div>This is how anyone can start growing food right now, even if you have no experience at all</div>
</div>
</div>
</li>
<li class="day" id="2022-01-05">
<span class="title">
05 January 2022
</span>
</li>
<li class="message type-message" id="2455">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2455">#2455</a>
<span class="date">12:49 PM, 05 Jan 2022</span>
</div>
<div class="text">
Cotton production in Mexico plummets 33% due to seed shortage
<br />
<br />https://trendswide.com/cotton-production-in-mexico-plummets-33-due-to-seed-shortage/
</div>
<div class="media">
<a href="https://trendswide.com/cotton-production-in-mexico-plummets-33-due-to-seed-shortage/" rel="noreferer nopener nofollow">Cotton production in Mexico plummets 33% due to seed shortage</a>
<div>Cotton production in Mexico has plummeted 33% from its all-time high in 2018-2019, to 1 million 201,000 bales (261,000 tons), noted the United States</div>
</div>
</div>
</li>
<li class="message type-message" id="2456">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2456">#2456</a>
<span class="date">01:42 PM, 05 Jan 2022</span>
</div>
<div class="text">
OPEN THREAD: What surprising lessons have you learned about preserving / storing food?
<br />
<br />Many people are JUST getting started — this thread is for sharing stories of what works well, or even what HASN’T worked, to help everyone with this critical undertaking.
<br />
<br />Vacuum sealing, freeze drying ($!), dehydrating, canning, salting, smoking, burying tubers, root cellars, fermenting/pickling, sun-drying …
<br />
<br />N.b. There is also a room dedicated to this topic in the IAF guilded server (like discord, but we were banned from there for too much truth!): <a href="https://iceagefarmer.com/guilded" rel="noopener">https://iceagefarmer.com/guilded</a>
<br />
<br />#FoodStorage #OpenThread
</div>
<div class="media">
<a href="media/2456.jpg">
<img src="media/thumb_2456.jpg" class="thumb" /><br />
<span class="filename">photo_2022-01-05_13-42-13.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="2457">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2457">#2457</a>
<span class="date">02:28 PM, 05 Jan 2022</span>
</div>
<div class="text">
Important to note the PORT is shut down as well — another wrench thrown into gears of global #shipping / #SupplyChain!
<br />
<br />As well as the insanity of not being able to buy food...
<br />
<br />____
<br />
<br />Locked-down residents of Chinese city Xi'an struggle to secure food, turn to bartering
<br />
<br />Residents of the locked-down Chinese city of Xi'an are being forced to barter for food and essentials, while a second city has been put under restrictions following the discovery of just a handful of COVID-19 cases.
<br />
<br />Social media posts from residents of Xi'an, who have been confined indoors since December 23, show them swapping things like cigarettes and skincare products for food.
<br />
<br />People living in the epicentre of the outbreak are not allowed to go out at all, and must have goods delivered to them.
<br />
<br />"[We are] returning to primitive society," one person complained on Weibo. "I'm starving to death, there is no food, but my community won't let me go out, help me!" said another.
<br />
<br />A video that went viral on Chinese social media shows a man trading a Chinese cabbage, a carrot and a tomato for two packs of cigarettes. "The most reliable hard currency in Xi'an now is the cigarette," a Weibo user wrote.
<br />
<br />One resident offered a one-hour maths tutorial for three potatoes.
<br />
<br />"Five eggs for a piano lesson," another posted.
<br />
<br />#China
<br />
<br />https://www.abc.net.au/news/2022-01-05/yuzhou-locked-down-residents-xi-an-struggle-food/100738590
</div>
<div class="media">
<a href="https://www.abc.net.au/news/2022-01-05/yuzhou-locked-down-residents-xi-an-struggle-food/100738590" rel="noreferer nopener nofollow">'Five eggs for a piano lesson': Locked-down Chinese struggling to secure food turn to bartering</a>
<div>Residents of the locked-down Chinese city of Xi'an are being forced to barter for food and essentials, while a second city has been put under restrictions following the discovery of just a handful of COVID cases.</div>
</div>
</div>
</li>
<li class="message type-message" id="2458">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2458">#2458</a>
<span class="date">02:39 PM, 05 Jan 2022</span>
</div>
<div class="text">
DIY Oxygen absorption packs can be made very cheaply !
<br />
<br />Step 1) buy a box of super fine steel wool (0000)or (00000)
<br />Step 2) buy regular salt
<br />Step3) get your gloves on (those steel wool slivers are a beatch)
<br />Step4) grind and rub the salt into the steel wool that is cut to about 2”-3”
<br />of course the larger the container the larger the steel wool and more salt
<br />Step5)place in a bag, I use second hand baggies leave the baggy open at one end,
<br />then I put that in an old holly sock
<br />Step 6) place on top your product and seal your pail,jar, etc.
<br />I have used this method for over 50 years and my grandmother used it for about 80 years.
<br />As the reaction of steel wool and salt takes place you will see the steel wool go rusty,
<br /> have no fear it’s just absorbing the oxygen.
</div>
</div>
</li>
<li class="message type-message" id="2459">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>
<a class="id" href="#2459">#2459</a>
<span class="date">03:26 PM, 05 Jan 2022</span>
</div>
<div class="text">
Cole the Cornstar shares how his bill for fertilizer & seeds has exploded year-over-year — this is real, and farmers can NOT absorb these kinds of costs.
<br />
<br />This is part of the Great Food Transformation to destroy farming and ranching, and force people into dependency on the technocrats. Grow your own, with your own compost! Start now!
<br />
<br />#Fertilizer #FoodPrices #WarOnFarms #SupplyChain
<br />
<br />full video: <a href="https://www.youtube.com/watch?v=HP9oP09wars" rel="noopener">https://www.youtube.com/watch?v=HP9oP09wars</a>
</div>
<div class="media">
<a href="media/2459.mp4">tmp.mp4</a>
</div>
</div>
</li>
<li class="message type-message" id="2460">
<div class="avatar">
<img src="media/avatar_1392849104.jpg" alt="" />
</div>
<div class="body">
<div class="meta">
<a href="https://t.me/iceagefarmer" class="username" rel="noreferer nopener nofollow">
iceagefarmer
</a>