-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2022-10.html
2935 lines (2486 loc) · 119 KB
/
2022-10.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 Oct 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 Oct 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 class="selected">
<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>
<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-10-01">
<span class="title">
01 October 2022
</span>
</li>
<li class="message type-message" id="3094">
<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="#3094">#3094</a>
<span class="date">06:53 PM, 01 Oct 2022</span>
</div>
<div class="text">
Bernese farmer’s 20 cows provide electricity and heat for several houses -- via biogas
<br />
<br />Niklaus Hari converts manure and urine from his 20 cows into energy via a small biogas plant, providing electricity AND HEAT for several houses and a development. “The main thing,” he says, “is we need the cows for their [manure].”
<br />
<br />This is ANOTHER reason the WEF is so eager to reach the “Post Animal Economy” — only takes a small number of livestock to provide meat, dairy, and manure for fertilizer and energy.
<br />
<br />To take control over FOOD, FERTILIZER, and ENERGY, they must eliminate animals from homesteads.
<br />
<br />— iceagefarmer
<br />
<br />source
<br />
<br />👉 Raising chickens & other birds — iaf_birds
<br />👉 Goats & livestock — iaf_goats
<br />
<br />#EnergyCrisis #WarOnPets
</div>
</div>
</li>
<li class="message type-message" id="3095">
<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="#3095">#3095</a>
<span class="date">07:37 PM, 01 Oct 2022</span>
</div>
<div class="text">
French refinery strikes takes half of the nation’s refining capacity offline - forcing France’s largest sugar maker, Tereos, to curtail production
<br />
<br />Diesel and petrol stations in France are running out of fuel, according to an industry union, as a refining strike takes its toll. The strike, which among others, took Total’s 240,000 bpd Gonfreville refinery offline as well as a couple of Exxon’s, was expected to conclude on Thursday…but Friday, reports came in that strikes were disrupting Total’s oil products refining and delivery for a fourth day — 60% of the nation’s total refining capacity.
<br />
<br />“There is no need to rush to the station (for gas),” TotalEnergies said on Friday. Despite those affirmations, France’s largest sugar maker, Tereos, said it had to curtail production somewhat at some of its factories after Total advised it that it would not be able to supply it with any more diesel until the end of the week.
<br />
<br />France was already battling a shortage of refined products, with Russia’s exports to Europe “falling” in recent months.
<br />
<br />[ see previous post on biogas . . . ]
<br />
<br />source: <a href="https://oilprice.com" rel="noopener">oilprice.com</a>
<br />
<br />#EnergyCrisis #France #EU
</div>
</div>
</li>
<li class="message type-message" id="3096">
<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="#3096">#3096</a>
<span class="date">08:29 PM, 01 Oct 2022</span>
</div>
<div class="text">
PETA Calls for Strike on Sex with Meat-Eating Men
<br />
<br />Recall the UN & EAT/Lancet's "Planetary Health Diet" are all about demonizing meat-eating to make it "socially taboo like smoking."
<br />
<br />I will just skip the part where we comment on the irony of self-selecting out of reproduction.
<br />
<br />#WarOnMeat
<br />
<br />https://www.peta.org/blog/strike-on-sex-with-meat-eating-men/
</div>
<div class="media">
<a href="https://www.peta.org/blog/strike-on-sex-with-meat-eating-men/" rel="noreferer nopener nofollow">PETA Calls For Strike on Sex With Meat-Eating Men | PETA</a>
<div>PETA is proposing a strike on sex with meat-eating men. Men’s diets cause 41% more greenhouse gases than women’s diets.</div>
</div>
</div>
</li>
<li class="day" id="2022-10-03">
<span class="title">
03 October 2022
</span>
</li>
<li class="message type-message" id="3097">
<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="#3097">#3097</a>
<span class="date">08:00 PM, 03 Oct 2022</span>
</div>
<div class="text">
Netherlands: greenhouses and growers increasingly shutting down operations due to energy prices. Those greenhouses accounted for nearly 40% of veg in Europe...
<br />
<br />Video opens with a business owner heating her store with candles/terracotta: "I lost my customers with COVID, and now inflation is so high people don't have money to buy children's clothes."
<br />
<br />The elderly person with candle/terracotta heater is, to me, iconic of the strangulation that is gripping Europe in this engineered energy crisis.
<br />
<br />- iceagefarmer
</div>
<div class="media">
<a href="media/3097.mp4">HZQUMfhMGKPvljL-.mp4</a>
</div>
</div>
</li>
<li class="message type-message" id="3098">
<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="#3098">#3098</a>
<span class="date">08:04 PM, 03 Oct 2022</span>
</div>
<div class="text">
Vegetable/legume company HAK STOPS production for 6 weeks starting 2023. Energy prices make it infeasible to produce, says the market leader best known for the glass jars of applesauce, peas and brown beans.
<br />
<br />"It is not only the high price, but also the uncertainty, says director Timo Hoogeboom. "Today it is two euros for a cubic meter of gas, it used to be three euros. We don't know what it will be in January or February. So to be on the safe side, we will remain closed."
<br />
<br />If it is no longer possible to pass on the higher energy prices to consumers, the availability of products may ultimately also be compromised. "If companies have to sell below cost for months, things go wrong." He does not expect any empty shelves for HAK for the time being. "But I don't rule it out for the chain, especially in January, February and March." A temporary energy ceiling for companies could help, the HAK director thinks.
<br />
<br />"Companies will first look at how they can absorb the costs themselves, but if that is no longer possible, they will have to scale down," confirms food economist Morren. "I expect this to happen more widely."
<br />
<br />source: <a href="https://nos.nl/l/2446920" rel="noopener">https://nos.nl/l/2446920</a>
<br />
<br />- iceagefarmer
<br />
<br />#EnergyCrisis #FoodWars #EU
</div>
<div class="media">
<a href="https://nos.nl/l/2446920" rel="noreferer nopener nofollow">HAK stopt productie tijdelijk vanwege energiekosten: 'Appelmoes duurder'</a>
<div>De producten zullen wel in de schappen liggen, maar voor een hogere prijs, verwacht het bedrijf.</div>
</div>
</div>
</li>
<li class="message type-message" id="3099">
<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="#3099">#3099</a>
<span class="date">09:23 PM, 03 Oct 2022</span>
</div>
<div class="text">
Brazilian soybean processors have halted operations as crushing margins turned negative.
<br />
<br />Abiove, a trade group representing global oilseed crushers in Brazil, confirmed the move, telling Reuters some of its members advanced scheduled maintenance stoppages that traditionally happen at the end of the year as soyoil prices dropped while soybean prices remained high, hurting margins.
<br />
<br />https://www.agweb.com/markets/pro-farmer-analysis/some-brazilian-crushers-halt-operations
<br />
<br />#brazil #FoodWars
</div>
<div class="media">
<a href="https://www.agweb.com/markets/pro-farmer-analysis/some-brazilian-crushers-halt-operations" rel="noreferer nopener nofollow">Some Brazilian Crushers Halt Operations</a>
<div>Between eight and 10 Brazilian soybean processors have temporarily halted operations as crushing margins turned negative. . .</div>
</div>
</div>
</li>
<li class="message type-message" id="3100">
<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="#3100">#3100</a>
<span class="date">09:26 PM, 03 Oct 2022</span>
</div>
<div class="text">
STUDY: Gates-funded Impossible Burger poisons rats
<br />
<br />Rats fed GM yeast-derived protein soy leghemoglobin – the Impossible Burger’s key ingredient – showed signs of toxicity.
<br />
<br />If you recall, the FDA at first hesitated about this GMO "heme" to make the Gates-funded thing "bleed," but when Whole Foods was purchased by Bezos, they sold it without FDA approval. The FDA approved soon thereafter.
<br />
<br />Reject the synthetic food — grow your garden.
<br />
<br />- iceagefarmer
<br />
<br />source: <a href="https://www.gmwatch.org/en/106-news/latest-news/20099-rat-feeding-study-suggests-the-impossible-burger-may-not-be-safe-to-eat" rel="noopener">https://www.gmwatch.org/en/106-news/latest-news/20099-rat-feeding-study-suggests-the-impossible-burger-may-not-be-safe-to-eat</a>
</div>
<div class="media">
<a href="https://t.me/iaf_garden" rel="noreferer nopener nofollow">IAF - Gardening 🥕🍓🍅🧄</a>
<div>A solutions-oriented chat where we discuss and share about gardening techniques, planting, soil and crop production - Read the Guidelines & Help!
Part of Ice Age Farmer's @IAF_Resources - IceAgeFarmer.com</div>
</div>
</div>
</li>
<li class="day" id="2022-10-04">
<span class="title">
04 October 2022
</span>
</li>
<li class="message type-message" id="3101">
<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="#3101">#3101</a>
<span class="date">11:08 AM, 04 Oct 2022</span>
</div>
<div class="text">
Germany warns flood of electric heaters WILL crash power grid — yet retailers still have huge displays of space heaters — “dont be caught without one!”
<br />
<br />This is 5th generation warfare - social engineering of civilians, weaponizing a population against itself!
<br />
<br />#Germany #EnergyCrisis #DarkWinter
<br />
<br />https://www.zerohedge.com/geopolitical/germans-panic-buy-electric-heaters-authorities-warn-winter-gas-shortage
</div>
<div class="media">
<a href="https://www.zerohedge.com/geopolitical/germans-panic-buy-electric-heaters-authorities-warn-winter-gas-shortage" rel="noreferer nopener nofollow">Germans Panic-Buy Electric Heaters As Authorities Warn Of Winter Gas Shortage</a>
<div>“If we don’t save, if households don’t reduce consumption, we still risk not having enough gas in the winter,”</div>
</div>
</div>
</li>
<li class="day" id="2022-10-05">
<span class="title">
05 October 2022
</span>
</li>
<li class="message type-message" id="3102">
<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="#3102">#3102</a>
<span class="date">06:02 AM, 05 Oct 2022</span>
</div>
<div class="text">
Dolphins, skunks, foxes now apparently have #BirdFlu as well — Remember : the agenda is “animals are dirty and dangerous and we must separate MAN from NATURE into the SmartCities!”
<br />
<br />In Maine, an elevated number of gray and harbor seal deaths have been attributed to the disease, while in Florida, officials believe a bottle-nosed dolphin succumbed to the virus. It's also been detected in skunks and foxes.
<br />
<br />After proliferating globally, a historic wave of avian flu has entered Southern California, where it is worrying farmers and bird lovers and could add to complications with supply chains and food prices.
<br />
<br />In late August, one New Jersey park had to close its trails to hikers. There were too many dead vultures on the ground.
<br />
<br />https://news.yahoo.com/bird-flu-spreads-southern-california-120013425.html
</div>
<div class="media">
<a href="https://news.yahoo.com/bird-flu-spreads-southern-california-120013425.html" rel="noreferer nopener nofollow">Bird flu spreads to Southern California, infecting chickens, wild birds and other animals</a>
<div>A highly infectious bird flu that has felled millions of birds globally is in California. Experts worry it could affect our food supply.</div>
</div>
</div>
</li>
<li class="message type-message" id="3103">
<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="#3103">#3103</a>
<span class="date">06:05 PM, 05 Oct 2022</span>
</div>
<div class="text">
Unbelievable - Terrible timing to not be able to export grains/oilseeds:
<br />
<br />U.S. barge backlog swells on parched Mississippi River
<br />
<br />Commercial barge traffic on southern stretches of the Mississippi River was at a standstill on Tuesday as low water levels halted shipments of grain, fertilizer and other commodities on the critical waterway, shipping sources said.
<br />
<br />The supply chain snarl comes just as harvesting of corn and soybeans, the largest U.S. cash crops, is ramping up and as tight global supplies and strong demand for food and fuel have sent inflation soaring.
<br />
<br />Around 100 tow boats hauling some 1,600 barges were lined up for miles waiting to pass through one trouble spot near Lake Providence, Louisiana, that has been largely closed since late last week, shipping sources said.
<br />
<br />At least two other sections of the lower Mississippi have also been closed at times, disrupting the flow of grain to U.S. Gulf Coast export terminals, where some 60% of U.S. corn, soybean and wheat exports exit the country, they said.
<br />
<br />Shippers have been loading less cargo per barge so vessels sit higher on the water, and towing companies have reduced the number of barges per tow by nearly 40% as the low water conditions narrowed the navigable channel.
<br />
<br />#us #water #SupplyChain
<br />
<br />https://www.reuters.com/world/us/us-barge-backlog-swells-parched-mississippi-river-2022-10-04/
</div>
<div class="media">
<a href="https://www.reuters.com/world/us/us-barge-backlog-swells-parched-mississippi-river-2022-10-04/" rel="noreferer nopener nofollow">U.S. barge backlog swells on parched Mississippi River</a>
<div>Commercial barge traffic on southern stretches of the Mississippi River was at a standstill on Tuesday as low water levels halted shipments of grain, fertilizer and other commodities on the critical waterway, shipping sources said.</div>
</div>
</div>
</li>
<li class="day" id="2022-10-06">
<span class="title">
06 October 2022
</span>
</li>
<li class="message type-message" id="3104">
<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="#3104">#3104</a>
<span class="date">10:35 PM, 06 Oct 2022</span>
</div>
<div class="text">
Like it or not, gene-edited crops are coming to the EU
<br />
<br />Political hacks are using the food crisis to push GMO foods, as was scripted years ago.
<br />
<br />Also - file this with other abusive headline language pushing the agenda: "Lab-grown meat is coming whether or not you like it (wired Feb 2018)"
<br />
<br />https://www.politico.eu/article/gene-edited-crop-eu-climate-change-drought-agriculture/
</div>
<div class="media">
<a href="https://www.politico.eu/article/gene-edited-crop-eu-climate-change-drought-agriculture/?utm_source=RSS_Feed&utm_medium=RSS&utm_campaign=RSS_Syndication" rel="noreferer nopener nofollow">Like it or not, gene-edited crops are coming to the EU</a>
<div>The only question is how strictly they’ll be regulated.</div>
</div>
</div>
</li>
<li class="message type-message" id="3105">
<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="#3105">#3105</a>
<span class="date">10:37 PM, 06 Oct 2022</span>
</div>
<div class="text">
Force majeure declarations have begun due to barges stopped in Mississippi due to low water levels
<br />
<br />This affects not just the grains harvest, but fertilizer applications.
<br />
<br />A logjam of ships, tugboats and barges due to low water levels on the Mississippi River is threatening to grind trade of grains, fertilizer and other goods to a halt, Bloomberg reports. Ingram Barge Company, the largest U.S. barge operator, declared force majeure in a letter to customers due to “near-historic” low water conditions on the Mississippi River. As of Wednesday afternoon, the Coast Guard said there was a queue of 122 vessels at Stack Island and 15 vessels at Memphis. Due to increased groundings, the number of vessels in tow is being restricted.
<br />
<br />#fertilizer
<br />
<br />https://www.agweb.com/markets/pro-farmer-analysis/low-water-levels-mississippi-river-threatens-shipments
</div>
<div class="media">
<a href="media/3105.jpg">
<img src="media/thumb_3105.jpg" class="thumb" /><br />
<span class="filename">photo_2022-10-06_22-37-39.jpg</span>
</a>
</div>
</div>
</li>
<li class="day" id="2022-10-10">
<span class="title">
10 October 2022
</span>
</li>
<li class="message type-message" id="3107">
<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="#3107">#3107</a>
<span class="date">03:53 PM, 10 Oct 2022</span>
</div>
<div class="text">
Ukraine stops exporting electricity to EU tomorrow. This is another blow to the #EnergyCrisis that is already affecting food production (and will be under-reported amidst the fireworks)
</div>
<div class="media">
<a href="media/3107.jpg">
<img src="media/thumb_3107.jpg" class="thumb" /><br />
<span class="filename">photo_2022-10-10_15-53-31.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="3108">
<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="#3108">#3108</a>
<span class="date">08:04 PM, 10 Oct 2022</span>
</div>
<div class="text">
Hey. What did you do TODAY to make yourself more RESILIENT for TOMORROW?
<br />
<br />Have you been DOOMSCROLLING — or are you ACTIVELY investing in a de-centralized future: seed saving (food production), networking (community), energy systems (minimally solar+inverter+hot plate to cook!)
<br />
<br />Lots to do - use these moments wisely!
<br />
<br />See the IAF groups for solutions-focused chats about these topics and more
<br />
<br />- Christian
</div>
<div class="media">
<a href="media/3108.jpg">
<img src="media/thumb_3108.jpg" class="thumb" /><br />
<span class="filename">photo_2022-10-10_20-04-18.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="3109">
<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="#3109">#3109</a>
<span class="date">08:11 PM, 10 Oct 2022</span>
</div>
<div class="text">
Growing stuff every day
</div>
<div class="media">
<a href="media/3109.jpg">
<img src="media/thumb_3109.jpg" class="thumb" /><br />
<span class="filename">photo_2022-10-10_20-11-01.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="3110">
<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="#3110">#3110</a>
<span class="date">08:11 PM, 10 Oct 2022</span>
</div>
<div class="text">
Moved 3 cords of firewood under cover.
</div>
<div class="media">
<a href="media/3110.jpg">
<img src="media/thumb_3110.jpg" class="thumb" /><br />
<span class="filename">photo_2022-10-10_20-11-08.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="3111">
<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="#3111">#3111</a>
<span class="date">08:16 PM, 10 Oct 2022</span>
</div>
<div class="text">
Just Stop. It's just not going to be appetizing.
<br />
<br />Portland ice cream shop pushes "insect ice cream": "it's the past, present and future of food!"
<br />
<br />https://saltandstraw.com/blogs/news/eating-insects-is-the-past-present-and-future
</div>
<div class="media">
<a href="media/3111.jpg">
<img src="media/thumb_3111.jpg" class="thumb" /><br />
<span class="filename">photo_2022-10-10_20-16-00.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="3112">
<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="#3112">#3112</a>
<span class="date">08:17 PM, 10 Oct 2022</span>
</div>
<div class="text">
Lab-grown milk to hit shelves by 2024 – minus the cow and the carbon
<br />
<br />Welcome to the WEF's "post animal economy":
<br />
<br />"A new animal-free milk promising to be more sustainable than dairy but with near-identical taste and nutritional content could hit supermarket shelves in the next two years, adding to the growing roster of milk alternatives available to Australian consumers."
<br />
<br />#WarOnDairy #PostAnimalEconomy
<br />
<br />https://www.smh.com.au/business/entrepreneurship/lab-grown-milk-to-hit-shelves-by-2024-minus-the-cow-and-the-carbon-20220905-p5bfji.html
</div>
<div class="media">
<a href="https://www.smh.com.au/business/entrepreneurship/lab-grown-milk-to-hit-shelves-by-2024-minus-the-cow-and-the-carbon-20220905-p5bfji.html" rel="noreferer nopener nofollow">Lab-grown milk to hit shelves by 2024 – minus the cow and the carbon</a>
<div>CSIRO-backed start-up Eden Brew aims to fill the growing demand for protein by brewing its animal-free dairy centrally and then shipping it to companies across the globe.</div>
</div>
</div>
</li>
<li class="message type-message" id="3113">
<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="#3113">#3113</a>
<span class="date">08:21 PM, 10 Oct 2022</span>
</div>
<div class="text">
I have a lot of researching to finish about overwintering my peppers. Yesterday I also used cardboard and mulch over my raised beds, and succession sowing lettuce (we can grow lettuce and greens quite late into the winter season where I am). Appreciate all of you in this group!!!!!
</div>
</div>
</li>
<li class="message type-message" id="3114">
<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="#3114">#3114</a>
<span class="date">08:21 PM, 10 Oct 2022</span>
</div>
<div class="text">
We are building a BootStrap Farmer 20’x40’ greenhouse to grow year round
</div>
<div class="media">
<a href="media/3114.jpg">
<img src="media/thumb_3114.jpg" class="thumb" /><br />
<span class="filename">photo_2022-10-10_20-21-40.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="3115">
<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="#3115">#3115</a>
<span class="date">08:58 PM, 10 Oct 2022</span>
</div>
<div class="text">
Wheat jumps over 4% on Black Sea supply concerns, corn firm
<br />
<br />Chicago wheat rose over 4% on Monday on concerns a flare-up in the Russia-Ukraine conflict could create new threats to grain shipments from the Black Sea region
<br />
<br />Corn rose on expectations of smaller crops in the U.S. and Europe.
<br />
<br />#wheat #FoodPrices
<br />
<br />https://www.nasdaq.com/articles/grains-wheat-jumps-over-4-on-black-sea-supply-concerns-corn-firm
</div>
<div class="media">
<a href="https://www.nasdaq.com/articles/grains-wheat-jumps-over-4-on-black-sea-supply-concerns-corn-firm" rel="noreferer nopener nofollow">GRAINS-Wheat jumps over 4% on Black Sea supply concerns, corn firm</a>
<div>Chicago wheat rose over 4% on Monday on concerns a flare-up in the Russia-Ukraine conflict could create new threats to grain shipments from the Black Sea region.</div>
</div>
</div>
</li>
<li class="message type-message" id="3116">
<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="#3116">#3116</a>
<span class="date">09:00 PM, 10 Oct 2022</span>