-
Notifications
You must be signed in to change notification settings - Fork 38
/
planet.ini
1455 lines (1237 loc) · 42.6 KB
/
planet.ini
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
title = Planet openSUSE
[rickspencer3]
title = rickspencer3's Blog
feed = https://rickspencer3.weblog.lol/rss.xml
link = https://rickspencer3.weblog.lol/
location = en
avatar = https://cdn.some.pics/rickspencer3/66840dba4fa73.jpg
[yastteam]
title = YaST Team
feed = https://yast.opensuse.org/feed.xml
link = https://yast.opensuse.org/blog/
location = en
avatar = yast.png
[agama]
title = Agama Installer
feed = https://agama-project.github.io/blog/atom.xml
link = https://agama-project.github.io/blog
location = en
[openbuildservice]
title = Open Build Service
feed = https://openbuildservice.org/feed/
link = https://openbuildservice.org
location = en
avatar = obs.png
[leonardomndemattos]
title = Leonardo M. N. de Mattos
feed = https://www.mattos.eng.br/tag/opensuse/feed/
link = https://www.mattos.eng.br/tag/opensuse/
location = pt
author = member irc:analyser
[slawomirlach]
title = Sławomir Lach
feed = https://nintyfan.wordpress.com/feed/
link = https://nintyfan.wordpress.com/
location = en
[lenzgrimmer]
title = LenZ Grimmer
feed = http://blog.lenzg.net/tag/linux/feed/
link = http://blog.lenzg.net/
author = irc:LenzGr member
[joeshaw]
title = Joe Shaw
feed = https://www.joeshaw.org/atom.xml
link = https://www.joeshaw.org
avatar = https://planet.gnome.org/heads/joe.png
[federicomenaquintero]
title = Federico Mena-Quintero
feed = https://viruta.org/feeds/atom.xml
link = https://viruta.org/
avatar = https://planet.gnome.org/heads/federico.png
author = irc:federico1 member
[marcusmeissner]
title = Marcus Meissner
feed = https://marcusmeissner.livejournal.com/data/rss
link = https://marcusmeissner.livejournal.com
author = irc:_Marcus_ member
[wolfgangrosenauer]
title = Wolfgang Rosenauer
feed = http://www.rosenauer.org/blog/category/suse/feed/
link = http://www.rosenauer.org/blog/category/suse/
author = irc:WolfiR member
[sonjakrauseharder]
title = Sonja Krause-Harder
feed = https://sonjakrauseharder.blogspot.com/feeds/posts/full
link = https://sonjakrauseharder.blogspot.com
author = irc:skh
[corneliusschumacher]
title = Cornelius Schumacher
feed = https://blog.cornelius-schumacher.de/feeds/posts/default
link = https://blog.cornelius-schumacher.de
author = irc:cornelius member
[jamesots]
title = James Ots
feed = https://jamesots.blogspot.com/feeds/posts/full
link = https://jamesots.blogspot.com
[pascalbleser]
title = Pascal Bleser
feed = https://dev-loki.blogspot.com/feeds/posts/default?alt=rss
link = https://dev-loki.blogspot.com
avatar = yaloki.png
author = irc:yaloki member
[luboslunak]
title = Lubos Lunak
feed = https://blogs.kde.org/blog/280/feed
link = https://blogs.kde.org/blog/280
author = irc:llunak member
[antjefaber]
title = Antje Faber
feed = https://antjefaber.blogspot.com/feeds/posts/full
link = https://antjefaber.blogspot.com
[stephanbinner]
title = Stephan Binner
feed = https://blogs.kde.org/blog/457/feed
link = https://blogs.kde.org/blog/457
author = irc:Beineri member
[stephankulow]
title = Stephan Kulow
feed = https://blogs.kde.org/blog/124/feed
link = https://blogs.kde.org/blog/124
avatar = coolo.png
author = irc:coolo member
[robertschiele]
title = Robert Schiele
feed = https://rschiele.blogspot.com/feeds/posts/full
link = https://rschiele.blogspot.com
author = irc:schiele
[dannyalgaaf]
title = Danny Al-Gaaf
feed = https://blog.bisect.de/feeds/posts/default
link = https://blog.bisect.de
author = irc:dannyK
[holgermacht]
title = Holger Macht
feed = https://homac.github.io/atom.xml
link = https://homac.github.io/
avatar = hmacht.png
author = member
[jakubsteiner]
title = Jakub Steiner
feed = https://blog.jimmac.eu/feed.xml
link = https://blog.jimmac.eu/
author = irc:jimmac member
[duncanmacvicar]
title = Duncan Mac-Vicar
feed = https://www.mac-vicar.eu/posts/posts/rss.xml
link = https://www.mac-vicar.eu/posts/archive.html
avatar = dmv.png
author = irc:duncanmv member
[willstephenson]
title = Will Stephenson
feed = https://blogs.kde.org/blog/77/feed
link = https://blogs.kde.org/blog/77
avatar = wstephenson.png
author = irc:wstephenson member
[benjaminweber]
title = Benjamin Weber
feed = https://benjiweber.co.uk/blog/feed/
link = https://benjiweber.co.uk/blog/
author = irc:benJIman member
[martinvidner]
title = Martin Vidner
feed = http://feeds.feedburner.com/mvidner-blogspot-com
link = https://mvidner.blogspot.com
avatar = mvidner.png
author = irc:mvidner member
[hennevogelsang]
title = Henne Vogelsang
feed = https://copyleft.dev/feed.xml
link = https://copyleft.dev/
avatar = henne.png
author = irc:henne member
[jameswillcox]
title = James Willcox
feed = https://snorp.net/blog/atom.xml
link = https://snorp.net
avatar = https://planet.gnome.org/heads/snorp.png
[fridrichstrba]
title = Fridrich Strba
feed = https://fridrich.blogspot.com/feeds/posts/default
link = https://fridrich.blogspot.com
[nagappanalagappan]
title = Nagappan Alagappan
feed = https://nagappanal.blogspot.com/feeds/posts/full
link = https://nagappanal.blogspot.com
[jonathanervine]
title = Jonathan Ervine
feed = https://tablefor1.wordpress.com/feed/atom/
link = https://tablefor1.wordpress.com
[lluissanchez]
title = Lluis Sanchez
feed = https://foodformonkeys.blogspot.com/feeds/posts/default
link = https://foodformonkeys.blogspot.com
[klauskampf]
title = Klaus Kämpf
feed = https://kkaempf.blogspot.com/feeds/posts/default
link = https://kkaempf.blogspot.com
author = irc:kkaempf member
[opensusenews]
title = openSUSE News
feed = https://news.opensuse.org/feed.xml
link = https://news.opensuse.org
avatar = opensuse.png
[sankarp]
title = Sankar P
feed = https://psankar.blogspot.com/feeds/posts/default/-/suse
link = https://psankar.blogspot.com
avatar = psankar.png
author = irc:psankar member
[chenthillp]
title = Chenthill P
feed = https://chenthill.wordpress.com/category/suse/feed/atom/
link = https://chenthill.wordpress.com/category/suse/
[pavelmachek]
title = Pavel Machek
feed = https://pavelmachek.livejournal.com/data/atom
link = https://pavelmachek.livejournal.com
[veerapuramvaradhan]
title = Veerapuram Varadhan
feed = https://vvaradhan.blogspot.com/feeds/posts/default
link = https://vvaradhan.blogspot.com
[michaelwolf]
title = Michael Wolf
feed = https://nachosetcrayons.blogspot.com/feeds/posts/default
link = https://nachosetcrayons.blogspot.com
author = irc:mw
[martinschlander]
title = Martin Schlander
feed = https://mschlander.wordpress.com/category/opensuse/feed/atom/
link = https://mschlander.wordpress.com/category/opensuse/
avatar = mschlander.png
author = irc:cb400f member
[egberteich]
title = Egbert Eich
feed = https://egbert-e.livejournal.com/data/rss
link = https://egbert-e.livejournal.com
author = irc:egbert member
[fonglin]
title = Fong Lin
feed = https://linpeifeng.blogspot.com/atom.xml
link = https://linpeifeng.blogspot.com
[janholesovsky]
title = Jan Holesovsky
feed = https://holesovsky.blogspot.com/feeds/posts/default?alt=rss
link = https://holesovsky.blogspot.com
[hanspetterjansson]
title = Hans Petter Jansson
feed = https://hpjansson.org/blag/feed/
link = https://hpjansson.org/blag/
avatar = https://planet.gnome.org/heads/hpj.png
author = irc:hpj
[carlosgoncalves]
title = Carlos Gonçalves
feed = http://blog.cgoncalves.pt/feeds/posts/default
link = http://blog.cgoncalves.pt
avatar = cgoncalves.png
author = irc:cgoncalves member
[jordimassaguer]
title = Jordi Massaguer
feed = https://jordimassaguerpla.blogspot.com/feeds/posts/default
link = https://jordimassaguerpla.blogspot.com
author = member
[christianboltzen]
title = Christian Boltz
feed = https://blog.cboltz.de/feeds/categories/6-english.rss
link = https://blog.cboltz.de
author = irc:cboltz member
[christianboltzde]
title = Christian Boltz
feed = https://blog.cboltz.de/rss.xml
link = https://blog.cboltz.de
location = de
author = member
[vincentuntz]
title = Vincent Untz
feed = https://www.vuntz.net/journal/feed/en/rss2
link = https://www.vuntz.net/journal/
avatar = https://planet.gnome.org/heads/vuntz.png
author = irc:vuntz member
[stanislavvisnovsky]
title = Stanislav Visnovsky
feed = https://visnov.blogspot.com/feeds/posts/default
link = https://visnov.blogspot.com
author = irc:visnov member
[florianreuter]
title = Florian Reuter
feed = https://florianreuter.blogspot.com/feeds/posts/default
link = https://florianreuter.blogspot.com
[stefanseyfried]
title = Stefan Seyfried
feed = https://seifesrants.blogspot.com/feeds/posts/default?alt=rss
link = https://seifesrants.blogspot.com
author = irc:seife member
[jeffreystedfast]
title = Jeffrey Stedfast
feed = https://jeffreystedfast.blogspot.com/feeds/posts/default
link = https://jeffreystedfast.blogspot.com
avatar = https://planet.gnome.org/heads/fejj.png
[sandyarmstrong]
title = Sandy Armstrong
feed = https://automorphic.blogspot.com/feeds/posts/default
link = https://automorphic.blogspot.com
avatar = sandy.png
[jankupec]
title = Jan Kupec
feed = https://jniq.blogspot.com/feeds/posts/default
link = https://jniq.blogspot.com
author = irc:jniq member
[cameronseader]
title = Cameron Seader
feed = http://blog.seader.us/feeds/posts/default
link = http://blog.seader.us
avatar = cameron.png
[lucverhaegen]
title = Luc Verhaegen
feed = https://libv.livejournal.com/data/rss
link = https://libv.livejournal.com
author = irc:libv
[lukasocilka]
title = Lukas Ocilka
feed = https://kobliha-suse.blogspot.com/feeds/posts/default
link = https://kobliha-suse.blogspot.com
author = irc:kobliha
[jozefuhliarik]
title = Jozef Uhliarik
feed = https://jozisko.blogspot.com/feeds/posts/default
link = https://jozisko.blogspot.com
author = irc:koksik
[michalzugec]
title = Michal Zugec
feed = https://mzugec.blogspot.com/feeds/posts/default
link = https://mzugec.blogspot.com
author = irc:miso
# 2024-01-18 invalid XML, mail sent
#[gabrielburt]
# title = Gabriel Burt
# feed = https://www.gabrielburt.com/feeds/posts/default/?alt=rss
# link = https://www.gabrielburt.com
# avatar = https://planet.gnome.org/heads/gabaug.png
[adrianschroeter]
title = Adrian Schröter
feed = https://monarchieundalltag.wordpress.com/feed/
link = https://monarchieundalltag.wordpress.com
author = irc:adrianS member
[klaasfreitag]
title = Klaas Freitag
feed = https://dragotin.codeberg.page/index.xml
link = https://dragotin.codeberg.page/
avatar = dragotin.png
author = irc:dragotin member
[matthiashopf]
title = Matthias Hopf
feed = https://emmes.livejournal.com/data/rss
link = https://emmes.livejournal.com
avatar = mhopf.png
[juliovannini]
title = Julio Vannini
feed = https://ungaman.wordpress.com/feed/atom/
link = https://ungaman.wordpress.com
location = es
[katarinamachalkova]
title = Katarina Machalkova
feed = https://hedgehogpainter.livejournal.com/data/atom
link = https://hedgehogpainter.livejournal.com
avatar = kmachalkova.png
author = irc:Bubli member
[johnnyjacob]
title = Johnny Jacob
feed = https://johnnyjacob.wordpress.com/category/tech/suse/feed/
link = https://johnnyjacob.wordpress.com/category/tech/suse/
author = irc:jony
[luismedinas]
title = Luis Medinas
feed = https://lmedinas.livejournal.com/data/rss
link = https://lmedinas.livejournal.com
author = irc:metalgod
[nikanthkarthikesan]
title = Nikanth Karthikesan
feed = https://nikanth.blogspot.com/feeds/posts/default/-/planetsuse
link = https://nikanth.blogspot.com
[hanwenkam]
title = Han Wen Kam
feed = http://feeds.feedburner.com/SellingFreeSoftwareForALiving
link = https://sellingfreesoftwareforaliving.blogspot.com
avatar = han_wen_kam.png
[rajkomatovic]
title = Rajko Matovic
feed = https://rajkov-blog.blogspot.com/feeds/posts/default
link = https://rajkov-blog.blogspot.com
[ioanvancea]
title = Ioan Vancea
feed = https://www.vioan.eu/blog/feeds/all.atom.xml
link = https://www.vioan.eu/blog/
location = en
author = irc:IonutVan member
[andresgaragoneses]
title = Andrés G. Aragoneses
feed = https://knocte.blogspot.com/feeds/posts/default/-/SoftwareLibre
link = https://knocte.blogspot.com
avatar = knocte.png
author = irc:knocte
[petrbaudis]
title = Petr Baudis
feed = http://log.or.cz/?feed=rss2
link = http://log.or.cz/
author = irc:pasky
[mohitverma]
title = Mohit Verma
feed = http://feeds.feedburner.com/bolta-gecko
link = https://bolta-gecko.blogspot.com
[ladislavslezak]
title = Ladislav Slezák
feed = https://blog.ladslezak.cz/feed.xml
link = https://blog.ladslezak.cz
location = en
author = irc:lslezak
[javierllorenteen]
title = Javier Llorente
feed = https://www.javierllorente.com/category/english/feed/
link = https://www.javierllorente.com/category/english/
author = irc:javier member
[javierllorentees]
title = Javier Llorente
feed = https://www.javierllorente.com/category/castellano/feed/
link = https://www.javierllorente.com/category/castellano/
location = es
author = irc:javier member
[alexandernaumov]
title = Alexander Naumov
feed = https://thefreecountry.wordpress.com/category/gnulinux/opensuse/feed/
link = https://thefreecountry.wordpress.com/category/gnulinux/opensuse/
author = member irc:anaumov
[lukaslipavsky]
title = Lukas Lipavsky
feed = https://infragments.blogspot.com/feeds/posts/default
link = https://infragments.blogspot.com
author = irc:llipavsky
[stephanedelcroix]
title = Stephane Delcroix
feed = http://blog.reblochon.org/feeds/posts/default
link = http://blog.reblochon.org
[mauroparramirandaes]
title = Mauro Parra Miranda
feed = https://mauropm.livejournal.com/data/rss
link = https://mauropm.livejournal.com
location = es
[dionatamartins]
title = Dionata Martins
feed = https://dionatamartins.blogspot.com/feeds/posts/default
link = https://dionatamartins.blogspot.com
location = pt
[marcelosegura]
title = Marcelo Segura
feed = https://usuariolinux.blogspot.com/feeds/posts/default
link = https://usuariolinux.blogspot.com
location = pt
[fabiolima]
title = Fabio Lima
feed = https://neofenix.wordpress.com/feed/atom/
link = https://neofenix.wordpress.com
location = pt
[renatodepontespereira]
title = Renato de Pontes Pereira
feed = https://renatopp.wordpress.com/feed/atom/
link = https://renatopp.wordpress.com
location = pt
author = irc:renatopp
[stefanbruens]
title = Stefan Brüns
feed = https://lurchi.wordpress.com/feed/
link = https://lurchi.wordpress.com
author = irc:lurchi
[alexandernaumovru]
title = Alexander Naumov
feed = https://thefreecountry.wordpress.com/category/linux/suse-ru/feed/
link = https://thefreecountry.wordpress.com/category/linux/suse-ru/
location = ru
author = irc:anaumov member
[alexandertolstoy]
title = Alexander Tolstoy
feed = https://atolstoy.wordpress.com/tag/opensuse/feed/
link = https://atolstoy.wordpress.com/tag/opensuse/
location = ru
[alexeybovanenko]
title = Alexey Bovanenko
feed = https://clangprogramming.blogspot.com/feeds/posts/default
link = https://clangprogramming.blogspot.com
location = ru
[dinarvaleev]
title = Dinar Valeev
feed = https://dinarv.blogspot.com/feeds/posts/default
link = https://dinarv.blogspot.com
location = ru
author = irc:k0da member
[genixinfo]
title = Genix Info
feed = https://genixinfo.blogspot.com/feeds/posts/default
link = https://genixinfo.blogspot.com
location = pt
[dominiqueleuenberger]
title = Dominique Leuenberger
feed = http://dominique.leuenberger.net/blog/feed/
link = http://dominique.leuenberger.net/blog/
author = irc:DimStar member
[sarahjuliakriesch]
title = Sarah Julia Kriesch
feed = https://sarah-julia-kriesch.eu/category/openSUSE/feed/
link = https://sarah-julia-kriesch.eu/category/openSUSE/
location = en
author = irc:AdaLovelace member
[raymondwooninck]
title = Raymond Wooninck
feed = https://tittiatcoke.wordpress.com/category/openSUSE/feed/?mrss=off
link = https://tittiatcoke.wordpress.com/category/openSUSE/
avatar = tittiatcoke.png
author = irc:tittiatcoke member
[kdeatopensuse]
title = KDE at openSUSE
feed = https://kdeatopensuse.wordpress.com/feed/
link = https://kdeatopensuse.wordpress.com
avatar = kdeatopensuse.png
[sebastiankuegler]
title = Sebastian Kügler
feed = https://vizzzion.org/blog/feed/
link = https://vizzzion.org/blog/
avatar = sebas.png
author = irc:sebas
[alessandrodeoliveirafaria]
title = Alessandro de Oliveira Faria
feed = https://assuntonerd.com.br/feed/
link = https://assuntonerd.com.br
avatar = assuntonerd.png
location = pt
author = irc:cabelo
[innovatorsforopensuse]
title = Innovators for openSUSE
feed = https://innovatorsforopensuse.org/feed/
link = https://innovatorsforopensuse.org
avatar = i4os.png
location = en
author = irc:cabelo
[matweykornilov]
title = Matwey Kornilov
feed = http://blog.matwey.name/feeds/posts/default/-/opensuse
link = http://blog.matwey.name
location = ru
[antonchernyshov]
title = Anton Chernyshov
feed = https://tux-the-penguin.blogspot.com/feeds/posts/default
link = https://tux-the-penguin.blogspot.com
location = ru
[baltasarortega]
title = Baltasar Ortega
feed = http://feeds.feedburner.com/kdeblogrss
link = http://feeds.feedburner.com/kdeblogrss
location = es
author = irc:baltolkien member
[anatolyshikolay]
title = Anatoly Shikolay
feed = https://livelog.wordpress.com/category/opensuse/feed/
link = https://livelog.wordpress.com/category/opensuse/
location = ru
[mauroparramiranda]
title = Mauro Parra-Miranda
feed = https://feeds.feedburner.com/blogspot/lXMaK
link = https://feeds.feedburner.com/blogspot/lXMaK
location = es
avatar = mauropm.png
author = irc:mauropm member
[sergeylomakov]
title = Sergey Lomakov
feed = http://feeds.feedburner.com/SapfeerOpensuse
link = http://feeds.feedburner.com/SapfeerOpensuse
location = ru
[carlosribeiro]
title = Carlos Ribeiro
feed = http://softwarelivre.org/usesuse/blog/feed
link = http://softwarelivre.org/usesuse/blog
location = pt
author = irc:CarlosRibeiro
[sebastiansiebert]
title = Sebastian Siebert
feed = https://www.sebastian-siebert.de/feed/
link = https://www.sebastian-siebert.de
location = de
author = irc:Freespacer member
[valerygornih]
title = Valery Gornih
feed = https://aviv.pp.ua/blog/feed/
link = https://aviv.pp.ua/blog-klient-dlya-kde/
location = ru
[gregkroahhartman]
title = Greg Kroah-Hartman
feed = http://www.kroah.com/log/index.rss
link = http://www.kroah.com/log/
avatar = gkh.png
author = member irc:gregkh
[alexandersavin]
title = Alexander Savin
feed = https://alexqwesa.blogspot.com/feeds/posts/default/-/opensuse
link = https://alexqwesa.blogspot.com
location = ru
author = member
[antoncherkasov]
title = Anton Cherkasov
feed = http://blog.linux-oid.ru/feeds/posts/default/
link = http://blog.linux-oid.ru
location = ru
[vojtechzeisek_cs]
title = Vojtěch Zeisek
feed = https://trapa.cz/cs/taxonomy/term/51/feed
link = https://trapa.cz/cs/taxonomy/term/51/
location = cs
avatar = vojtaeus.jpg
author = irc:Vojtaeus
[vojtechzeisek_en]
title = Vojtěch Zeisek
feed = https://trapa.cz/en/taxonomy/term/51/feed
link = https://trapa.cz/en/taxonomy/term/51/
location = en
avatar = vojtaeus.jpg
author = irc:Vojtaeus
[chunhungsakanahuangtw]
title = Chun-Hung sakana Huang
feed = https://sakananote2.blogspot.com/feeds/posts/default/-/SUSE%20Linux
link = https://sakananote2.blogspot.com
location = zh_TW
avatar = sakana.png
author = irc:sakana
[chunhungsakanahuang]
title = Chun-Hung sakana Huang
feed = https://sakananote2english.blogspot.com/feeds/posts/default
link = https://sakananote2english.blogspot.com
avatar = sakana.png
author = irc:sakana member
[raychen]
title = Ray Chen
feed = https://feeds.feedburner.com/blogspot/rqoCN
link = https://swyear.blogspot.com
location = zh_TW
author = irc:swyear member
[jospoortvliet]
title = Jos Poortvliet
feed = https://blog.jospoortvliet.com/feeds/posts/default
link = https://blog.jospoortvliet.com
avatar = jospoortvliet.png
author = irc:jospoortvliet member
[thomasthym]
title = Thomas Thym
feed = https://ungethym.blogspot.com/feeds/posts/default/-/opensuse
link = https://ungethym.blogspot.com
avatar = thomas_thym.png
author = irc:ungethym
[masimvavaisugianto]
title = Masim Vavai Sugianto
feed = https://www.vavai.com/category/linux/feed/
link = https://www.vavai.com/category/linux/
location = id
author = irc:vavai member
[andressilva]
title = Andres Silva
feed = https://anditosan.blogspot.com/feeds/posts/default?alt=rss
link = https://anditosan.blogspot.com
avatar = anditosan.png
author = irc:anditosan member
[greekopensuseambassadors]
title = Greek openSUSE Ambassadors
feed = https://opensuseambassadors.blogspot.com/feeds/posts/default
link = https://opensuseambassadors.blogspot.com
avatar = greek_ambassadors.png
[manugupta]
title = Manu Gupta
feed = https://sysbytes.wordpress.com/feed/
link = https://sysbytes.wordpress.com
author = irc:manugupt1 member
[alexandremoura]
title = Alexandre Moura
feed = https://gnurockreggae.blogspot.com/feeds/posts/default/-/opensuse
link = https://gnurockreggae.blogspot.com
location = pt
[timotheebriolet]
title = Timothée Briolet
feed = https://syvolc.briolet.fr/feed/
link = https://syvolc.briolet.fr
location = fr
author = irc:Syvolc
[saschapeilicke]
title = Sascha Peilicke
feed = https://saschpe.wordpress.com/category/opensource/suse/feed/
link = https://saschpe.wordpress.com/category/opensource/suse/
avatar = sascha_peilicke.png
author = irc:saschpe member
[kostaskoudarasen]
title = Kostas Koudaras
feed = https://e-tote-kala.blogspot.com/feeds/posts/default/-/opensuse-en
link = https://e-tote-kala.blogspot.com
author = irc:warlordfff member
[kostaskoudarasgr]
title = Kostas Koudaras
feed = https://e-tote-kala.blogspot.com/feeds/posts/default/-/opensuse-gr
link = https://e-tote-kala.blogspot.com
location = el
author = irc:warlordfff member
[efstathiosiosifidisen]
title = Efstathios Iosifidis
feed = https://eiosifidis.blogspot.com/feeds/posts/default/-/opensuse-en
link = https://eiosifidis.blogspot.com
avatar = efstathios_iosifidis.png
author = irc:Diamond_gr member
[efstathiosiosifidisgr]
title = Efstathios Iosifidis
feed = https://eiosifidis.blogspot.com/feeds/posts/default/-/opensuse-gr
link = https://eiosifidis.blogspot.com
location = el
avatar = efstathios_iosifidis.png
author = irc:Diamond_gr member
[tejasguruswamy]
title = Tejas Guruswamy
feed = https://masterpatricko.blogspot.com/feeds/posts/default?alt=rss
link = https://masterpatricko.blogspot.com
author = irc:MasterPatricko member
[alanclark]
title = Alan Clark
feed = https://alan-clark.blogspot.com/feeds/posts/default?alt=rss
link = https://alan-clark.blogspot.com
avatar = AlanClark.png
author = irc:AlanClark
[franciscojarias]
title = Francisco J. Arias
feed = https://fcoarias.blogspot.com/feeds/posts/default/-/openSUSE
link = https://fcoarias.blogspot.com
location = es
avatar = fcoarias.jpg
author = irc:fcoarias member
[michalcihar]
title = Michal Čihař
feed = https://blog.cihar.com/archives/suse/index-atom.xml
link = https://blog.cihar.com/archives/suse/
avatar = michal_cihar.png
author = irc:nijel
[frankkarlitschek]
title = Frank Karlitschek
feed = https:///karlitschek.de/categories/opensuse/index.xml
link = https://karlitschek.de/categories/opensuse/
avatar = frank_karlitschek.png
author = member
[fredericcrozat]
title = Frédéric Crozat
feed = http://blog.crozat.net/feeds/posts/default/
link = http://blog.crozat.net
avatar = fcrozat.png
author = irc:fcrozat member
[bertholdgunreben]
title = Berthold Gunreben
feed = https://azouhr.wordpress.com/feed/
link = https://azouhr.wordpress.com
author = irc:azouhr
[stuarttanner]
title = Stuart Tanner
feed = https://boltonlinux.blogspot.com/feeds/posts/default
link = https://boltonlinux.blogspot.com
author = irc:SatManUK
[flaviocastelli]
title = Flavio Castelli
feed = https://flavio.castelli.me/atom.xml
link = https://flavio.castelli.me
avatar = flavio_castelli.png
author = nick:flavio member
[georgebratsos]
title = George Bratsos
feed = https://etern4l.wordpress.com/tag/opensuse-el/feed/
link = https://etern4l.wordpress.com/tag/opensuse-el/
location = el
avatar = george_bratsos.png
author = irc:Etern4L
[lowkianseong]
title = Low Kian Seong
feed = http://blog.lowkster.com/feeds/posts/default/-/opensuse?alt=rss
link = https://blog.lowkster.com
author = irc:lowks member
[efstathiosagrapidis]
title = Efstathios Agrapidis
feed = https://stathisagrapidis.wordpress.com/tag/opensuse-en/feed/
link = https://stathisagrapidis.wordpress.com/tag/opensuse-en/
avatar = efagra.png
author = irc:efagra
[efstathiosagrapidisgr]
title = Efstathios Agrapidis
feed = https://stathisagrapidis.wordpress.com/tag/opensuse-el/feed/
link = https://stathisagrapidis.wordpress.com/tag/opensuse-el/
location = el
avatar = efagra.png
author = irc:efagra
[christosbountalis]
title = Christos Bountalis
feed = https://cbounta.wordpress.com/tag/opensuse/feed/
link = https://cbounta.wordpress.com/tag/opensuse/
author = irc:mpounta gsoc
[diomidisanadiotis]
title = Diomidis Anadiotis
feed = https://anadiotisd.wordpress.com/feed/
link = https://anadiotisd.wordpress.com
location = el
avatar = diomidis.png
author = irc:diomidis
[rousinopoulosathanasiosilias]
title = Rousinopoulos Athanasios-Ilias
feed = https://zoumpis.wordpress.com/tag/opensuse-en/feed/
link = https://zoumpis.wordpress.com/tag/opensuse-en/
author = irc:zoumpis
[rousinopoulosathanasiosiliases]
title = Rousinopoulos Athanasios-Ilias
feed = https://zoumpis.wordpress.com/tag/opensuse-es/feed/
link = https://zoumpis.wordpress.com/tag/opensuse-es/
location = es
author = irc:zoumpis
[rousinopoulosathanasiosiliasgr]
title = Rousinopoulos Athanasios-Ilias
feed = https://zoumpis.wordpress.com/tag/opensuse-el/feed/
link = https://zoumpis.wordpress.com/tag/opensuse-el/
location = el
author = irc:zoumpis
[adrianzavalacoria]
title = Adrian Zavala Coria
feed = https://dothefly.wordpress.com/feed/
link = https://dothefly.wordpress.com
location = es
author = irc:hawk___
[ralflang]
title = Ralf Lang
feed = https://www.ralf-lang.de/category/it/opensuse/feed/
link = https://www.ralf-lang.de/category/it/opensuse/
author = irc:lang-b1
[justineleng]
title = Justine Leng
feed = https://obsforandroid.wordpress.com/feed/
link = https://obsforandroid.wordpress.com
avatar = j_leng.png
author = irc:justine19 gsoc
[vasiliskarampouzis]
title = Vasilis Karampouzis
feed = https://vasiliskarampouzis.wordpress.com/feed/
link = https://vasiliskarampouzis.wordpress.com
location = el
author = irc:Master91
[yuchencho]
title = Yu-Chen Cho
feed = http://feeds.feedburner.com/AlsLinux
link = https://al-tw.blogspot.com
location = zh_TW
[gregorymzysk]
title = Gregory M. Zysk
feed = https://openleadership.blogspot.com/feeds/posts/default
link = https://openleadership.blogspot.com
author = irc:gmzysk
[jimfehlig]
title = Jim Fehlig
feed = https://jfehlig.wordpress.com/feed/
link = https://jfehlig.wordpress.com
avatar = jimfehlig.jpg
author = irc:jimfehlig member
[saurabhsood]
title = Saurabh Sood
feed = https://iamsaurabh.wordpress.com/tag/opensuse/feed/
link = https://iamsaurabh.wordpress.com/tag/opensuse/