-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2021-02.html
8151 lines (6507 loc) · 328 KB
/
2021-02.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 Feb 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 Feb 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>
<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 class="selected">
<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-02-01">
<span class="title">
01 February 2021
</span>
</li>
<li class="message type-message" id="214">
<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="#214">#214</a>
<span class="date">12:09 AM, 01 Feb 2021</span>
</div>
<div class="text">
The “Woke Famine”:
<br />
<br />Citing the impacts of climate change and decreased snowpack — as well as the demands of 4 million ratepayers 300 miles to the south — the DWP has told ranchers they should no longer expect free water for irrigation uses.
<br />
<br />In addition, they point out that water was never a guarantee tied to 20-year leases held by about a dozen ranchers in the area. They pay an average of $10 to $15 per year to graze on DWP property.
<br />
<br />https://www.msn.com/en-us/news/us/citing-climate-change-ladwp-ends-free-water-deal-for-long-valley-ranchers-and-sparks-anger-among-conservationists/ar-BB1deHUg
</div>
<div class="media">
<a href="https://www.msn.com/en-us/news/us/citing-climate-change-ladwp-ends-free-water-deal-for-long-valley-ranchers-and-sparks-anger-among-conservationists/ar-BB1deHUg" rel="noreferer nopener nofollow">Citing climate change, LADWP ends free water deal for Long Valley ranchers and sparks anger among conservationists</a>
<div>Since the early 1920s, the Long Valley plains east of Yosemite have inspired comparison to a rustic Western paradise — an idyllic frontier where sparkling creeks meander through lush pastures, waters teem with feisty trout and sage grouse make ostentatious displays of romance.</div>
</div>
</div>
</li>
<li class="message type-message" id="215">
<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="#215">#215</a>
<span class="date">05:08 AM, 01 Feb 2021</span>
</div>
<div class="text">
Stunning: NZ calls for “fewer cows so we can hit our climate targets:”
<br />
<br />#WarOnMeat
<br />
<br />https://www.nzherald.co.nz/nz/fewer-cows-mass-evs-what-nz-must-do-to-hit-climate-targets/K6CGQD36LFLPJ6CRDGMVNGTWZ4/
</div>
<div class="media">
<a href="https://www.nzherald.co.nz/nz/fewer-cows-mass-evs-what-nz-must-do-to-hit-climate-targets/K6CGQD36LFLPJ6CRDGMVNGTWZ4/" rel="noreferer nopener nofollow">Fewer cows, mass EVs: what NZ must do to hit climate targets - NZ Herald</a>
<div>Govt told NZ must cut cow numbers and get most Kiwis in EVs to hit climate targets.</div>
</div>
</div>
</li>
<li class="message type-message" id="216">
<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="#216">#216</a>
<span class="date">06:16 PM, 01 Feb 2021</span>
</div>
<div class="text">
More and more "Second Amendment Sanctuary" zones: cities, counties. Great to see efforts to secure freedoms at local levels. What's going on where you are?
<br />
<br />https://magicvalley.com/news/local/govt-and-politics/gooding-declares-itself-a-second-amendment-sanctuary-city/article_400a9c99-2ab1-535d-b0f9-b145b5cedff4.html
</div>
</div>
</li>
<li class="message type-message" id="217">
<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="#217">#217</a>
<span class="date">06:16 PM, 01 Feb 2021</span>
</div>
<div class="text">
Question: what does a LOCAL FOOD SANCTUARY city/county look like?
</div>
</div>
</li>
<li class="message type-message" id="218">
<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="#218">#218</a>
<span class="date">06:58 PM, 01 Feb 2021</span>
</div>
<div class="text">
Safety of Impossible's "bleeding heme" from GMO yeast being challenged in court:
<br />
<br />"FDA approved soy leghemoglobin even though it conducted none of the long-term animal studies that are needed to determine whether or not it harms human health," said Bill Freese, science policy analyst at Center for Food Safety. "This includes studies for cancer, reproductive impairment, and other adverse effects called for by FDA's Redbook, the Bible of food and color additive testing," he added. "We find this to be all the more troubling because a number of potential adverse effects were detected in a short-term rat trial: disruption of reproductive cycles and reduced uterine weights in females, and biomarkers of anemia, reduced clotting ability, and kidney problems."
<br />
<br />https://www.centerforfoodsafety.org/press-releases/6256/lawsuit-challenging-fda-approval-of-novel-genetically-engineered-color-additive-that-makes-impossible-burger-bleed-moves-forward
</div>
<div class="media">
<a href="https://www.centerforfoodsafety.org/press-releases/6256/lawsuit-challenging-fda-approval-of-novel-genetically-engineered-color-additive-that-makes-impossible-burger-bleed-moves-forward" rel="noreferer nopener nofollow">Lawsuit Challenging FDA Approval of Novel Genetically Engineered Color Additive That Makes Impossible Burger</a>
</div>
</div>
</li>
<li class="message type-message" id="219">
<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="#219">#219</a>
<span class="date">10:20 PM, 01 Feb 2021</span>
</div>
<div class="text">
How quickly can Biden/Vilsack cut all financial support to farmers? (Answer: Quickly.)
<br />
<br />Under Trump, USDA head Sonny Perdue "dusted off the little-known fund and leveraged its authority to help out producers financially hurt by retaliatory tariffs through a combination of direct payments and commodity purchases that eventually ballooned farmers’ bottom lines. The billions paid out to farmers far eclipsed the massive 2008 auto bailout, and accounted for 40 percent of farm income in 2020."
<br />
<br />Now the Biden administration wants to deploy a $30 billion pot of money in the Agriculture Department to tackle climate change, support restaurants and kickstart other programs without waiting for Congress.
<br />
<br />https://www.politico.com/news/2021/01/31/usda-agriculture-tug-of-war-463843
</div>
<div class="media">
<a href="https://www.politico.com/news/2021/01/31/usda-agriculture-tug-of-war-463843" rel="noreferer nopener nofollow">Trump left Biden a $30 billion fund used for trade wars. Biden has other plans for it.</a>
<div>A Depression-era financial institution was used by the Trump administration to dole out billions to farmers. Now the Biden team has their own ideas about how the money should be spent.</div>
</div>
</div>
</li>
<li class="day" id="2021-02-02">
<span class="title">
02 February 2021
</span>
</li>
<li class="message type-message" id="220">
<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="#220">#220</a>
<span class="date">04:23 AM, 02 Feb 2021</span>
</div>
<div class="text">
<a href="https://www.cbc.ca/news/canada/hamilton/welland-farm-expropriation-1.5893436" rel="noopener">https://www.cbc.ca/news/canada/hamilton/welland-farm-expropriation-1.5893436</a>
</div>
<div class="media">
<a href="https://www.cbc.ca/news/canada/hamilton/welland-farm-expropriation-1.5893436" rel="noreferer nopener nofollow">5th-generation farm owner in Ontario fights city plan to take her property for industrial park | CBC News</a>
<div>Marsha Rempel's family has lived on their Welland, Ont., farm for 150 years. With current industrial plots in the area almost sold out, the city has decided to expropriate her land. But the decision is likely headed for a hearing.</div>
</div>
</div>
</li>
<li class="message type-message" id="221">
<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="#221">#221</a>
<span class="date">04:24 AM, 02 Feb 2021</span>
</div>
<div class="text">
Thanks for helping this channel re-grow quickly to 7,500 !
</div>
</div>
</li>
<li class="message type-message" id="222">
<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="#222">#222</a>
<span class="date">04:43 AM, 02 Feb 2021</span>
</div>
<div class="text">
Wow! Look at that senior executives rotating between Innovative Ag companies: from Gates-funded Impossible over to Bezos-funded Plenty (indoor vertical farms):
<br />
<br />#FakeFood
<br />
<br />https://agfundernews.com/ex-impossible-foods-vp-dana-worth-on-his-new-role-at-plenty-the-future-of-indoor-farming.html
</div>
<div class="media">
<a href="https://agfundernews.com/ex-impossible-foods-vp-dana-worth-on-his-new-role-at-plenty-the-future-of-indoor-farming.html" rel="noreferer nopener nofollow">Ex-Impossible Foods VP Dana Worth on his new role at Plenty</a>
<div>After six years at Impossible Foods, Dana Worth is joining CEA startup Plenty as senior vice president - just as indoor farming begins to really heat up.</div>
</div>
</div>
</li>
<li class="message type-message" id="223">
<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="#223">#223</a>
<span class="date">06:09 AM, 02 Feb 2021</span>
</div>
<div class="text">
Brr
<br />
<br />#GlobalCooling
<br />
<br />https://www.zerohedge.com/commodities/natgas-prices-jump-11-weather-models-point-widespread-cold
</div>
<div class="media">
<a href="https://www.zerohedge.com/commodities/natgas-prices-jump-11-weather-models-point-widespread-cold" rel="noreferer nopener nofollow">Zerohedge</a>
<div>ZeroHedge - On a long enough timeline, the survival rate for everyone drops to zero</div>
</div>
</div>
</li>
<li class="message type-message" id="224">
<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="#224">#224</a>
<span class="date">06:55 AM, 02 Feb 2021</span>
</div>
<div class="text">
Canada, the world’s biggest canola grower, is running short of the oilseed six months before the next harvest, with strong export demand driving prices to nearly 13-year highs last week.
<br />
<br />https://www.reuters.com/article/us-canada-canola-prices/exports-empty-canadas-canola-bins-driving-prices-to-near-records-idUSKBN2A00EL
</div>
<div class="media">
<a href="https://www.reuters.com/article/us-canada-canola-prices/exports-empty-canadas-canola-bins-driving-prices-to-near-records-idUSKBN2A00EL" rel="noreferer nopener nofollow">Exports empty Canada's canola bins, driving prices to near records</a>
<div>Canada, the world's biggest canola grower, is running short of the oilseed six months before the next harvest, with strong export demand driving prices to nearly 13-year highs last week.</div>
</div>
</div>
</li>
<li class="message type-message" id="225">
<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="#225">#225</a>
<span class="date">05:37 PM, 02 Feb 2021</span>
</div>
<div class="text">
Poland "finds" first case of COVID in mink — will they be next to cull their 350 farms?
<br />
<br />Deliberately Collapsing food supply and ecocide.
<br />
<br />https://www.reuters.com/article/us-health-coronavirus-poland-mink-idUSKBN2A11XT
</div>
<div class="media">
<a href="https://www.reuters.com/article/us-health-coronavirus-poland-mink-idUSKBN2A11XT" rel="noreferer nopener nofollow">Poland finds first case of COVID-19 in mink</a>
<div>Poland has found its first case of COVID-19 in mink, the agriculture ministry said, raising fears of costly culls in an industry that counts over 350 farms in the country.</div>
</div>
</div>
</li>
<li class="message type-message" id="226">
<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="#226">#226</a>
<span class="date">05:46 PM, 02 Feb 2021</span>
</div>
<div class="text">
UK to burn 15 million bees because of "stupid rules" (they can no longer be imported from EU post-brexit):
<br />
<br />https://www.independent.co.uk/news/uk/politics/brexit-bees-burned-uk-eu-rules-b1796201.html
</div>
<div class="media">
<a href="https://www.independent.co.uk/news/uk/politics/brexit-bees-burned-uk-eu-rules-b1796201.html" rel="noreferer nopener nofollow">15 million baby bees could be seized and burned over Brexit rules</a>
<div>British beekeeper told his order of baby Italian bees would be destroyed if he tried to import them</div>
</div>
</div>
</li>
<li class="message type-message" id="227">
<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="#227">#227</a>
<span class="date">05:55 PM, 02 Feb 2021</span>
</div>
<div class="text">
<a href="https://www.cnn.com/2021/02/01/asia/india-internet-cut-farmers-intl-hnk/index.html" rel="noopener">https://www.cnn.com/2021/02/01/asia/india-internet-cut-farmers-intl-hnk/index.html</a>
</div>
</div>
</li>
<li class="day" id="2021-02-03">
<span class="title">
03 February 2021
</span>
</li>
<li class="message type-message" id="228">
<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="#228">#228</a>
<span class="date">05:12 PM, 03 Feb 2021</span>
</div>
<div class="text">
Meatpacking Companies, OSHA Face Investigation Over Coronavirus In Plants
<br />
<br />"Public reports indicate that under the Trump Administration, the Occupational Safety and Health Administration (OSHA) failed to adequately carry out its responsibility for enforcing worker safety laws at meatpacking plants across the country, resulting in preventable infections and deaths," Chairman Clyburn wrote to the agency. "It is imperative that the previous Administration's shortcomings are swiftly identified and rectified to save lives in the months before coronavirus vaccinations are available for all Americans.
<br />
<br />https://www.npr.org/sections/coronavirus-live-updates/2021/02/01/962877199/meatpacking-companies-osha-face-investigation-over-coronavirus-in-plants
</div>
</div>
</li>
<li class="message type-message" id="229">
<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="#229">#229</a>
<span class="date">05:17 PM, 03 Feb 2021</span>
</div>
<div class="text">
" Sadly, and incredibly, with a major global food shortage occurring, many U.S. pork producers are still losing money."
<br />
<br />Article specifies that China is rebuilding their herds not as small operations, but large factory farms that require more corn:
<br />
<br />"The Chinese government realizes that ultimately, and eventually, if this is not corrected, it could threaten their very existence. In the short term, they will pay any price for corn and any price for pork."
<br />
<br />https://www.nationalhogfarmer.com/agenda/feed-input-costs-escalating
</div>
</div>
</li>
<li class="message type-message" id="230">
<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="#230">#230</a>
<span class="date">05:23 PM, 03 Feb 2021</span>
</div>
<div class="text">
“The sector has been facing many challenges, not only because of the bad weather but also because of the pandemic, the shortage of labor to harvest, and the worrying outlook in China for our cherries."
<br />
<br />https://agroinsurance.com/en/chile-the-effects-of-the-intense-rains-in-the-fruit-sector-are-getting-worse/
</div>
</div>
</li>
<li class="message type-message" id="231">
<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="#231">#231</a>
<span class="date">05:24 PM, 03 Feb 2021</span>
</div>
<div class="text">
Chile's extreme rains damaging crops:
<br />
<br />https://agroinsurance.com/en/chile-heavy-rains-damage-grape-crop-and-more/
</div>
</div>
</li>
<li class="message type-message" id="232">
<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="#232">#232</a>
<span class="date">05:25 PM, 03 Feb 2021</span>
</div>
<div class="text">
The collection of Brazil's 2020/2021 soybean crop reached 1.9% of the cultivated area through Jan. 28, the slowest pace for this time in the season since the 2010/2011 cycle, as planting delays and rains are disrupting harvesting work.
<br />
<br />"Now, with the continuous rains in the second half of the month and the lengthening of the cycle for some of the crop, the total available ended up being even lower than we thought."
<br />
<br />Delays affecting Brazil's soybean crop are also impacting the sowing of the second corn, as analysts predicted.
<br />
<br />https://www.agriculture.com/markets/newswire/brazil-soy-harvesting-at-slowest-pace-in-10-years-agrural
</div>
<div class="media">
<a href="https://www.agriculture.com/markets/newswire/brazil-soy-harvesting-at-slowest-pace-in-10-years-agrural" rel="noreferer nopener nofollow">Brazil soy harvesting at slowest pace in 10 years - AgRural</a>
<div>By Ana ManoSAO PAULO, Feb 1 (Reuters) - The collection of Brazil's 2020/2021 soybean crop reached 1.9% of the cultivated area through Jan. 28, the slowest pace for this time in the season since the 2010/2011 cycle, as planting delays and rains are disrupting harvesting work.In a statement on Monday, agribusiness consultancy AgRural said the amount harvested is about 2.5 million tonnes, most of it in Mato Grosso state. This compares with 11.7 million tonnes collected at the same time last year, when farmers had reaped 8.9% of the area planted with soy nationwide.</div>
</div>
</div>
</li>
<li class="message type-message" id="233">
<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="#233">#233</a>
<span class="date">05:41 PM, 03 Feb 2021</span>
</div>
<div class="text">
The bone-chilling cold, coupled with fog, imposes the risk of affecting seedlings. Besides, the production costs is skyrocketing for additional measures taken to cope with the weather, they said.
<br />
<br />Besides, farmers are facing difficulties working on croplands due to the bitter cold, said several people of the profession.
<br />
<br />#GlobalCooling
<br />
<br />https://www.thedailystar.net/backpage/news/farmers-north-fear-crop-loss-2031877
</div>
<div class="media">
<a href="https://www.thedailystar.net/backpage/news/farmers-north-fear-crop-loss-2031877" rel="noreferer nopener nofollow">Farmers in North fear crop loss</a>
<div>Potato and Boro farmers in the northern region of the country are fearing a huge loss this season due to adverse weather.</div>
</div>
</div>
</li>
<li class="message type-message" id="234">
<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="#234">#234</a>
<span class="date">05:42 PM, 03 Feb 2021</span>
</div>
<div class="text">
Spain - Low temperatures reducing productivity by up to 30%
<br />
<br />The intense cold and severe frosts registered last week in the fields of Huelva have forced raspberry producers to resort to a technique almost as old as humanity to save their productions inside the greenhouses: fire, with the use of so-called anti-frost candles.
<br />
<br />#GlobalCooling
<br />
<br />https://agroinsurance.com/en/spain-huelva-raspberry-producers-resort-to-fire-to-avoid-frost/
</div>
</div>
</li>
<li class="message type-message" id="235">
<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="#235">#235</a>
<span class="date">05:44 PM, 03 Feb 2021</span>
</div>
<div class="text">
"Alt-Breastmilk"
<br />
<br />TurtleTree Scientific — the B2B arm of Singaporean cell-based breastmilk startup TurtleTree Labs — has entered into a “fully funded collaboration” with US biotech company Dyadic International.
<br />
<br />The pair will co-develop recombinant growth factors which can be manufactured in bioreactors at high yields and relatively lower cost.
<br />Dyadic says its C1 gene expression platform can lower production costs, accelerate production timeframes, and improve performance of drugs, vaccines, and other biological products.
<br />
<br />https://agfundernews.com/dyadic-partners-singapore-startup-turtletree-on-growth-factors.html
</div>
<div class="media">
<a href="https://agfundernews.com/dyadic-partners-singapore-startup-turtletree-on-growth-factors.html" rel="noreferer nopener nofollow">US biotech Dyadic partners Singapore startup TurtleTree on growth factors</a>
<div>Dyadic and TurtleTree will collaborate on growing recombinant proteins that can be used as alt-protein growth factors, affordably and at industrial scale.</div>
</div>
</div>
</li>
<li class="message type-message" id="236">
<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="#236">#236</a>
<span class="date">05:45 PM, 03 Feb 2021</span>
</div>
<div class="text">
Analyzing the data, Menker has noticed the impact of increasingly protectionist measures by key food-exporting countries as they wrangle with the simultaneous demand and supply shock that Covid-19 has created.
<br />
<br />Calling ag protectionism the big theme for this year, Menker explains that over the past few months these producer countries — such as Argentina, Brazil, Indonesia, Russia, and Ukraine — have taken measures such as increasing export taxes or placing caps on the amount of food commodities that they’ll ship overseas. Argentina, for instance, has completely halted exports of corn until the end of the month in an effort to protect domestic supply.
<br />
<br />At the same time, many of these economies are suffering from currency devaluation, causing the price of food to rocket.
<br />
<br />https://agfundernews.com/menker-record-breaking-female-founder-warns-of-covid-19-and-climate-related-food-inflation-risk.html
</div>
<div class="media">
<a href="https://agfundernews.com/menker-record-breaking-female-founder-warns-of-covid-19-and-climate-related-food-inflation-risk.html" rel="noreferer nopener nofollow">Sara Menker of Gro Intelligence warns of Covid-19's food inflation risk</a>
<div>Menker thinks that Covid-19's continuing effects will see a ramping up of food protectionism this year - while climate change will also take a toll.</div>
</div>
</div>
</li>
<li class="message type-message" id="237">
<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="#237">#237</a>
<span class="date">06:21 PM, 03 Feb 2021</span>
</div>
<div class="text">
Sharing another kool upcycle👍🏼✌️
</div>
<div class="media">
<a href="media/237.jpg">
<img src="media/thumb_237.jpg" class="thumb" /><br />
<span class="filename">photo_2021-02-03_18-21-02.jpg</span>
</a>
</div>
</div>
</li>
<li class="day" id="2021-02-04">
<span class="title">
04 February 2021
</span>
</li>
<li class="message type-message" id="238">
<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="#238">#238</a>
<span class="date">12:58 AM, 04 Feb 2021</span>
</div>
<div class="text">
<a href="https://www.bloomberg.com/news/articles/2021-02-02/new-york-snow-enters-record-books-as-city-digs-out-from-storm" rel="noopener">https://www.bloomberg.com/news/articles/2021-02-02/new-york-snow-enters-record-books-as-city-digs-out-from-storm</a>
</div>
<div class="media">
<a href="https://www.bloomberg.com/news/articles/2021-02-02/new-york-snow-enters-record-books-as-city-digs-out-from-storm" rel="noreferer nopener nofollow">New York Snow Entered Record Books as City Dug Out</a>
<div>The nor’easter that paralyzed New York and blanketed the East and Midwest with heavy snow pulled away as a blast of Arctic air sweeps behind it, sending temperatures tumbling across the central U.S.New York’s Central Park received 17.2 inches (44 centimeters) since Sunday, which makes the storm the city’s 16th heaviest since 1869, the U.S. Weather Prediction Center said Wednesday. The bulk fell Monday, setting a record for the date, according to the National Weather Service.“The setup was perfec</div>
</div>
</div>
</li>
<li class="message type-message" id="239">
<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="#239">#239</a>