-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2022-11.html
1028 lines (903 loc) · 40.6 KB
/
2022-11.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 Nov 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 Nov 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 class="selected">
<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>
<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-11-01">
<span class="title">
01 November 2022
</span>
</li>
<li class="message type-message" id="3167">
<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="#3167">#3167</a>
<span class="date">08:47 AM, 01 Nov 2022</span>
</div>
<div class="text">
WHEAT: even without black sea deal falling apart, current crop is in RECORD WORST condition — and global stocks are already at RECORD LOW.
<br />
<br />Then mix in Russia withdrawing from agreement for grain corridor.
<br />
<br />Neither does the market have this priced in, nor do many people realize the implications for #FoodPrices and geopolitics…
<br />
<br />Engineered food shortages to usher in technocratic control over food and all resources…
<br />
<br />- iceagefarmer
<br />
<br />#wheat
</div>
<div class="media">
<a href="media/3167.jpg">
<img src="media/thumb_3167.jpg" class="thumb" /><br />
<span class="filename">photo_2022-11-01_08-47-07.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="3168">
<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="#3168">#3168</a>
<span class="date">08:47 AM, 01 Nov 2022</span>
</div>
<div class="text">
</div>
<div class="media">
<a href="media/3168.jpg">
<img src="media/thumb_3168.jpg" class="thumb" /><br />
<span class="filename">photo_2022-11-01_08-47-07.jpg</span>
</a>
</div>
</div>
</li>
<li class="day" id="2022-11-02">
<span class="title">
02 November 2022
</span>
</li>
<li class="message type-message" id="3169">
<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="#3169">#3169</a>
<span class="date">10:26 AM, 02 Nov 2022</span>
</div>
<div class="text">
Bird Flu: 1.1 million chickens culled in Iowa as autumn outbreaks begin
<br />
<br />#BirdFlu
<br />
<br />https://www.zerohedge.com/commodities/possibility-additional-outbreaks-bird-flu-strikes-iowa-egg-farm-million-hens
</div>
<div class="media">
<a href="https://www.zerohedge.com/commodities/possibility-additional-outbreaks-bird-flu-strikes-iowa-egg-farm-million-hens" rel="noreferer nopener nofollow">"Possibility Of Additional Outbreaks:" Bird Flu Strikes Iowa Egg Farm With Million Hens</a>
<div>"With migration ongoing, we continue to emphasize the need for strict biosecurity on poultry farms..." </div>
</div>
</div>
</li>
<li class="message type-message" id="3170">
<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="#3170">#3170</a>
<span class="date">10:28 AM, 02 Nov 2022</span>
</div>
<div class="text">
UK: all birds must again be kept indoors as “We are now facing this year the largest ever outbreak of bird flu” and are seeing rapid escalation in the number of cases on commercial farms and in BACK YARDS —
<br />
<br />"The risk of kept birds being exposed to disease has reached a point where it is now necessary for all birds to be housed until further notice.”
<br />
<br />Animals are “dirty and dangerous” narrative sets the tone for end of ranching and forcing people onto fake lab-grown meat:
<br />
<br />#BirdFlu
<br />
<br />https://news.sky.com/story/all-poultry-and-captive-birds-in-england-ordered-to-be-kept-indoors-as-bird-flu-measures-stepped-up-12735094?dcmp=
</div>
<div class="media">
<a href="https://news.sky.com/story/all-poultry-and-captive-birds-in-england-ordered-to-be-kept-indoors-as-bird-flu-measures-stepped-up-12735094?dcmp=" rel="noreferer nopener nofollow">All poultry and captive birds in England ordered to be kept indoors as bird flu measures stepped up</a>
<div>The UK's chief veterinary officer says England is facing the largest ever outbreak of bird flu and the measures apply to flocks of a few birds to thousands.</div>
</div>
</div>
</li>
<li class="message type-message" id="3171">
<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="#3171">#3171</a>
<span class="date">01:51 PM, 02 Nov 2022</span>
</div>
<div class="text">
Indonesia is stockpiling food RAPIDLY to weather this food crisis.
<br />
<br />Is your nation? And if not: Are you? How is the LOCAL food system in your community?
<br />-
<br />“Under a new presidential regulation, which took effect Oct. 24, Bapanas with the help of state-owned enterprises plans to secure stocks of 11 staple foods, such as rice, corn, soybeans, shallots, chili, sugar for household, cooking oil, as well as some meat and fish.”
<br />
<br />Indonesia is striving to reach 1.2 million tonnes of rice reserves by the end of the year, enough to meet 3.9% of domestic demand, as it battles inflation.
<br />
<br />#FoodPrices
<br />
<br />https://www.world-grain.com/articles/17664-indonesia-building-rice-stocks-amid-inflation
</div>
<div class="media">
<a href="https://www.world-grain.com/articles/17664-indonesia-building-rice-stocks-amid-inflation" rel="noreferer nopener nofollow">Indonesia building rice stocks amid inflation</a>
<div>Government prefers domestic production to additional imports.</div>
</div>
</div>
</li>
<li class="message type-message" id="3172">
<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="#3172">#3172</a>
<span class="date">01:58 PM, 02 Nov 2022</span>
</div>
<div class="text">
US: Lawmaker warns of impact from diesel shortage, rail strike after election
<br />
<br />Wisconsin Rep. Bryan Steil says that the economy could take a dual hit after the election if diesel shortages persist and rail unions strike as promised.
<br />
<br />“weeks after President Biden told us that he had this all under control, and the trains would be running on time, We're now learning it's anything but that. It's another game where the Biden administration has kicked the can down the road and kicked it past this election."
<br />
<br />Steil said the impact of the railroad strike could be exacerbated by ongoing shortages of diesel fuel, which power everything from tractor trailers to harvesting tractors.
<br />
<br />"The shortages that we're seeing around the country is concerning," Steil continued. "But it's all the more concerning that we have policies coming from Biden and from Pelosi that are putting us in this position in the first place."
<br />
<br />#diesel #EnergyCrisis #us
<br />
<br />https://justthenews.com/politics-policy/energy/wed-wisconsin-rep-warns-economy-may-face-double-whammy-after-election-due
</div>
<div class="media">
<a href="https://justthenews.com/politics-policy/energy/wed-wisconsin-rep-warns-economy-may-face-double-whammy-after-election-due" rel="noreferer nopener nofollow">Double whammy ahead? Lawmaker warns of impact from diesel shortage, rail strike after election</a>
<div>"It's another game where the Biden administration has kicked the can down the road," Rep. Bryan Steil warns.</div>
</div>
</div>
</li>
<li class="day" id="2022-11-03">
<span class="title">
03 November 2022
</span>
</li>
<li class="message type-message" id="3173">
<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="#3173">#3173</a>
<span class="date">03:48 PM, 03 Nov 2022</span>
</div>
<div class="text">
Look at that - US exports record amount of wheat in September (as other countries are stockpiling).
<br />
<br />There IS no strategic grain reserve in the US - it was liquidated over a decade ago. Just like they’re draining the SPR now.
<br />
<br />3+ mmt, to destinations China, Mexico, Philippines.
<br />
<br />USA set up for incomprehensibly massive failure …
<br />
<br />- iceagefarmer
<br />
<br />#wheat
</div>
<div class="media">
<a href="media/3173.jpg">
<img src="media/thumb_3173.jpg" class="thumb" /><br />
<span class="filename">photo_2022-11-03_15-48-25.jpg</span>
</a>
</div>
</div>
</li>
<li class="message type-message" id="3174">
<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="#3174">#3174</a>
<span class="date">10:24 PM, 03 Nov 2022</span>
</div>
<div class="text">
MASSIVE ANTI-RUSSIAN ‘BOT ARMY’ -- 80% of TWEETS!!! -- EXPOSED BY AUSTRALIAN RESEARCHERS
<br />
<br />An Australian university has unearthed millions of Tweets by fake ‘bot’ accounts pushing disinformation on the Ukraine war.
<br />
<br />80 percent of tweets about the 2022 Russia-Ukraine invasion in its early weeks were part of a covert propaganda campaign originating from automated fake ‘bot’ accounts.
<br />
<br />IceAgeFarmer note: this is part of the “cognitive warfare” strategy that NATO openly discussed — next generation social engineering. See my report here.
<br />
<br />source: <a href="https://declassifiedaus.org/2022/11/03/strongmassive-anti-russian-bot-army-exposed-by-australian-researchers-strong/" rel="noopener">https://declassifiedaus.org/2022/11/03/strongmassive-anti-russian-bot-army-exposed-by-australian-researchers-strong/</a>
</div>
<div class="media">
<a href="https://declassifiedaus.org/2022/11/03/strongmassive-anti-russian-bot-army-exposed-by-australian-researchers-strong/" rel="noreferer nopener nofollow">MASSIVE ANTI-RUSSIAN ‘BOT ARMY’ EXPOSED BY AUSTRALIAN RESEARCHERS - Declassified Australia</a>
<div>An Australian university has unearthed millions of Tweets by fake ‘bot’ accounts pushing disinformation on the Ukraine war.</div>
</div>
</div>
</li>
<li class="message type-message" id="3175">
<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="#3175">#3175</a>
<span class="date">10:32 PM, 03 Nov 2022</span>
</div>
<div class="text">
The system tried to front-run this with MSM talking points on a “dead internet conspiracy theory” that “feels real.”
<br />
<br />It masked the literal deployment armies of bots across Twitter, telegram, any social network, comment section, reddit, /pol , etcetcetc
<br />
<br />These bot agents:
<br />
<br />- mix in poison pills to SIGINT by, for example, having bots yell “MAGA” or “go putin” in whatever channels they want to shut down. (Later, big data analytics announce that all homesteading channels are putin supporters. Seriously, there are Gates-funded organizations doing this, and they intend in the future to use these "associations" to censor any voice)
<br />
<br />- Sway public opinion by appealing to basic crowd psychology (recall the ashe conformity experiments)
<br />
<br />- annoy real users who are trying to find actual factual data
<br />
<br />https://www.theatlantic.com/technology/archive/2021/08/dead-internet-theory-wrong-but-feels-true/619937/
</div>
<div class="media">
<a href="https://www.theatlantic.com/technology/archive/2021/08/dead-internet-theory-wrong-but-feels-true/619937/" rel="noreferer nopener nofollow">Maybe You Missed It, but the Internet ‘Died’ Five Years Ago</a>
<div>A conspiracy theory spreading online says the whole internet is now fake. It’s ridiculous, but possibly not that ridiculous?</div>
</div>
</div>
</li>
<li class="message type-message" id="3176">
<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="#3176">#3176</a>
<span class="date">11:20 PM, 03 Nov 2022</span>
</div>
<div class="text">
Further, search engines have devolved into curated sets of links — this was absolutely openly confirmed by WEF reps working with Google to override results for terms like ‘climate change.’ [video]
<br />
<br />With curated search results limiting what an inexperienced user can find, and bots constituting 80% of the tweets on a given topic …
<br />
<br />… the internet really is dead.
<br />
<br />GET OFFLINE. SPREAD THE WORD. DECENTRALIZE.
<br />
<br />— iceagefarmer
</div>
<div class="media">
<a href="media/3176.mp4">2022-11-04 00.16.09.mp4</a>
</div>
</div>
</li>
<li class="day" id="2022-11-04">
<span class="title">
04 November 2022
</span>
</li>
<li class="message type-message" id="3177">
<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="#3177">#3177</a>
<span class="date">01:57 PM, 04 Nov 2022</span>
</div>
<div class="text">
Australia: flooding damages $150 million of wheat alone in NSW
<br />
<br />Agronomists say the grain-growing hub of the north-west is expected to have "conservatively" lost more than 120,000 hectares of wheat that was nearly ready to harvest.
<br />
<br />The region also boasts large barley and canola outputs and is in the summer planting window for crops such as cotton and sorghum.
<br />
<br />“this ongoing wet weather with flood after flood after flood is just unbelievable."
<br />
<br />Unbelievable losses, particularly when the world is already short on #wheat and other grains…
<br />
<br />“There are many impacted farmers who will be cash poor and without an income as a result of this flooding, and that has caused widespread economic pain across rural areas,"
<br />
<br />- iceagefarmer
<br />
<br />source: <a href="https://www.abc.net.au/news/rural/2022-10-24/crop-flood-damage-estimates-north-west-nsw/101569484" rel="noopener">https://www.abc.net.au/news/rural/2022-10-24/crop-flood-damage-estimates-north-west-nsw/101569484</a>
<br />
<br />#GrandSolarMinimum / #WeatherWarfare
</div>
<div class="media">
<a href="https://www.abc.net.au/news/rural/2022-10-24/crop-flood-damage-estimates-north-west-nsw/101569484" rel="noreferer nopener nofollow">Crops a 'complete write-off' as wheat losses pass $150m in flood-hit north-west NSW</a>
<div>The fourth-worst flood in Moree since records began has wiped out more than 120,000 hectares of wheat that was nearly harvest-ready.</div>
</div>
</div>
</li>
<li class="message type-message" id="3178">
<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="#3178">#3178</a>
<span class="date">02:15 PM, 04 Nov 2022</span>
</div>
<div class="text">
France trying desperately to restart nuclear reactors, but labor union strike delaying maintenace!
<br />
<br />France generates roughly 70% of its electricity from a nuclear fleet of 56 reactors, all operated by EDF. However, many of them have been closed down for maintenance, some due to corrosion-related issues. Currently, only 31 units are reportedly operating. EDF has pledged to restart all shutdown reactors before winter to avoid power shortages in the country.
<br />
<br />However, since October 6, there have been strikes among EDF employees involved in repair work at 19 reactors, delaying maintenance by several weeks.
<br />
<br />Last month, the French national electricity grid operator RTE warned that it would not rule out the risk of blackouts this winter due to prolonged strikes halting the repair.
<br />
<br />[this announcement, as it is revealed that UK was running drills about managing extended blackouts and resulting crises … it is clear what is planned for the #EnergyCrisis]
<br />
<br />- iceagefarmer
<br />
<br />src: <a href="https://www.bignewsnetwork.com/news/273030702/france-to-restart-nuclear-reactors---energy-ministry" rel="noopener">https://www.bignewsnetwork.com/news/273030702/france-to-restart-nuclear-reactors---energy-ministry</a>
</div>
<div class="media">
<a href="https://www.bignewsnetwork.com/news/273030702/france-to-restart-nuclear-reactors---energy-ministry" rel="noreferer nopener nofollow">France to restart nuclear reactors - energy ministry</a>
<div>Six nuclear units are expected to restart soon following repairs according to the French Energy Ministry Read Full Article at RTcom</div>
</div>
</div>
</li>
<li class="message type-message" id="3179">
<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="#3179">#3179</a>
<span class="date">02:20 PM, 04 Nov 2022</span>
</div>
<div class="text">
UK draws up emergency plan for extended blackouts and resulting crises, & potential undersea cable attacks
<br />
<br />The UK government is laying the groundwork for a "worst-case scenario" of week- or longer blackouts.
<br />
<br />The “official sensitive” document warns any outage could cause “severe” knock-on disruption to food, transport, water supply, communications and energy sectors.
<br />
<br />Plans include prioritizing access to food for the young and elderly, preserving two analog radio stations on backup power, and rationing households by “intermittent access” to grid power.
<br />
<br />It could also apply if there is an attack from another state on sub-sea power cables. [!!!]
<br />
<br />[IAF: do you have a backup way to cook/heat your home?]
<br />
<br />- iceagefarmer
<br />
<br />src: <a href="https://uk.news.yahoo.com/uk-blackouts-looming-heres-happen-155402344.html" rel="noopener">https://uk.news.yahoo.com/uk-blackouts-looming-heres-happen-155402344.html</a>
</div>
<div class="media">
<a href="https://uk.news.yahoo.com/uk-blackouts-looming-heres-happen-155402344.html" rel="noreferer nopener nofollow">Are UK Blackouts Looming? Here's What Will Happen In The 'Worst-Case Scenario'</a>
<div>Emergency plans are being drawn up by the government in case there are national power outages.</div>
</div>
</div>
</li>
<li class="message type-message" id="3180">
<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="#3180">#3180</a>
<span class="date">02:25 PM, 04 Nov 2022</span>
</div>
<div class="text">
Germany Backstops Commodity Traders as War Drives Resource Dash
<br />
<br />[ IAF: This is basically akin to nationalizing the entire commodities market — so long free market as we dash towards #AbsoluteZero carbon agenda! ]
<br />
<br />Germany is offering loan guarantees to commodity trading houses to buy energy and key metals, as Russia’s invasion of Ukraine sparks a global scramble for resource security.
<br />
<br />Trafigura Group, the world’s biggest trader of copper, has already agreed to supply German customers with non-Russian metals for the next five years, helped by $800 million in bank credit that’s ultimately guaranteed by the German government. The trading house is now discussing a similar deal for liquefied natural gas, according to people familiar with the situation, and commodity bankers are pitching more deals that would have state guarantees to other traders. [Yeah, I’m sure the bankers would love to pitch many deals with all risk pushed to sovereign! ]
<br />
<br />- iceagefarmer
<br />
<br />src: <a href="https://www.bloomberg.com/news/articles/2022-11-02/germany-backstops-traders-in-war-driven-dash-for-commodities?leadSource=uverify%20wall" rel="noopener">https://www.bloomberg.com/news/articles/2022-11-02/germany-backstops-traders-in-war-driven-dash-for-commodities?leadSource=uverify%20wall</a>
<br />
<br />#EnergyCrisis #EU #Germany
</div>
<div class="media">
<a href="https://www.bloomberg.com/news/articles/2022-11-02/germany-backstops-traders-in-war-driven-dash-for-commodities?leadSource=uverify%20wall" rel="noreferer nopener nofollow">Germany Backstops Commodity Traders as War Drives Resource Dash</a>
<div>Germany is offering loan guarantees to commodity trading houses to buy energy and key metals, as Russia’s invasion of Ukraine sparks a global scramble for resource security.</div>
</div>
</div>
</li>
<li class="message type-message" id="3181">
<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="#3181">#3181</a>
<span class="date">02:39 PM, 04 Nov 2022</span>
</div>
<div class="text">
“Global societal collapse “ warns 42-year old hedge fund with near perfect record
<br />
<br />[So much for the soft landing.]
<br />
<br />The world is “on the path to hyperinflation”, which could lead to “global societal collapse and civil or international strife.”
<br />
<br />The firm, led by billionaire Paul Singer and Jonathan Pollock, told its clients that “investors should not assume they have ‘seen everything’” just because they have been through the peaks and troughs of the 1987 crash, the dot-com boom, and the 2008 global financial crisis, or previous bear and bull markets.
<br />
<br />They added that the “extraordinary” period of cheap money is coming to an end and has “made possible a set of outcomes that would be at or beyond the boundaries of the entire post-WWII period.”
<br />
<br />https://www.marketwatch.com/story/hedge-fund-giant-elliott-warns-looming-hyperinflation-could-lead-to-global-societal-collapse-11667470081
</div>
<div class="media">
<a href="https://www.marketwatch.com/story/hedge-fund-giant-elliott-warns-looming-hyperinflation-could-lead-to-global-societal-collapse-11667470081" rel="noreferer nopener nofollow">Hedge fund giant Elliott warns looming hyperinflation could lead to 'global societal collapse'</a>
<div>Hedge fund giant Elliott Management has warned that markets have not fallen enough yet and the world is hurling towards the worst financial crisis since the...</div>
</div>
</div>
</li>
<li class="message type-message" id="3182">
<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="#3182">#3182</a>
<span class="date">02:54 PM, 04 Nov 2022</span>
</div>
<div class="text">
Threat of a nationwide strike by U.S. freight railroad workers still looms...
<br />
<br />2 unions have rejected a proposed deal with railroads, while 6 have approved it.
<br />
<br />Others are still deciding, with votes of the 2 largest rail workers’ unions coming mid-November.
<br />
<br />#usa #SupplyChain
</div>
<div class="media">
<a href="media/3182.jpg">
<img src="media/thumb_3182.jpg" class="thumb" /><br />
<span class="filename">photo_2022-11-04_14-54-54.jpg</span>
</a>
</div>
</div>
</li>
<li class="day" id="2022-11-06">
<span class="title">
06 November 2022
</span>
</li>
<li class="message type-message" id="3183">
<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="#3183">#3183</a>
<span class="date">03:43 PM, 06 Nov 2022</span>
</div>
<div class="text">
UK confirms it will not insure ships carrying Russian oil (90% of insurers now)
<br />
<br />The UK has gone completely mad, as the treasury has confirmed it will not allow any British insurers to cover ships carrying Russian oil from December 5.
<br />
<br />By December 5, tanker owners that fly any European Union flag or carry P&I insurance from an EU or UK club can no longer have crude oil onboard that originated in Russia, unless Russia has sold the crude to the buyer at or under a price cap pushed for by G7 members. The US is expected to join the insurance ban shortly meaning more than 90% of the world’s insurers will shun Russian-linked crude tanker business from next month.
<br />
<br />[IAF: remember the #AbsoluteZero plan was to eliminate shipping by 2030]
<br />
<br />“We continue to stand by Ukraine in the face of Putin’s barbaric and illegal invasion,” UK finance minister Jeremy Hunt said
<br />
<br />#shipping
<br />
<br />https://splash247.com/uk-confirms-it-will-not-insure-ships-carrying-russian-oil/
</div>
<div class="media">
<a href="https://splash247.com/uk-confirms-it-will-not-insure-ships-carrying-russian-oil/" rel="noreferer nopener nofollow">UK confirms it will not insure ships carrying Russian oil - Splash247</a>
<div>The UK treasury has confirmed it will not allow any British insurers to cover ships carrying Russian oil from December 5. By December 5, tanker owners that fly any European Union flag or carry P&I insurance from an EU or UK club can no longer have crude oil onboard that originated in Russia, unless Russia …</div>
</div>
</div>
</li>
<li class="day" id="2022-11-07">
<span class="title">
07 November 2022
</span>
</li>
<li class="message type-message" id="3184">
<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="#3184">#3184</a>
<span class="date">02:35 PM, 07 Nov 2022</span>
</div>
<div class="text">
DIESEL SHORTAGE: I’ve been hearing an increased number of reports of diesel outages.
<br />
<br />It’s been spotty for the last few weeks, localized issues, but now seems to really be hitting home.
<br />
<br />Above is Allentown, PA.
<br />
<br /> What are you seeing in your neck of the woods?
<br />
<br />Are they going to pull the rug after the election?
<br />
<br />It’s a good day to top off tanks, charge batteries, rotate supplies, …
<br />
<br />#usa #diesel #AbsoluteZero
</div>
<div class="media">
<a href="media/3184.jpg">
<img src="media/thumb_3184.jpg" class="thumb" /><br />
<span class="filename">photo_2022-11-07_14-35-08.jpg</span>
</a>
</div>
</div>
</li>
<li class="day" id="2022-11-08">
<span class="title">
08 November 2022
</span>
</li>
<li class="message type-message" id="3185">
<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="#3185">#3185</a>
<span class="date">03:47 PM, 08 Nov 2022</span>
</div>
<div class="text">
Spain's Largest Hydro-Power Plants To Halt Operations As Drought Worsens
<br />
<br />#water #EnergyCrisis #eu
<br />
<br />https://www.bnnbloomberg.ca/drought-forces-one-of-spain-s-largest-hydro-power-plants-to-halt-1.1842645
</div>
<div class="media">
<a href="https://www.bnnbloomberg.ca/drought-forces-one-of-spain-s-largest-hydro-power-plants-to-halt-1.1842645" rel="noreferer nopener nofollow">Drought Forces One of Spain’s Largest Hydro-Power Plants to Halt</a>
<div>Spanish utility Endesa SA is set to shut down output at the country’s fifth-largest hydropower plant after drought-like conditions caused reservoir levels to fall below the minimum needed to keep it running.</div>
</div>
</div>
</li>
</ul>
</section>
<section class="dayline">
<ul class="index">
<li class="day-2022-11-01">
<a href="2022-11.html#2022-11-01">
01 Nov 2022
</a>
</li>
<li class="day-2022-11-02">
<a href="2022-11.html#2022-11-02">
02 Nov 2022
</a>
</li>
<li class="day-2022-11-03">
<a href="2022-11.html#2022-11-03">
03 Nov 2022
</a>