-
Notifications
You must be signed in to change notification settings - Fork 0
/
2022-03.html
4230 lines (3506 loc) · 176 KB
/
2022-03.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 Mar 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 Mar 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 class="selected">
<a href="2022-03.html">
Mar 2022
</a>
</li>
<li>
<a href="2022-02.html">
Feb 2022
</a>
</li>
<li>
<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-03-01">
<span class="title">
01 March 2022
</span>
</li>
<li class="message type-message" id="2586">
<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="#2586">#2586</a>
<span class="date">06:10 AM, 01 Mar 2022</span>
</div>
<div class="text">
Brazil: ships sit waiting for delayed soybean harvest. They export 44% of global soybean supply — and the beans just aren’t there.
<br />
<br />It’s not just Ukraine/Russia that are off the table. We are truly passing the point of no return for global food supply.
<br />
<br />#Brazil #soybeans
<br />
<br />https://gcaptain.com/ships-sit-empty-for-weeks-waiting-for-delayed-brazil-soybeans/
</div>
<div class="media">
<a href="https://gcaptain.com/ships-sit-empty-for-weeks-waiting-for-delayed-brazil-soybeans/" rel="noreferer nopener nofollow">Ships Sit Empty for Weeks Waiting for Delayed Brazil Soybeans</a>
<div>By Tarso Veloso (Bloomberg) — A backlog of vessels waiting to load soybeans from some Brazilian ports is stretching to near-record lengths as the world’s biggest bean exporter struggles to harvest...</div>
</div>
</div>
</li>
<li class="message type-message" id="2587">
<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="#2587">#2587</a>
<span class="date">07:19 AM, 01 Mar 2022</span>
</div>
<div class="text">
EU is 3rd biggest consumer of corn, and imports majority (70%!) from Ukraine annually.
<br />
<br />Honest question, as ports are being closed to Russia: where are they going to get their food this year? Given Brazil’s weather struggles, and Bayer declaring force majeur in US, it’s just not possible.
<br />
<br />This isn’t just “sanctions” — we are watching a mass suicide ritual. Sorry to be blunt. I just don’t understand how people don’t see this, but I guess they are busy pouring out bottles of vodka.
<br />
<br />Suddenly the deagle population predictions of massive losses across western countries, while Russia/China stay flat, make absolute sense…
<br />
<br />#eu #ukraine #corn
</div>
</div>
</li>
<li class="message type-message" id="2588">
<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="#2588">#2588</a>
<span class="date">08:32 AM, 01 Mar 2022</span>
</div>
<div class="text">
Google just dropped RT & Sputnik from YouTube. This presages the censorship of ALL voices who do not echo the narrative of the west.
<br />
<br />This is why FOR YEARS they’ve been calling anyone who strays from their propaganda “Russian bots.”
<br />
<br />We are at the tail end of any free exchange in the digital space. If you intend to communicate — be prepared to take it OFFLINE.
<br />
<br />[ Side Note : it’s been an absolute honor communicating with all of you! If/when comms go — best of luck, save those beautiful seeds, and Godspeed! ]
</div>
</div>
</li>
<li class="message type-message" id="2589">
<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="#2589">#2589</a>
<span class="date">09:20 AM, 01 Mar 2022</span>
</div>
<div class="text">
Maersk, biggest shipping company in the world, SUSPENDS all container shipments to Russia.
<br />
<br />This is complete dismantling of the global supply chain. It’s even more insane than flattening the curve.
<br />
<br />It’s not virtue signaling - it’s not sanctions. Its not a war between nations… It’s a war on ALL the people of the world.
<br />
<br />#Shipping
<br />
<br />https://www.nasdaq.com/articles/maersk-suspends-all-container-shipping-to-russia
</div>
<div class="media">
<a href="https://www.nasdaq.com/articles/maersk-suspends-all-container-shipping-to-russia" rel="noreferer nopener nofollow">Maersk suspends all container shipping to Russia</a>
<div>Shipping group Maersk will temporarily halt all container shipping to and from Russia in response to Western sanctions on Moscow following its invasion of Ukraine, the company said on Tuesday.</div>
</div>
</div>
</li>
<li class="message type-message" id="2590">
<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="#2590">#2590</a>
<span class="date">04:36 PM, 01 Mar 2022</span>
</div>
<div class="text">
My #1 favorite soil amendment: Lactobacillus ! LAB can also be used as a pro-biotic supplement, to naturally clear drain pipes, to control odor with deep bedding of your birds / livestock, and about 8 gazillion other uses. It’s an army of friendlies waiting for you to use them! Check it out:
<br />
<br />Lactic Acid Bacteria (LAB) “Recipe”:
<br />
<br />- 1L Rice Wash (just let rice sit in water for a bit, up to a day, then strain it out — the water now is full of carbs for the bacilli to eat!)
<br />
<br />- 10L of milk (or scale both back) — Raw milk is great! Store milk works just fine. We just want the bacteria!
<br />
<br />Mix the two together, leave room at top for some bubbling, cover with mesh or muslin or even a paper towel. Give it 3-6+ days depending on temperature, no direct sunlight. When it smells sweet and has separated out, it’s ready! Then just strain out the liquid from the curds (which can also be used to make cheese), and you have your LAB aka EM1!
<br />
<br />It only takes a teaspoon or two per gallon of water (~ 1:20 if you require quantitative, but who’s counting) to be a potent addition when watering, or with your compost tea.
<br />
<br />( here is a video by Chris Trump demo’ing the method )
</div>
<div class="media">
<a href="https://www.youtube.com/watch?v=1Ke4OQljVmg" rel="noreferer nopener nofollow">Korean Natural Farming How to : LAB</a>
<div>HOW TO CREATE LAB (LACTIC ACID BACTERIA)// LAB IS A SOIL CONDITIONER, SMELL REMEDIATOR, & BOOST OVERALL PLANT, ANIMAL, AND YOUR OWN HEALTH/ Are you ready to increase your plant, animal, and your own ability to absorb nutrients while increasing disease resistance? Lactic Acid Bacteria is a simple method that yields big results.
Download my FREE LAB Supply & Resource guide with all the ingredients, ratios, and the exact tools I use here: https://naturalfarming.co/lab/
Don't waste the curds through the LAB process. I'll walk you through how to make your own cheese from the byproduct of LAB. Check out my video on "How To: Cheese from L.A.B. Curds" here: https://www.youtube.com/watch?v=LNwrx36rWkU
To learn more about Natural Farming:
https://naturalfarming.co/
Subscribe to Chris Trump for more Natural Farming tips and tricks here: https://www.youtube.com/channel/UCus0ZO165qzh6KPlULSzs4w
Say hi on Social Media:
Instagram: http://instagram.com/soilsteward
Facebook: https://www.facebook.com/naturalfarmingco
If you like what I am doing and want to help me make more videos
please consider supporting me on Patreon @
** patreon.com/christrump **
About This Video:
In this video, Chris Trump from NaturalFarming.co shares how to create Lactic Acid Bacteria (LAB) with simple ingredients you probably have at home.
Chris Trump is an expert in Natural Farming. Chris teaches Natural Farming worldwide and creates resources to equip farmers and gardeners on how to increase crop and livestock performance through sustainability, all while decreasing costs. Be part of the Natural Farming movement to increase awareness of the global food crisis and how to combat it.
https://naturalfarming.co/mission/
#Christrump #soilsmith #naturalfarming #LAB
Music used by permission: "Counting Song" by, Denae Templeton Songs - EP https://itun.es/us/flbvB?i=458494671</div>
</div>
</div>
</li>
<li class="message type-message" id="2591">
<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="#2591">#2591</a>
<span class="date">04:37 PM, 01 Mar 2022</span>
</div>
<div class="text">
Quite the legacy there, Vikki …
</div>
<div class="media">
<a href="media/2591.jpg">
<img src="media/thumb_2591.jpg" class="thumb" /><br />
<span class="filename">photo_2022-03-01_16-37-02.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="2592">
<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="#2592">#2592</a>
<span class="date">04:40 PM, 01 Mar 2022</span>
</div>
<div class="text">
Analysts / "experts" are now echoing what I'd said last week about the effects of this conflict on world grain supplies
<br />
<br />"If the conflict is prolonged -- three months, four months from now -- I feel the consequences could be really serious, wheat will need to be rationed," said Andree Defois, president of consultant Strategie Grains.
<br />
<br />Kyiv-based researcher UkrAgroConsult warned, "the chain of product creation, from cultivation to port shipments, is paralyzed."
<br />
<br />This is, at its heart, an attack on the food supply.
<br />
<br />#wheat #FoodShortage
</div>
<div class="media">
<a href="https://www.zerohedge.com/commodities/breadbasket-world-choked-russian-invasion-wheat-prices-soar" rel="noreferer nopener nofollow">"Breadbasket Of World" Choked Off By Russian Invasion As Wheat Prices Soar</a>
<div>"Wheat will need to be rationed."</div>
</div>
</div>
</li>
<li class="message type-message" id="2593">
<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="#2593">#2593</a>
<span class="date">06:24 PM, 01 Mar 2022</span>
</div>
<div class="text">
Wheat prices EXPLODE, limit up. See above post for why.
<br />
<br />I have long said “Watch wheat.” It is THE key strategic grain. Last time wheat prices soared this high, presaged the Arab Spring….
<br />
<br />__
<br />
<br />Wheat prices soar to highest since 2008, trade ‘limit up’ on potential Russia supply hit
<br />
<br />The price of wheat on Tuesday rose to its highest levels in more than a decade, with traders concerned about global supply disruption as Russia’s invasion of Ukraine advanced.
<br />
<br />Wheat futures rose 5.35% to 984 cents per bushel as of 11:30 a.m. ET, at the highs of Tuesday’s session. That marks the highest price since April 4, 2008, when wheat traded as high as 985.5 cents per bushel.
<br />
<br />#wheat
<br />
<br />https://www.cnbc.com/2022/03/01/wheat-futures-reach-highest-levels-since-2008-as-russia-invasion-advances.html
</div>
<div class="media">
<a href="https://www.cnbc.com/2022/03/01/wheat-futures-reach-highest-levels-since-2008-as-russia-invasion-advances.html" rel="noreferer nopener nofollow">Wheat prices soar to highest since 2008 on potential Russia supply hit</a>
<div>Russia is the largest exporter of wheat and Ukraine is among the top four biggest exporters of the commodity, according to JPMorgan.</div>
</div>
</div>
</li>
<li class="message type-message" id="2594">
<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="#2594">#2594</a>
<span class="date">08:14 PM, 01 Mar 2022</span>
</div>
<div class="text">
BREAKING: Multiple users reporting Merrill Lynch is not allowing them to trade WEAT or some other commodity ETFs.
</div>
<div class="media">
<a href="media/2594.jpg">
<img src="media/thumb_2594.jpg" class="thumb" /><br />
<span class="filename">photo_2022-03-01_20-14-36.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="2595">
<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="#2595">#2595</a>
<span class="date">10:37 PM, 01 Mar 2022</span>
</div>
<div class="text">
UK ‘bribes’ farmers to STOP FARMING
<br />_
<br />A government scheme to pay farmers up to £100,000 to help them retire is set to open for applications in April.
<br />
<br />Long-awaited details have been published on Defra's Lump Sum Exit Scheme, part of a drive to encourage older farmers to leave the industry and pass on their land to a new generation.
<br />
<br />To be eligible, farmers will need to surrender their BPS entitlements and dispose of almost all their agricultural land by sale or gift.
<br />
<br />#uk #WarOnFarms
<br />
<br />https://www.edp24.co.uk/news/business/defra-farming-lump-sum-payment-scheme-opens-april-8679488
</div>
<div class="media">
<a href="https://www.edp24.co.uk/news/business/defra-farming-lump-sum-payment-scheme-opens-april-8679488" rel="noreferer nopener nofollow">Farmers will be offered up to £100,000 to retire</a>
<div>A government scheme to pay farmers up to £100,000 to help them retire is set to open for applications in April.</div>
</div>
</div>
</li>
<li class="message type-message" id="2596">
<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="#2596">#2596</a>
<span class="date">10:51 PM, 01 Mar 2022</span>
</div>
<div class="text">
Shippers Cut Off Russia - Wheat Price Explodes - Cyberattacks on Shipping
<br />
<br />As Major shipping companies are cutting service to Russia and UK bans shipments from Russia, the disruption to global food supply is now a lasting one. What effect will cutting out the breadbasket of the world have, and--more importantly--who benefits from doing so? Christian breaks it down in this Ice Age Farmer broadcast.
<br />
<br />via @iceagefarmer
<br />
<br />https://www.iceagefarmer.com/2022/03/01/shippers-cut-off-russia-wheat-price-explodes-cyberattacks-on-shipping/
<br />
<br />Youtube: <a href="https://youtu.be/S86VxWYmwG4" rel="noopener">https://youtu.be/S86VxWYmwG4</a>
<br />
<br />#iafvideo #russia #ukraine #wheat #shipping #SupplyChain
</div>
<div class="media">
<a href="https://youtu.be/S86VxWYmwG4" rel="noreferer nopener nofollow">Shippers Cut Off Russia - Wheat Price Explodes - Cyberattacks on Shipping</a>
<div>As Major shipping companies are cutting service to Russia and UK bans shipments from Russia, the disruption to global food supply is now a lasting one. What effect will cutting out the breadbasket of the world have, and--more importantly--who benefits from doing so? Christian breaks it down in this Ice Age Farmer broadcast.
FULL SHOW NOTES: https://www.iceagefarmer.com/2022/03/01/shippers-cut-off-russia-wheat-price-explodes-cyberattacks-on-shipping/
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:</div>
</div>
</div>
</li>
<li class="day" id="2022-03-02">
<span class="title">
02 March 2022
</span>
</li>
<li class="message type-message" id="2597">
<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="#2597">#2597</a>
<span class="date">12:20 AM, 02 Mar 2022</span>
</div>
<div class="text">
Maersk, world’s largest shipping company who just cut service to Russia, destroying shipping & supply chains … is a WEF partner:
<br />
<br />https://www.weforum.org/organizations/a-p-moller-maersk-a-s
</div>
<div class="media">
<a href="https://www.weforum.org/organizations/a-p-moller-maersk-a-s" rel="noreferer nopener nofollow">A.P. Møller-Maersk</a>
<div>The World Economic Forum is an independent international organization committed to improving the state of the world by engaging business, political, academic and other leaders of society to shape global, regional and industry agendas. Incorporated as a not-for-profit foundation in 1971, and headquartered in Geneva, Switzerland, the Forum is tied to no political, partisan or national interests.</div>
</div>
</div>
</li>
<li class="message type-message" id="2598">
<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="#2598">#2598</a>
<span class="date">07:26 AM, 02 Mar 2022</span>
</div>
<div class="text">
“How without Russian gas?”
<br />
<br />Already EU nations are hearing that they must quickly fail forward into renewables as the gas is shutdown from Russia:
<br />
<br />As I mention in my update earlier, this conflict serves so many aspects of the zero carbon agenda (even as the war machine belches insane pollution) …
<br />
<br />https://nos.nl/artikel/2419460-hoe-zonder-russisch-gas-van-betere-cv-instelling-tot-ledlampen
</div>
<div class="media">
<a href="https://nos.nl/artikel/2419460-hoe-zonder-russisch-gas-van-betere-cv-instelling-tot-ledlampen" rel="noreferer nopener nofollow">Hoe zonder Russisch gas? Van betere cv-instelling tot ledlampen</a>
<div>De Nederlandse Vereniging voor Duurzame Energie inventariseerde waar op korte termijn gas bespaard kan worden als Nederland van het Russische gas af wil.</div>
</div>
</div>
</li>
<li class="message type-message" id="2599">
<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="#2599">#2599</a>
<span class="date">09:54 AM, 02 Mar 2022</span>
</div>
<div class="text">
While eyes are on the war, WHO has contracted Deutsche Telekom to build a global electronic verification of coronavirus (or any) vaccination certificates.
<br />
<br />The QR code-based software solution will be used for other vaccinations as well, such as polio or yellow fever, [or whatever we come up with in the future! whee!] T-Systems said in a statement on Wednesday, adding that the WHO would support its 194 member states in building national and regional verification technology.
<br />
<br />https://www.reuters.com/business/healthcare-pharmaceuticals/deutsche-telekom-build-global-covid-vaccine-verification-app-who-2022-02-23/
</div>
<div class="media">
<a href="https://www.reuters.com/business/healthcare-pharmaceuticals/deutsche-telekom-build-global-covid-vaccine-verification-app-who-2022-02-23/" rel="noreferer nopener nofollow">Deutsche Telekom to build global COVID vaccine verification app for WHO</a>
<div>The World Health Organization has signed a contract with Deutsche Telekom subsidiary T-Systems to build a software solution for global electronic verification of coronavirus vaccination certificates, the telecoms company said.</div>
</div>
</div>
</li>
<li class="message type-message" id="2600">
<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="#2600">#2600</a>
<span class="date">03:31 PM, 02 Mar 2022</span>
</div>
<div class="text">
Wow: Benchmark Malaysian #PalmOil futures rose past 7,000 ringgit/tonne on Wed. The 6,000-mark was first reached just a week ago, the 1st 5,000 in October.
<br />
<br />Palm oil is the most widely used vegetable oil. Prices have spiked w/ most sunflower oil trade (15% of vegoil total) offline.
<br />
<br />#FoodPrices
</div>
<div class="media">
<a href="media/2600.jpg">
<img src="media/thumb_2600.jpg" class="thumb" /><br />
<span class="filename">photo_2022-03-02_15-31-06.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="2602">
<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="#2602">#2602</a>
<span class="date">06:11 PM, 02 Mar 2022</span>
</div>
<div class="text">
#soybeans #oilseed
</div>
<div class="media">
<a href="media/2602.jpg">
<img src="media/thumb_2602.jpg" class="thumb" /><br />
<span class="filename">photo_2022-03-02_18-11-36.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="2603">
<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="#2603">#2603</a>
<span class="date">06:43 PM, 02 Mar 2022</span>
</div>
<div class="text">
Moldova bans export of grains to ensure domestic supply.
<br />
<br />The global food crisis is escalating quickly. This is the nation state equivalent of “grab what you can now” — of course China has been doing that for years now.
<br />
<br />#FoodShortages #Moldova #wheat #corn
</div>
<div class="media">
<a href="media/2603.jpg">
<img src="media/thumb_2603.jpg" class="thumb" /><br />
<span class="filename">photo_2022-03-02_18-43-39.jpg</span>
</a>
</div>
</div>
</li>
<li class="day" id="2022-03-03">
<span class="title">
03 March 2022
</span>
</li>
<li class="message type-message" id="2604">
<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="#2604">#2604</a>
<span class="date">11:29 AM, 03 Mar 2022</span>
</div>
<div class="text">
EU Agriculture Ministers hold Crisis Meeting to manage impact of Ukraine on food production:
<br />
<br />The war in Ukraine could disrupt food production in Europe - not just raw material or fertilizer prices. France wants to activate the EU crisis mechanism. [ I have looked into this plan and can find that it exists, but not what its implementation would entail - @iceagefarmer ]
<br />
<br />"The invasion carries the risk of disrupting global markets for agricultural products," said the official announcement of the video conference of EU agriculture ministers this afternoon. Energy and the production of goods such as fertilizers are also affected. World market prices for wheat have already risen sharply since the beginning of the war.
<br />
<br />The food crisis is escalating quickly. for more: @iceagefarmer
<br />
<br />original link (de):
<br />https://www.agrarheute.com/politik/krisensitzung-eu-agrarminister-folgen-ukraine-krieges-590851
</div>
<div class="media">
<a href="https://www-agrarheute-com.translate.goog/tag/agrarminister?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp" rel="noreferer nopener nofollow">Agrarminister – aktuelle News und Informationen | agrarheute.com</a>
<div>Agrarminister: Aktuelle News, Informationen, Artikel und Hintergrundberichte zum Thema Agrarminister.</div>
</div>
</div>
</li>
<li class="message type-message" id="2605">
<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="#2605">#2605</a>
<span class="date">11:31 AM, 03 Mar 2022</span>
</div>
<div class="text">
Another fire at a fertilizer plant, Yakima, WA, USA destroys 1.75 million pounds of mixed components for fertilizers - how many fertilizer facitilies have burned down just this year now? (As fertilizer shipments from Russia stop?)
<br />
<br />__
<br />Fire rages at fertilizer facility, forces evacuations in Sunnyside
<br />
<br />Although a chemical fire in Sunnyside quickly consumed an industrial building and emitted sulfur-laden smoke throughout the afternoon and evening, Monday’s blaze was caught early enough to avoid injuries and could have been much worse, officials said.
<br />
<br />A smoldering pile of sulfur quickly became a raging chemical fire just after 1 p.m. Monday at Nutrien Ag Solutions, 1101 Midvale Road, Sunnyside Fire Chief Ken Anderson said.
<br />
<br />The fire destroyed one storage building on the southeast corner of the fertilizer storage facility in the Port of Sunnyside and damaged others, but adjacent Nutrien buildings and storage tanks containing hazardous chemicals were spared, Anderson said Monday evening.
<br />
<br />The storage building contained 1.75 million pounds of mixed components for fertilizers, but there were more dangerous chemicals in adjacent buildings and tanks, and firefighters prevented the blaze from spreading to them, Anderson added.
<br />
<br />“It was caught early on — it could have been much worse,” he added.
<br />
<br />#Fertilizer #Fire
<br />
<br />https://www.yakimaherald.com/news/local/no-one-hurt-as-fire-rages-at-fertilizer-facility-forces-evacuations-in-sunnyside/article_7ba76165-fa09-5277-a7e7-a39fed1aa43e.html
</div>
<div class="media">
<a href="https://www.yakimaherald.com/news/local/no-one-hurt-as-fire-rages-at-fertilizer-facility-forces-evacuations-in-sunnyside/article_7ba76165-fa09-5277-a7e7-a39fed1aa43e.html" rel="noreferer nopener nofollow">No one hurt as fire rages at fertilizer facility, forces evacuations in Sunnyside</a>
<div>No injuries were reported in a chemical fire at Nutrien Ag Solutions in Sunnyside on Monday. The blaze at the fertilizer plant could have been much worse, officials said.</div>
</div>
</div>
</li>
<li class="message type-message" id="2606">
<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="#2606">#2606</a>
<span class="date">05:50 PM, 03 Mar 2022</span>
</div>
<div class="text">
FOOD CRISIS: EU expects shortages, S. Korea feed producers to declare Force Majeur
<br />