-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2021-09.html
3865 lines (3239 loc) · 175 KB
/
2021-09.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 Sep 2021 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 Sep 2021 page 1" />
<meta property="og:description" content="iceagefarmer Telegram archive" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://milahu.github.io/iceagefarmer/.html" />
<meta property="og:image" content="https://milahu.github.io/iceagefarmer/static/thumb.png" />
<link rel="alternate" type="application/rss+xml" title="RSS feed " href="index.xml" />
<link rel="alternate" type="application/atom+xml" title="Atom feed " href="index.atom" />
<!--
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
-->
<link href="static/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
div.logo > a { display: block; height: 64px; width: 64px; border-radius: 100%; position: relative; overflow: hidden; }
</style>
</head>
<body>
<div class="wrap">
<div class="container">
<nav class="nav">
<a href="./">iceagefarmer</a>
<label class="burger" for="burger" tabindex="0"><span></span><span></span><span></span></label>
</nav>
<input type="checkbox" id="burger" />
<section class="sidebar" id="sidebar">
<header class="header">
<div class="logo">
<a href="https://milahu.github.io/iceagefarmer">
<img src="media/avatar_1392849104.jpg" alt="" />
</a>
<div class="desc">
<a href="https://t.me/iceagefarmer" rel="noreferer nopener nofollow">iceagefarmer</a>
<br>Telegram archive<br><div class="github-url" style="display:inline">(<a href="https://github.com/milahu/iceagefarmer">Github</a>)</div>
</div>
</div>
</header>
<ul class="timeline index">
<li>
<h3 class="year"><a href="2022-01.html">2022</a></h3>
<ul class="months">
<li>
<a href="2022-11.html">
Nov 2022
</a>
</li>
<li>
<a href="2022-10.html">
Oct 2022
</a>
</li>
<li>
<a href="2022-09.html">
Sep 2022
</a>
</li>
<li>
<a href="2022-08.html">
Aug 2022
</a>
</li>
<li>
<a href="2022-07.html">
Jul 2022
</a>
</li>
<li>
<a href="2022-06.html">
Jun 2022
</a>
</li>
<li>
<a href="2022-05.html">
May 2022
</a>
</li>
<li>
<a href="2022-04.html">
Apr 2022
</a>
</li>
<li>
<a href="2022-03.html">
Mar 2022
</a>
</li>
<li>
<a href="2022-02.html">
Feb 2022
</a>
</li>
<li>
<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 class="selected">
<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="2021-09-03">
<span class="title">
03 September 2021
</span>
</li>
<li class="message type-message" id="1939">
<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="#1939">#1939</a>
<span class="date">04:06 PM, 03 Sep 2021</span>
</div>
<div class="text">
I keep re-reading this and can’t believe it’s real.
<br />
<br />Build new systems.
<br />
<br />Push mass non-compliance.
</div>
<div class="media">
<a href="media/1939.jpg">
<img src="media/thumb_1939.jpg" class="thumb" /><br />
<span class="filename">photo_2021-09-03_16-06-53.jpg</span>
</a>
</div>
</div>
</li>
<li class="day" id="2021-09-04">
<span class="title">
04 September 2021
</span>
</li>
<li class="message type-message" id="1940">
<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="#1940">#1940</a>
<span class="date">07:33 PM, 04 Sep 2021</span>
</div>
<div class="text">
Everything going to plan then! (Grow your own food!!)
<br />
<br />Food manufacturing in the UK is under such strain due to staff shortages that some production may have to move out of the country, a retail group has said.
<br />Andrew Opie from the British Retail Consortium (BRC) said shortages of HGV drivers and other supply chain staff meant that the sector was "just on the edge of coping" right now.
<br />
<br />https://www.bbc.co.uk/news/business-58425516
</div>
<div class="media">
<a href="https://www.bbc.co.uk/news/business-58425516" rel="noreferer nopener nofollow">Food production in the UK at risk of moving overseas, warns industry</a>
<div>A retail group says shortages of drivers and other staff mean the sector is "just on the edge of coping".</div>
</div>
</div>
</li>
<li class="day" id="2021-09-05">
<span class="title">
05 September 2021
</span>
</li>
<li class="message type-message" id="1941">
<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="#1941">#1941</a>
<span class="date">12:25 AM, 05 Sep 2021</span>
</div>
<div class="text">
<a href="https://vancouversun.com/news/perfect-storm-will-cause-b-c-food-prices-to-rise" rel="noopener">https://vancouversun.com/news/perfect-storm-will-cause-b-c-food-prices-to-rise</a>
</div>
<div class="media">
<a href="https://vancouversun.com/news/perfect-storm-will-cause-b-c-food-prices-to-rise" rel="noreferer nopener nofollow">'Perfect storm' will cause B.C. food prices to rise</a>
<div>The challenges faced by B.C. farmers this summer aren't unique and could have significant impacts on the province's food-supply system.</div>
</div>
</div>
</li>
<li class="message type-message" id="1942">
<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="#1942">#1942</a>
<span class="date">02:55 AM, 05 Sep 2021</span>
</div>
<div class="text">
“Brazilian soybean farmers are keeping their crops instead of selling them because they expect prices to rise further as global supplies tighten.”
<br />
<br />https://www.thepigsite.com/news/2021/09/brazils-soy-farmers-are-hoarding-their-crops-in-hopes-that-prices-will-rise
</div>
<div class="media">
<a href="https://www.thepigsite.com/news/2021/09/brazils-soy-farmers-are-hoarding-their-crops-in-hopes-that-prices-will-rise" rel="noreferer nopener nofollow">Brazil’s soy farmers are hoarding their crops in hopes that prices will rise</a>
</div>
</div>
</li>
<li class="message type-message" id="1943">
<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="#1943">#1943</a>
<span class="date">05:56 AM, 05 Sep 2021</span>
</div>
<div class="text">
Whoa! FBI warns of ransomware gangs targeting food, agriculture orgs
<br />
<br />The FBI says ransomware gangs are actively targeting and disrupting the operations of organizations in the food and agriculture sector, causing financial loss and directly affecting the food supply chain.
<br />
<br />Ransomware gangs started focusing their attacks against this industry sector after food and agriculture orgs have become increasingly dependent on smart tech, industrial control systems (ICS), and internet-based automation systems.
<br />
<br />"Food and agriculture businesses victimized by ransomware suffer significant financial loss resulting from ransom payments, loss of productivity, and remediation costs.”
<br />
<br />#Cyberpandemic
<br />
<br />https://www.bleepingcomputer.com/news/security/fbi-warns-of-ransomware-gangs-targeting-food-agriculture-orgs
</div>
<div class="media">
<a href="https://www.bleepingcomputer.com/news/security/fbi-warns-of-ransomware-gangs-targeting-food-agriculture-orgs/" rel="noreferer nopener nofollow">FBI warns of ransomware gangs targeting food, agriculture orgs</a>
<div>The FBI says ransomware gangs are actively targeting and disrupting the operations of organizations in the food and agriculture sector, causing financial loss and directly affecting the food supply chain.</div>
</div>
</div>
</li>
<li class="message type-message" id="1944">
<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="#1944">#1944</a>
<span class="date">09:16 PM, 05 Sep 2021</span>
</div>
<div class="text">
Beef giant Brazil halts China exports after confirming two mad cow disease cases
<br />
<br />Prions in the food supply!
<br />
<br />SAO PAULO, Sept 4 (Reuters) - Brazil, the world's largest beef exporter, has suspended beef exports to its No. 1 customer China after confirming two cases of "atypical" mad cow disease in two separate domestic meat plants, the agriculture ministry said on Saturday.
<br />
<br />The suspension, which is part of an animal health pact agreed between China and Brazil and is designed to allow Beijing time to take stock of the problem, begins immediately, the ministry said in a statement. China will decide when to begin importing again, it added.
<br />
<br />The suspension is a major blow for Brazilian farmers: China and Hong Kong buy more than half of Brazil's beef exports. [IAF: and for hungry China!]
<br />
<br />The cases were identified in meat plants in the states of Mato Grosso and Minas Gerais, the ministry said. It said they were the fourth and fifth cases of "atypical" mad cow disease that have been detected in Brazil in 23 years.
<br />
<br />It said "atypical" mad cow disease develops spontaneously and is not related to eating contaminated foods. Brazil has never had a case of "classic" mad cow disease, it said.
<br />
<br />#PrionDisease
<br />
<br />https://www.reuters.com/business/healthcare-pharmaceuticals/beef-giant-brazil-halts-china-exports-after-confirming-two-mad-cow-disease-cases-2021-09-04/
</div>
<div class="media">
<a href="https://www.reuters.com/business/healthcare-pharmaceuticals/beef-giant-brazil-halts-china-exports-after-confirming-two-mad-cow-disease-cases-2021-09-04/" rel="noreferer nopener nofollow">Beef giant Brazil halts China exports after confirming two mad cow disease cases</a>
<div>Brazil, the world's largest beef exporter, has suspended beef exports to its No. 1 customer China after confirming two cases of "atypical" mad cow disease in two separate domestic meat plants, the agriculture ministry said on Saturday.</div>
</div>
</div>
</li>
<li class="day" id="2021-09-06">
<span class="title">
06 September 2021
</span>
</li>
<li class="message type-message" id="1945">
<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="#1945">#1945</a>
<span class="date">04:51 AM, 06 Sep 2021</span>
</div>
<div class="text">
Wow. F4 - “everything is gone”
<br />
<br />New Jersey’s Largest Dairy Devastated by Hurricane Ida
<br />
<br />After severe weather associated with the remnants of Hurricane Ida sweeping through the Northeast, a tornado touched down in Mullica Hills, New Jersey, devastating the state’s largest dairy farm, Wellacrest Farms.
<br />
<br />The Eachus family owns and operates Wellacrest Farms, home to 1,400 Holsteins cows. The family says they are still trying to process what quickly unfolded and the damage left behind.
<br />
<br />“You see this out West. You never think it’s going to be in your backyard,” says owner Marianne Eachus. “The devastation is just … everything is gone.”
<br />
<br />The National Weather Service has confirmed five tornadoes touched down in New Jersey and eastern Pennsylvania Wednesday evening during the fierce thunderstorms that were triggered by the leftovers of Hurricane Ida.
<br />
<br />The F4 tornado that ripped through Mullica Hills, devastated Wellacrest Farms, toppling two 80’ silos, damaging grain bins and flattening one of the farm’s free stall barns. The family reports that all but one barn was damaged from the storm.
<br />
<br />“We can milk by using generators for power,” Karlie Eachus says. “We were able to fix all the milking parlor mechanical issues and bulk tank issues on Wednesday evening with the help of a specialist.”
<br />
<br />https://www.agweb.com/weather/everything-gone-new-jerseys-largest-dairy-devastated-hurricane-ida
</div>
<div class="media">
<a href="https://www.agweb.com/weather/everything-gone-new-jerseys-largest-dairy-devastated-hurricane-ida" rel="noreferer nopener nofollow">‘Everything is Gone’ New Jersey’s Largest Dairy Devastated by Hurricane Ida</a>
<div>“You see this out West. You never think it’s going to be in your backyard,” says owner Marianne Eachus. “The devastation is just … everything is gone.”</div>
</div>
</div>
</li>
<li class="message type-message" id="1946">
<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="#1946">#1946</a>
<span class="date">05:55 AM, 06 Sep 2021</span>
</div>
<div class="text">
Ballet dancers are let in - but not skilled food labor:
<br />
<br />Farms are set to kill and burn 100,000 pigs because of a post-Brexit butchers' shortage: Industry chiefs vent fury at Priti Patel for leaving key staff off list - but keeping ballet dancers
<br />
<br />https://www.dailymail.co.uk/news/article-9958663/Farms-set-kill-burn-100-000-pigs-post-Brexit-butchers-shortage.html
</div>
<div class="media">
<a href="https://www.dailymail.co.uk/news/article-9958663/Farms-set-kill-burn-100-000-pigs-post-Brexit-butchers-shortage.html" rel="noreferer nopener nofollow">Farms are set to kill and burn 100,000 pigs because of a post-Brexit butchers' shortage: Industry chiefs vent fury at Priti Patel for leaving key staff off list - but keeping ballet dancers</a>
<div>Leading figures in the livestock industry say that the animals face being killed and burned because Home Secretary Priti Patel has failed to include the job on a list of shortage occupations.</div>
</div>
</div>
</li>
<li class="message type-message" id="1947">
<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="#1947">#1947</a>
<span class="date">05:58 AM, 06 Sep 2021</span>
</div>
<div class="text">
“Bare shelves. Long delays. Goods that just don't show up at all.”
<br />
<br />Wild weather, labor and equipment shortages, and a snarled global supply chain have hit everything from chips to cooking equipment—and food. Now, around the globe, prices for staple commodities from beef to wheat to sugar and vegetable oil are steadily rising, fueled by a mix of drought, fires, frost—and COVID-19 labor shortages.
<br />
<br />Prices globally are up nearly 33% since the same period last year, according to the UN Food and Agriculture Organization (FAO)'s monthly food price index, released on Thursday. From July, prices are up by over 3%. Overall, this year the FAO's index puts food prices at levels not seen since 2011, the
<br />
<br />https://fortune.com/2021/09/02/food-prices-fao-un-sugar-wheat-palm-oil/
</div>
<div class="media">
<a href="https://fortune.com/2021/09/02/food-prices-fao-un-sugar-wheat-palm-oil/" rel="noreferer nopener nofollow">First came the frost and drought. Now comes the rise in food prices</a>
<div>Food prices have jumped by more than 30% over the last year, due mainly to drought and adverse weather</div>
</div>
</div>
</li>
<li class="message type-message" id="1948">
<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="#1948">#1948</a>
<span class="date">06:07 AM, 06 Sep 2021</span>
</div>
<div class="text">
As shortages worsen, expect governments to take more control like this:
<br />-
<br />
<br />Sri Lanka raids sugar stocks as food shortages bite
<br />
<br />Sri Lankan government officials on Wednesday raided private warehouses to seize thousands of tonnes of sugar, a day after a state of emergency was declared over food shortages caused by a currency crisis.
<br />
<br />"The objective is to prevent hoarding," Major General Senarath Niwunhella, who was named commissioner general of essential services on Tuesday, told AFP. He denied the sugar was being confiscated.
<br />
<br />"Today we started with sugar and will expand this action to other commodities like wheat flour and rice too if importers do not release their stocks to the market," he said
<br />
<br />https://news.yahoo.com/sri-lanka-raids-sugar-stocks-122850058.html
</div>
<div class="media">
<a href="https://news.yahoo.com/sri-lanka-raids-sugar-stocks-122850058.html" rel="noreferer nopener nofollow">Sri Lanka raids sugar stocks as food shortages bite</a>
<div>Sri Lankan government officials on Wednesday raided private warehouses to seize thousands of tonnes of sugar, a day after a state of emergency was declared over food shortages caused by a currency crisis.</div>
</div>
</div>
</li>
<li class="message type-message" id="1949">
<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="#1949">#1949</a>
<span class="date">05:41 PM, 06 Sep 2021</span>
</div>
<div class="text">
TOTAL INSANITY: Dutch cabinet plans to TAKE FARMS FROM FARMERS to “combat global warming”.
<br />
<br />"Coercion is no longer taboo.”
<br />__
<br />
<br />“The Ministries of Finance and Agriculture have advanced plans to buy out hundreds of farmers and, if necessary, expropriate them, in order to quickly reduce nitrogen emissions in the Netherlands. This is apparent from documents that have been viewed by NRC . The cost of this operation could amount to 17 billion euros. The plans point to a rigorously different approach, in which coercion is no longer taboo.
<br />
<br />“The other scenario, from the Ministry of Agriculture, is even more ambitious and foresees a major transformation of the Dutch agricultural sector. The government also buys the land from the farmers, which can then be used for more sustainable forms of agriculture: fewer animals [!! IAF: moving to WEF’s “post-animal economy”], less environmental pollution. That costs a lot of money: up to 17 billion.
<br />
<br />#WarOnFarms #WarOnMeat #Netherlands
<br />
<br />https://www.nrc.nl/nieuws/2021/09/05/kabinet-plan-voor-onteigening-2-a4057198
</div>
<div class="media">
<a href="https://www.nrc.nl/nieuws/2021/09/05/kabinet-plan-voor-onteigening-2-a4057198" rel="noreferer nopener nofollow">Kabinet heeft plannen voor onteigening honderden boeren</a>
<div>Stikstofuitstoot: Er zijn vergevorderde plannen om honderden boeren uit te kopen en indien nodig te onteigenen; boerenorganisaties ‘denken mee’.</div>
</div>
</div>
</li>
<li class="message type-message" id="1950">
<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="#1950">#1950</a>
<span class="date">06:15 PM, 06 Sep 2021</span>
</div>
<div class="text">
So governments buy up all our assets then debase the currency so any money we have from selling our assets is worthless and we move into the digital credit era with the governments ‘looking after us’…. At least we will own nothing and be happy…
</div>
</div>
</li>
<li class="day" id="2021-09-08">
<span class="title">
08 September 2021
</span>
</li>
<li class="message type-message" id="1951">
<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="#1951">#1951</a>
<span class="date">03:30 AM, 08 Sep 2021</span>
</div>
<div class="text">
Why Woolworths, Coles and Aldi shelves across Sydney are looking bare
<br />
<br />Frustrated shoppers took to social media to complain about all the empty shelves at their local supermarket - but panic buying isn’t to blame.
<br />
<br />Empty supermarket shelves are greeting customers at NSW stores in what is a flow-on effect of the state’s ongoing coronavirus lockdown.
<br />
<br />Over the weekend, as the state entered its 11th week of lockdown, frustrated shoppers at Woolworths, Coles and Aldi stores in Greater Sydney took to social media to share pictures of seriously depleted shopping aisles.
<br />
<br />Photos show the fresh fruit and vegetables, meat, dairy and bakery sections all looking a little bare.
<br />
<br />https://www.news.com.au/finance/business/retail/why-woolworths-coles-and-aldi-shelves-across-sydney-are-looking-bare/news-story/5a0467f1139f6b109002588ba1fccc3b
</div>
<div class="media">
<a href="https://www.news.com.au/finance/business/retail/why-woolworths-coles-and-aldi-shelves-across-sydney-are-looking-bare/news-story/5a0467f1139f6b109002588ba1fccc3b" rel="noreferer nopener nofollow">Why Woolies, Coles, Aldi shelves are empty</a>
<div><p>Empty supermarket shelves are greeting customers at NSW stores in what is a flow-on effect of the state’s ongoing coronavirus lockdown. </p></div>
</div>
</div>
</li>
<li class="day" id="2021-09-09">
<span class="title">
09 September 2021
</span>
</li>
<li class="message type-message" id="1952">
<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="#1952">#1952</a>
<span class="date">02:28 AM, 09 Sep 2021</span>
</div>
<div class="text">
When asked if the new steps will affect Americans’ lives, Psaki said, “it depends on if you’re vaccinated or not.”
<br />
<br />“There are six steps the president’s announcing, there will be new components,” Psaki said. “Some of that will be related to access to testing, some will be related to mandates, some will be related to how we ensure kids will be protected in schools.”
<br />
<br />"There will be new components that sure, will of course impact people across the country, but we’re also all working together to get the virus under control, to return to our normal lives,” she added.”
<br />
<br />... They are really trying to light the fuse…
<br />
<br />https://thehill.com/homenews/administration/571364-white-house-signals-new-measures-coming-for-unvaccinated-americans
</div>
<div class="media">
<a href="https://thehill.com/homenews/administration/571364-white-house-signals-new-measures-coming-for-unvaccinated-americans" rel="noreferer nopener nofollow">White House signals new COVID-19 measures coming for unvaccinated Americans</a>
<div>President Biden will announce on Thursday new steps in his administration's COVID-19 response that involves testing, mandates, and school measures depending on a person's vaccination status, the</div>
</div>
</div>
</li>
<li class="message type-message" id="1954">
<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="#1954">#1954</a>
<span class="date">05:33 AM, 09 Sep 2021</span>
</div>
<div class="text">
"Covid-19 was a disaster for the pork industry"
<br />
<br />“It was a complete mess, a terrible mess in terms of animal welfare,” Dr Grandin says, “and it was a horrible waste of food. There were food kitchens begging for food and we sent pigs to the dump.” It is estimated that about 350,000 pigs were euthanised on US farms in 2020.
<br />
<br />Dr Grandin asserts that programmes must be put in place so that what happened in 2020 in the US – when large numbers of healthy pigs were destroyed on-farm because of severely curtailed slaughter plant capacity – never happens again.[IAF: I agree — like local producers and processors, not disgusting Big Meat bottlenecks] - Massive capacity reductions were caused by physical distancing requirements and by temporary plant shutdowns to stop Covid-19 transmission, worker illness and death. The situation was exacerbated because US pig production had grown to address the import needs of China, where African Swine Fever had ravaged the commercial pig population from 2018
<br />
<br />https://www.pigprogress.net/World-of-Pigs1/Articles/2021/9/Dr-Temple-Grandin-Covid-19-was-a-disaster-for-the-pork-industry-790026E/
</div>
<div class="media">
<a href="https://www.pigprogress.net/World-of-Pigs1/Articles/2021/9/Dr-Temple-Grandin-Covid-19-was-a-disaster-for-the-pork-industry-790026E/" rel="noreferer nopener nofollow">Dr Temple Grandin: "Covid-19 was a disaster for the pork industry" - Pig Progress</a>
</div>
</div>
</li>
<li class="message type-message" id="1955">
<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="#1955">#1955</a>
<span class="date">05:35 AM, 09 Sep 2021</span>
</div>
<div class="text">
“Grains still shipping” (for how long?)
<br />
<br />Brazil truckers block highways, Bolsonaro asks protestors to stand down
<br />
<br />SAO PAULO (Reuters) -Brazilian truckers staged demonstrations throughout Brazil on Wednesday, partially blocking key routes in several states and prompting President Jair Bolsonaro to ask the protestors to stand down.
<br />
<br />Truckers sympathetic to the president had partially blockaded highways in 16 states as of the late evening, briefly shutting down traffic in two locations, according to a statement from the Infrastructure Ministry.
<br />
<br />In the late morning, federal Brazil's highway police (PRF) had reported 53 blockades on federal roads tied to "social and political events, not involving key issues for independent truckers."
<br />
<br />Bolsonaro drew tens of thousands of supporters to major cities on Tuesday, including some truckers, using a national holiday to step up his attacks on Brazil's Supreme Court and voting system. Truckers have previously demonstrated this year over high fuel prices.
<br />
<br />"Speaking to the truckers out there, who are our allies, these blockades hurt our economy," Bolsonaro said in an audio WhatsApp message sent to truckers' groups and obtained by Reuters on Wednesday night. "They cause supply shortages, inflation and hurt everyone, especially the poorest."
<br />
<br />In a separate video WhatsApp message circulating among truckers' groups and obtained by Reuters, Infrastructure Minister Tarcisio Freitas confirmed the authenticity of Bolsonaro's audio.
<br />
<br />Wednesday's blockades affected top grain-producing state Mato Grosso, as well as Minas Gerais, where fuel truckers took part in a 24-hour strike beginning on Tuesday.
<br />
<br />Blockades were also reported near the port of São Francisco do Sul in Santa Catarina and in Paraná, near Brazil's second-busiest grain port, regional PRF branches said on Twitter.
<br />
<br />Brazil's grain exporters association ANEC, which represents global merchants such as Cargill and Bunge, said the blockades were not currently affecting grain shipments to ports
<br />
<br />https://news.yahoo.com/brazil-truckers-partially-block-routes-225952916.html
</div>
<div class="media">
<a href="https://news.yahoo.com/brazil-truckers-partially-block-routes-225952916.html" rel="noreferer nopener nofollow">Brazil truckers block highways, Bolsonaro asks protestors to stand down</a>
<div>SAO PAULO (Reuters) -Brazilian truckers staged demonstrations throughout Brazil on Wednesday, partially blocking key routes in several states and prompting President Jair Bolsonaro to ask the protestors to stand down. Truckers sympathetic to the president had partially blockaded highways in 16 states as of the late evening, briefly shutting down traffic in two locations, according to a statement from the Infrastructure Ministry. In the late morning, federal Brazil's highway police (PRF) had reported 53 blockades on federal roads tied to "social and political events, not involving key issues for independent truckers."</div>
</div>
</div>
</li>
<li class="message type-message" id="1956">
<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="#1956">#1956</a>
<span class="date">07:54 PM, 09 Sep 2021</span>
</div>
<div class="text">
As doors close on the unvaccinated ...
<br />
<br />https://www.forbes.com/sites/ceciliarodriguez/2021/09/08/spain-closes-to-unvaccinated-us-travelers-following-netherlands-norway-italy-and-others/?sh=692dddee
</div>
<div class="media">
<a href="https://www.forbes.com/sites/ceciliarodriguez/2021/09/08/spain-closes-to-unvaccinated-us-travelers-following-netherlands-norway-italy-and-others/?sh=692dddee" rel="noreferer nopener nofollow">Spain Closes To Unvaccinated U.S. Travelers Following Netherlands, Norway, Italy And Others</a>
<div>One by one the European nations are tightening entry restriction for U.S. tourists. Spain has now joined the list of countries banning non-vaccinated American travelers.</div>
</div>
</div>
</li>
<li class="message type-message" id="1958">
<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="#1958">#1958</a>
<span class="date">07:55 PM, 09 Sep 2021</span>
</div>
<div class="text">
Biden to require COVID-19 vaccines for any company that has 100 or more employees:
<br />
<br />https://thehill.com/homenews/administration/571569-biden-to-unveil-covid-strategy-with-heavy-emphasis-on-vaccine
</div>
<div class="media">
<a href="https://thehill.com/homenews/administration/571569-biden-to-unveil-covid-strategy-with-heavy-emphasis-on-vaccine" rel="noreferer nopener nofollow">Biden to require COVID-19 vaccines, tests for millions of private workers</a>
<div>President Biden will announce a new rule Thursday to require all private employers with 100 or more employees to mandate vaccines or weekly testing.</div>
</div>
</div>
</li>
<li class="message type-message" id="1959">
<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="#1959">#1959</a>
<span class="date">08:11 PM, 09 Sep 2021</span>
</div>
<div class="text">
Energetically, a fuse has just been lit in the US, and I don’t think anyone fully appreciates the gravity of what is about to be unleashed. It’s been looming, but now it is undeniably in motion.
<br />
<br />That said, I also see some anxiety and fear in the comments.
<br />
<br />Remember that is their goal, to get you into a state of fear and dread - as you cannot imagine and create your own reality in that state.
<br />
<br />Take in the data about reality not to fear it, but to inform your response: create abundance and care in your family and community.
<br />
<br />Act within that sphere of influence. Stand strong.
<br />
<br />Mass non-compliance starts with YOUR non-compliance.
<br />
<br />Decentralized food systems start with your garden.
<br />
<br />Invest in tomorrow. Do great things.
<br />
<br />@iceagefarmer
</div>
</div>
</li>
<li class="message type-message" id="1960">
<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="#1960">#1960</a>
<span class="date">11:01 PM, 09 Sep 2021</span>
</div>
<div class="text">
Food is not partisan.
<br />
<br />But it looks like they want it to be.
<br />
<br />The same script used for masks/no masks now for fake food vs. real traditional foods — divide and conquer program run over our very sustenance.
<br />
<br />https://www.dailymail.co.uk/news/article-9974141/America-doesnt-run-Tofu-runs-real-food-GOP-tears-Biden-plan-crack-meat.html
</div>
<div class="media">
<a href="https://www.dailymail.co.uk/news/article-9974141/America-doesnt-run-Tofu-runs-real-food-GOP-tears-Biden-plan-crack-meat.html" rel="noreferer nopener nofollow">'America doesn't run on Tofu, it runs on real food': Republicans tear into Biden administration's plans to crack down on beef, poultry and pork industries to combat rising grocery prices</a>
<div>Florida GOP Rep. Byron Donalds (right) blamed rising grocery prices on 'Bidenomics and the socialist spending spree in Washington' in a statement to DailyMail.com.</div>
</div>
</div>
</li>
<li class="message type-message" id="1961">
<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="#1961">#1961</a>
<span class="date">11:46 PM, 09 Sep 2021</span>
</div>
<div class="text">
Authorities are limiting purchases of beer in Australia.
<br />
<br />This passes a new threshold for tyranny — and launches us into that future where our consumption habits are monitored by the state and fed into our social credit scores:
<br />
<br /> Alcohol is unhealthy, so we will police it.
<br />
<br /> Next: meat? Butter? Candy? Where does it stop? Salt?
<br />
<br />https://www.news.com.au/national/nsw-act/news/nsw-health-limits-residents-of-lockeddown-tower-block-to-six-beers-per-day/news-story/0e387ceccee145a611ddb6e38872d3d5
</div>
<div class="media">
<a href="https://www.news.com.au/national/nsw-act/news/nsw-health-limits-residents-of-lockeddown-tower-block-to-six-beers-per-day/news-story/0e387ceccee145a611ddb6e38872d3d5" rel="noreferer nopener nofollow">Six-beer limit for homes in strict lockdown</a>
<div><p>Residents in apartment blocks locked-down by NSW Health are having their alcohol deliveries policed as part of a policy to limit the number of drinks being consumed each day.</p></div>
</div>
</div>
</li>
<li class="day" id="2021-09-10">
<span class="title">
10 September 2021