forked from vas3k/infomate.club
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boards.yml
1888 lines (1784 loc) · 81.9 KB
/
boards.yml
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
boards:
- name: Новости
slug: news
is_visible: true
is_private: false
curator:
name: Новости
title: События в мире
avatar: https://i.vas3k.ru/63cd2ebddba4422aa684b2bd754c636eb061ef0555f542042c31850525d2f5bb.png
bio: Наша субъективная подборка основных новостных изданий, чтобы следить за событиями в России и в мире
blocks:
- name: Россия
slug: ru
feeds:
- name: Meduza
url: https://meduza.io/
rss: https://meduza.io/rss/all
icon: https://i.vas3k.ru/e4b09a9d72f9b0157b88ed1cc5b755f7b6099358c889edce021a481442c7222f.png
- name: DW
url: https://www.dw.com/ru/
rss: https://rss.dw.com/rdf/rss-ru-top
icon: https://i.vas3k.ru/1869452100cc16474d649fdbf72746b4826ff793c07e02b9262b3f801d87e4a2.jpg
- name: Коммерсантъ
url: https://www.kommersant.ru/
rss: https://www.kommersant.ru/RSS/news.xml
icon: https://i.vas3k.ru/70e935c410a400d14beaadc25ddd13b386267ee7e56bd028c47ebfeb49c497cd.jpg
- name: ТАСС
url: https://tass.ru/
rss: https://tass.ru/rss/v2.xml
icon: https://i.vas3k.ru/aca2f29518b01b25b3a40d63109d45dde74be15e47877aaa89553ff567b05151.png
is_parsable: false
# - name: РБК
# url: https://www.rbc.ru/
# rss: http://static.feed.rbc.ru/rbc/internal/rss.rbc.ru/rbc.ru/news.rss
# icon: https://i.vas3k.ru/8e8a9d54921aafb2c72e347f0cf07f3f4e84103d02117fdf1d04799cadb13b80.jpg
- name: Ведомости
url: https://www.vedomosti.ru/
rss: https://vedomosti.ru/rss/news
icon: https://i.vas3k.ru/e52824e20f01c22baee086c03cc5cac5c011b4fd5e7cd2062bb3d78066cb2019.jpg
- name: Медиазона
url: https://zona.media/
rss: https://zona.media/rss
icon: https://i.vas3k.ru/96a1e39a81e4e95e97ef61fa60c102f2bb22ce1b46250a494792e21e928a191c.jpg
# - name: Эхо Москвы
# url: https://echo.msk.ru/
# rss: https://echo.msk.ru/news.rss
# icon: https://i.vas3k.ru/f9a8212a62b560c42aad54b722f838f3cc10abe30786a0b875230950b8c2dc8e.png
# filters:
# - echomsk_title_fix
- name: 🗽 Либеральные
slug: ru_left
view: "blocks/two.html"
feeds:
- view: "feeds/favicons.html"
is_parsable: false
mix:
- https://tvrain.ru/export/rss/all.xml
- https://www.znak.com/rss
- https://paperpaper.ru/feed/
- https://content.novayagazeta.ru/rss/all.xml
- https://rss.newsru.com/top/main
- https://www.svoboda.org/api/z-pqpiev-qpp
- https://infomate.club/parsing/telegram/holodmedia?only=text
- name: 👮♂️ Прокремлёвские
slug: ru_right
view: "blocks/two.html"
feeds:
- view: "feeds/favicons.html"
is_parsable: false
mix:
- https://lenta.ru/rss
- https://russian.rt.com/feed
- https://kp.ru/rss/allsections.xml
- https://iz.ru/xml/rss/all.xml
- https://ria.ru/export/rss2/archive/index.xml
- https://www.mk.ru/rss/index.xml
- name: Телеграм
slug: tg
feeds:
- name: Varlamov News
url: https://t.me/varlamov_news
rss: https://infomate.club/parsing/telegram/varlamov_news?only=text
icon: https://i.vas3k.ru/93a624086cd3835fdf9c704155b91f12b7cf238726bc39316f0a605c87797fa7.jpg
- name: Новая Газета (+ Europe)
url: https://t.me/novaya_europe
mix:
- https://infomate.club/parsing/telegram/novaya_pishet
- https://infomate.club/parsing/telegram/novaya_europe
icon: https://i.vas3k.ru/f2cabb4173f6dcaad7db9f6285458e0d79593a5eba08b77f16e89ff532171860.jpg
- name: Лентач
url: https://t.me/lentachold
rss: https://infomate.club/parsing/telegram/lentachold?only=text
- name: Mash
url: https://t.me/breakingmash
rss: https://infomate.club/parsing/telegram/breakingmash?only=text
icon: https://i.vas3k.ru/9b7f5f94e9e5b6f2b4ded23374c1dd38333f11e3a2af21863f2c89458ba77cb5.jpg
- name: Редакция
url: https://t.me/redakciya_channel
rss: https://infomate.club/parsing/telegram/redakciya_channel
icon: https://i.vas3k.ru/3542c85a26b71cd24d71efe36b1917fd0eaf455e9becb6fe388f1587a3a0eca7.jpg
- name: США
slug: us
feeds:
- name: Reddit News
url: https://www.reddit.com/r/news/
rss: https://www.reddit.com/r/news.rss
icon: https://i.vas3k.ru/3062b953fa39b4f3bc26a5f3ba65effb0fac935ffa5ee50c3b734107be457c48.png
- name: Reuters
url: https://www.reuters.com/news/world
rss: https://news.google.com/rss/search?q=when:24h+allinurl:reuters.com&ceid=US:en&hl=en-US&gl=US
- name: Bloomberg
url: https://www.bloomberg.com/
rss: http://www.bloomberg.com/politics/feeds/site.xml
icon: https://i.vas3k.ru/35c6ae6df0fe47166ed5c656bde6faa974ae1beca949c89443f0aed0b86e0806.png
- name: NPR
url: https://www.npr.org/
rss: https://feeds.npr.org/1002/rss.xml
icon: https://i.vas3k.ru/1cc80e832275af7735ca0d600d934e4b0419f398f6b142073b576c99d948517f.jpg
- name: Axios
url: https://www.axios.com/
rss: https://api.axios.com/feed/
icon: https://i.vas3k.ru/17f55ad102b80a85c618d5e56c61f24c17c20d12f8c960a87902845154a5bdfc.jpg
is_parsable: false
- name: POLITICO
url: https://www.politico.com/
rss: https://www.politico.com/rss/politicopicks.xml
icon: https://i.vas3k.ru/0281ddd9b3bd890e1476666d5ea74688bc5fcf313500a5fc166127bc433b1287.jpg
is_parsable: false
- name: 🏳️🌈 Левые
slug: us_left
view: "blocks/two.html"
feeds:
- view: "feeds/favicons.html"
is_parsable: false
mix:
- http://rss.cnn.com/rss/edition.rss
- https://www.huffpost.com/section/front-page/feed
- https://www.newyorker.com/feed/news
- https://www.msnbc.com/feed
- https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml
- https://www.vox.com/rss/index.xml
- name: 💰 Правые
slug: us_right
view: "blocks/two.html"
feeds:
- view: "feeds/favicons.html"
is_parsable: false
mix:
- http://feeds.feedburner.com/foxnews/latest
- https://spectator.org/feed
- https://www.washingtontimes.com/rss/headlines/news/
- https://www.dailymail.co.uk/ushome/index.rss
- https://feeds.feedburner.com/breitbart
- name: Европа
slug: eu
feeds:
- name: BBC
url: https://www.bbc.com/
rss: http://feeds.bbci.co.uk/news/rss.xml
icon: https://i.vas3k.ru/635c5e5828a4868b73bdb777611084a3459873b628f3f7f9752a34e1516fc505.png
- name: The Guardian
url: https://www.theguardian.com/international
rss: https://www.theguardian.com/international/rss
- name: Deutsche Welle
url: https://www.dw.com/
rss: https://rss.dw.com/rdf/rss-en-top
- name: Азия
slug: asia
feeds:
- name: Al Jazeera
url: https://www.aljazeera.com/
rss: https://www.aljazeera.com/xml/rss/all.xml
icon: https://i.vas3k.ru/c460dced3f230cd47c0626db1278c31d23325d98059487a57bdbbeac6e49c8d1.png
- name: The Hindu
url: https://www.thehindu.com/
rss: https://www.thehindu.com/news/international/feeder/default.rss
icon: https://i.vas3k.ru/f3633b075315d58c7f9750f69d726627e1e42763352d72850eab7bc5bce28a09.jpg
- name: South China Morning Post
url: https://www.scmp.com/
rss: https://www.scmp.com/rss/91/feed
icon: https://i.vas3k.ru/a9261d4f317ea377bc68a5c6a7526d6b6127ef5cae9204345f63435688a2f069.jpg
- name: Технологии
slug: tech
is_visible: true
is_private: false
curator:
name: Технологии
title: Главные новости
avatar: https://i.vas3k.ru/229b722cc79faca1f148c66b1e7240488e7405704f94b8d7f0fadddcf66212f0.jpg
bio: Подборка мейнстримовых новостей о технологиях на русском и английском языках
blocks:
- name: На русском
slug: ru
feeds:
- name: vc.ru
url: https://vc.ru
rss: https://vc.ru/rss/all
is_parsable: false
- name: "Хабр: лучшее за сутки"
icon: https://i.vas3k.ru/fhv.png
url: https://habr.ru
rss: https://habr.com/ru/rss/best/daily/?fl=ru
- name: Wylsa.com
icon: https://i.vas3k.ru/c1fb8935f6c7a56633d406988bd60d4cf28b9cbb351171cd39b2b119f75cf486.png
url: https://wylsa.com/
rss: https://wylsa.com/feed/
- name: Rusbase
url: https://rb.ru
rss: https://rb.ru/feeds/all/
- name: iXBT
url: https://www.ixbt.com
rss: http://www.ixbt.com/export/news.rss
icon: https://i.vas3k.ru/fkm.jpg
- name: OpenNet
url: https://www.opennet.ru/
rss: https://www.opennet.ru/opennews/opennews_6.rss
- name: На английском
slug: en
feeds:
- name: Hacker News
url: https://news.ycombinator.com
rss: https://news.ycombinator.com/rss
- name: TechCrunch
rss: https://techcrunch.com/feed/
url: https://techcrunch.com
is_parsable: false
- name: ArsTechnica
rss: http://feeds.arstechnica.com/arstechnica/index/
url: https://arstechnica.com
- name: Engadget
rss: https://www.engadget.com/rss.xml
url: https://www.engadget.com
- name: Gizmodo
url: https://gizmodo.com
rss: https://gizmodo.com/rss
- name: Wired
url: https://www.wired.com
rss: https://www.wired.com/feed/rss
icon: https://i.vas3k.ru/feu.png
- name: Mashable
url: https://mashable.com/
rss: http://feeds.mashable.com/Mashable
- name: The Verge
rss: https://www.theverge.com/rss/index.xml
url: https://www.theverge.com
- name: VentureBeat
url: https://venturebeat.com
rss: http://feeds.feedburner.com/venturebeat/SZYF
- name: ZDNet
rss: https://www.zdnet.com/news/rss.xml
url: https://www.zdnet.com
- name: CNET
url: https://www.cnet.com/topics/tech-industry/
rss: http://feed.cnet.com/feed/topics/tech-industry
- name: The Next Web
rss: http://feeds2.feedburner.com/thenextweb
url: https://thenextweb.com
- name: ReadWrite
url: https://readwrite.com
rss: https://readwrite.com/feed/
- name: 9to5mac
url: https://9to5mac.com
rss: https://9to5mac.com/feed/
- name: Телеграм-каналы
slug: tg
feeds:
- name: addmeto
url: https://t.me/addmeto
rss: https://infomate.club/parsing/telegram/addmeto
icon: https://i.vas3k.ru/cb1fe74c1a42fbe9d145c8538ed9230b7512633d06f680b96464fc4b355b23ef.jpg
- name: Rozetked
url: https://t.me/rozetked
rss: https://infomate.club/parsing/telegram/rozetked
icon: https://i.vas3k.ru/abe55f96279f22704cd1cc5009be2f6527c8d205f289dc1c7c328a03314f3d5d.jpg
- name: TechSparks
url: https://t.me/techsparks
rss: https://infomate.club/parsing/telegram/techsparks
icon: https://i.vas3k.ru/b5a4fb2b5d3d0279612c639a325958e89bfaa218a87a6016f74936d347d23ced.png
- name: Игры, железки и геймдев
slug: games
is_visible: true
is_private: false
curator:
name: Игры, железки и геймдев
avatar: https://i.vas3k.ru/d91addda792605da2764afc6c866257e05b8218d11b91534eaf0e87c03acebe5.jpg
bio: Бета-версия подборки новостей об играх и всём, что с ними связано
blocks:
- name: На русском
slug: ru
feeds:
- name: DTF
url: https://dtf.ru/
icon: https://i.vas3k.ru/75a05e5c534be82df78b704bf6d8c18308772736074ae3a6b2fdac4a6cd03343.png
mix:
- https://dtf.ru/rss/all
- https://www.youtube.com/feeds/videos.xml?channel_id=UCBDLWj5X5D9bvBa3JIMMTIQ
- name: Stopgame
url: https://stopgame.ru/
icon: https://i.vas3k.ru/110c51acbc7b938803332ce502eaa92284302093825b86f632002720397cdd66.png
mix:
- https://rss.stopgame.ru/rss_news.xml
- https://rss.stopgame.ru/articles.xml
- https://www.youtube.com/feeds/videos.xml?channel_id=UCq7JZ8ATgQWeu6sDM1czjhg
- name: Игры @ Mail.ru
url: https://games.mail.ru/pc/news/
rss: https://games.mail.ru/pc/rss/news/
icon: https://i.vas3k.ru/4c2ed25ae65ca8d14aad458021b2c2d46de909fa668af4f4b3a78ab1d4d15a74.png
- name: Игромания
url: https://www.igromania.ru/news/
icon: https://i.vas3k.ru/da87856ddac8e5000798651b23669134fc47755adb23ac4cb9cf3862e5f0736e.jpg
mix:
- https://www.igromania.ru/rss/news-game.rss
- https://www.youtube.com/feeds/videos.xml?channel_id=UC_Q1vhf7wcR_zGlc5ahAg0A
- name: IXBT.games
url: https://www.gametech.ru/
rss: https://infomate.club/parsing/telegram/ixbtgames
icon: https://i.vas3k.ru/7e54723ab414656c96a7b736f843f1bc961237c50ca30e8209096c3a912db7a1.png
- name: На английском
slug: en
feeds:
- name: IGN
url: https://ign.com/
rss: https://feeds.feedburner.com/ign/all
icon: https://i.vas3k.ru/cd6895f1b150d96ffa85bc8b160a79b2b294b9712d7f887f54d5f167a61bffd6.png
is_parsable: false
- name: Rock Paper Shotgun
url: https://www.rockpapershotgun.com/
rss: https://www.rockpapershotgun.com/feed/
icon: https://i.vas3k.ru/a3306dfa0ba6c7169454702ca22535255ec3988ea5500e21558258c789d45a3a.jpg
- name: Polygon
url: https://www.polygon.com/
rss: https://www.polygon.com/rss/front-page/index.xml
icon: https://i.vas3k.ru/e710868062d590ef2906648582eb139d21fb4edba1b4b9a40a2c7a16744c00b1.png
- name: Eurogamer
url: https://www.eurogamer.net/
rss: https://www.eurogamer.net/?format=rss
- name: "Reddit: /r/gaming + /r/games"
url: https://www.reddit.com/r/gaming/
icon: https://i.vas3k.ru/3062b953fa39b4f3bc26a5f3ba65effb0fac935ffa5ee50c3b734107be457c48.png
mix:
- https://www.reddit.com/r/gaming.rss
- https://www.reddit.com/r/games.rss
- name: Индустрия
slug: industry
feeds:
- name: App2Top
url: https://app2top.ru/
rss: https://app2top.ru/rss
icon: https://i.vas3k.ru/c2756d30e2381ca7e69013b917d8b048dba7f12b2d38c268d2717d17a1183aa3.png
- name: GamesIndustry.biz
url: https://www.gamesindustry.biz/
rss: https://www.gamesindustry.biz/rss/gamesindustry_news_feed.rss
icon: https://i.vas3k.ru/61b867daaa85db8d74061ca2d730f6a32b0af2387db77371946ef807b7f8cd84.png
- name: Gamasutra
url: https://www.gamasutra.com/
rss: https://feeds.feedburner.com/GamasutraNews
icon: https://i.vas3k.ru/e0464b0fe7cc7e5abc98570a88340a0082da5a96598febfa6bf66a1bc7b37987.png
- name: Kotaku
url: https://kotaku.com/
rss: https://kotaku.com/rss
- name: "MCV/Develop"
url: https://www.mcvuk.com/
rss: https://www.mcvuk.com/feed/
icon: https://i.vas3k.ru/2c3f4640e0109754dc7d250b63dc7e828268a246efac1cfa3780a650e7ec2119.jpg
- name: "Шрайер"
url: https://www.bloomberg.com/authors/AUvqMRVAZCw/jason-schreier
rss: https://www.bloomberg.com/authors/AUvqMRVAZCw/jason-schreier.rss
icon: https://i.vas3k.ru/35c6ae6df0fe47166ed5c656bde6faa974ae1beca949c89443f0aed0b86e0806.png
- name: Железо
slug: hardware
feeds:
- name: Wccftech
url: https://wccftech.com/
rss: https://wccftech.com/feed/
- name: Overclockers
url: https://www.overclockers.com/
rss: https://www.overclockers.com/feed/
- name: "Reddit: /r/hardware"
url: https://www.reddit.com/r/hardware/
rss: https://www.reddit.com/r/hardware.rss
icon: https://i.vas3k.ru/3062b953fa39b4f3bc26a5f3ba65effb0fac935ffa5ee50c3b734107be457c48.png
- name: Платформы
slug: platforms
feeds:
- name: Xbox Wire
url: https://news.xbox.com/en-us/
rss: https://news.xbox.com/en-us/feed/
- name: PlayStation Blog
url: https://blog.playstation.com/
rss: https://blog.playstation.com/feed/
- name: PC Gamer
url: https://www.pcgamer.com/
rss: https://www.pcgamer.com/rss/
- name: Nintendo Life
url: https://www.nintendolife.com/
rss: https://www.nintendolife.com/feeds/latest
icon: https://i.vas3k.ru/6b873b5b6eea734311d63ab9f20643b724767a08e69ffeb48835043d5d3ed445.png
- name: Pocketgamer
url: https://www.pocketgamer.com/
rss: https://www.pocketgamer.com/rss/
icon: https://i.vas3k.ru/4206863a904a4ae9966eb5abbba5f1f179607a60a31b3f81c20a950a93cb2e9d.jpg
- name: UploadVR + Road to VR
url: https://uploadvr.com/
icon: https://i.vas3k.ru/85fbe5e90e244df525a3265beaec913f30f2bf6799d34c82d2224acb005dce9e.png
mix:
- https://uploadvr.com/feed/
- https://www.roadtovr.com/feed/
- name: Вастрик
slug: vas3k
is_visible: true
is_private: false
curator:
name: Вастрик
url: <a href="https://vas3k.ru">vas3k.ru</a>
title: Невсратое айти
avatar: https://i.vas3k.ru/eb8.png
bio: Веду блог о технологиях, пишу код, отвратительно путешествую и фотографирую это
footer: >
здесь я собрал сайты, которые составляют 90% того, что я читаю постоянно.
Отбор и фильтрация источников — непрерывный процесс для меня, потому их набор постоянно меняется.
Так что следите.
blocks:
- slug: main
feeds:
- name: Hacker News
url: https://news.ycombinator.com
rss: https://news.ycombinator.com/rss
columns: 2
- name: Lobsters
url: https://lobste.rs/
rss: https://lobste.rs/rss
- name: Product Hunt
url: https://www.producthunt.com
rss: https://www.producthunt.com/feed
is_parsable: false
icon: https://i.vas3k.ru/fep.png
- name: Changelog
url: https://changelog.com/
rss: https://changelog.com/feed
icon: https://i.vas3k.ru/nip.png
- name: GitHub Trending
url: https://github.com/trending
rss: https://mshibanami.github.io/GitHubTrendingRSS/weekly/all.xml
- name: Технологии
slug: tech
feeds:
- name: The Information
url: https://www.theinformation.com/
rss: https://www.theinformation.com/feed
- name: "Reddit: /r/technology/"
url: https://www.reddit.com/r/technology
rss: https://www.reddit.com/r/technology.rss
icon: https://i.vas3k.ru/3062b953fa39b4f3bc26a5f3ba65effb0fac935ffa5ee50c3b734107be457c48.png
is_parsable: false
- name: "Pinboard: Popular"
url: https://pinboard.in/popular/
rss: http://feeds.pinboard.in/rss/popular/
icon: https://i.vas3k.ru/adfe6b6f09b2be1398df020bdd8d1b8dade25b139c88c68c0177d26e5ae0bce0.jpg
conditions:
- type: not_in
field: title
word: Trump
- name: ZDNet
rss: https://www.zdnet.com/news/rss.xml
url: https://www.zdnet.com
- name: TechCrunch
rss: http://feeds.feedburner.com/TechCrunch/
url: https://techcrunch.com
is_parsable: false
- name: Slashdot
rss: http://rss.slashdot.org/Slashdot/slashdotMain
url: https://slashdot.org
icon: https://i.vas3k.ru/2da938e66d63ca719a8854ead38a09d17d6ab17725aaf15fa68f401aa937340e.png
- name: Блоги людей
slug: people
feeds:
- columns: 3
view: "feeds/favicons.html"
is_parsable: false
mix:
- https://rss.stratechery.passport.online/feed/rss/E6q1gpET6oTnqCYvVfkbfj
- https://ciechanow.ski/atom.xml
- http://nedbatchelder.com/blog/rss.xml
- http://rasskazov.pro/blog/?go=rss/
- http://vas3k.ru/rss/
- http://nl.livejournal.com/data/rss
- http://sashavolkova.ru/rss/
- http://alexmak.net/blog/feed/
- http://nobelfaik.livejournal.com/data/rss
- http://vonoiral.com/rss/
- http://skaplichniy.ru/feed/
- http://blogdm.ru/rss/
- http://spark-in.me/main.rss
- https://medium.com/feed/@madrabbit
- http://mikeozornin.ru/blog/rss/
- http://level-design.ru/feed/
- http://doitinbound.com/feed/
- http://cartmendum.livejournal.com/data/rss
- http://visual-storytelling.ru/rss/
- http://past25.ru/rss/
- http://maximilyahov.ru/blog/?go=rss/
- http://staskulesh.com/feed/
- http://torshina.me/feed.rss
- http://vas3k.com/rss/
- https://thegradient.pub/rss/
- http://stratechery.com/feed/
- http://calendar.perfplanet.com/feed/
- http://karpathy.github.io/feed.xml
- http://xkcd.com/rss.xml
- https://tonsky.me/blog/atom.xml
- https://tonsky.livejournal.com/data/rss
- http://colah.github.io/rss.xml
- https://krausefx.com/feed.xml
- https://overreacted.io/rss.xml
- http://feeds.feedburner.com/codinghorror/
- http://theoatmeal.com/feed/rss
- https://waitbutwhy.com/feed
- https://mxb.dev/feed.xml
- https://bureau.ru/bb/soviet/rss/
- http://nickcraver.com/blog/feed.xml
- https://nepishi.ru/rss
- name: Инди-разработка
slug: make
feeds:
- name: Show HN
url: https://news.ycombinator.com/show
rss: https://hnrss.org/show
- name: Starter Story
url: https://www.starterstory.com
rss: https://www.starterstory.com/feed?format=rss
- name: Indiehackers
url: https://www.indiehackers.com/
rss: https://rss.app/feeds/faq798zw7eJuer9w.xml
- name: "Reddit: /r/SideProject"
url: https://www.reddit.com/r/SideProject/
rss: https://www.reddit.com/r/SideProject.rss
icon: https://i.vas3k.ru/3062b953fa39b4f3bc26a5f3ba65effb0fac935ffa5ee50c3b734107be457c48.png
is_parsable: false
- name: Путешествия
slug: travel
feeds:
- name: PeritoBurrito
url: https://perito-burrito.com
rss: http://perito-burrito.com/feed
- name: Vandrouki
url: https://vandrouki.ru
rss: https://feeds.feedburner.com/vandroukiru
icon: https://i.vas3k.ru/fer.jpg
- name: Secret Flying
url: https://www.secretflying.com
rss: https://www.secretflying.com/feed/
- name: "Atlas Obscura: Stories"
url: https://www.atlasobscura.com/articles
rss: https://www.atlasobscura.com/feeds/latest
icon: https://i.vas3k.ru/345139fb86cb52076134880d1b4ef700d6354c4cf4639ebdfaf1f9891115f7ad.jpg
- name: "T—Ж"
url: https://journal.tinkoff.ru/chemodan/
rss: https://journal.tinkoff.ru/feed/
- name: Geeky Explorer
url: https://www.geekyexplorer.com
rss: https://www.geekyexplorer.com/feed/
- name: Европейское айти
slug: eu
feeds:
- name: "EU-startups"
url: https://www.eu-startups.com/
rss: https://www.eu-startups.com/feed/
icon: https://i.vas3k.ru/fkp.jpg
- name: Tech.eu
url: https://tech.eu/
rss: https://tech.eu/feed/
icon: https://i.vas3k.ru/fl9.jpg
- name: "TechCrunch: Europe"
url: https://techcrunch.com/europe/
rss: https://techcrunch.com/europe/feed/
is_parsable: false
- name: Фотография
slug: photo
feeds:
- name: DPReview
url: https://www.dpreview.com
rss: https://www.dpreview.com/feeds/reviews.xml
- name: PetaPixel
url: https://petapixel.com
rss: https://feedproxy.google.com/PetaPixel
icon: https://i.vas3k.ru/fes.jpg
- name: 500px ISO
url: https://iso.500px.com
rss: https://iso.500px.com/feed/
icon: https://i.vas3k.ru/fet.png
- name: How to Berlin
slug: howtoberlin
is_visible: true
is_private: false
curator:
name: How to Berlin
title: Набор берлинца
url: от Лены из <a href="https://howtoberlin.de">howtoberlin.de</a>
avatar: https://i.vas3k.ru/fev.png
bio: Что читать, когда живешь в Берлине и не понимаешь что происходит
footer: >
это ресурсы для понимания и вдохновения, немецкие и экспатские, чтобы понимать,
что происходит в Германии и Берлине и как весело и комфортно в этом жить.
blocks:
- name: Общие и экспатские новости
slug: news
feeds:
- name: "Berlin.de"
url: https://www.berlin.de/aktuelles/
rss: https://www.berlin.de/en/news/index.rss
icon: https://i.vas3k.ru/fjc.png
- name: "DW.com"
url: https://www.dw.com/en/top-stories/germany/s-1432
rss: http://rss.dw.com/rdf/rss-en-ger
- name: "The Berlin Spectator"
url: https://berlinspectator.com
rss: https://berlinspectator.com/feed/
- name: "TheLocal"
url: https://www.thelocal.de/
rss: https://feeds.thelocal.com/rss/de
icon: https://i.vas3k.ru/5a8888ed6bf5abe3f642d610f724f2f6eea71f8cf225c8d29e90a0cc9085dae1.png
- name: "Что там у немцев?"
url: https://t.me/dwrussian
rss: https://infomate.club/parsing/telegram/dwrussian
is_parsable: false
- name: IamExpat
url: https://www.iamexpat.de/
rss: https://www.iamexpat.de/rss/news-germany
- name: Больше новостей, но на немецком
slug: de
feeds:
- name: "BZ"
url: https://www.bz-berlin.de/
rss: https://www.bz-berlin.de/feed
icon: https://i.vas3k.ru/38026d202b5c6beab60312602ca6facb3ecb22a4916084fac44858e1a68dc55c.png
- name: "Der Tagesspiegel"
url: https://www.tagesspiegel.de/
rss: https://www.tagesspiegel.de/contentexport/feed/home
icon: https://i.vas3k.ru/fjb.jpg
- name: "RBB24"
url: https://www.rbb24.de
rss: https://www.rbb24.de/aktuell/index.xml/feed=rss.xml
- name: "События и местные каналы"
slug: events
feeds:
- name: "How to Berlin"
url: https://t.me/howtoberlin
rss: https://infomate.club/parsing/telegram/howtoberlin?only=text
icon: https://i.vas3k.ru/cfd6db4e48b2abc24a24883e6933720b4482376a3a69fd2961489933c74a314b.jpg
is_parsable: false
- name: "Berlin.de Events"
url: https://www.berlin.de/en/events/
rss: https://www.berlin.de/en/events/rubric.rss
icon: https://i.vas3k.ru/fjc.png
- name: "Eventbrite"
url: https://www.eventbrite.com/d/germany--berlin/all-events/
rss: http://fetchrss.com/rss/6242ddaac45b4250ef751de26242ddebad9ae2191c2b8af2.xml
icon: https://i.vas3k.ru/91ed89e5c03aed45b7fdddbcaee1a859821f5c62ff9bb8e58af68c91ede6c496.png
- name: "Comedy in English"
url: https://comedyinenglish.de/full-calendar/
rss: http://fetchrss.com/rss/5e1485a98a93f87e1f8b45685e15a6ea8a93f86d5d8b4567.xml
icon: https://i.vas3k.ru/flr.jpg
- name: "Детский Берлин"
url: https://kinderberlin.com/
rss: https://kinderberlin.com/feed/
icon: https://i.vas3k.ru/be99147ae911189128465ba5bc6cba8fcd4d559b3dee25706b7a84ced08ae5f9.jpg
- name: Exberliner
url: https://www.exberliner.com/
rss: https://www.exberliner.com/feed/
- name: "Mit Vergnügen [DE]"
url: https://mitvergnuegen.com
rss: https://mitvergnuegen.com/feed
- name: "tipBerlin [DE]"
url: https://www.tip-berlin.de/
rss: https://www.tip-berlin.de/feed/
- name: "Канал Воздух над Берлином"
url: https://t.me/alleinvater
rss: https://infomate.club/parsing/telegram/alleinvater?only=text
filters:
- remove_hashtags
is_parsable: false
- name: "Канал Travelclever"
url: https://t.me/travelclever
rss: https://infomate.club/parsing/telegram/travelclever?only=text
is_parsable: false
- name: "Подкасты"
slug: podcasts
feeds:
- name: "Radio Spaetkauf 🥇"
url: https://www.radiospaetkauf.com/
rss: https://www.radiospaetkauf.com/feed/
icon: https://i.vas3k.ru/fje.jpg
- name: "Berlin Briefing"
url: https://podcasts.apple.com/de/podcast/berlin-briefing/id1241197566?l=en
rss: https://berlinbriefing.podigee.io/feed/aac
icon: https://i.vas3k.ru/fjf.jpg
- name: "Мама я в Берлине"
url: https://podcasts.apple.com/de/podcast/%D0%BC%D0%B0%D0%BC%D0%B0-%D1%8F-%D0%B2-%D0%B1%D0%B5%D1%80%D0%BB%D0%B8%D0%BD%D0%B5/id1594064048?l=en
rss: https://cloud.mave.digital/34194
- name: "Учим немецкий"
slug: learn
feeds:
- name: "Langsam gesprochene nachrichten"
url: https://podcasts.apple.com/de/podcast/langsam-gesprochene-nachrichten-deutsch-lernen-deutsche/id282930329?l=en
rss: http://rss.dw.com/xml/DKpodcast_lgn_de
icon: https://i.vas3k.ru/fjg.jpg
- name: "Das sagt man so!"
url: https://podcasts.apple.com/de/podcast/das-sagt-man-so-deutsch-lernen-deutsche-welle/id1064423527?l=en
rss: http://rss.dw.com/xml/DKpodcast_dassagtmanso_de
icon: https://i.vas3k.ru/fjh.jpg
- name: "Deutsche im Alltag"
url: https://podcasts.apple.com/de/podcast/deutsche-im-alltag-alltagsdeutsch-deutsch-lernen-deutsche/id282933246?l=en
rss: http://rss.dw.com/xml/DKpodcast_alltagsdeutsch_de
icon: https://i.vas3k.ru/fji.jpg
- name: "Дёшево путешествуем"
slug: travel
feeds:
- name: "SecretFlying: from Berlin"
url: https://www.secretflying.com/posts/category/cities-countries/germany/berlin/
rss: https://www.secretflying.com/posts/category/cities-countries/germany/berlin/feed/
- name: "Fly4free: Germany"
url: https://www.fly4free.com/flight-deals/germany/
rss: http://fetchrss.com/rss/5e1485a98a93f87e1f8b45685e15a09c8a93f842168b4567.xml
- name: Very ML
slug: ml
is_visible: true
is_private: false
curator:
name: Very ML
title: State-of-the-art Machine Learning News Feed
url: by <a href="https://twitter.com/tiulpin">Viktor Tiulpin</a> and <a href="https://t.me/Recent_AI">Recent AI News</a>
avatar: https://i.vas3k.ru/hzv.png
bio: State-of-the-art Machine Learning News Feed
footer: >
have something to add? Send me a message on <a href="https://twitter.com/tiulpin">Twitter</a>.
blocks:
- slug: main
feeds:
- name: "/r/MachineLearning"
url: https://www.reddit.com/r/MachineLearning/
rss: https://www.reddit.com/r/MachineLearning.rss
- name: "Towards Data Science"
url: https://towardsdatascience.com/
rss: https://towardsdatascience.com/feed
- name: "Distill.pub"
icon: https://i.vas3k.ru/i0r.png
url: https://distill.pub/
rss: http://distill.pub/rss.xml
- name: "The Gradient"
url: https://thegradient.pub/
rss: https://thegradient.pub/rss/
- name: "TheSequence"
url: https://thesequence.substack.com/
rss: https://thesequence.substack.com/feed/
- name: "Synced Review"
url: https://medium.com/syncedreview
rss: https://medium.com/feed/syncedreview
- name: "📓 Cool Blogs"
slug: blogs
feeds:
- name: "ODS.ai Habr"
url: https://habr.com/ru/company/ods/
rss: https://habr.com/ru/rss/company/ods/blog/?fl=ru
- name: "Machine Learning Mastery"
url: https://machinelearningmastery.com/blog/
rss: http://machinelearningmastery.com/blog/feed
- name: "ML in Production"
url: https://mlinproduction.com
rss: https://mlinproduction.com/feed
- name: "Sorta Insightful"
url: https://www.alexirpan.com/
rss: https://www.alexirpan.com/feed.xml
- name: "Lil'Log"
url: https://lilianweng.github.io/lil-log/
rss: https://lilianweng.github.io/lil-log/feed.xml
- name: "inFERENCe"
url: https://www.inference.vc/
rss: https://www.inference.vc/rss
- name: "The Spectator"
url: http://blog.shakirm.com/
rss: http://blog.shakirm.com/feed/
- name: "The Unofficial Google Data Science Blog"
url: http://www.unofficialgoogledatascience.com/
rss: http://www.unofficialgoogledatascience.com/feeds/posts/default
- name: "Off the Convex Path"
url: http://www.offconvex.org/
rss: http://www.offconvex.org/feed
- name: "Jay Alammar"
url: https://jalammar.github.io
rss: https://jalammar.github.io/feed.xml
- name: "Piekniewski's blog"
url: https://blog.piekniewski.info/
rss: https://blog.piekniewski.info/rss/
- name: "fast.ai NLP"
url: https://nlp.fast.ai
rss: http://nlp.fast.ai/feed.xml
- name: "Sebastian Ruder"
url: https://ruder.io/
rss: https://ruder.io/rss/
- name: "Andrew Karpathy blog"
url: http://karpathy.github.io/
rss: http://karpathy.github.io/feed.xml
- name: "大トロ"
url: http://blog.otoro.net/
rss: http://blog.otoro.net/feed.xml
- name: "🔬 Science"
slug: science
feeds:
- name: "Papers With Code"
icon: https://i.vas3k.ru/i0s.jpg
url: https://paperswithcode.com/
rss: https://us-east1-ml-feeds.cloudfunctions.net/pwc/latest
columns: 3
- name: "💼 University and corporation labs"
slug: labs
feeds:
- name: "DeepMind"
url: https://www.deepmind.com/blog
rss: https://www.deepmind.com/blog/feed/basic/
icon: https://i.vas3k.ru/aff485d139d37ac7236f0bdf831812a2ef2419972ca3996c66885f229dccf7e2.jpg
- name: "Google"
url: https://ai.googleblog.com/
rss: http://rssmix.com/u/10966870/rss.xml
mix:
- http://googleaiblog.blogspot.com/atom.xml
- https://cloudblog.withgoogle.com/products/ai-machine-learning/rss/
- https://blog.google/technology/ai/rss
- name: "OpenAI"
url: https://openai.com/blog/
rss: https://openai.com/blog/rss/
- name: "Microsoft"
icon: https://i.vas3k.ru/i0t.png
url: https://www.microsoft.com/en-us/research/
rss: http://rssmix.com/u/10966880/rss.xml
mix:
- https://www.microsoft.com/en-us/research/rss
- https://blogs.microsoft.com/ai/feed/
- https://azurecomcdn.azureedge.net/en-us/blog/topics/artificial-intelligence/feed/
- https://azurecomcdn.azureedge.net/en-us/blog/topics/datascience/feed/
- https://azurecomcdn.azureedge.net/en-us/blog/topics/machine-learning-2/feed/
- name: "MIT AI"
url: http://news.mit.edu/topic/artificial-intelligence2
rss: http://news.mit.edu/rss/topic/artificial-intelligence2
- name: "Berkeley AI"
url: https://bair.berkeley.edu/blog/
rss: https://bair.berkeley.edu/blog/feed.xml
- name: "AWS Machine Learning"
url: https://aws.amazon.com/blogs/machine-learning/
rss: https://aws.amazon.com/blogs/amazon-ai/feed/
- name: "NVIDIA"
url: https://blogs.nvidia.com/blog/category/deep-learning/
rss: http://rssmix.com/u/10966894/rss.xml
mix:
- https://blogs.nvidia.com/feed
- http://feeds.feedburner.com/nvidia/acceleratedcomputing
- https://devblogs.nvidia.com/category/data-science/feed/
- https://devblogs.nvidia.com/category/artificial-intelligence/feed/
- name: "Facebook"
url: https://research.fb.com/blog/
rss: http://rssmix.com/u/10966862/rss.xml
mix:
- https://research.fb.com/blog/feed
- https://engineering.fb.com/category/ai-research/feed/
- https://engineering.fb.com/category/ml-applications/feed/
- name: "Uber Engineering"
url: https://eng.uber.com/category/articles/ai/
rss: https://eng.uber.com/category/articles/ai/feed/
- name: "neptune.ai"
url: https://neptune.ai/blog
rss: https://neptune.ai/feed
- name: "▶️ YouTube"
slug: youtube
feeds:
- name: "Yannic Kilcher"
url: https://www.youtube.com/channel/UCZHmQk67mSJgfCCTn7xBfew
rss: https://www.youtube.com/feeds/videos.xml?channel_id=UCZHmQk67mSJgfCCTn7xBfew
- name: "Henry AI Labs"
url: https://www.youtube.com/channel/UCHB9VepY6kYvZjj0Bgxnpbw
rss: https://www.youtube.com/feeds/videos.xml?channel_id=UCHB9VepY6kYvZjj0Bgxnpbw
- name: "3blue1brown"
url: https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw
rss: https://www.youtube.com/feeds/videos.xml?channel_id=UCYO_jab_esuFRV4b17AJtAw
- name: "Two Minute Papers"
url: https://www.youtube.com/channel/UCbfYPyITQ-7l4upoX8nvctg
rss: https://www.youtube.com/feeds/videos.xml?channel_id=UCbfYPyITQ-7l4upoX8nvctg
- name: "DataFest Video"
url: https://www.youtube.com/channel/UCM9ECBAZtlLeEr-m3ldZ7Tw
rss: https://www.youtube.com/feeds/videos.xml?channel_id=UCM9ECBAZtlLeEr-m3ldZ7Tw
- name: "Семинары JetBrains Research"
url: https://www.youtube.com/channel/UCdeSxuESqLOxuuwXNnqqbrA
rss: https://www.youtube.com/feeds/videos.xml?channel_id=UCdeSxuESqLOxuuwXNnqqbrA
- name: "Яндекс. Компьютерные науки"
url: https://www.youtube.com/channel/UCKFojzto0n4Ab3CRQRZ2zYA
rss: https://www.youtube.com/feeds/videos.xml?channel_id=UCKFojzto0n4Ab3CRQRZ2zYA
- name: "ML Trainings"
url: https://www.youtube.com/channel/UCeq6ZIlvC9SVsfhfKnSvM9w
rss: https://www.youtube.com/feeds/videos.xml?channel_id=UCeq6ZIlvC9SVsfhfKnSvM9w
- name: "Primer"
url: https://www.youtube.com/channel/UCKzJFdi57J53Vr_BkTfN3uQ
rss: https://www.youtube.com/feeds/videos.xml?channel_id=UCKzJFdi57J53Vr_BkTfN3uQ
- name: "🎧 Podcasts"
slug: podcasts
feeds:
- name: "Lex Fridman AI Podcast"
url: https://lexfridman.com/
rss: https://lexfridman.com/category/ai/feed/
- name: "Microsoft Research Podcast"
icon: https://i.vas3k.ru/i0t.png
url: https://www.microsoft.com/en-us/research/blog/category/podcast/
rss: https://feeds.blubrry.com/feeds/microsoftresearch.xml
- name: "NLP Highlights"
url: https://soundcloud.com/nlp-highlights
rss: https://feeds.soundcloud.com/users/soundcloud:users:306749289/sounds.rss
- name: "Data Skeptic"
url: https://dataskeptic.com
rss: https://dataskeptic.libsyn.com/rss
- name: "SuperDataScience"
url: https://www.superdatascience.com/podcast
rss: https://feeds.soundcloud.com/users/soundcloud:users:253585900/sounds.rss
- name: "Data Science at Home"
url: https://datascienceathome.com
rss: https://datascienceathome.com/feed/
- name: Музыкальный мир
slug: music
is_visible: true
is_private: false
curator:
name: Музыкальный мир
url: от <a href="https://t.me/korobka_live">Тимура Салабаева</a>
avatar: https://i.vas3k.ru/p3o.png
bio: Подборка про музыку и все, что вертится вокруг нее.
footer: >
подборка, которая пытается максимально широко охватить музыкальный контекст:
винил, обзоры, новости индустрии, написание, продюссирование, оборудование, живые выступления и вдохновение.
blocks:
- slug: listen
name: "Важные СМИ"
feeds:
- name: "NPR Music"
url: https://www.npr.org/music
rss: https://feeds.npr.org/1039/rss.xml
- name: "Mixmag"
url: https://mixmag.net
rss: https://mixmag.net/rss.xml
- name: "Bandcamp Daily"
url: https://daily.bandcamp.com
rss: http://feeds.feedburner.com/LatestBandcampDaily
- name: "Pitchfork"
url: https://pitchfork.com/news/
rss: https://pitchfork.com/rss/news/
- name: "FACT Magazine"
url: https://www.factmag.com
rss: https://feeds.feedburner.com/factmag
- name: "NME"
url: https://www.nme.com/news/music/
rss: https://www.nme.com/news/music/feed
- name: "Kerrang!"
url: https://www.kerrang.com/
rss: https://www.kerrang.com/feed.rss
- name: "Rock Sound"
url: https://www.rocksound.tv
rss: https://www.rocksound.tv/feeds/all
- slug: produce
name: "Блоги и ресурсы для музыкантов"
feeds:
- name: "Samesound"
url: https://samesound.ru
rss: https://samesound.ru/feed
- name: "Ableton Blog"
url: https://www.ableton.com/blog
rss: https://www.ableton.com/blog/feeds/latest
- name: "LANDR Blog"
url: https://blog.landr.com
rss: https://blog.landr.com/feed/
- name: "Pyramind Blog"
url: https://studios.pyramind.com/blog
rss: https://studios.pyramind.com/blog?format=rss
- name: "Hyperbits Blog"
url: https://hyperbitsmusic.com/blog/
rss: https://hyperbitsmusic.com/feed
- name: "r/WeAreTheMusicMakers"
url: https://www.reddit.com/r/WeAreTheMusicMakers/
rss: https://www.reddit.com/r/WeAreTheMusicMakers/.rss
- slug: vinyl
name: "Про винил"
feeds:
- name: "r/VinylReleases/"
url: https://www.reddit.com/r/VinylReleases/
rss: https://www.reddit.com/r/VinylReleases/.rss
- name: "Vinyl Me, Please"
url: http://thevinylfactory.com
rss: http://thevinylfactory.com/feed
- name: "Discogs Blog"
url: https://blog.discogs.com/en