-
Notifications
You must be signed in to change notification settings - Fork 15
/
planet.ini
1015 lines (876 loc) · 37 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
#
# If your blog contains a mix MySQL and non-MySQL content, please consider
# submitting a category or tag feed instead of a default feed.
#
# These are examples of default feeds:
# https://federico-razzoli.com/feed
# https://jfg-mysql.blogspot.com/feeds/posts/default
# https://code.openark.org/blog/feed
#
# These are examples of category / tag feeds corresponding to above:
# https://federico-razzoli.com/category/mysql-and-mariadb/feed
# https://jfg-mysql.blogspot.com/feeds/posts/default/-/MySQL%20and%20variants
# https://code.openark.org/blog/category/mysql/feed
#
# There is also the possibility of submitting a filtered feed more details
# in https://github.com/oursqlcommunity-org/planet/blob/master/feed_filtering.md
#
title = Planet for the MySQL Community
url = https://planet.oursqlcommunity.org/
################################################
# Begin of associations / community initiatives.
# JFG: it has been anounced that the awards came to an end [1], but by keeping
# this here, I want to show visibility to this nice community initiative,
# and hopefuly someone will recucitate them.
# [1]: https://mysqlawards.org/15-years-and-done/
# JFG: on 2022-12-24, the website is not answering, commenting below but keeing
# for history about to this nice community initiative,
# and hopefuly someone will recucitate them.
# [error] *** error: fetching feed 'aso_mysql_community_awards' - [Errno::ECONNREFUSED] Failed to open TCP connection to mysqlawards.org:443 (Connection refused - connect(2) for "mysqlawards.org" port 443)
#[aso_mysql_community_awards]
# title = MySQL Community Awards
# link = https://mysqlawards.org/
# feed = https://mysqlawards.org/feed/
# Needs to end with _filtered for filtering icon.
[aso_percona_community_blog_filtered]
# Original feed: https://percona.community/blog/index.xml
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / description / match regex / "/mysql|mariadb|percona live|pmm|percona monitoring and management|xtrabackup|proxysql|kubernetes/i".
title = Percona Community Blog
link = https://percona.community/blog/
feed = https://siftrss.com/f/rWW3L1jz0m
twitter = PerconaBytes
[aso_fosdem_mysql_friends]
title = FOSDEM MySQL & Friends Devroom
link = https://www.mysqlandfriends.eu/
feed = https://www.mysqlandfriends.eu/feed/
# End of associations / community initiatives.
##############################################
#####################################################
## Begin of vendor / commercial / organization blogs.
# Sorry, this is oppinionated...
# Below should be sorted with Oracle first, then MariaDB, then Percona,
# and then other vendor / commercial / organization blogs sorted by title.
# If an organization evolves to become prominent, this sorting will evolve.
# Oracle first.
# JFG: yes, the feed below is weird, details in [1].
# [1]: https://github.com/oursqlcommunity-org/planet/issues/42
# Sumarry of from [1]:
# Using siftrss as a proxy for https://blogs.oracle.com/mysql/rss works better
# (include / title / match regex / "/./").
[com_oracle_mysql_blog]
title = The Oracle MySQL Blog
link = https://blogs.oracle.com/mysql/
feed = https://siftrss.com/f/qxdmzAVAqN
twitter = MySQL
# Then MariaDB.
[com_mariadb.com]
title = MariaDB Corporation Blog
link = https://mariadb.com/resources/blog/
feed = https://mariadb.com/feed/
twitter = mariadb
[com_mariadb.org]
title = MariaDB Foundation Blog
link = https://mariadb.org/blog/
feed = https://mariadb.org/feed/
twitter = mariadb_org
# Then Percona.
# Needs to end with _filtered for filtering icon.
[com_percona_database_blog_filtered]
# Original feed: https://www.percona.com/blog/feed/
# Too much non-MySQL content on original feed, missing content on the previous feed, so filtered via siftrss.
# On 2024-01-10, changed filtering conf from content:encoded to description.
# At the same time, we remove fix for checking MySQL, MariaDB, ... twice
# hoping the description will not include MySQL for a Postgres post.
# Configuration: include / description / match regex / "/mysql|mariadb|innodb|percona live|pmm|myrocks|proxysql|kubernetes|XtraDB|XtraBackup|Galera|Group Replication/i".
# Accepting Percona Live posts means we get Postgres posts when they mention the
# author speaking at PL, but we prefer that than missing posts about PL not
# mentionning MySQL, etc...
# Idem pmm and kubernetes.
title = Percona Database Blog
link = https://www.percona.com/blog/
feed = https://siftrss.com/f/nb7q0Q5J99o
twitter = Percona
# Then other vendor / commercial / organization sorted by title.
# Please sort below by title.
# Needs to end with _filtered for filtering icon.
[com_airtable_filtered]
# Original feed: https://medium.com/feed/airtable-eng
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql/i".
title = Airtable Engineering Blog
link = https://medium.com/airtable-eng
feed = https://siftrss.com/f/pWVkjQN1V1
twitter = airtable
# Needs to end with _filtered for filtering icon.
[com_aiven_filtered]
# Original feed: https://aiven.io/blog/feed.xml
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / category / match regex / "/mysql/i".
title = Aiven Blog - MySQL
link = https://aiven.io/blog/
feed = https://siftrss.com/f/keVdqLWyXJ
twitter = aiven_io
# Needs to end with _filtered for filtering icon.
[com_aws_news_filtered]
# Original feed: https://aws.amazon.com/about-aws/whats-new/recent/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / description / match regex / "/mysql.*mysql|mariadb.*mariadb/i".
# In above, we check for MySQL and MariaDB twice because a PostgreSQL post ends-up in the
# feed if it mentions below.
# "Amazon RDS will provide critical security and bug fixes for your MySQL and PostgreSQL databases on Aurora and RDS [...]".
title = AWS What's New
link = https://aws.amazon.com/new/
feed = https://siftrss.com/f/Yryvk9kwLo
twitter = awscloud
# Needs to end with _filtered for filtering icon.
[com_aws_database_filtered]
# Original feed: https://aws.amazon.com/blogs/database/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql.*mysql|mariadb.*mariadb/i".
# In above, we check for MySQL and MariaDB twice because an SQL Server post ends-up in the
# feed if the bio at the end of the post mentions the author being knowledgable about MySQL.
title = AWS Database Blog
link = https://aws.amazon.com/blogs/database/
feed = https://siftrss.com/f/ayr1ndGd17
twitter = awscloud
# Commented for below. Keeping for when it will be back.
# https://github.com/oursqlcommunity-org/planet/issues/124
## Needs to end with _filtered for filtering icon.
#[com_azure_updates_filtered]
# # Original feed: https://azure.microsoft.com/en-us/updates/feed/
# # Too much non-MySQL content on original feed, so filtered via siftrss.
# # Configuration: include / content:encoded / match regex / "/mysql|mariadb/i".
# title = Azure Updates
# link = https://azure.microsoft.com/en-us/updates/
# feed = https://siftrss.com/f/dg1XYyBbqwA
# twitter = azure
[com_azure_mysql_blogs]
title = Azure for MySQL Blog
link = https://techcommunity.microsoft.com/t5/azure-database-for-mysql-blog/bg-p/ADforMySQL
feed = https://techcommunity.microsoft.com/t5/s/gxcuf89792/rss/board?board.id=ADforMySQL
twitter = AzureDBMySQL
#email = [email protected]
# Needs to end with _filtered for filtering icon.
[com_cashapp_filtered]
# Original feed: https://code.cash.app/feed.xml
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content / match regex / "/mysql|mariadb/i".
title = Cash App Code Blog
link = https://code.cash.app/
feed = https://siftrss.com/f/Zn36x5B6Z5D
twitter = cashapp
[com_Continuent]
title = Continuent Blog
link = https://www.continuent.com/blog/
feed = https://www.continuent.com/feeds/blog
twitter = Continuent
[com_devart_mysql_tool]
title = Devart MySQL Tool Blog
link = https://blog.devart.com/category/products/mysql-tools
feed = https://blog.devart.com/category/products/mysql-tools/feed
twitter = DevartSoftware
# Needs to end with _filtered for filtering icon.
[com_dolthub_filtered]
# Original feed: https://www.dolthub.com/blog/rss.xml
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql.*mysql/i".
# MySQL twice in above to filter posts like below.
# https://www.dolthub.com/blog/2024-06-18-postgres-client-tests/
title = DoltHub Blog
link = https://www.dolthub.com/blog/
feed = https://siftrss.com/f/Kkmm5PG8lw
twitter = dolthub
# Needs to end with _filtered for filtering icon.
[com_engineering_at_meta_filtered]
# Original feed: https://engineering.fb.com/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql|mariadb|myrocks|rocksdb/i".
title = Engineering at Meta
link = https://engineering.fb.com/
feed = https://siftrss.com/f/XnPDDD6KnJ
twitter = fb_engineering
# Needs to end with _filtered for filtering icon.
[com_esty_codeascraft_filtered]
# Original feed: https://www.etsy.com/codeascraft/rss
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql|mariadb|vitess/i".
title = Etsy Code as Craft
link = https://www.etsy.com/codeascraft
feed = https://siftrss.com/f/q8X9B8099Wv
twitter = codeascraft
# Needs to end with _filtered for filtering icon.
[com_eversql_blog_filtered]
# Original feed: https://www.eversql.com/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql.*mysql|mariadb.*mariadb/i".
# In above, we check for MySQL and MariaDB twice because a Postgres post mentionning
# Postgres more popular than MySQL is getting selected without it.
title = EverSQL Blog
link = https://www.eversql.com/blog/
feed = https://siftrss.com/f/anrZ5NmqrBv
twitter = eversql
[com_galera]
title = Galera Blog
link = https://galeracluster.com/category/blog/
feed = https://galeracluster.com/feed/
twitter = GaleraCluster
# Needs to end with _filtered for filtering icon.
[com_geeksww_filtered]
# Original feed: https://geeksww.com/tutorials/rss.php
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / description / match regex / "/mysql|mariadb/i".
title = Geeks Worldwide
link = https://geeksww.com/
feed = https://siftrss.com/f/pNxzaGJoRNb
twitter = geeksww
# Needs to end with _filtered for filtering icon.
[com_github_blog_filtered]
# Original feed: https://github.blog/feed/
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql|mariadb/i".
title = The GitHub Blog
link = https://github.blog/
feed = https://siftrss.com/f/886blBxJ1P
twitter = github
# Needs to end with _filtered for filtering icon.
[com_hubspot_blog_filtered]
# Original feed: https://product.hubspot.com/blog/rss.xml
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql|mariadb|vitess/i".
title = HubSpot Product Team Blog
link = https://product.hubspot.com/blog
feed = https://siftrss.com/f/y6zNvG8mqJ9
twitter = HubSpotDev
# Needs to end with _filtered for filtering icon.
[com_MinervaSQL_filtered]
# Original feed: https://minervadb.xyz/feed/
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql.*mysql|mariadb.*mariadb|innodb.*innodb/i".
# In above, we check for keyworks twice because a Postgres post was
# aggregated because a comment at the end reading:
# "The WebScale Database Infrastructure Operations Experts in PostgreSQL, MySQL, MariaDB and ClickHouse".
# https://github.com/oursqlcommunity-org/planet/issues/105
title = MinervaDB Blog
link = https://minervadb.xyz/blog/
feed = https://siftrss.com/f/pWoRMKvez
# There are 2 Twitter handles for MinervaDB: WebScaleDBA and MinervaSQL.
# The good one is WebScaleDBA according to below.
# https://twitter.com/WebScaleDBA/status/1664962111108448256
twitter = WebScaleDBA
# Needs to end with _filtered for filtering icon.
[com_mydbops_filtered]
# Original feed: https://www.mydbops.com/blog/feed
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / description / match regex / "/mysql|mariadb/i".
title = Mydbops Blog
link = https://www.mydbops.com/blog/
feed = https://siftrss.com/f/3mBLlJqJP0v
twitter = mydbopsofficial
[com_modern_sql]
title = Modern SQL
link = https://modern-sql.com/
feed = https://modern-sql.com/feed
twitter = ModernSQL
[com_mysqlperf]
title = MySQL Performance Blog
link = https://mysqlperf.github.io/
feed = https://mysqlperf.github.io/feed.xml
twitter = mysqlperf
[com_open_query]
title = Open Query Blog
link = https://openquery.com.au/blog
feed = https://openquery.com.au/feed
twitter = openquery
# Needs to end with _filtered for filtering icon.
[com_phpflow_filtered]
# Original feed: https://phpflow.com/feed/
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / description / match regex / "/mysql|mariadb/i".
title = Phpflow.com
link = https://phpflow.com/
feed = https://siftrss.com/f/9DQ1pRZPBPY
twitter = phpflow_blog
[com_PingCAP]
title = PingCAP Blog
link = https://pingcap.com/blog/
feed = https://www.pingcap.com/feed/
twitter = PingCAP
[com_planetscale]
title = PlanetScale Blog
link = https://planetscale.com/blog/
feed = https://planetscale.com/blog/rss.xml
twitter = PlanetScale
[com_proxysql]
title = ProxySQL Blog
link = https://proxysql.com/blog/
feed = https://proxysql.com/feed/
twitter = proxysql
# Below commented on 2024-11-21 for below issue.
# https://github.com/oursqlcommunity-org/planet/issues/129
#[com_pythian]
# title = Pythian Blog - MySQL Track
# link = https://blog.pythian.com/technical-track/mysql/
# feed = https://blog.pythian.com/technical-track/mysql/feed/
# twitter = Pythian
# Needs to end with _filtered for filtering icon.
[com_readyset_filtered]
# Original feed: https://blog.readyset.io/rss/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / /mysql|mariadb/i.
title = Readyset Blog
link = https://blog.readyset.io/
feed = https://siftrss.com/f/YKqo1wd3l1Q
twitter = readysetio
# Needs to end with _filtered for filtering icon.
[com_rosehosting_filtered]
# Original feed: https://www.rosehosting.com/blog/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / category / contains / mysql.
title = RoseHosting Blog
link = https://www.rosehosting.com/blog/
feed = https://siftrss.com/f/71711xyBwjm
twitter = rosehosting
# Needs to end with _filtered for filtering icon.
[com_scalegrid_filtered]
# Original feed: https://scalegrid.io/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / description / match regex / /mysql|mariadb/i.
title = ScaleGrid Blog
link = https://scalegrid.io/blog/
feed = https://siftrss.com/f/y6qkPj5oqRy
twitter = scalegridio
# Needs to end with _filtered for filtering icon.
[com_severalnines_filtered]
# Original feed: https://severalnines.com/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql|mariadb/i".
title = Severalnines Blog
link = https://severalnines.com/blog/
feed = https://siftrss.com/f/LDp1ZBwy6o
twitter = severalnines
[com_shatteredsilicon]
title = Shattered Silicon OSDB Blog
link = https://shatteredsilicon.net/blog/
feed = https://shatteredsilicon.net/feed/
twitter = @GordanBobic
email = [email protected]
# Needs to end with _filtered for filtering icon.
[com_shurutech_filtered]
# Original feed: https://shurutech.com/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql|mariadb/i".
title = Shuru Blog
link = https://shurutech.com/blogs/
feed = https://siftrss.com/f/x7WG5DlMMBn
twitter = shuruInc
[com_skeema]
title = Skeema Blog
link = https://www.skeema.io/blog/
feed = https://www.skeema.io/blog/index.xml
twitter = skeema_io
email = [email protected]
[com_sql_and_its_sequels]
title = SQL And Its Sequels (Ocelot Blog)
link = https://ocelot.ca/blog/
feed = https://ocelot.ca/blog/feed/
[com_ThisHostingRocks]
title = ThisHosting.Rocks
link = https://thishosting.rocks
feed = https://thishosting.rocks/tag/mysql/feed/
twitter = thishostrocks
email = [email protected]
[com_techbeamers_mysql]
title = TechBeamers MySQL
link = https://www.techbeamers.com/mysql/
feed = https://www.techbeamers.com/mysql/feed/
twitter = TechBeamers
[com_use_index_luke]
title = Use The Index, Luke
link = https://use-the-index-luke.com/
feed = https://use-the-index-luke.com/blog/feed
twitter = MarkusWinand
# Needs to end with _filtered for filtering icon.
[com_vettabase_filtered]
# Original feed: https://vettabase.com/feed/
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql|mariadb/i".
title = Vettabase
link = https://vettabase.com/blog
feed = https://siftrss.com/f/0bNXVpJjQm
twitter = vettabase
email = [email protected]
[com_vitess]
title = Vitess
link = https://vitess.io/blog/
feed = https://vitess.io/blog/index.xml
twitter = vitessio
[com_warpsql]
title = WarpSQL Blog
link = https://warpsql.blog
feed = https://warpsql.blog/feed/
twitter = justin_swanhart
email = [email protected]
[com_wesql]
title = WeSQL Blog
link = https://wesql.io/blog/
feed = https://wesql.io/blog/rss.xml
# Needs to end with _filtered for filtering icon.
[com_webyog_filtered]
# Original feed: https://webyog.com/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / description / match regex / "/mysql|mariadb/i".
title = Webyog Blog
link = https://webyog.com/blog/
feed = https://siftrss.com/f/LVvb93YPN0
# Needs to end with _filtered for filtering icon.
[com_yelpengineeringblog_filtered]
# Original feed: https://engineeringblog.yelp.com/feed.xml
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / title / match regex / "/mysql/i".
# I / JFG wished I was able to filter better, but because no content:encoded
# and not mysql in description, I cannot do better.
# Some notes in https://github.com/oursqlcommunity-org/planet/issues/130
title = Yelp Engineering Blog
link = https://engineeringblog.yelp.com/
feed = https://siftrss.com/f/Jljm5w0kgn
twitter = YelpEngineering
# Please add entries sorted by title.
## End of vendor / commercial / organization blogs.
###################################################
##########################
# Begin of personal blogs.
# Please sort below by title.
[perso_another_boring_tech_blog]
title = Another Boring Tech Blog
link = https://anotherboringtechblog.com/
feed = https://anotherboringtechblog.com/feed/
# LinkedIn = https://www.linkedin.com/in/vinicius-grippa/
[perso_AnotherMySQLDBA]
title = Another MySQL DBA
link = https://anothermysqldba.blogspot.com/
feed = https://anothermysqldba.blogspot.com/feeds/posts/default
twitter = AnotherMySQLDBA
[perso_askdba]
title = AskDba
link = https://askdba.net/
feed = https://askdba.net/feed/
twitter = ask_dba
# Needs to end with _filtered for filtering icon.
[perso_benmckay_filtered]
# Original feed: https://benmckay.com/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content:encoded / contains / mysql.
title = Ben McKay's Blog
link = https://benmckay.com/
feed = https://siftrss.com/f/GGg0LR9kz3
# Causes a "This is not well formed XML" error.
# Tracked in issue below.
# https://github.com/oursqlcommunity-org/planet/issues/125
# Keeping as I might want to add it again in the future,
# and I prefer to note it somewhere that it is not working.
#[perso_chandan_kumar]
# title = Chandan Kumar's blog
# link = https://mysqlsolutionsarchitect.blogspot.com/
# feed = https://mysqlsolutionsarchitect.blogspot.com/feeds/posts/default
# #linkedin = https://www.linkedin.com/in/chandankumar9965/
[perso_chen_zongzhi_gh]
title = Chen Zongzhi's GitHub blog
link = https://baotiao.github.io/
feed = https://baotiao.github.io/feed.xml
twitter = baotiao
[perso_chen_zongzhi]
title = Chen Zongzhi's Medium blog
link = https://medium.com/@baotiao
feed = https://medium.com/feed/@baotiao
twitter = baotiao
# Needs to end with _filtered for filtering icon.
# Unclear if this is perso or com, setting as perso for now,
# if you want this to be revisited, open an issue at
# https://github.com/oursqlcommunity-org/planet/issues.
[perso_codeforgeek_filtered]
# Original feed: https://codeforgeek.com/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / description / match regex / /mysql|mariadb/i.
title = Code For Geek
link = https://codeforgeek.com/
feed = https://siftrss.com/f/e88pZak3J1
twitter = codeforgeek
# I tried adding below, but does not work.
# Tracked in issue below.
# https://github.com/oursqlcommunity-org/planet/issues/138
# Keeping as I might want to add it again in the future,
# and I prefer to note it somewhere that it is not working.
#[perso_databasestar]
# title = Database Star
# link = https://www.databasestar.com/blog/
# feed = https://www.databasestar.com/feed/
# twitter = databasestar
[perso_dveeden]
title = Daniël's Database Blog
link = https://databaseblog.myname.nl
feed = https://databaseblog.myname.nl/feeds/posts/default
twitter = dveeden
# Needs to end with _filtered for filtering icon.
[perso_datageekblog_filtered]
# Original feed: https://datageek.blog/en/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / description / match regex / /mysql|mariadb/i.
title = DataGeek.blog
link = https://datageek.blog/en/
feed = https://siftrss.com/f/w7RmppQ39mX
[perso_dbadojo]
title = DBA Dojo
link = https://dbadojo.com/
feed = https://dbadojo.com/category/mysql/feed
# Needs to end with _filtered for filtering icon.
[perso_dbpediablogs_filtered]
# Original feed: https://dbpediablogs.wordpress.com/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / /mysql|mariadb/i.
title = DBPEDIABLOGS
link = https://dbpediablogs.wordpress.com/
feed = https://siftrss.com/f/LVNg80VDVA
#linkedin = https://www.linkedin.com/in/anban-malarvendan-947b11160/
[perso_kristiankoehntopp]
title = Die wunderbare Welt von Isotopp
link = https://blog.koehntopp.info/
feed = https://blog.koehntopp.info/tags/mysql/feed.xml
twitter = isotopp
[perso_dimitrik_fr]
title = DimitriK's (dim) Weblog
link = http://dimitrik.free.fr/blog/
#feed = http://dimitrik.free.fr/blog/rss.xml
# AWS is unable to fetch above feed, so going via siftrss with no filtering.
# Details in https://github.com/oursqlcommunity-org/planet/issues/118
# siftrss conf: include / title / matches regex / /./
feed = https://siftrss.com/f/zJp3r9ARwK3
twitter = dimitrik_fr
# Commented to solve the 2022-07 problem.
# https://twitter.com/jfg956/status/1552064150200786944
#[perso_FedericoRazzol1]
# title = Federico-Razzoli.com
# link = https://federico-razzoli.com
# feed = https://federico-razzoli.com/category/mysql-and-mariadb/feed
# twitter = FedericoRazzol1
[perso_ftisiot_filtered]
title = Francesco Tisiot Blog
link = https://ftisiot.net/
feed = https://siftrss.com/f/JzZZ3q9xxnM
# Using siftrss.com to filter my blog posts ( https://ftisiot.net/posts/index.xml) including MySQL in the title
twitter = ftisiot
[perso_gabi.dev]
title = gabi.dev
link = https://gabi.dev/
feed = https://gabi.dev/feed/
twitter = gabidavila
# Needs to end with _filtered for filtering icon.
# There is history behind this one...
# At some point, the twitter handle behind this was kasra_mp,
# It was updated on 2023-06-27 to GeekyHacker.
# It might belong more in the com_ section of the conf file,
# side-by-side with com_geeksww_filtered / Geeks Worldwide,
# but for now, I / JFG is keeping it as perso_kasra_mp.
# If you have a string opinion about this, open an issue at
# https://github.com/oursqlcommunity-org/planet/issues.
[perso_kasra_mp_filtered]
title = Geeky Hacker - Coding, Tech & Linux
# Original feed: https://www.geekyhacker.com/feed/
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / description / match regex / "/mysql|mariadb/i".
link = https://www.geekyhacker.com/
feed = https://siftrss.com/f/Dk7dkaKoLpG
twitter = GeekyHacker
[perso_danielnichter]
title = Hack MySQL
link = https://hackmysql.com/
feed = https://hackmysql.com/tags/mysql/index.xml
[perso_jayjanssen]
title = Jay Janssen's MySQL and Infrastructure
link = https://blog.jayjanssen.net/
feed = https://blog.jayjanssen.net/index.xml
twitter = jayjanssen
[perso_jeremycole]
title = Jeremy Cole
link = https://blog.jcole.us/
feed = https://blog.jcole.us/feed/
twitter = jeremycole
[perso_JWKrogh]
title = Jesper'S MySQL Blog
link = https://mysql.wisborg.dk/
feed = https://mysql.wisborg.dk/feed/
twitter = JWKrogh
[perso_jfg956]
title = J-F Gagné's MySQL Blog
link = https://jfg-mysql.blogspot.com
feed = https://jfg-mysql.blogspot.com/feeds/posts/default
twitter = jfg956
email_encrypted = hQEMA7DUkzhyO0vBAQf/QsK80Wn3h+NB8PLyr5V4h/fgMQljVK1ANCqANr9jfvTKBW9SnxqRATRUdFt7+dOq7PUAPeLEhqfvWykZ9Xop3jA1aA5UbFHsYdaR/ggl1iE1FMebUJc+5+p8HOBvzsnE8WCxJL8Os+OLXAXpzeEgmoaSnE3xbw3dZS+C83sY4f2MnTvMqYFl7rIMAjBn3WRXbtZqCmCVZnwSk2lM4IGKR4no5GvShlmtWYkcFsi2ahTiYT7XhhcetTKbi1pH/I1zLOZmE8rD+KPX4n34g2dPYgVG5+V6Lv0gBj9KVGP2BCwAA3ZtiNityaSu5jVrwOxeOVxTrQJh7JfGr+dHHFE+v9JgAbvuRo3xmKeynn2R5S5PbcorJ5h8vjanIZ4pg6Rm+JJGsXyaRyzO6tDLyUlMLYBN4yfKei8y0KnR8M8RfFLBaQaM/rM3c73OAUF5FmaYZe3cQoFcunsejgKMB6v9Sljj
[perso_kedar]
title = Kedar MySQL Blog
link = http://kedar.nitty-witty.com/blog/category/mysql
feed = http://kedar.nitty-witty.com/blog/category/mysql/feed
twitter = theGhost_k8
[perso_of-code]
title = Laurynas Biveinis' blog
link = https://of-code.blogspot.com/search/label/mysql
feed = http://feeds.feedburner.com/SummerOfCodeExperience
twitter = kastauyra
[perso_lefred]
title = lefred's blog
link = https://lefred.be/
feed = https://lefred.be/feed/
twitter = lefred
[perso_LinuxJedi]
title = LinuxJedi's /dev/null
link = https://linuxjedi.co.uk/
feed = https://linuxjedi.co.uk/category/work/mariadb/feed/
twitter = LinuxJedi
[perso_michaelmaclaughlin]
title = MacLochlainns Weblog
link = http://blog.mclaughlinsoftware.com/
feed = http://blog.mclaughlinsoftware.com/category/mysql/feed/
twitter = MacLochlainn
[perso_marc_reilly]
title = Marc Reilly
link = https://www.marcreilly.com/
feed = https://www.marcreilly.com/feeds/posts/default
twitter = reillski
[perso_marcelo_altmann]
title = Marcelo Altmann
link = https://altmannmarcelo.medium.com/
feed = https://medium.com/feed/@altmannmarcelo
twitter = altmannmarcelo
[perso_mikael_ronstrom]
title = Mikael Ronstrom
link = https://mikaelronstrom.blogspot.com/
feed = https://mikaelronstrom.blogspot.com/feeds/posts/default
twitter = mikael_ronstrom
[perso_moncode]
title = MonCode - Tech/Dev blog
link = https://www.mon-code.net/tag/49/MySQL
feed = https://www.mon-code.net/feeds/rssTag/49
twitter = moncode
[perso_monty_says]
title = Monty says
link = https://monty-says.blogspot.com/
feed = https://monty-says.blogspot.com/feeds/posts/default
twitter = montywi
# Needs to end with _filtered for filtering icon.
[perso_mortensi_filtered]
title = MORTENSI
# Original feed: https://www.mortensi.com/feed/
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql|mariadb/i".
link = https://www.mortensi.com/
feed = https://siftrss.com/f/y6JDprkJbeG
twitter = mortensi
[perso_swanhart]
title = My SQL Dump
link = http://swanhart.livejournal.com
feed = https://swanhart.livejournal.com/data/rss
twitter = justin_swanhart
[perso_keithhollman]
title = MySQL-Med
link = https://mysqlmed.wordpress.com
feed = https://mysqlmed.wordpress.com/category/mysql/feed/
[perso_mysqlbugs]
title = MySQL Entomologist (former?) Blog
link = https://mysqlentomologist.blogspot.com/
feed = https://mysqlentomologist.blogspot.com/feeds/posts/default
twitter = mysqlbugs
# JFG: as of 2023-01-01, the feed below points to LinkedIn.
# Keeping commented in case someone gets here and decides to fix it.
#[perso_mysql_cluster_testing]
# title = MySQL Cluster Testing
# link = https://clustertesting.blogspot.com/
# feed = https://clustertesting.blogspot.com/feeds/posts/default
[perso_freshdaz]
title = MySQL expert Diary
link = https://dasini.net/blog/en/
feed = https://dasini.net/blog/en/feed/
twitter = freshdaz
[perso_mysqlonarm]
title = MySQL On ARM
link = https://mysqlonarm.github.io/
feed = https://mysqlonarm.github.io/feed.xml
twitter = mysqlonarm
email_encrypted = hQEMA7DUkzhyO0vBAQf+OJwV5NygUn1IXI4JKkzny9mqdS9ieJKhACLknx58HhByQuJGRtuBH3d1v5rTrwYzVU6QYGlWnd+3zJ57yjWvY/Yq0FMyiw9c7B/pBRMdeFuZ/srLl6yYC+LWc01ng3RvtMNtLEFvkFEjgz9mDp1rAMIcXhH01IxmEe2Pc4utlyXXqQ90llz3XMwInf9BBVVy9WyQVFreFoAp4HLs13Fjwbmz3Kqn+J/4g8CWivYJQaxeDcTNMHd2CfSaPSZjB5C+AQ+NocWbPc0RCwqJVJVXxDtcxmsjRh+K9lGVI4C5NSxkQqPRQjo55YdsE7Wh3JvsFupyt65/Q250RFeOT/IRotJTAZbK9f+eizDV3huBxlmZjFVDWMGp/IDcZK1UFKscftFfs+BgWxq9A9zAEEB/VVXbqJ2+lc/6vuYJduvkXZDzis+97iDAdY6ZnaKWhD2nP2xeHS8=
[perso_chandankumar]
title = MySQL Solutions - On Premises & Cloud
link = http://mysqlsolutionsarchitect.blogspot.com/
feed = https://mysqlsolutionsarchitect.blogspot.com/feeds/posts/default
twitter = chandan_k9965
[perso_mysql_step_by_step]
title = MySQL Step-by-Step Blog
link = https://mysqlstepbystep.com
feed = https://mysqlstepbystep.com/feed
twitter = dba_abdelmawla
[perso_ivanma]
title = MySQLHK
link = http://mysqlhk.blogspot.com/
feed = http://mysqlhk.blogspot.com/feeds/posts/default
# Unclear if this is perso, com, asso or news.
# As it looks like an individual initiative on Twitter
# (Prof. Roberto V. Zicari), putting this as perso.
# Needs to end with _filtered for filtering icon.
[perso_odbms_filtered]
# Original feed: https://www.odbms.org/feed/
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql|mariadb/i".
title = ODBMS.org
link = https://www.odbms.org
feed = https://siftrss.com/f/Dk05KYJ3D6k
twitter = odbmsorg
[perso_oysteingrovlen]
title = Øystein on MySQL Optimizer
link = https://oysteing.blogspot.com/
feed = https://oysteing.blogspot.com/feeds/posts/default?alt=rss
twitter = ogrovlen
# Needs to end with _filtered for filtering icon.
[perso_pz_filtered]
# Original feed: https://peterzaitsev.com/feed/
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / content:encoded / match regex / "/mysql|mariadb|community/i".
title = Peter Zaitsev
link = https://peterzaitsev.com/
feed = https://siftrss.com/f/13JqRQAKd7l
twitter = peterzaitsev
[perso_stoker]
title = PHP With MySQL
link = https://elephantdolphin.blogspot.com/
feed = https://elephantdolphin.blogspot.com/feeds/posts/default
twitter = stoker
[perso_programmingbrain]
title = Programming Brain
link = https://programmingbrain.com/
feed = https://programmingbrain.com/index.xml
twitter = alejandro_du
# Commented for below issue.
# https://github.com/oursqlcommunity-org/planet/issues/142
#[perso_ronaldbradford]
# title = Ronald Bradford Blog
# link = https://ronaldbradford.com/blog/
# feed = https://ronaldbradford.com/blog/feed/
# twitter = ronaldbradford
# #linkedin = https://www.linkedin.com/in/ronaldbradford/
[perso_saving_quicksand]
title = Saving you from MySQL quicksand!
link = https://mysqlquicksand.wordpress.com/
feed = https://mysqlquicksand.wordpress.com/feed/
twitter = dbart_sql
[perso_sergefrezefond]
title = Serge Frezefond's blog
link = https://serge.frezefond.com/
feed = https://serge.frezefond.com/feed/
twitter = sfrezefond
[perso_sergeipetrunia]
title = Sergei Petrunia's blog
link = https://petrunia.net/
feed = https://petrunia.net/feed/
# linkedin = https://www.linkedin.com/in/sergei-petrunia-78492211/
[perso_shinguz]
title = Shinguz's Blog
link = https://www.fromdual.com/blog/41/
feed = https://www.fromdual.com/blog/41/feed
twitter = shinguz
[perso_ShlomiNoach]
title = Shlomi Noach Blog
link = https://code.openark.org/
feed = https://code.openark.org/blog/category/mysql/feed
twitter = ShlomiNoach
# Needs to end with _filtered for filtering icon.
[perso_sjoerdlangkemper_filtered]
# Original feed: https://www.sjoerdlangkemper.nl/feed.xml
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / description / match regex / "/mysql|mariadb/i".
title = Sjoerd Langkemper
link = https://www.sjoerdlangkemper.nl/
feed = https://siftrss.com/f/eq65Dw86Mkj
# linkedin = https://www.linkedin.com/in/sjoerd-langkemper-86075246/
# other ways to contact on blog.
# Needs to end with _filtered for filtering icon.
[perso_SmallDatum_filtered]
# Original feed: https://smalldatum.blogspot.com/feeds/posts/default
# Too much non-MySQL content (mostly Postgres-only), so filtered via siftrss.
# Configuration: include / content / match regex / "/mysql|mariadb|myrocks|rocksdb/i".
title = Small Datum
link = https://smalldatum.blogspot.com/
feed = https://siftrss.com/f/vLLbxyKZ3z
twitter = MarkCallaghanDB
[perso_SqlForDevs]
title = SQL for Devs
link = https://sqlfordevs.io/
feed = https://sqlfordevs.io/feed/mysql
twitter = tobias_petry
[perso_sskorupinski]
title = Szymon Skorupinski Blog
link = https://changetracking.wordpress.com/
feed = https://changetracking.wordpress.com/feed/
twitter = skorupeck
[perso_wwwtedw]
title = Ted's MySQL Blog
link = https://mysql-nordic.blogspot.com/
feed = https://mysql-nordic.blogspot.com/feeds/posts/default
twitter = wwwtedw
[perso_arbaudie]
title = The consistent voice
link = https://medium.com/@arbaudie.it
feed = https://medium.com/feed/@arbaudie.it
twitter = SylvainArbaudie
[perso_datacharmer]
title = The Data Charmer
link = https://datacharmer.blogspot.com/
feed = https://datacharmer.blogspot.com/feeds/posts/default
twitter = datacharmer
[perso_marcotusa]
title = TusaCentral - MySQL Blogs
link = http://www.tusacentral.net/joomla/index.php/mysql-blogs
feed = http://www.tusacentral.net/joomla/index.php/mysql-blogs?format=feed&type=atom
twitter = marcotusa
# Needs to end with _filtered for filtering icon.
[perso_zhaosong_filtered]
# Original feed: https://kernelmaker.github.io/feed.xml
# Too much non-MySQL content, so filtered via siftrss.
# Configuration: include / content / match regex / "/mysql|mariadb|innodb|myrocks|rocksdb|rondb/i".
title = Zhao Song's Blog
link = https://kernelmaker.github.io/
feed = https://siftrss.com/f/kpPjBJjzqr5
#linkedin = https://www.linkedin.com/in/zhao-song-733b91269/
# Please add entries sorted by title.
# End of personal blogs.
########################
###########################
# Begining of news website.
# Please sort below by title.
# Needs to end with _filtered for filtering icon.
[news_infoworld_filtered]
# Original feed: https://www.infoworld.com/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / description / match regex / "/mysql|mariadb/i".
title = InfoWorld
link = https://www.infoworld.com/
feed = https://siftrss.com/f/M11VqAQ0B1
twitter = InfoWorld
# Needs to end with _filtered for filtering icon.
[news_techcrunch_filtered]
# Original feed: https://techcrunch.com/feed/
# Too much non-MySQL content on original feed, so filtered via siftrss.
# Configuration: include / description / match regex / "/mysql|mariadb/i".
title = TechCrunch
link = https://techcrunch.com/
feed = https://siftrss.com/f/pNybnpgLq3z
twitter = TechCrunch
# Needs to end with _filtered for filtering icon.