forked from dev-blog-directory/dev-blog-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.opml
2097 lines (2097 loc) · 341 KB
/
readme.opml
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
<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
<head>
<title>Developer Blog Directory - English</title>
<dateCreated>Fri, 29 Nov 2019 00:00:00 GMT</dateCreated>
<dateModified>Fri, 10 Apr 2020 07:20:04 GMT</dateModified>
<ownerName>https://github.com/dailyrandomphoto</ownerName>
</head>
<body>
<outline type="rss" text="a-coding" title="a-coding" xmlUrl="https://a-coding.com/feed" htmlUrl="https://a-coding.com/"/>
<outline type="rss" text="A Cornish Geek" title="A Cornish Geek" xmlUrl="https://acornishgeek.com/feed/" htmlUrl="https://acornishgeek.com/"/>
<outline type="rss" text="A Geek With Guns" title="A Geek With Guns" xmlUrl="https://blog.christopherburg.com/feed/" htmlUrl="https://blog.christopherburg.com/"/>
<outline type="rss" text="A Java geek" title="A Java geek" xmlUrl="https://blog.frankel.ch/feed.xml" htmlUrl="https://blog.frankel.ch/"/>
<outline type="rss" text="A List Apart: For People Who Make Websites" title="A List Apart: For People Who Make Websites" xmlUrl="https://alistapart.com/main/feed/" htmlUrl="https://alistapart.com/"/>
<outline type="rss" text="A Pius Geek" title="A Pius Geek" xmlUrl="http://www.declanfinn.com/feeds/posts/default" htmlUrl="http://www.declanfinn.com/"/>
<outline type="rss" text="aakinshin.net/en/blog/content" title="aakinshin.net/en/blog/content" xmlUrl="http://aakinshin.net/en/rss.xml" htmlUrl="http://aakinshin.net/en/blog/content/"/>
<outline type="rss" text="Aaron Patterson" title="Aaron Patterson" xmlUrl="http://tenderlovemaking.com/atom.xml" htmlUrl="http://tenderlovemaking.com/"/>
<outline type="rss" text="Abhinaba Basu" title="Abhinaba Basu" xmlUrl="https://blogs.msdn.microsoft.com/abhinaba/feed/" htmlUrl="https://blogs.msdn.com/b/abhinaba/"/>
<outline type="rss" text="Abu Ashraf Masnun" title="Abu Ashraf Masnun" xmlUrl="http://masnun.com/feed" htmlUrl="http://masnun.com/"/>
<outline type="rss" text="Accidentally in Code" title="Accidentally in Code" xmlUrl="https://cate.blog/feed/" htmlUrl="https://cate.blog/tag/ios/"/>
<outline type="rss" text="ackermann.io" title="ackermann.io" xmlUrl="https://ackermann.io/feed" htmlUrl="https://ackermann.io/"/>
<outline type="rss" text="Acodez IT Solutions - Web Design & Web Development Blog" title="Acodez IT Solutions - Web Design & Web Development Blog" xmlUrl="https://acodez.in/services/rss/" htmlUrl="https://acodez.in/blog/"/>
<outline type="rss" text="adactio.com" title="adactio.com" xmlUrl="https://adactio.com/journal/rss" htmlUrl="https://adactio.com/"/>
<outline type="rss" text="Adam Bard" title="Adam Bard" xmlUrl="https://adambard.com/blog/feed.xml" htmlUrl="https://adambard.com/blog/"/>
<outline type="rss" text="Adam Bien" title="Adam Bien" xmlUrl="http://www.adam-bien.com/roller/abien/feed/entries/rss" htmlUrl="http://www.adam-bien.com/roller/abien/"/>
<outline type="rss" text="Adam C. Conrad" title="Adam C. Conrad" xmlUrl="https://www.userinterfacing.com/rss.xml" htmlUrl="https://userinterfacing.com/"/>
<outline type="rss" text="Adam Leventhal" title="Adam Leventhal" xmlUrl="http://dtrace.org/blogs/ahl/feed/" htmlUrl="http://dtrace.org/blogs/ahl/"/>
<outline type="rss" text="Adam Rackis" title="Adam Rackis" xmlUrl="https://adamrackis.dev/rss.xml" htmlUrl="https://adamrackis.dev/"/>
<outline type="rss" text="Adam Tuliper" title="Adam Tuliper" xmlUrl="http://www.adamtuliper.com/feeds/posts/default" htmlUrl="http://www.adamtuliper.com/"/>
<outline type="rss" text="Adam Wareing on Medium" title="Adam Wareing on Medium" xmlUrl="https://medium.com/feed/@adamwareing241" htmlUrl="https://medium.com/@adamwareing241/"/>
<outline type="rss" text="Adam Whitehouse" title="Adam Whitehouse" xmlUrl="https://awhitehouse104.github.io/feed.xml" htmlUrl="https://awhitehouse104.github.io/"/>
<outline type="rss" text="Addepar" title="Addepar" xmlUrl="https://medium.com/feed/build-addepar" htmlUrl="https://medium.com/build-addepar"/>
<outline type="rss" text="Addy Osmani" title="Addy Osmani" xmlUrl="https://addyosmani.com/rss.xml" htmlUrl="https://addyosmani.com/blog/"/>
<outline type="rss" text="Aditya Rohilla" title="Aditya Rohilla" xmlUrl="https://adityarohilla.com/feed/" htmlUrl="https://adityarohilla.com/blog/"/>
<outline type="rss" text="Adrian Śliwa on Medium" title="Adrian Śliwa on Medium" xmlUrl="https://medium.com/feed/@adrianmsliwa" htmlUrl="https://medium.com/@adrianmsliwa"/>
<outline type="rss" text="AdRoll" title="AdRoll" xmlUrl="http://tech.adroll.com/feed.xml" htmlUrl="http://tech.adroll.com/blog/"/>
<outline type="rss" text="Advanced Web Machinery" title="Advanced Web Machinery" xmlUrl="https://advancedweb.hu/atom.xml" htmlUrl="https://advancedweb.hu/"/>
<outline type="rss" text="Affinity" title="Affinity" xmlUrl="https://build.affinity.co/feed" htmlUrl="https://build.affinity.co/"/>
<outline type="rss" text="Agostini.Tech" title="Agostini.Tech" xmlUrl="https://agostini.tech/feed/" htmlUrl="https://agostini.tech/"/>
<outline type="rss" text="AHOM Technologies Private Limited" title="AHOM Technologies Private Limited" xmlUrl="https://ahomtechnologies.blogspot.com/feeds/posts/default" htmlUrl="https://ahomtechnologies.blogspot.com/"/>
<outline type="rss" text="Airbnb" title="Airbnb" xmlUrl="https://medium.com/feed/airbnb-engineering" htmlUrl="https://medium.com/airbnb-engineering"/>
<outline type="rss" text="Airbnb Engineering - Nerds" title="Airbnb Engineering - Nerds" xmlUrl="https://medium.com/feed/airbnb-engineering" htmlUrl="http://nerds.airbnb.com/"/>
<outline type="rss" text="AirBrake" title="AirBrake" xmlUrl="https://airbrake.io/blog/feed" htmlUrl="https://airbrake.io/blog/"/>
<outline type="rss" text="AirPair" title="AirPair" xmlUrl="https://www.airpair.com/rss" htmlUrl="https://www.airpair.com/software-experts"/>
<outline type="rss" text="Airtame" title="Airtame" xmlUrl="https://airtame.engineering/feed" htmlUrl="https://airtame.engineering/"/>
<outline type="rss" text="akkartik.name" title="akkartik.name" xmlUrl="http://feeds.akkartik.name/kartiks-scrapbook" htmlUrl="http://akkartik.name/"/>
<outline type="rss" text="akorotkov.github.io" title="akorotkov.github.io" xmlUrl="http://akorotkov.github.io/atom.xml" htmlUrl="http://akorotkov.github.io/"/>
<outline type="rss" text="Alan Bi" title="Alan Bi" xmlUrl="https://www.alanbi.com/feed" htmlUrl="https://alanbi.com/blog/"/>
<outline type="rss" text="Alan Chang" title="Alan Chang" xmlUrl="https://tcode2k16.github.io/blog/index.xml" htmlUrl="https://tcode2k16.github.io/blog/"/>
<outline type="rss" text="Alan Storm" title="Alan Storm" xmlUrl="https://alanstorm.com/feed/feed.xml" htmlUrl="http://alanstorm.com/"/>
<outline type="rss" text="Alan Zeino on Medium" title="Alan Zeino on Medium" xmlUrl="https://medium.com/feed/@alanzeino" htmlUrl="https://medium.com/@alanzeino"/>
<outline type="rss" text="alanhogan.com/blog" title="alanhogan.com/blog" xmlUrl="http://feeds.feedburner.com/alanhogan" htmlUrl="https://alanhogan.com/blog"/>
<outline type="rss" text="Alberto De Bortoli's Blog" title="Alberto De Bortoli's Blog" xmlUrl="https://albertodebortoli.com/rss/" htmlUrl="https://albertodebortoli.com/"/>
<outline type="rss" text="Alejandro Martinez" title="Alejandro Martinez" xmlUrl="https://alejandromp.com/blog/feed.xml" htmlUrl="https://alejandromp.com/"/>
<outline type="rss" text="Aleksandar Vacić's blog" title="Aleksandar Vacić's blog" xmlUrl="http://aplus.rs/index.xml" htmlUrl="http://aplus.rs/categories/iosdev/"/>
<outline type="rss" text="Aleksander Popko's Blog" title="Aleksander Popko's Blog" xmlUrl="https://aleksanderpopko.tech/feed.xml" htmlUrl="https://aleksanderpopko.tech/blog/"/>
<outline type="rss" text="Alex Grönholm" title="Alex Grönholm" xmlUrl="http://alextechrants.blogspot.com/feeds/posts/default" htmlUrl="http://alextechrants.blogspot.co.id/search/label/python"/>
<outline type="rss" text="Alex Gurin's Blog" title="Alex Gurin's Blog" xmlUrl="https://medium.com/feed/@dn070287gav" htmlUrl="https://medium.com/@dn070287gav"/>
<outline type="rss" text="Alex Rogozhnikov" title="Alex Rogozhnikov" xmlUrl="http://arogozhnikov.github.io/feed.xml" htmlUrl="https://arogozhnikov.github.io/"/>
<outline type="rss" text="Alex Russell" title="Alex Russell" xmlUrl="https://infrequently.org/feed/" htmlUrl="https://infrequently.org/"/>
<outline type="rss" text="Alexander Grebenyuk's Blog" title="Alexander Grebenyuk's Blog" xmlUrl="http://kean.github.io/feed.xml" htmlUrl="http://kean.github.io/"/>
<outline type="rss" text="Alexander Zeitler" title="Alexander Zeitler" xmlUrl="https://alexanderzeitler.com/feed.xml" htmlUrl="https://alexanderzeitler.com/"/>
<outline type="rss" text="Alexandros Salazar's Blog" title="Alexandros Salazar's Blog" xmlUrl="https://nomothetis.svbtle.com/feed" htmlUrl="https://nomothetis.svbtle.com/"/>
<outline type="rss" text="Alexandru-Paul Copil" title="Alexandru-Paul Copil" xmlUrl="https://cpl.li/feed.xml" htmlUrl="https://cpl.li/"/>
<outline type="rss" text="alexcarpenter.me" title="alexcarpenter.me" xmlUrl="https://alexcarpenter.me/feed.xml" htmlUrl="https://alexcarpenter.me/"/>
<outline type="rss" text="Alexis Creuzot on Medium" title="Alexis Creuzot on Medium" xmlUrl="https://medium.com/feed/@alexiscreuzot" htmlUrl="https://medium.com/@alexiscreuzot"/>
<outline type="rss" text="alexmorozov.github.io" title="alexmorozov.github.io" xmlUrl="https://morozov.ca/feeds/all.atom.xml" htmlUrl="https://alexmorozov.github.io/"/>
<outline type="rss" text="Algolia" title="Algolia" xmlUrl="https://blog.algolia.com/rss.xml" htmlUrl="https://blog.algolia.com/"/>
<outline type="rss" text="Algorithms | Reddit" title="Algorithms | Reddit" xmlUrl="https://old.reddit.com/r/algorithms/.rss" htmlUrl="https://old.reddit.com/r/algorithms/"/>
<outline type="rss" text="Ali Spittel" title="Ali Spittel" xmlUrl="https://dev.to/feed/aspittel" htmlUrl="https://dev.to/aspittel"/>
<outline type="rss" text="all about apps" title="all about apps" xmlUrl="https://code.allaboutapps.at/categories/ios/index.xml" htmlUrl="https://code.allaboutapps.at/categories/ios/"/>
<outline type="rss" text="All In the Head - Ponderings and Code By Drew McLellan" title="All In the Head - Ponderings and Code By Drew McLellan" xmlUrl="https://allinthehead.com/retro/rss" htmlUrl="http://allinthehead.com/"/>
<outline type="rss" text="All Tech Geeks" title="All Tech Geeks" xmlUrl="http://www.alltechgeeks.com/feeds/posts/default" htmlUrl="http://www.alltechgeeks.com/"/>
<outline type="rss" text="All The Flow" title="All The Flow" xmlUrl="https://blog.alltheflow.com/rss/" htmlUrl="https://blog.alltheflow.com/"/>
<outline type="rss" text="All Things Distributed" title="All Things Distributed" xmlUrl="https://www.allthingsdistributed.com/atom.xml" htmlUrl="https://www.allthingsdistributed.com/"/>
<outline type="rss" text="All things Tech | Golang" title="All things Tech | Golang" xmlUrl="https://mariadesouza.com/feed/" htmlUrl="https://mariadesouza.com/category/golang/"/>
<outline type="rss" text="ALL YOUR BASE ARE BELONG TO US" title="ALL YOUR BASE ARE BELONG TO US" xmlUrl="https://allofyourbases.com/feed/" htmlUrl="https://allofyourbases.com/"/>
<outline type="rss" text="Allegro" title="Allegro" xmlUrl="https://allegro.tech/feed.xml" htmlUrl="https://allegro.tech/"/>
<outline type="rss" text="Allen Pike's Blog" title="Allen Pike's Blog" xmlUrl="http://www.allenpike.com/feed/" htmlUrl="http://www.allenpike.com/"/>
<outline type="rss" text="Allison Kaptur" title="Allison Kaptur" xmlUrl="http://akaptur.com/atom.xml" htmlUrl="http://akaptur.com/"/>
<outline type="rss" text="Alloc-Init" title="Alloc-Init" xmlUrl="https://www.alloc-init.com/feed" htmlUrl="https://www.alloc-init.com/"/>
<outline type="rss" text="Amadou Sall" title="Amadou Sall" xmlUrl="https://www.amadousall.com/rss/" htmlUrl="https://www.amadousall.com/"/>
<outline type="rss" text="Amazon" title="Amazon" xmlUrl="https://developer.amazon.com/blogs/home/feed/entries/atom" htmlUrl="https://developer.amazon.com/blogs"/>
<outline type="rss" text="Amiantos.net" title="Amiantos.net" xmlUrl="https://amiantos.net/rss.xml" htmlUrl="https://amiantos.net/tags/swift/"/>
<outline type="rss" text="Amit Chaudhary" title="Amit Chaudhary" xmlUrl="https://amitness.com/atom.xml" htmlUrl="https://amitness.com/"/>
<outline type="rss" text="Amit Merchant" title="Amit Merchant" xmlUrl="https://www.amitmerchant.com/feed.xml" htmlUrl="https://www.amitmerchant.com/"/>
<outline type="rss" text="An Android Developer's Blog" title="An Android Developer's Blog" xmlUrl="https://blog.egorand.me/rss/" htmlUrl="https://blog.egorand.me/"/>
<outline type="rss" text="Anastasiia Vixentael on Medium" title="Anastasiia Vixentael on Medium" xmlUrl="https://medium.com/feed/@vixentael/" htmlUrl="https://medium.com/@vixentael/"/>
<outline type="rss" text="Anders Aarvik" title="Anders Aarvik" xmlUrl="https://aarvik.dk/rss/index.html" htmlUrl="http://aarvik.dk/"/>
<outline type="rss" text="Andre Roberge" title="Andre Roberge" xmlUrl="https://aroberge.blogspot.com/feeds/posts/default" htmlUrl="https://aroberge.blogspot.co.id/"/>
<outline type="rss" text="Andreas Schuster" title="Andreas Schuster" xmlUrl="https://computer.forensikblog.de/en/atom.xml" htmlUrl="https://computer.forensikblog.de/en/"/>
<outline type="rss" text="Andrew Bancroft" title="Andrew Bancroft" xmlUrl="https://www.andrewcbancroft.com/index.xml" htmlUrl="https://www.andrewcbancroft.com/"/>
<outline type="rss" text="Andrew Brampton" title="Andrew Brampton" xmlUrl="https://blog.bramp.net/index.xml" htmlUrl="https://blog.bramp.net/"/>
<outline type="rss" text="Andrew Healey" title="Andrew Healey" xmlUrl="https://healeycodes.com/feed.xml" htmlUrl="https://healeycodes.com/"/>
<outline type="rss" text="Andrew Ray" title="Andrew Ray" xmlUrl="http://blog.andrewray.me/rss/" htmlUrl="https://blog.andrewray.me/"/>
<outline type="rss" text="Andrey Akinshin" title="Andrey Akinshin" xmlUrl="http://aakinshin.net/en/rss.xml" htmlUrl="http://aakinshin.net/blog/"/>
<outline type="rss" text="Andrey Volodin on Medium" title="Andrey Volodin on Medium" xmlUrl="https://medium.com/feed/@s1ddok/" htmlUrl="https://medium.com/@s1ddok/"/>
<outline type="rss" text="Andrii Soldatenko" title="Andrii Soldatenko" xmlUrl="https://asoldatenko.com/feeds/all.atom.xml" htmlUrl="https://asoldatenko.com/category/python.html"/>
<outline type="rss" text="Android" title="Android" xmlUrl="https://android-developers.googleblog.com/feeds/posts/default" htmlUrl="https://android-developers.blogspot.com/"/>
<outline type="rss" text="Android Authority | Android Development " title="Android Authority | Android Development " xmlUrl="https://www.androidauthority.com/feed" htmlUrl="https://www.androidauthority.com/android-development/"/>
<outline type="rss" text="Android Developers Blog" title="Android Developers Blog" xmlUrl="https://android-developers.googleblog.com/feeds/posts/default" htmlUrl="https://android-developers.googleblog.com/"/>
<outline type="rss" text="Android-er" title="Android-er" xmlUrl="http://android-er.blogspot.com/feeds/posts/default" htmlUrl="http://android-er.blogspot.com/"/>
<outline type="rss" text="Android Mad" title="Android Mad" xmlUrl="https://www.androidmads.info/feeds/posts/default" htmlUrl="https://androidmads.blogspot.com/"/>
<outline type="rss" text="Android Tutts" title="Android Tutts" xmlUrl="https://tutorp0int.blogspot.com/feeds/posts/default" htmlUrl="https://tutorp0int.blogspot.com/"/>
<outline type="rss" text="Android UI Patterns" title="Android UI Patterns" xmlUrl="https://androiduipatterns.com/feed" htmlUrl="http://www.androiduipatterns.com/"/>
<outline type="rss" text="AndroidDeveloper.co.in" title="AndroidDeveloper.co.in" xmlUrl="http://www.androiddeveloper.co.in/blog/feed/" htmlUrl="http://www.androiddeveloper.co.in/blog/"/>
<outline type="rss" text="AndroidHive | Android Tutorial for Beginners" title="AndroidHive | Android Tutorial for Beginners" xmlUrl="https://www.androidhive.info/feed/" htmlUrl="https://www.androidhive.info/"/>
<outline type="rss" text="Andy Bell" title="Andy Bell" xmlUrl="https://hankchizljaw.com/feed/all.xml" htmlUrl="https://andy-bell.design/"/>
<outline type="rss" text="Andy Ibanez's Blog" title="Andy Ibanez's Blog" xmlUrl="https://www.andyibanez.com/tags/apple/index.xml" htmlUrl="https://www.andyibanez.com/tags/apple/"/>
<outline type="rss" text="Andy Matuschak's Blog" title="Andy Matuschak's Blog" xmlUrl="http://blog.andymatuschak.org/rss" htmlUrl="http://blog.andymatuschak.org/"/>
<outline type="rss" text="Andy Obusek's Blog" title="Andy Obusek's Blog" xmlUrl="http://cleanswifter.com/feed/" htmlUrl="http://www.cleanswifter.com/"/>
<outline type="rss" text="Angie Jones" title="Angie Jones" xmlUrl="http://angiejones.tech/feed/" htmlUrl="http://angiejones.tech/"/>
<outline type="rss" text="Angular Blog " title="Angular Blog " xmlUrl="https://blog.angular.io/feed" htmlUrl="https://blog.angular.io/"/>
<outline type="rss" text="angular.js" title="angular.js" xmlUrl="https://www.reddit.com/?feed=rss&amp;after=t3_e5pfnb" htmlUrl="https://www.reddit.com/r/angularjs/"/>
<outline type="rss" text="AngularJS 4U Blog - Demos, News, Directives & Coding Tips" title="AngularJS 4U Blog - Demos, News, Directives & Coding Tips" xmlUrl="https://www.angularjs4u.com/feed/" htmlUrl="https://www.angularjs4u.com/"/>
<outline type="rss" text="Angus Croll" title="Angus Croll" xmlUrl="https://javascriptweblog.wordpress.com/feed/" htmlUrl="https://javascriptweblog.wordpress.com/"/>
<outline type="rss" text="Anne van Kesteren" title="Anne van Kesteren" xmlUrl="https://annevankesteren.nl/feeds/weblog" htmlUrl="https://annevankesteren.nl/"/>
<outline type="rss" text="antirez" title="antirez" xmlUrl="http://antirez.com/rss" htmlUrl="http://antirez.com/latest/0"/>
<outline type="rss" text="Anto Online" title="Anto Online" xmlUrl="https://anto.online/feed/" htmlUrl="https://anto.online/"/>
<outline type="rss" text="Anton Bobrov" title="Anton Bobrov" xmlUrl="http://bobrochel.blogspot.com/feeds/posts/default" htmlUrl="http://bobrochel.blogspot.co.id/search/label/python"/>
<outline type="rss" text="Anton Medvedev" title="Anton Medvedev" xmlUrl="https://medv.io/rss.xml" htmlUrl="https://medv.io/"/>
<outline type="rss" text="Antonin Januska" title="Antonin Januska" xmlUrl="https://antjanus.com/feed/" htmlUrl="https://antjanus.com/"/>
<outline type="rss" text="Antonio Leiva" title="Antonio Leiva" xmlUrl="https://antonioleiva.com/feed/" htmlUrl="https://antonioleiva.com/category/blog/"/>
<outline type="rss" text="Anvil - Drag and Drop Python web apps" title="Anvil - Drag and Drop Python web apps" xmlUrl="https://anvil.works/blog/feed.xml" htmlUrl="https://anvil.works/blog"/>
<outline type="rss" text="AnySuggestion" title="AnySuggestion" xmlUrl="https://medium.com/feed/anysuggestion" htmlUrl="https://medium.com/anysuggestion"/>
<outline type="rss" text="aphyr.com/posts" title="aphyr.com/posts" xmlUrl="https://aphyr.com/posts.atom" htmlUrl="https://aphyr.com/posts"/>
<outline type="rss" text="Apollo GraphQL Blog" title="Apollo GraphQL Blog" xmlUrl="https://blog.apollographql.com/feed" htmlUrl="https://blog.apollographql.com/"/>
<outline type="rss" text="Apoorva Tyagi's Blog" title="Apoorva Tyagi's Blog" xmlUrl="https://apoorvatyagi.com/feed/" htmlUrl="https://apoorvatyagi.com/"/>
<outline type="rss" text="App Launch Map" title="App Launch Map" xmlUrl="https://applaunchmap.com/feed/" htmlUrl="https://applaunchmap.com/blog/"/>
<outline type="rss" text="App Makers " title="App Makers " xmlUrl="https://appmakers.dev/feed/" htmlUrl="https://appmakers.dev/"/>
<outline type="rss" text="AppCoda - Learn Swift & iOS Programming by Doing" title="AppCoda - Learn Swift & iOS Programming by Doing" xmlUrl="https://www.appcoda.com/feed/" htmlUrl="https://www.appcoda.com/"/>
<outline type="rss" text="AppCode Blog" title="AppCode Blog" xmlUrl="https://blog.jetbrains.com/objc/feed/" htmlUrl="https://blog.jetbrains.com/objc"/>
<outline type="rss" text="AppDividend | React.js" title="AppDividend | React.js" xmlUrl="https://appdividend.com/feed/" htmlUrl="https://appdividend.com/category/react-js/"/>
<outline type="rss" text="Appfigures Blog" title="Appfigures Blog" xmlUrl="https://blog.appfigures.com/feed/" htmlUrl="https://blog.appfigures.com/"/>
<outline type="rss" text="Apple Developer News and Updates" title="Apple Developer News and Updates" xmlUrl="feed://developer.apple.com/news/rss/news.rss" htmlUrl="https://developer.apple.com/news/"/>
<outline type="rss" text="Application Not Responding" title="Application Not Responding" xmlUrl="https://applicationnotresponding.wordpress.com/feed/" htmlUrl="https://applicationnotresponding.wordpress.com/"/>
<outline type="rss" text="Applied Go on " title="Applied Go on " xmlUrl="https://appliedgo.net/%7balternate%20%7bRSS%20application/rss&#43;xml%20%20index%20alternate%20%20false%20false%20true%20false%20false%200%7d%20/index.xml%20https://appliedgo.net/index.xml%7d" htmlUrl="https://appliedgo.net/"/>
<outline type="rss" text="AppMakers.Dev" title="AppMakers.Dev" xmlUrl="https://appmakers.dev/category/ios/feed/" htmlUrl="https://appmakers.dev/category/ios/"/>
<outline type="rss" text="Appnexus" title="Appnexus" xmlUrl="https://techblog.appnexus.com/feed" htmlUrl="https://techblog.appnexus.com/"/>
<outline type="rss" text="Appracatappra Blog" title="Appracatappra Blog" xmlUrl="https://appracatappra.com/feed/rss2/" htmlUrl="https://appracatappra.com/category/blog/"/>
<outline type="rss" text="Apps Dissected" title="Apps Dissected" xmlUrl="https://www.appsdissected.com/feed/" htmlUrl="https://www.appsdissected.com/"/>
<outline type="rss" text="appssemble" title="appssemble" xmlUrl="https://medium.com/feed/appssemble" htmlUrl="https://medium.com/appssemble"/>
<outline type="rss" text="Apptamin Blog" title="Apptamin Blog" xmlUrl="https://www.apptamin.com/feed/" htmlUrl="https://www.apptamin.com/blog/"/>
<outline type="rss" text="Appventure" title="Appventure" xmlUrl="https://appventure.me/feed.rss" htmlUrl="https://appventure.me/"/>
<outline type="rss" text="ar.al" title="ar.al" xmlUrl="https://ar.al/index.xml" htmlUrl="https://ar.al/"/>
<outline type="rss" text="arcpy.wordpress.com" title="arcpy.wordpress.com" xmlUrl="https://arcpy.wordpress.com/feed/" htmlUrl="https://arcpy.wordpress.com/"/>
<outline type="rss" text="Arek Holko's Blog" title="Arek Holko's Blog" xmlUrl="http://feeds.feedburner.com/ArkadiuszHolko" htmlUrl="http://holko.pl/"/>
<outline type="rss" text="Ariejan de Vroom" title="Ariejan de Vroom" xmlUrl="https://www.devroom.io/index.xml" htmlUrl="https://ariejan.net/"/>
<outline type="rss" text="Ariel Elkin's Blog" title="Ariel Elkin's Blog" xmlUrl="https://arielelkin.github.io/feed.xml" htmlUrl="https://arielelkin.github.io/"/>
<outline type="rss" text="ariya.io" title="ariya.io" xmlUrl="https://ariya.io/index.xml" htmlUrl="https://ariya.io/"/>
<outline type="rss" text="ariya.ofilabs.com" title="ariya.ofilabs.com" xmlUrl="http://ariya.ofilabs.com/index.xml" htmlUrl="http://ariya.ofilabs.com/"/>
<outline type="rss" text="Arjun Nayini's Blog" title="Arjun Nayini's Blog" xmlUrl="http://arjunnayini.com/feed.xml" htmlUrl="http://arjunnayini.com/"/>
<outline type="rss" text="Arkency" title="Arkency" xmlUrl="https://blog.arkency.com/atom.xml" htmlUrl="http://blog.arkency.com/"/>
<outline type="rss" text="Armin Ronacher" title="Armin Ronacher" xmlUrl="http://lucumr.pocoo.org/feed.atom" htmlUrl="http://lucumr.pocoo.org/"/>
<outline type="rss" text="Armin Ronacher" title="Armin Ronacher" xmlUrl="http://lucumr.pocoo.org/feed.atom" htmlUrl="http://lucumr.pocoo.org/tags/python/"/>
<outline type="rss" text="Arseniy Kuznetsov's Blog" title="Arseniy Kuznetsov's Blog" xmlUrl="http://www.akpdev.com/feed.xml" htmlUrl="http://akpdev.com/"/>
<outline type="rss" text="ArtDriver | Web Development Blog" title="ArtDriver | Web Development Blog" xmlUrl="https://artdriver.com/feed" htmlUrl="https://artdriver.com/blog"/>
<outline type="rss" text="Artsy" title="Artsy" xmlUrl="https://artsy.github.io/feed" htmlUrl="http://artsy.github.io/"/>
<outline type="rss" text="Artsy Engineering" title="Artsy Engineering" xmlUrl="https://artsy.github.io/feed" htmlUrl="https://artsy.github.io/"/>
<outline type="rss" text="Arunrocks" title="Arunrocks" xmlUrl="https://arunrocks.com/index.xml" htmlUrl="http://arunrocks.com/archives/"/>
<outline type="rss" text="As Thick As Two Short Planks - Mark Fowler's Perl Blog" title="As Thick As Two Short Planks - Mark Fowler's Perl Blog" xmlUrl="http://blog.twoshortplanks.com/feed.xml" htmlUrl="http://blog.twoshortplanks.com/"/>
<outline type="rss" text="Asana" title="Asana" xmlUrl="https://blog.asana.com/feed/" htmlUrl="https://blog.asana.com/category/eng/"/>
<outline type="rss" text="Ash Furrow's Blog" title="Ash Furrow's Blog" xmlUrl="https://feed.ashfurrow.com/feed.xml" htmlUrl="https://ashfurrow.com/"/>
<outline type="rss" text="ASOS" title="ASOS" xmlUrl="https://medium.com/feed/asos-techblog" htmlUrl="https://medium.com/asos-techblog"/>
<outline type="rss" text="AstroPython" title="AstroPython" xmlUrl="http://astropython.org/feeds/atom" htmlUrl="http://www.astropython.org/blog/"/>
<outline type="rss" text="Atlassian Developers" title="Atlassian Developers" xmlUrl="https://developer.atlassian.com/blog/feed.xml" htmlUrl="https://developer.atlassian.com/blog/"/>
<outline type="rss" text="Atom.io" title="Atom.io" xmlUrl="https://blog.atom.io/feed.xml" htmlUrl="http://blog.atom.io/"/>
<outline type="rss" text="Atomic Object" title="Atomic Object" xmlUrl="https://spin.atomicobject.com/feed/" htmlUrl="https://spin.atomicobject.com/"/>
<outline type="rss" text="AudioKit Blog" title="AudioKit Blog" xmlUrl="https://audiokitpro.com/feed/" htmlUrl="https://audiokitpro.com/blog/"/>
<outline type="rss" text="Augmented Code Blog" title="Augmented Code Blog" xmlUrl="https://augmentedcode.io/blog/feed/" htmlUrl="https://augmentedcode.io/blog/"/>
<outline type="rss" text="Aurelia Blog" title="Aurelia Blog" xmlUrl="https://aurelia.io/blog/rss/index.xml" htmlUrl="http://blog.aurelia.io/"/>
<outline type="rss" text="AusiOS" title="AusiOS" xmlUrl="http://ausios.com/feed/" htmlUrl="http://ausios.com/"/>
<outline type="rss" text="Auth0 Blog" title="Auth0 Blog" xmlUrl="https://auth0.com/blog/rss.xml" htmlUrl="https://auth0.com/blog/"/>
<outline type="rss" text="Avenue Code" title="Avenue Code" xmlUrl="https://blog.avenuecode.com/rss.xml" htmlUrl="http://blog.avenuecode.com/"/>
<outline type="rss" text="AVOA" title="AVOA" xmlUrl="https://avoa.com/feed/" htmlUrl="https://avoa.com/"/>
<outline type="rss" text="Awesome Engineering Blogs in China" title="Awesome Engineering Blogs in China" xmlUrl="https://github.com/crispgm/awesome-engineering-blogs/commits/master.atom" htmlUrl="https://github.com/crispgm/awesome-engineering-blogs/blob/master/README-cn.md"/>
<outline type="rss" text="awik.io" title="awik.io" xmlUrl="https://awik.io/feed" htmlUrl="https://awik.io/"/>
<outline type="rss" text="AWS News Blog" title="AWS News Blog" xmlUrl="https://aws.amazon.com/blogs/aws/feed/" htmlUrl="https://aws.amazon.com/blogs/aws/"/>
<outline type="rss" text="Azavea" title="Azavea" xmlUrl="https://www.azavea.com/blog/category/software-development/rss" htmlUrl="https://www.azavea.com/blog/category/software-development/"/>
<outline type="rss" text="Babbel" title="Babbel" xmlUrl="https://blog.babbel.com/en/feed/" htmlUrl="https://bytes.babbel.com/en/"/>
<outline type="rss" text="Backtrace" title="Backtrace" xmlUrl="https://backtrace.io/feed/" htmlUrl="https://backtrace.io/blog/"/>
<outline type="rss" text="Bad Concurrency" title="Bad Concurrency" xmlUrl="http://bad-concurrency.blogspot.com/feeds/posts/default" htmlUrl="http://bad-concurrency.blogspot.com/"/>
<outline type="rss" text="Badoo" title="Badoo" xmlUrl="https://badoo.com/techblog/feed.xml" htmlUrl="https://techblog.badoo.com/"/>
<outline type="rss" text="Badoo iOS" title="Badoo iOS" xmlUrl="https://badootech.badoo.com/feed/tagged/ios" htmlUrl="https://badootech.badoo.com/tagged/ios"/>
<outline type="rss" text="Baking Swift" title="Baking Swift" xmlUrl="https://jeroenscode.com/feed/" htmlUrl="https://jeroenscode.com/"/>
<outline type="rss" text="BandCamp" title="BandCamp" xmlUrl="https://bandcamptech.wordpress.com/feed/" htmlUrl="https://bandcamptech.wordpress.com/"/>
<outline type="rss" text="Barry Warsaw" title="Barry Warsaw" xmlUrl="http://www.wefearchange.org/feeds/all.atom.xml" htmlUrl="https://www.wefearchange.org/"/>
<outline type="rss" text="Bartlomiej Filipek" title="Bartlomiej Filipek" xmlUrl="https://www.bfilipek.com/feeds/posts/default" htmlUrl="http://www.bfilipek.com/"/>
<outline type="rss" text="Bartosz Ciechanowski's Blog" title="Bartosz Ciechanowski's Blog" xmlUrl="http://ciechanowski.me/atom.xml" htmlUrl="http://ciechanowski.me/"/>
<outline type="rss" text="Bartosz Polaczyk on Medium" title="Bartosz Polaczyk on Medium" xmlUrl="https://medium.com/feed/@londeix" htmlUrl="https://medium.com/@londeix/"/>
<outline type="rss" text="Bas' Blog" title="Bas' Blog" xmlUrl="https://basthomas.github.io/feed.xml" htmlUrl="https://basthomas.github.io/"/>
<outline type="rss" text="Base Lab" title="Base Lab" xmlUrl="https://lab.getbase.com/feed/" htmlUrl="https://lab.getbase.com/category/engineering/"/>
<outline type="rss" text="Basem Emara's Blog" title="Basem Emara's Blog" xmlUrl="http://basememara.com/feed/" htmlUrl="http://basememara.com/"/>
<outline type="rss" text="Bazaarvoice" title="Bazaarvoice" xmlUrl="https://blog.developer.bazaarvoice.com/feed/" htmlUrl="https://blog.developer.bazaarvoice.com/"/>
<outline type="rss" text="BBC" title="BBC" xmlUrl="https://medium.com/feed/bbc-design-engineering" htmlUrl="https://medium.com/bbc-design-engineering/"/>
<outline type="rss" text="Beauty of Imagination" title="Beauty of Imagination" xmlUrl="http://beauty-of-imagination.blogspot.com/feeds/posts/default" htmlUrl="http://beauty-of-imagination.blogspot.co.id/search/label/python"/>
<outline type="rss" text="Becky Hansmeyer's Blog" title="Becky Hansmeyer's Blog" xmlUrl="http://beckyhansmeyer.com/category/general/feed/" htmlUrl="http://beckyhansmeyer.com/"/>
<outline type="rss" text="Belle B. Cooper's Blog" title="Belle B. Cooper's Blog" xmlUrl="http://blog.bellebcooper.com/feeds/all.atom.xml" htmlUrl="http://blog.bellebcooper.com/"/>
<outline type="rss" text="Ben Dodson's Weblog" title="Ben Dodson's Weblog" xmlUrl="https://bendodson.com/rss.xml" htmlUrl="https://bendodson.com/weblog/"/>
<outline type="rss" text="Ben McCormick" title="Ben McCormick" xmlUrl="https://benmccormick.org/atom.xml" htmlUrl="https://benmccormick.org/"/>
<outline type="rss" text="Ben Nadel's Blog" title="Ben Nadel's Blog" xmlUrl="https://www.bennadel.com/index.cfm?event=blog.rss" htmlUrl="https://www.bennadel.com/index.cfm"/>
<outline type="rss" text="Ben Rousch" title="Ben Rousch" xmlUrl="http://clusterbleep.net/blog/feed/" htmlUrl="http://clusterbleep.net/blog/"/>
<outline type="rss" text="Ben Scheirman Blog" title="Ben Scheirman Blog" xmlUrl="https://benscheirman.com/rss/" htmlUrl="https://benscheirman.com/"/>
<outline type="rss" text="Ben Scholtysik's Blog" title="Ben Scholtysik's Blog" xmlUrl="https://benjaminscholtysik.com/feed/" htmlUrl="https://benjaminscholtysik.com/"/>
<outline type="rss" text="Ben Snider's Blog" title="Ben Snider's Blog" xmlUrl="http://www.bensnider.com/feeds/all.atom.xml" htmlUrl="http://www.bensnider.com/"/>
<outline type="rss" text="Benchling" title="Benchling" xmlUrl="https://benchling.engineering/feed" htmlUrl="https://benchling.engineering/"/>
<outline type="rss" text="BenchResources.Net" title="BenchResources.Net" xmlUrl="https://www.benchresources.net/feed/" htmlUrl="https://www.benchresources.net/"/>
<outline type="rss" text="Benedikt Meurer" title="Benedikt Meurer" xmlUrl="https://benediktmeurer.de/feed.xml" htmlUrl="https://benediktmeurer.de/"/>
<outline type="rss" text="BenefitFocus" title="BenefitFocus" xmlUrl="https://www.benefitfocus.com/rss.xml" htmlUrl="https://www.benefitfocus.com/blogs/design-engineering"/>
<outline type="rss" text="Benoit Pasquier's Blog" title="Benoit Pasquier's Blog" xmlUrl="https://benoitpasquier.com/index.xml" htmlUrl="https://benoitpasquier.com/"/>
<outline type="rss" text="Berkhan Berkdemir" title="Berkhan Berkdemir" xmlUrl="https://www.berkhanberkdemir.com/feed.xml" htmlUrl="https://berkhanberkdemir.com/"/>
<outline type="rss" text="Besher Al Maleh's Blog" title="Besher Al Maleh's Blog" xmlUrl="https://medium.com/feed/@almalehdev" htmlUrl="https://medium.com/@almalehdev"/>
<outline type="rss" text="Better Programming " title="Better Programming " xmlUrl="https://medium.com/feed/better-programming" htmlUrl="https://medium.com/better-programming"/>
<outline type="rss" text="BetterWorks" title="BetterWorks" xmlUrl="https://blog.betterworks.com/feed/" htmlUrl="https://engineering.betterworks.com/"/>
<outline type="rss" text="Big Mountain Studio's Swift Quickstart Guide" title="Big Mountain Studio's Swift Quickstart Guide" xmlUrl="http://swiftquickstart.blogspot.com/feeds/posts/default" htmlUrl="http://swiftquickstart.blogspot.com/"/>
<outline type="rss" text="Big Nerd Ranch" title="Big Nerd Ranch" xmlUrl="https://www.bignerdranch.com/blog/category/ios/feed/" htmlUrl="https://www.bignerdranch.com/blog/category/ios/"/>
<outline type="rss" text="Bigcommerce" title="Bigcommerce" xmlUrl="https://www.bigeng.io/rss/" htmlUrl="http://www.bigeng.io/"/>
<outline type="rss" text="Bill the Lizard" title="Bill the Lizard" xmlUrl="http://www.billthelizard.com/feeds/posts/default" htmlUrl="http://www.billthelizard.com/"/>
<outline type="rss" text="Binary Studio" title="Binary Studio" xmlUrl="https://binary-studio.com/blog/feed/" htmlUrl="https://binary-studio.com/blog/"/>
<outline type="rss" text="Bit Stampede" title="Bit Stampede" xmlUrl="https://www.bitstampede.com/feed/" htmlUrl="https://www.bitstampede.com/"/>
<outline type="rss" text="Bitcoin » Darknet " title="Bitcoin » Darknet " xmlUrl="https://news.bitcoin.com/feed/" htmlUrl="https://news.bitcoin.com/tag/darknet/"/>
<outline type="rss" text="Bitly" title="Bitly" xmlUrl="https://word.bitly.com/rss" htmlUrl="http://word.bitly.com/"/>
<outline type="rss" text="Bits and Pieces Blog" title="Bits and Pieces Blog" xmlUrl="https://blog.bitsrc.io/feed" htmlUrl="https://blog.bitsrc.io/"/>
<outline type="rss" text="Bitsplitting" title="Bitsplitting" xmlUrl="http://bitsplitting.org/feed/" htmlUrl="http://bitsplitting.org/"/>
<outline type="rss" text="BitTorrent" title="BitTorrent" xmlUrl="https://engineering.bittorrent.com/feed/" htmlUrl="http://engineering.bittorrent.com/"/>
<outline type="rss" text="Bixly - Django Developer & Python Programmer Blog" title="Bixly - Django Developer & Python Programmer Blog" xmlUrl="https://blog.bixly.com/feed" htmlUrl="https://bixly.com/blog/"/>
<outline type="rss" text="bjango.com" title="bjango.com" xmlUrl="feed://bjango.com/rss/articles.xml" htmlUrl="https://bjango.com/articles/"/>
<outline type="rss" text="Bjørn Johansen" title="Bjørn Johansen" xmlUrl="https://bjornjohansen.no/feed" htmlUrl="https://bjornjohansen.no/"/>
<outline type="rss" text="Blablacar" title="Blablacar" xmlUrl="https://medium.com/feed/blablacar-tech" htmlUrl="http://blablatech.com/"/>
<outline type="rss" text="BlaBlaCar" title="BlaBlaCar" xmlUrl="https://medium.com/feed/blablacar-tech" htmlUrl="http://blablatech.com/blog/"/>
<outline type="rss" text="Black Pixel" title="Black Pixel" xmlUrl="https://blackpixel.com/writing/atom.xml" htmlUrl="https://blackpixel.com/writing/"/>
<outline type="rss" text="Blacklane" title="Blacklane" xmlUrl="https://medium.com/feed/blacklane-engineering" htmlUrl="https://medium.com/blacklane-engineering"/>
<outline type="rss" text="BlackRock Engineering" title="BlackRock Engineering" xmlUrl="http://rockthecode.io/feed/" htmlUrl="http://rockthecode.io/"/>
<outline type="rss" text="Blake Erickson" title="Blake Erickson" xmlUrl="https://blog.blakeerickson.com/feed.xml" htmlUrl="https://blog.blakeerickson.com/"/>
<outline type="rss" text="Blender" title="Blender" xmlUrl="https://code.blender.org/rss" htmlUrl="https://code.blender.org/"/>
<outline type="rss" text="Blendle Engineering" title="Blendle Engineering" xmlUrl="https://blendle.engineering/feed" htmlUrl="https://blendle.engineering/"/>
<outline type="rss" text="Blog | LinkedIn Engineering" title="Blog | LinkedIn Engineering" xmlUrl="https://engineering.linkedin.com/feed" htmlUrl="https://engineering.linkedin.com/blog"/>
<outline type="rss" text="blog.drewolson.org" title="blog.drewolson.org" xmlUrl="https://blog.drewolson.org/feed.xml" htmlUrl="https://blog.drewolson.org/"/>
<outline type="rss" text="blog.frankmtaylor.com" title="blog.frankmtaylor.com" xmlUrl="https://blog.frankmtaylor.com/feed" htmlUrl="https://blog.frankmtaylor.com/"/>
<outline type="rss" text="blog.gregbrockman.com" title="blog.gregbrockman.com" xmlUrl="https://blog.gregbrockman.com/feed" htmlUrl="https://blog.gregbrockman.com/"/>
<outline type="rss" text="blog.jessitron.com" title="blog.jessitron.com" xmlUrl="https://blog.jessitron.com/feed/" htmlUrl="http://blog.jessitron.com/"/>
<outline type="rss" text="blog.lmorchard.com" title="blog.lmorchard.com" xmlUrl="http://blog.lmorchard.com.s3-website-us-east-1.amazonaws.com/index.rss" htmlUrl="http://blog.lmorchard.com/"/>
<outline type="rss" text="blog.lse.epita.fr" title="blog.lse.epita.fr" xmlUrl="http://blog.lse.epita.fr/rssfeed.xml" htmlUrl="https://blog.lse.epita.fr/"/>
<outline type="rss" text="blog.nullspace.io" title="blog.nullspace.io" xmlUrl="http://blog.nullspace.io/atom.xml" htmlUrl="http://blog.nullspace.io/"/>
<outline type="rss" text="blog.petrzemek.net" title="blog.petrzemek.net" xmlUrl="https://blog.petrzemek.net/feed/" htmlUrl="http://blog.petrzemek.net/"/>
<outline type="rss" text="blog.plataformatec.com.br" title="blog.plataformatec.com.br" xmlUrl="http://blog.plataformatec.com.br/feed/" htmlUrl="http://blog.plataformatec.com.br/"/>
<outline type="rss" text="Blogfoster" title="Blogfoster" xmlUrl="https://engineering.blogfoster.com/rss.xml" htmlUrl="http://engineering.blogfoster.com/"/>
<outline type="rss" text="blogs.msdn.microsoft.com/abhinaba" title="blogs.msdn.microsoft.com/abhinaba" xmlUrl="https://blogs.msdn.microsoft.com/abhinaba/feed/" htmlUrl="https://blogs.msdn.microsoft.com/abhinaba/"/>
<outline type="rss" text="BlogsGeek" title="BlogsGeek" xmlUrl="https://www.blogsgeek.com/feed/" htmlUrl="https://www.blogsgeek.com/"/>
<outline type="rss" text="Bloomberg" title="Bloomberg" xmlUrl="https://www.techatbloomberg.com/blog/feed/" htmlUrl="https://www.techatbloomberg.com/blog/#2"/>
<outline type="rss" text="BloomReach" title="BloomReach" xmlUrl="http://engineering.bloomreach.com/feed/" htmlUrl="http://engineering.bloomreach.com/"/>
<outline type="rss" text="Blundell | Android Developer Tutorials" title="Blundell | Android Developer Tutorials" xmlUrl="https://blog.blundellapps.co.uk/feed/" htmlUrl="https://blog.blundellapps.co.uk/"/>
<outline type="rss" text="Blundell | Android Developer Tutorials" title="Blundell | Android Developer Tutorials" xmlUrl="https://blog.blundellapps.co.uk/feed/" htmlUrl="https://blog.blundellapps.co.uk/"/>
<outline type="rss" text="Bob the Developer" title="Bob the Developer" xmlUrl="https://blog.bobthedeveloper.io/feed" htmlUrl="https://blog.bobthedeveloper.io/"/>
<outline type="rss" text="boffosocko.com" title="boffosocko.com" xmlUrl="https://boffosocko.com/feed/" htmlUrl="https://boffosocko.com/"/>
<outline type="rss" text="Bohemian Coders" title="Bohemian Coders" xmlUrl="http://bohemiancoders.tumblr.com/rss" htmlUrl="http://bohemiancoders.tumblr.com/"/>
<outline type="rss" text="Bohops" title="Bohops" xmlUrl="https://bohops.com/feed/" htmlUrl="https://bohops.com/"/>
<outline type="rss" text="Boing Boing" title="Boing Boing" xmlUrl="https://boingboing.net/feed" htmlUrl="https://boingboing.net/"/>
<outline type="rss" text="BontoJR" title="BontoJR" xmlUrl="https://www.bonto.ch/atom.xml" htmlUrl="https://www.bonto.ch/"/>
<outline type="rss" text="BookMyShow" title="BookMyShow" xmlUrl="https://we-are.bookmyshow.com/feed" htmlUrl="https://we-are.bookmyshow.com/"/>
<outline type="rss" text="Bootstrap.com" title="Bootstrap.com" xmlUrl="https://blog.getbootstrap.com/feed.xml" htmlUrl="https://blog.getbootstrap.com/"/>
<outline type="rss" text="Box Engineering Blog" title="Box Engineering Blog" xmlUrl="https://app.box.com/services/rss/" htmlUrl="https://www.box.com/blog/engineering/"/>
<outline type="rss" text="Boxever" title="Boxever" xmlUrl="https://www.boxever.com/feed/" htmlUrl="http://www.boxever.com/blog/"/>
<outline type="rss" text="BPXL Craft" title="BPXL Craft" xmlUrl="https://medium.com/feed/bpxl-craft" htmlUrl="https://medium.com/bpxl-craft"/>
<outline type="rss" text="BR Softech" title="BR Softech" xmlUrl="https://www.brsoftech.com/blog/feed/" htmlUrl="https://www.brsoftech.com/blog/"/>
<outline type="rss" text="Brad Frost" title="Brad Frost" xmlUrl="http://feeds.feedburner.com/brad-frosts-blog" htmlUrl="http://bradfrost.com/"/>
<outline type="rss" text="bram.us" title="bram.us" xmlUrl="https://www.bram.us/feed/" htmlUrl="https://bram.us/"/>
<outline type="rss" text="Branch" title="Branch" xmlUrl="https://blog.branch.io/feed/" htmlUrl="https://blog.branch.io/"/>
<outline type="rss" text="Brandon Dail" title="Brandon Dail" xmlUrl="https://aweary.dev/rss.xml" htmlUrl="https://aweary.dev/"/>
<outline type="rss" text="Brandon Rhodes" title="Brandon Rhodes" xmlUrl="https://rhodesmill.org/brandon/feed/" htmlUrl="http://rhodesmill.org/brandon/"/>
<outline type="rss" text="Brandon Skerritt" title="Brandon Skerritt" xmlUrl="https://skerritt.blog/rss/" htmlUrl="https://skerritt.blog/"/>
<outline type="rss" text="brandonokert.com" title="brandonokert.com" xmlUrl="http://brandonokert.com/index.xml" htmlUrl="http://brandonokert.com/"/>
<outline type="rss" text="Brandwatch" title="Brandwatch" xmlUrl="https://www.brandwatch.com/feed/" htmlUrl="http://engineering.brandwatch.com/"/>
<outline type="rss" text="Brendan Eich" title="Brendan Eich" xmlUrl="https://brendaneich.com/feed/" htmlUrl="https://brendaneich.com/"/>
<outline type="rss" text="Brendan Gregg" title="Brendan Gregg" xmlUrl="http://www.brendangregg.com/blog/rss.xml" htmlUrl="http://www.brendangregg.com/blog/"/>
<outline type="rss" text="Bret Victor's Blog" title="Bret Victor's Blog" xmlUrl="http://worrydream.com/feed.xml" htmlUrl="http://worrydream.com/"/>
<outline type="rss" text="Brett Cannon" title="Brett Cannon" xmlUrl="https://snarky.ca/rss/" htmlUrl="https://snarky.ca/"/>
<outline type="rss" text="BrightDigit" title="BrightDigit" xmlUrl="https://brightdigit.com/blog/feed/" htmlUrl="https://brightdigit.com/blog/"/>
<outline type="rss" text="brooker.co.za/blog" title="brooker.co.za/blog" xmlUrl="http://brooker.co.za/blog/rss.xml" htmlUrl="https://brooker.co.za/blog/"/>
<outline type="rss" text="brucelawson.co.uk" title="brucelawson.co.uk" xmlUrl="https://www.brucelawson.co.uk/feed/" htmlUrl="https://www.brucelawson.co.uk/"/>
<outline type="rss" text="Brujo Benavides" title="Brujo Benavides" xmlUrl="https://medium.com/feed/@elbrujohalcon" htmlUrl="https://medium.com/@elbrujohalcon"/>
<outline type="rss" text="Bryan Cantrill" title="Bryan Cantrill" xmlUrl="http://dtrace.org/blogs/bmc/feed/" htmlUrl="http://dtrace.org/blogs/bmc/"/>
<outline type="rss" text="Bryan Irace's Blog" title="Bryan Irace's Blog" xmlUrl="http://irace.me/feed.xml" htmlUrl="http://irace.me/"/>
<outline type="rss" text="Bryce Pauken's Blog" title="Bryce Pauken's Blog" xmlUrl="https://bryce.co/index.xml" htmlUrl="https://bryce.co/"/>
<outline type="rss" text="Bugfender Blog" title="Bugfender Blog" xmlUrl="https://bugfender.com/blog/feed/" htmlUrl="https://bugfender.com/blog/"/>
<outline type="rss" text="Build and Run" title="Build and Run" xmlUrl="https://thomas.zoechling.me/journal/feed.xml" htmlUrl="https://thomas.zoechling.me/journal/"/>
<outline type="rss" text="Build Please" title="Build Please" xmlUrl="https://buildplease.com/index.xml" htmlUrl="https://buildplease.com/"/>
<outline type="rss" text="BuiltInPerl" title="BuiltInPerl" xmlUrl="http://blog.builtinperl.com/feed" htmlUrl="http://blog.builtinperl.com/"/>
<outline type="rss" text="Buzzfeed" title="Buzzfeed" xmlUrl="https://tech.buzzfeed.com/feed" htmlUrl="https://www.buzzfeed.com/techblog"/>
<outline type="rss" text="C# Corner" title="C# Corner" xmlUrl="http://c-sharpcorner.com/userregistration/logincheck.aspx?returnurl=/?feed=rss2" htmlUrl="http://www.c-sharpcorner.com/"/>
<outline type="rss" text="C.H. Robinson" title="C.H. Robinson" xmlUrl="https://engineering.chrobinson.com/atom.xml" htmlUrl="http://engineering.chrobinson.com/"/>
<outline type="rss" text="CALayer" title="CALayer" xmlUrl="https://www.calayer.com/feed.xml" htmlUrl="https://calayer.com/"/>
<outline type="rss" text="Canva" title="Canva" xmlUrl="https://product.canva.com/feed.xml" htmlUrl="https://engineering.canva.com/"/>
<outline type="rss" text="Capgemini" title="Capgemini" xmlUrl="https://capgemini.github.io/feed.xml" htmlUrl="https://capgemini.github.io/"/>
<outline type="rss" text="Captricity" title="Captricity" xmlUrl="https://vidado.ai/feed/" htmlUrl="https://captricity.com/blog/"/>
<outline type="rss" text="Carbon Five" title="Carbon Five" xmlUrl="http://blog.carbonfive.com/?feed=rss" htmlUrl="http://blog.carbonfive.com/"/>
<outline type="rss" text="Career Geek" title="Career Geek" xmlUrl="https://www.careergeekblog.com/feed/" htmlUrl="https://www.careergeekblog.com/"/>
<outline type="rss" text="Carlos Becker" title="Carlos Becker" xmlUrl="https://carlosbecker.com/index.xml" htmlUrl="https://carlosbecker.com/"/>
<outline type="rss" text="carpeaqua" title="carpeaqua" xmlUrl="https://carpeaqua.com/rss/" htmlUrl="https://carpeaqua.com/"/>
<outline type="rss" text="Cascading Style Sheets | Reddit.com" title="Cascading Style Sheets | Reddit.com" xmlUrl="https://www.reddit.com/?feed=rss&amp;after=t3_e5pfnb" htmlUrl="https://www.reddit.com/r/css/"/>
<outline type="rss" text="CatsWhoCode" title="CatsWhoCode" xmlUrl="https://catswhocode.com/feed/" htmlUrl="https://catswhocode.com/"/>
<outline type="rss" text="CatsWhoCode" title="CatsWhoCode" xmlUrl="https://catswhocode.com/feed/" htmlUrl="https://catswhocode.com/blog/"/>
<outline type="rss" text="CBR Digital" title="CBR Digital" xmlUrl="http://feeds.feedburner.com/CloudBusinessReview" htmlUrl="http://www.cbrdigital.com/"/>
<outline type="rss" text="CCN Markets » Dark web" title="CCN Markets » Dark web" xmlUrl="https://www.ccn.com/?feed=rss" htmlUrl="https://www.ccn.com/tag/dark-web/"/>
<outline type="rss" text="cdevroe.com" title="cdevroe.com" xmlUrl="https://cdevroe.com/feed" htmlUrl="https://cdevroe.com/"/>
<outline type="rss" text="Cecilia Humlelu on Medium" title="Cecilia Humlelu on Medium" xmlUrl="https://medium.com/feed/@cecilia.humlelu" htmlUrl="https://medium.com/@cecilia.humlelu"/>
<outline type="rss" text="CenturyLink" title="CenturyLink" xmlUrl="https://www.ctl.io/developers/blog/rss" htmlUrl="https://www.ctl.io/developers/blog"/>
<outline type="rss" text="Cerner" title="Cerner" xmlUrl="https://engineering.cerner.com/atom.xml" htmlUrl="http://engineering.cerner.com/"/>
<outline type="rss" text="Changelog | Go Time" title="Changelog | Go Time" xmlUrl="https://changelog.com/feed" htmlUrl="https://changelog.com/gotime"/>
<outline type="rss" text="Chaps" title="Chaps" xmlUrl="https://blog.chaps.io/feed.xml" htmlUrl="https://blog.chaps.io/"/>
<outline type="rss" text="CHARBEL NEMNOM MVP | Cloud & Datacenter Management" title="CHARBEL NEMNOM MVP | Cloud & Datacenter Management" xmlUrl="https://charbelnemnom.com/feed/" htmlUrl="https://charbelnemnom.com/"/>
<outline type="rss" text="charity.wtf" title="charity.wtf" xmlUrl="https://charity.wtf/feed" htmlUrl="https://charity.wtf/"/>
<outline type="rss" text="Charles Leifer" title="Charles Leifer" xmlUrl="http://charlesleifer.com/blog/rss/" htmlUrl="http://charlesleifer.com/blog/tags/python/"/>
<outline type="rss" text="Charlie Chapman's Blog" title="Charlie Chapman's Blog" xmlUrl="https://charliemchapman.com/rss.xml" htmlUrl="https://charliemchapman.com/"/>
<outline type="rss" text="Chartbeat" title="Chartbeat" xmlUrl="https://engineering.chartbeat.com/feed/" htmlUrl="http://engineering.chartbeat.com/"/>
<outline type="rss" text="Chase McCoy" title="Chase McCoy" xmlUrl="https://chasem.co/feed.xml" htmlUrl="https://chasem.co/thoughts/"/>
<outline type="rss" text="Chef" title="Chef" xmlUrl="https://blog.chef.io/rss" htmlUrl="https://blog.chef.io/"/>
<outline type="rss" text="Chen Hui Jing" title="Chen Hui Jing" xmlUrl="https://www.chenhuijing.com/feed.xml" htmlUrl="https://www.chenhuijing.com/blog/"/>
<outline type="rss" text="chenhuijing.com" title="chenhuijing.com" xmlUrl="https://www.chenhuijing.com/feed.xml" htmlUrl="https://www.chenhuijing.com/"/>
<outline type="rss" text="Chetaru | International Digital Agency" title="Chetaru | International Digital Agency" xmlUrl="https://chetaru.com/?feed=rss" htmlUrl="https://chetaru.com/"/>
<outline type="rss" text="Chiamaka Ikeanyi" title="Chiamaka Ikeanyi" xmlUrl="https://chiamakaikeanyi.dev/rss.xml" htmlUrl="https://chiamakaikeanyi.dev/"/>
<outline type="rss" text="Chien Tran" title="Chien Tran" xmlUrl="http://thelazylog.com/rss/" htmlUrl="http://thelazylog.com/"/>
<outline type="rss" text="Chris Banes" title="Chris Banes" xmlUrl="https://chris.banes.dev/atom.xml" htmlUrl="https://chris.banes.me/"/>
<outline type="rss" text="Chris Biscardi" title="Chris Biscardi" xmlUrl="https://www.christopherbiscardi.com/rss.xml" htmlUrl="https://www.christopherbiscardi.com/"/>
<outline type="rss" text="Chris Dzombak's Blog" title="Chris Dzombak's Blog" xmlUrl="https://www.dzombak.com/atom.xml" htmlUrl="https://www.dzombak.com/blog/"/>
<outline type="rss" text="Chris Eidhof's Blog" title="Chris Eidhof's Blog" xmlUrl="http://chris.eidhof.nl/index.xml" htmlUrl="http://chris.eidhof.nl/"/>
<outline type="rss" text="Chris Hager" title="Chris Hager" xmlUrl="https://www.metachris.com/index.xml" htmlUrl="https://www.metachris.com/blog/"/>
<outline type="rss" text="Chris Wellons" title="Chris Wellons" xmlUrl="https://nullprogram.com/feed/" htmlUrl="http://nullprogram.com/"/>
<outline type="rss" text="Chris Winstanley on Medium" title="Chris Winstanley on Medium" xmlUrl="https://medium.com/feed/@CWinstanley90" htmlUrl="https://medium.com/@CWinstanley90"/>
<outline type="rss" text="chrisfenton.com" title="chrisfenton.com" xmlUrl="http://www.chrisfenton.com/feed/" htmlUrl="http://www.chrisfenton.com/"/>
<outline type="rss" text="chrisruppel.com" title="chrisruppel.com" xmlUrl="https://chrisruppel.com/travel.xml" htmlUrl="https://chrisruppel.com/"/>
<outline type="rss" text="Christian Fei" title="Christian Fei" xmlUrl="https://christianfei.com/rss.xml" htmlUrl="https://christianfei.com/"/>
<outline type="rss" text="Christian Heilmann" title="Christian Heilmann" xmlUrl="https://christianheilmann.com/feed/" htmlUrl="https://christianheilmann.com/"/>
<outline type="rss" text="Christian Tietze's Blog" title="Christian Tietze's Blog" xmlUrl="https://christiantietze.de/feed.atom" htmlUrl="https://christiantietze.de/"/>
<outline type="rss" text="chsakell's Blog" title="chsakell's Blog" xmlUrl="https://chsakell.com/feed/" htmlUrl="https://chsakell.com/"/>
<outline type="rss" text="Cihat Gündüz on Medium" title="Cihat Gündüz on Medium" xmlUrl="https://medium.com/feed/@Dschee" htmlUrl="https://medium.com/@Dschee"/>
<outline type="rss" text="CIO Dive » Cloud Computing" title="CIO Dive » Cloud Computing" xmlUrl="https://www.ciodive.com/feeds/news/" htmlUrl="http://www.ciodive.com/topic/cloud-computing/"/>
<outline type="rss" text="CIOReview" title="CIOReview" xmlUrl="https://www.cioreview.com/rssfeed/" htmlUrl="https://cloud.cioreview.com/"/>
<outline type="rss" text="Cisco" title="Cisco" xmlUrl="https://blogs.cisco.com/feed" htmlUrl="http://blogs.cisco.com/tag/python"/>
<outline type="rss" text="Cisco » Cloud Computing" title="Cisco » Cloud Computing" xmlUrl="https://blogs.cisco.com/feed" htmlUrl="https://blogs.cisco.com/?s=cloudcomputing"/>
<outline type="rss" text="Cisco Cloud Computing Blog" title="Cisco Cloud Computing Blog" xmlUrl="https://blogs.cisco.com/feed" htmlUrl="https://blogs.cisco.com/tag/cloud-computing"/>
<outline type="rss" text="Clay McLeod" title="Clay McLeod" xmlUrl="http://blog.claymcleod.io/atom.xml" htmlUrl="http://blog.claymcleod.io/"/>
<outline type="rss" text="claytonsalem.com" title="claytonsalem.com" xmlUrl="https://claytonsalem.com/feed.xml" htmlUrl="https://claytonsalem.com/"/>
<outline type="rss" text="Cleartrip" title="Cleartrip" xmlUrl="https://medium.com/feed/cleartrip" htmlUrl="https://medium.com/cleartrip"/>
<outline type="rss" text="Clever" title="Clever" xmlUrl="https://engineering.clever.com/rss" htmlUrl="https://engineering.clever.com/"/>
<outline type="rss" text="CleverTap" title="CleverTap" xmlUrl="https://clevertap.com/blog/tag/engineering/feed/" htmlUrl="https://clevertap.com/blog/tag/engineering/"/>
<outline type="rss" text="Close.io" title="Close.io" xmlUrl="https://engineering.close.com/feed.xml" htmlUrl="https://hack.close.io/"/>
<outline type="rss" text="Cloud Computing Magazine" title="Cloud Computing Magazine" xmlUrl="http://rss.tmcnet.com/rss/tmcnet-news" htmlUrl="http://cloud-computing.tmcnet.com/"/>
<outline type="rss" text="Cloud Computing Today" title="Cloud Computing Today" xmlUrl="https://cloud-computing-today.com/feed/" htmlUrl="https://cloud-computing-today.com/"/>
<outline type="rss" text="Cloud Management Insider " title="Cloud Management Insider " xmlUrl="https://www.cloudmanagementinsider.com/feed/" htmlUrl="https://www.cloudmanagementinsider.com/"/>
<outline type="rss" text="Cloud Matters" title="Cloud Matters" xmlUrl="https://cloudmatters.cloud/feed/" htmlUrl="https://cloudmatters.cloud/"/>
<outline type="rss" text="Cloud Musings " title="Cloud Musings " xmlUrl="http://kevinljackson.blogspot.com/feeds/posts/default" htmlUrl="http://kevinljackson.blogspot.com/"/>
<outline type="rss" text="Cloud on TechRepublic" title="Cloud on TechRepublic" xmlUrl="https://www.techrepublic.com/rssfeeds/topic/cloud/?feedType=rssfeeds" htmlUrl="https://www.techrepublic.com/topic/cloud/"/>
<outline type="rss" text="Cloud Pro " title="Cloud Pro " xmlUrl="https://www.cloudpro.co.uk/news/feed" htmlUrl="https://www.cloudpro.co.uk/news"/>
<outline type="rss" text="CloudBees" title="CloudBees" xmlUrl="https://www.cloudbees.com/blog.xml" htmlUrl="https://www.cloudbees.com/blog"/>
<outline type="rss" text="Cloudera Engineering Blog" title="Cloudera Engineering Blog" xmlUrl="https://blog.cloudera.com/feed/" htmlUrl="https://blog.cloudera.com/"/>
<outline type="rss" text="CloudExpo Journal" title="CloudExpo Journal" xmlUrl="http://cloudcomputing.sys-con.com/index.rss" htmlUrl="http://cloudcomputing.sys-con.com/"/>
<outline type="rss" text="Cloudflare" title="Cloudflare" xmlUrl="https://blog.cloudflare.com/rss/" htmlUrl="https://blog.cloudflare.com/"/>
<outline type="rss" text="CloudPundit" title="CloudPundit" xmlUrl="https://cloudpundit.com/feed/" htmlUrl="https://cloudpundit.com/"/>
<outline type="rss" text="Cloudscaling" title="Cloudscaling" xmlUrl="https://cloudscaling.com/feed.xml" htmlUrl="https://cloudscaling.com/blog/"/>
<outline type="rss" text="CloudTech" title="CloudTech" xmlUrl="https://www.cloudcomputing-news.net/feed/" htmlUrl="https://www.cloudcomputing-news.net/"/>
<outline type="rss" text="CloudTweaks" title="CloudTweaks" xmlUrl="https://cloudtweaks.com/feed/" htmlUrl="https://cloudtweaks.com/"/>
<outline type="rss" text="Cloudwards" title="Cloudwards" xmlUrl="https://www.cloudwards.net/how-to-set-up-an-rss-feed/" htmlUrl="https://www.cloudwards.net/articles/"/>
<outline type="rss" text="cmsMinds Blog" title="cmsMinds Blog" xmlUrl="https://www.cmsminds.com/feed/" htmlUrl="https://www.cmsminds.com/blog"/>
<outline type="rss" text="Coach Frank" title="Coach Frank" xmlUrl="http://www.ioscoachfrank.com/feed/atom.xml" htmlUrl="http://www.ioscoachfrank.com/"/>
<outline type="rss" text="CockroachDB" title="CockroachDB" xmlUrl="https://www.cockroachlabs.com/blog/index.xml" htmlUrl="https://www.cockroachlabs.com/blog/"/>
<outline type="rss" text="Cocoa, Coffee and Life" title="Cocoa, Coffee and Life" xmlUrl="https://cocoacaffeine.wordpress.com/feed/" htmlUrl="https://cocoacaffeine.wordpress.com/"/>
<outline type="rss" text="Cocoa Controls" title="Cocoa Controls" xmlUrl="https://www.cocoacontrols.com/index.xml" htmlUrl="http://www.cocoacontrols.com/"/>
<outline type="rss" text="Cocoa Controls - Custom Controls for iOS, macOS, tvOS, and watchOS" title="Cocoa Controls - Custom Controls for iOS, macOS, tvOS, and watchOS" xmlUrl="https://feeds.feedburner.com/cocoacontrols" htmlUrl="https://www.cocoacontrols.com/posts"/>
<outline type="rss" text="Cocoa Is My Girlfriend" title="Cocoa Is My Girlfriend" xmlUrl="http://www.cimgf.com/feed/" htmlUrl="http://www.cimgf.com/"/>
<outline type="rss" text="Cocoa Samurai" title="Cocoa Samurai" xmlUrl="https://cocoasamurai.blogspot.com/feeds/posts/default" htmlUrl="https://cocoasamurai.blogspot.com/"/>
<outline type="rss" text="Cocoa with Love" title="Cocoa with Love" xmlUrl="http://www.cocoawithlove.com/feeds/posts/default?alt=rss" htmlUrl="https://www.cocoawithlove.com/"/>
<outline type="rss" text="Cocoacasts" title="Cocoacasts" xmlUrl="https://cocoacasts.com/feed" htmlUrl="https://cocoacasts.com/blog"/>
<outline type="rss" text="Cocoanetics" title="Cocoanetics" xmlUrl="https://www.cocoanetics.com/feed/" htmlUrl="https://www.cocoanetics.com/blog/"/>
<outline type="rss" text="Cocoaphony" title="Cocoaphony" xmlUrl="http://robnapier.net/atom.xml" htmlUrl="http://robnapier.net/"/>
<outline type="rss" text="Code as Craft, Etsy's Engineering Blog" title="Code as Craft, Etsy's Engineering Blog" xmlUrl="https://codeascraft.com/feed/" htmlUrl="https://codeascraft.com/"/>
<outline type="rss" text="Code Better" title="Code Better" xmlUrl="http://feeds.feedburner.com/CodeBetter" htmlUrl="http://codebetter.com/"/>
<outline type="rss" text="Code vs Color | Android " title="Code vs Color | Android " xmlUrl="https://www.codevscolor.com/feed/" htmlUrl="http://codevscolor.com/category/android/"/>
<outline type="rss" text="Code Wall" title="Code Wall" xmlUrl="https://www.codewall.co.uk/feed/" htmlUrl="https://www.codewall.co.uk/"/>
<outline type="rss" text="Code with Dan Blog see it, learn it, code it" title="Code with Dan Blog see it, learn it, code it" xmlUrl="https://blog.codewithdan.com/feed/" htmlUrl="https://blog.codewithdan.com/"/>
<outline type="rss" text="Code with Hugo" title="Code with Hugo" xmlUrl="https://codewithhugo.com/index.xml" htmlUrl="https://codewithhugo.com/"/>
<outline type="rss" text="Code with style!" title="Code with style!" xmlUrl="https://codewithstyle.info/feed/" htmlUrl="https://codewithstyle.info/"/>
<outline type="rss" text="Code Workshop" title="Code Workshop" xmlUrl="http://codeworkshop.net/feed" htmlUrl="http://codeworkshop.net/"/>
<outline type="rss" text="CODE. COOK. READ." title="CODE. COOK. READ." xmlUrl="https://codecookread.com/feed/rss" htmlUrl="https://codecookread.com/"/>
<outline type="rss" text="codeandunicorns.com" title="codeandunicorns.com" xmlUrl="https://codeandunicorns.com/feed/" htmlUrl="https://codeandunicorns.com/"/>
<outline type="rss" text="Codecondo" title="Codecondo" xmlUrl="https://codecondo.com/feed/" htmlUrl="https://codecondo.com/"/>
<outline type="rss" text="CodeFights" title="CodeFights" xmlUrl="https://codesignal.com/feed/" htmlUrl="http://blog.codefights.com/"/>
<outline type="rss" text="Codelitt" title="Codelitt" xmlUrl="https://www.codelitt.com/blog/rss" htmlUrl="https://www.codelitt.com/blog/"/>
<outline type="rss" text="Codemancers" title="Codemancers" xmlUrl="https://crypt.codemancers.com/index.xml" htmlUrl="https://crypt.codemancers.com/"/>
<outline type="rss" text="Codementor" title="Codementor" xmlUrl="https://www.codementor.io/tutorial/feed" htmlUrl="https://www.codementor.io/tutorial"/>
<outline type="rss" text="Codementor | Android Tutorials" title="Codementor | Android Tutorials" xmlUrl="https://www.codementor.io/feed" htmlUrl="https://www.codementor.io/android/tutorial"/>
<outline type="rss" text="Codeminer42" title="Codeminer42" xmlUrl="https://blog.codeminer42.com/feed/" htmlUrl="https://blog.codeminer42.com/"/>
<outline type="rss" text="CodeName One" title="CodeName One" xmlUrl="http://www.codenameone.com/feed.xml" htmlUrl="http://www.codenameone.com/blog.html"/>
<outline type="rss" text="CodePen" title="CodePen" xmlUrl="https://blog.codepen.io/feed/" htmlUrl="https://blog.codepen.io/"/>
<outline type="rss" text="Coder's point" title="Coder's point" xmlUrl="https://www.coderspoint.in/feeds/posts/default" htmlUrl="https://www.coderspoint.in/"/>
<outline type="rss" text="Coder who say Py" title="Coder who say Py" xmlUrl="http://sayspy.blogspot.com/feeds/posts/default" htmlUrl="http://sayspy.blogspot.co.id/"/>
<outline type="rss" text="coderoncode.com" title="coderoncode.com" xmlUrl="https://coderoncode.com/rss.xml" htmlUrl="http://coderoncode.com/"/>
<outline type="rss" text="Codeship" title="Codeship" xmlUrl="http://blog.codeship.com/feed/" htmlUrl="https://blog.codeship.com/"/>
<outline type="rss" text="codesimple - Code more. Learn more." title="codesimple - Code more. Learn more." xmlUrl="https://www.codesimple.info/feeds/posts/default" htmlUrl="http://www.codesimple.info/"/>
<outline type="rss" text="CodeWithMike" title="CodeWithMike" xmlUrl="https://www.codewithmike.com/feed/" htmlUrl="https://www.codewithmike.com/"/>
<outline type="rss" text="Coding Alpha" title="Coding Alpha" xmlUrl="https://www.codingalpha.com/feed/" htmlUrl="https://www.codingalpha.com/"/>
<outline type="rss" text="Coding Dojo Blog" title="Coding Dojo Blog" xmlUrl="https://www.codingdojo.com/blog/feed" htmlUrl="https://www.codingdojo.com/blog/"/>
<outline type="rss" text="Coding Explorer Blog" title="Coding Explorer Blog" xmlUrl="http://www.codingexplorer.com/feed/" htmlUrl="http://www.codingexplorer.com/"/>
<outline type="rss" text="Coding Horror" title="Coding Horror" xmlUrl="http://feeds.feedburner.com/codinghorror" htmlUrl="http://www.codinghorror.com/blog/"/>
<outline type="rss" text="Coding Horror" title="Coding Horror" xmlUrl="http://feeds.feedburner.com/codinghorror" htmlUrl="https://blog.codinghorror.com/"/>
<outline type="rss" text="CodingTheSmartWay" title="CodingTheSmartWay" xmlUrl="https://codingthesmartway.com/feed/" htmlUrl="https://codingthesmartway.com/"/>
<outline type="rss" text="Codingvila" title="Codingvila" xmlUrl="https://coding-vila.blogspot.com/feeds/posts/default" htmlUrl="https://coding-vila.blogspot.com/"/>
<outline type="rss" text="codingwithempathy.com" title="codingwithempathy.com" xmlUrl="https://codingwithempathy.com/feed/" htmlUrl="http://codingwithempathy.com/"/>
<outline type="rss" text="codon.com/articles" title="codon.com/articles" xmlUrl="https://codon.com/feed.atom" htmlUrl="http://codon.com/articles"/>
<outline type="rss" text="Codrops | Useful resources and inspiration for creative minds" title="Codrops | Useful resources and inspiration for creative minds" xmlUrl="https://tympanus.net/codrops/rss" htmlUrl="https://tympanus.net/codrops/"/>
<outline type="rss" text="Coinbase" title="Coinbase" xmlUrl="https://engineering.coinbase.com/feed" htmlUrl="https://engineering.coinbase.com/"/>
<outline type="rss" text="Coletiv Studio Blog" title="Coletiv Studio Blog" xmlUrl="https://coletiv.com/rss.xml" htmlUrl="https://coletiv.com/blog/"/>
<outline type="rss" text="Colin Cummings" title="Colin Cummings" xmlUrl="https://colinrcummings.github.io/blog/rss.xml" htmlUrl="https://colinrcummings.github.io/blog/"/>
<outline type="rss" text="Colin Drake's Blog" title="Colin Drake's Blog" xmlUrl="https://colindrake.me/post/index.xml" htmlUrl="https://colindrake.me/post/"/>
<outline type="rss" text="Collective Idea" title="Collective Idea" xmlUrl="https://collectiveidea.com/blog/feed/" htmlUrl="https://collectiveidea.com/blog"/>
<outline type="rss" text="College Info Geek - College Tips for Smart Students" title="College Info Geek - College Tips for Smart Students" xmlUrl="https://collegeinfogeek.com/?feed=rss" htmlUrl="https://collegeinfogeek.com/"/>
<outline type="rss" text="ColorWhistle" title="ColorWhistle" xmlUrl="https://colorwhistle.com/feed/" htmlUrl="https://colorwhistle.com/blog/"/>
<outline type="rss" text="Commercetools" title="Commercetools" xmlUrl="https://techblog.commercetools.com/feed" htmlUrl="https://techblog.commercetools.com/"/>
<outline type="rss" text="Compare the Cloud" title="Compare the Cloud" xmlUrl="https://www.comparethecloud.net/feed/" htmlUrl="https://www.comparethecloud.net/"/>
<outline type="rss" text="Compass" title="Compass" xmlUrl="https://medium.com/feed/compass-true-north" htmlUrl="https://medium.com/compass-true-north/"/>
<outline type="rss" text="ComputerworldUK" title="ComputerworldUK" xmlUrl="http://www.computerworld.com/uk/category/cloud-computing/index.rss" htmlUrl="https://www.computerworlduk.com/cloud-computing/"/>
<outline type="rss" text="Computing & Technology" title="Computing & Technology" xmlUrl="https://helloacm.com/feed/" htmlUrl="https://helloacm.com/"/>
<outline type="rss" text="Concord Software & Executive Consulting" title="Concord Software & Executive Consulting" xmlUrl="http://www.concordsoftwareandexecutiveconsulting.com/wordpress/wordpress/feed/" htmlUrl="http://www.concordsoftwareandexecutiveconsulting.com/wordpress/wordpress/blog/"/>
<outline type="rss" text="Condé Nast" title="Condé Nast" xmlUrl="https://technology.condenast.com/feed/rss" htmlUrl="https://technology.condenast.com/"/>
<outline type="rss" text="Confluent" title="Confluent" xmlUrl="https://www.confluent.io/feed/" htmlUrl="https://www.confluent.io/blog"/>
<outline type="rss" text="Conrad Stoll's Blog" title="Conrad Stoll's Blog" xmlUrl="http://conradstoll.com/blog?format=RSS" htmlUrl="http://conradstoll.com/"/>
<outline type="rss" text="Cons Bulaquena on Medium" title="Cons Bulaquena on Medium" xmlUrl="https://medium.com/feed/@consbulaquena" htmlUrl="https://medium.com/@consbulaquena"/>
<outline type="rss" text="Contact Center Geek" title="Contact Center Geek" xmlUrl="https://contactcentergeek.com/blog?format=rss" htmlUrl="https://contactcentergeek.com/blog"/>
<outline type="rss" text="Contageous Dev" title="Contageous Dev" xmlUrl="https://contagious.dev/blog/category/ios/feed/" htmlUrl="https://contagious.dev/blog/category/ios/"/>
<outline type="rss" text="Content Marketing Geek" title="Content Marketing Geek" xmlUrl="http://contentmarketinggeek.com/feed/" htmlUrl="http://contentmarketinggeek.com/"/>
<outline type="rss" text="Contentful" title="Contentful" xmlUrl="https://www.contentful.com/blog/feed.xml" htmlUrl="https://www.contentful.com/blog/"/>
<outline type="rss" text="Control Geek" title="Control Geek" xmlUrl="http://controlgeek.net/blog?format=rss" htmlUrl="http://controlgeek.net/blog"/>
<outline type="rss" text="Convox" title="Convox" xmlUrl="https://convox.com/blog/rss.xml" htmlUrl="https://convox.com/blog"/>
<outline type="rss" text="cookpad" title="cookpad" xmlUrl="https://sourcediving.com/feed" htmlUrl="https://sourcediving.com/"/>
<outline type="rss" text="Cool Python Codes" title="Cool Python Codes" xmlUrl="http://coolpythoncodes.com/feed/" htmlUrl="http://coolpythoncodes.com/"/>
<outline type="rss" text="Coolblue" title="Coolblue" xmlUrl="https://devblog.coolblue.nl/feed/" htmlUrl="http://devblog.coolblue.nl/"/>
<outline type="rss" text="Coursera" title="Coursera" xmlUrl="https://blog.coursera.org/feed/" htmlUrl="https://blog.coursera.org/"/>
<outline type="rss" text="creativedeletion.com" title="creativedeletion.com" xmlUrl="http://www.creativedeletion.com/feed.xml" htmlUrl="http://www.creativedeletion.com/"/>
<outline type="rss" text="crgeary.com" title="crgeary.com" xmlUrl="https://crgeary.com/index.xml" htmlUrl="https://www.crgeary.com/"/>
<outline type="rss" text="Criteo" title="Criteo" xmlUrl="http://engineering.criteolabs.com/feeds/posts/default" htmlUrl="http://engineering.criteolabs.com/"/>
<outline type="rss" text="Crowdbooster" title="Crowdbooster" xmlUrl="http://blog.crowdbooster.com/feed/" htmlUrl="http://blog.crowdbooster.com/"/>
<outline type="rss" text="Crowdfire" title="Crowdfire" xmlUrl="https://crowdfire.engineering/feed" htmlUrl="https://crowdfire.engineering/"/>
<outline type="rss" text="Crunchy Bagel" title="Crunchy Bagel" xmlUrl="https://crunchybagel.com/rss/" htmlUrl="https://crunchybagel.com/"/>
<outline type="rss" text="Crunchy Development" title="Crunchy Development" xmlUrl="http://alisoftware.github.io/feed.xml" htmlUrl="http://alisoftware.github.io/"/>
<outline type="rss" text="Crystal" title="Crystal" xmlUrl="https://crystal-lang.org/feed.xml" htmlUrl="https://crystal-lang.org/"/>
<outline type="rss" text="Css - Stack Overflow | Featured questions" title="Css - Stack Overflow | Featured questions" xmlUrl="https://stackoverflow.com/feeds/tag?tagnames=css&amp;sort=featured" htmlUrl="https://stackoverflow.com/questions/tagged/css?sort=featured"/>
<outline type="rss" text="Css Author » Web / UI Design Resource" title="Css Author » Web / UI Design Resource" xmlUrl="https://cssauthor.com/feed/" htmlUrl="https://cssauthor.com/"/>
<outline type="rss" text="CSS Basics Blog" title="CSS Basics Blog" xmlUrl="https://www.cssbasics.com/blog/feed/" htmlUrl="https://www.cssbasics.com/blog/"/>
<outline type="rss" text="CSS | Envato Tuts Web Design" title="CSS | Envato Tuts Web Design" xmlUrl="https://tutsplus.com/posts.atom" htmlUrl="https://webdesign.tutsplus.com/categories/css"/>
<outline type="rss" text="CSS Smashing Magazine" title="CSS Smashing Magazine" xmlUrl="https://www.smashingmagazine.com/categories/css/index.xml" htmlUrl="https://www.smashingmagazine.com/tag/css/"/>
<outline type="rss" text="CSS-Tricks" title="CSS-Tricks" xmlUrl="https://css-tricks.com/feed/" htmlUrl="https://css-tricks.com/"/>
<outline type="rss" text="CSS Weekly" title="CSS Weekly" xmlUrl="https://feeds.feedburner.com/CSS-Weekly" htmlUrl="https://css-weekly.com/"/>
<outline type="rss" text="CSS WG Blog" title="CSS WG Blog" xmlUrl="https://www.w3.org/blog/CSS/feed/atom/" htmlUrl="https://www.w3.org/blog/css/"/>
<outline type="rss" text="CSS Wizardry" title="CSS Wizardry" xmlUrl="https://feeds.feedburner.com/csswizardry" htmlUrl="https://csswizardry.com/"/>
<outline type="rss" text="CSSReflex Blog" title="CSSReflex Blog" xmlUrl="https://www.bestagencies.com/feed/" htmlUrl="http://www.cssreflex.com/blog/"/>
<outline type="rss" text="Curalate" title="Curalate" xmlUrl="http://engineering.curalate.com/feed.xml" htmlUrl="http://engineering.curalate.com/"/>
<outline type="rss" text="cutting.io" title="cutting.io" xmlUrl="http://feed.cutting.io/" htmlUrl="https://cutting.io/"/>
<outline type="rss" text="CyberTalk » Dark web " title="CyberTalk » Dark web " xmlUrl="https://www.cybertalk.org/feed" htmlUrl="https://www.cybertalk.org/tag/dark-web/"/>
<outline type="rss" text="Cyril Mottier" title="Cyril Mottier" xmlUrl="https://cyrilmottier.com/atom.xml" htmlUrl="https://cyrilmottier.com/"/>
<outline type="rss" text="D' GeekMom Blog" title="D' GeekMom Blog" xmlUrl="http://www.nerdygeekmom.com/feed/" htmlUrl="http://www.nerdygeekmom.com/"/>
<outline type="rss" text="Daily JS" title="Daily JS" xmlUrl="https://medium.com/feed/dailyjs" htmlUrl="https://medium.com/dailyjs"/>
<outline type="rss" text="Daily Tech Video" title="Daily Tech Video" xmlUrl="http://dailytechvideo.com/feed/" htmlUrl="http://dailytechvideo.com/"/>
<outline type="rss" text="Dailymotion" title="Dailymotion" xmlUrl="https://medium.com/feed/dailymotion" htmlUrl="http://engineering.dailymotion.com/"/>
<outline type="rss" text="Dan Abramov" title="Dan Abramov" xmlUrl="https://overreacted.io/rss.xml" htmlUrl="https://overreacted.io/"/>
<outline type="rss" text="Dan Lew Codes" title="Dan Lew Codes" xmlUrl="https://blog.danlew.net/rss/" htmlUrl="https://blog.danlew.net/"/>
<outline type="rss" text="Dan Thorpe's Blog" title="Dan Thorpe's Blog" xmlUrl="http://danthorpe.me/rss.xml" htmlUrl="http://danthorpe.me/"/>
<outline type="rss" text="Daniel Doubrovkine (dB.)" title="Daniel Doubrovkine (dB.)" xmlUrl="https://code.dblock.org/feed.xml" htmlUrl="http://code.dblock.org/"/>
<outline type="rss" text="Daniel Kennett's Blog" title="Daniel Kennett's Blog" xmlUrl="http://ikennd.ac/atom.xml" htmlUrl="http://ikennd.ac/"/>
<outline type="rss" text="Daniel Lemay" title="Daniel Lemay" xmlUrl="https://www.dslemay.com/feed.xml" htmlUrl="https://www.dslemay.com/"/>
<outline type="rss" text="Daniel Lo Nigro" title="Daniel Lo Nigro" xmlUrl="http://feeds.d15.biz/Daniel15" htmlUrl="https://d.sb/blog"/>
<outline type="rss" text="Daniel Schmidt" title="Daniel Schmidt" xmlUrl="https://medium.com/feed/@dschmidt1992" htmlUrl="https://medium.com/@dschmidt1992"/>
<outline type="rss" text="Daniel Tull's Blog" title="Daniel Tull's Blog" xmlUrl="http://danieltull.co.uk/feed.xml" htmlUrl="http://danieltull.co.uk/blog/"/>
<outline type="rss" text="Daniele Margutti's Blog" title="Daniele Margutti's Blog" xmlUrl="http://danielemargutti.com/feed/" htmlUrl="http://danielemargutti.com/"/>
<outline type="rss" text="DanielT1263's Blog mostly about RxSwift" title="DanielT1263's Blog mostly about RxSwift" xmlUrl="https://medium.com/feed/@danielt1263" htmlUrl="https://medium.com/@danielt1263"/>
<outline type="rss" text="danluu" title="danluu" xmlUrl="https://danluu.com/atom.xml" htmlUrl="https://danluu.com/"/>
<outline type="rss" text="DaPythonista" title="DaPythonista" xmlUrl="https://dapythonista.com/feed/" htmlUrl="http://dapythonista.com/"/>
<outline type="rss" text="Daring Fireball" title="Daring Fireball" xmlUrl="https://daringfireball.net/feeds/main" htmlUrl="http://daringfireball.net/"/>
<outline type="rss" text="Dark Web Link" title="Dark Web Link" xmlUrl="https://www.darkweblink.com/feed/" htmlUrl="https://www.darkweblink.com/"/>
<outline type="rss" text="Dark Web Links " title="Dark Web Links " xmlUrl="https://www.thedarkweblinks.com/feed/" htmlUrl="https://www.thedarkweblinks.com/blog/"/>
<outline type="rss" text="Dark Web List » Dark web" title="Dark Web List » Dark web" xmlUrl="https://www.darkweblist.com/feed/" htmlUrl="https://www.darkweblist.com/category/dark-web/"/>
<outline type="rss" text="Dasdom Dev Blog" title="Dasdom Dev Blog" xmlUrl="https://dasdom.github.io/feed.xml" htmlUrl="https://dasdom.github.io/"/>
<outline type="rss" text="Data Artisans" title="Data Artisans" xmlUrl="https://data-artisans.com/feed" htmlUrl="https://data-artisans.com/blog/"/>
<outline type="rss" text="Data Brewery" title="Data Brewery" xmlUrl="http://blog.databrewery.org/feeds/all.atom.xml" htmlUrl="http://blog.databrewery.org/"/>
<outline type="rss" text="Data Science Unlimited" title="Data Science Unlimited" xmlUrl="https://datascienceunlimited.tech/feed/" htmlUrl="https://datascienceunlimited.tech/"/>
<outline type="rss" text="Databricks" title="Databricks" xmlUrl="https://databricks.com/feed" htmlUrl="https://databricks.com/blog"/>
<outline type="rss" text="DataCamp" title="DataCamp" xmlUrl="https://www.datacamp.com/community/rss.xml" htmlUrl="https://www.datacamp.com/community/tutorials"/>
<outline type="rss" text="Datafloq" title="Datafloq" xmlUrl="https://datafloq.com/read/feed.rss" htmlUrl="https://datafloq.com/read/"/>
<outline type="rss" text="DataFox" title="DataFox" xmlUrl="https://eng.datafox.com/feed.xml" htmlUrl="http://eng.datafox.co/"/>
<outline type="rss" text="DataGeek.blog" title="DataGeek.blog" xmlUrl="https://datageek.blog/feed/" htmlUrl="https://datageek.blog/"/>
<outline type="rss" text="Dataiku" title="Dataiku" xmlUrl="https://blog.dataiku.com/rss.xml" htmlUrl="https://www.dataiku.com/blog/"/>
<outline type="rss" text="Dave Atchley" title="Dave Atchley" xmlUrl="https://www.datchley.name/rss/" htmlUrl="http://www.datchley.name/"/>
<outline type="rss" text="Dave Chaney" title="Dave Chaney" xmlUrl="https://dave.cheney.net/feed" htmlUrl="https://dave.cheney.net/"/>
<outline type="rss" text="Dave Cheney | Go" title="Dave Cheney | Go" xmlUrl="https://dave.cheney.net/feed" htmlUrl="https://dave.cheney.net/category/golang"/>
<outline type="rss" text="Dave DeLong's Blog" title="Dave DeLong's Blog" xmlUrl="https://davedelong.com/feed.xml" htmlUrl="https://davedelong.com/"/>
<outline type="rss" text="Dave Dribin’s Blog" title="Dave Dribin’s Blog" xmlUrl="http://www.dribin.org/dave/blog/feed.xml" htmlUrl="http://www.dribin.org/dave/blog/"/>
<outline type="rss" text="Dave Nott's Blog" title="Dave Nott's Blog" xmlUrl="https://www.davenott.co.uk/feed/" htmlUrl="https://www.davenott.co.uk/"/>
<outline type="rss" text="Dave Verwer’s Blog" title="Dave Verwer’s Blog" xmlUrl="https://daveverwer.com/feed.xml" htmlUrl="https://daveverwer.com/"/>
<outline type="rss" text="David Cordero's Blog" title="David Cordero's Blog" xmlUrl="https://www.dcordero.me/feed.xml" htmlUrl="https://www.dcordero.me/"/>
<outline type="rss" text="David Crawshaw" title="David Crawshaw" xmlUrl="https://crawshaw.io/atom.xml" htmlUrl="https://crawshaw.io/"/>
<outline type="rss" text="David Ford's Programming blog" title="David Ford's Programming blog" xmlUrl="https://medium.com/feed/@daveford" htmlUrl="https://medium.com/@daveford"/>
<outline type="rss" text="David Reed's Blog" title="David Reed's Blog" xmlUrl="https://microblog.dave256apps.com/feed.xml" htmlUrl="https://microblog.dave256apps.com/"/>
<outline type="rss" text="David Sinclair's Blog" title="David Sinclair's Blog" xmlUrl="http://www.dejal.com/blog/feed" htmlUrl="http://www.dejal.com/blog/"/>
<outline type="rss" text="David Smith's Blog'" title="David Smith's Blog'" xmlUrl="https://david-smith.org/atom.xml" htmlUrl="http://david-smith.org/"/>
<outline type="rss" text="David Walsh Blog" title="David Walsh Blog" xmlUrl="https://davidwalsh.name/feed/atom" htmlUrl="https://davidwalsh.name/"/>
<outline type="rss" text="David Yang's Blog'" title="David Yang's Blog'" xmlUrl="https://david.y4ng.fr/rss/" htmlUrl="https://david.y4ng.fr/"/>
<outline type="rss" text="davidad.github.io" title="davidad.github.io" xmlUrl="http://davidad.github.io/atom.xml" htmlUrl="http://davidad.github.io/"/>
<outline type="rss" text="davidosomething.com" title="davidosomething.com" xmlUrl="https://davidosomething.com/rss.xml" htmlUrl="https://davidosomething.com/"/>
<outline type="rss" text="DazeEnd" title="DazeEnd" xmlUrl="https://dazeend.org/feed/?cat=-12" htmlUrl="https://dazeend.org/"/>
<outline type="rss" text="De Programmatica Ipsum" title="De Programmatica Ipsum" xmlUrl="https://deprogrammaticaipsum.com/feed/" htmlUrl="https://deprogrammaticaipsum.com/"/>
<outline type="rss" text="dealloc" title="dealloc" xmlUrl="https://belkadan.com/blog/atom" htmlUrl="https://belkadan.com/blog/"/>
<outline type="rss" text="Dean Harris" title="Dean Harris" xmlUrl="https://deanacus.com/feed.xml" htmlUrl="https://deanacus.com/"/>
<outline type="rss" text="Dean Hume" title="Dean Hume" xmlUrl="https://deanhume.com/rss/" htmlUrl="http://deanhume.com/"/>
<outline type="rss" text="Deborah Digges" title="Deborah Digges" xmlUrl="http://deborah-digges.github.io/atom.xml" htmlUrl="http://deborah-digges.github.io/"/>
<outline type="rss" text="decadecity.net" title="decadecity.net" xmlUrl="https://decadecity.net/index.xml" htmlUrl="https://decadecity.net/"/>
<outline type="rss" text="DeeperTech" title="DeeperTech" xmlUrl="https://www.reddit.com/?feed=rss&amp;after=t3_e5pfnb" htmlUrl="https://www.reddit.com/r/DeeperTech/"/>
<outline type="rss" text="Deezer" title="Deezer" xmlUrl="https://deezer.io/feed" htmlUrl="https://deezer.io/"/>
<outline type="rss" text="DeferPanic" title="DeferPanic" xmlUrl="https://deferpanic.com/blog/index.xml/" htmlUrl="https://deferpanic.com/blog/"/>
<outline type="rss" text="deliciousreverie.co.uk" title="deliciousreverie.co.uk" xmlUrl="https://deliciousreverie.co.uk/index.xml" htmlUrl="https://deliciousreverie.co.uk/"/>
<outline type="rss" text="Deliveroo" title="Deliveroo" xmlUrl="https://deliveroo.engineering/feed.xml" htmlUrl="https://deliveroo.engineering/"/>
<outline type="rss" text="Den of Geek" title="Den of Geek" xmlUrl="https://www.denofgeek.com/rss.xml" htmlUrl="https://www.denofgeek.com/"/>
<outline type="rss" text="Denis Poifol's Blog" title="Denis Poifol's Blog" xmlUrl="https://denispoifol.github.io/feed.xml" htmlUrl="https://denispoifol.github.io/"/>
<outline type="rss" text="Dennis Felsing" title="Dennis Felsing" xmlUrl="https://hookrace.net/blog/feed/" htmlUrl="https://hookrace.net/"/>
<outline type="rss" text="Dennis Yurichev" title="Dennis Yurichev" xmlUrl="https://yurichev.com/blog/rss.xml" htmlUrl="https://yurichev.com/blog/"/>
<outline type="rss" text="Denys Zhadanov on Medium" title="Denys Zhadanov on Medium" xmlUrl="https://denzhadanov.com/feed/" htmlUrl="https://denzhadanov.com/"/>
<outline type="rss" text="Dereuromark" title="Dereuromark" xmlUrl="https://www.dereuromark.de/feed/" htmlUrl="http://www.dereuromark.de/"/>
<outline type="rss" text="Derik Ramirez's Blog" title="Derik Ramirez's Blog" xmlUrl="https://rderik.com/feed.xml" htmlUrl="https://rderik.com/"/>
<outline type="rss" text="Design Instruct" title="Design Instruct" xmlUrl="https://www.webfx.com/blog/web-design/feed/" htmlUrl="http://designinstruct.com/"/>
<outline type="rss" text="Design Shack" title="Design Shack" xmlUrl="https://feedpress.me/designshack" htmlUrl="https://designshack.net/"/>
<outline type="rss" text="Designs By Dave O. | A Full Service Website Development Agency" title="Designs By Dave O. | A Full Service Website Development Agency" xmlUrl="https://designsbydaveo.com/feed/" htmlUrl="https://designsbydaveo.com/"/>
<outline type="rss" text="dev etc" title="dev etc" xmlUrl="http://devetc.org/feed.xml" htmlUrl="http://devetc.org/"/>
<outline type="rss" text="Dev House Blog | Developers's Blog" title="Dev House Blog | Developers's Blog" xmlUrl="https://devhouse-blog.com/feed/" htmlUrl="https://devhouse-blog.com/"/>
<outline type="rss" text="dev.to" title="dev.to" xmlUrl="https://dev.to/feed" htmlUrl="https://dev.to/"/>
<outline type="rss" text="Devchat.tv | Adventures in Angular Episodes " title="Devchat.tv | Adventures in Angular Episodes " xmlUrl="https://feeds.feedwrench.com/AdventuresInAngularOnly.rss" htmlUrl="https://devchat.tv/adv-in-angular/"/>
<outline type="rss" text="Device Blogs" title="Device Blogs" xmlUrl="https://medium.com/feed/@peterlivesey" htmlUrl="https://medium.com/@peterlivesey"/>
<outline type="rss" text="DHTMLX Blog" title="DHTMLX Blog" xmlUrl="https://dhtmlx.com/rss/rss.xml" htmlUrl="https://dhtmlx.com/blog/"/>
<outline type="rss" text="Diego Torres Milano's blog" title="Diego Torres Milano's blog" xmlUrl="http://dtmilano.blogspot.com/feeds/posts/default" htmlUrl="http://dtmilano.blogspot.com/"/>
<outline type="rss" text="Digital Leaves Blog" title="Digital Leaves Blog" xmlUrl="https://digitalleaves.com/feed/" htmlUrl="https://digitalleaves.com/blog/"/>
<outline type="rss" text="Digital Native Mom" title="Digital Native Mom" xmlUrl="https://digitalnativemom.com/feed/" htmlUrl="http://digitalnativemom.com/"/>
<outline type="rss" text="Digital Trends" title="Digital Trends" xmlUrl="https://www.digitaltrends.com/feed/" htmlUrl="http://www.digitaltrends.com/"/>
<outline type="rss" text="DigitalOcean" title="DigitalOcean" xmlUrl="https://www.digitalocean.com/community/tutorials/feed" htmlUrl="https://www.digitalocean.com/community/tutorials"/>
<outline type="rss" text="Dimitri Do Bairro" title="Dimitri Do Bairro" xmlUrl="https://dimsolution.com/feed/" htmlUrl="https://dimsolution.com/"/>
<outline type="rss" text="Dimitrios Lytras" title="Dimitrios Lytras" xmlUrl="https://dimitrioslytras.com/rss.xml" htmlUrl="https://dimitrioslytras.com/"/>
<outline type="rss" text="Dimitris Raptis" title="Dimitris Raptis" xmlUrl="https://raptis.wtf/rss.xml" htmlUrl="https://raptis.wtf/blog"/>
<outline type="rss" text="Dinesh Pandiyan" title="Dinesh Pandiyan" xmlUrl="https://dineshpandiyan.com/rss.xml" htmlUrl="https://dineshpandiyan.com/"/>
<outline type="rss" text="Dirk Holtwick's Blog" title="Dirk Holtwick's Blog" xmlUrl="https://holtwick.de/atom.xml" htmlUrl="https://holtwick.de/blog/"/>
<outline type="rss" text="Discord" title="Discord" xmlUrl="https://blog.discordapp.com/feed" htmlUrl="https://blog.discordapp.com/"/>
<outline type="rss" text="Discover Meteor" title="Discover Meteor" xmlUrl="https://www.discovermeteor.com/feed.xml" htmlUrl="https://www.discovermeteor.com/blog"/>
<outline type="rss" text="Discussdesk | Programming Blog" title="Discussdesk | Programming Blog" xmlUrl="https://www.discussdesk.com/feed" htmlUrl="https://www.discussdesk.com/"/>
<outline type="rss" text="Dive into Python 3" title="Dive into Python 3" xmlUrl="https://github.com/pcsforeducation/diveintopython3/commits/master.atom" htmlUrl="http://www.diveintopython3.net/"/>
<outline type="rss" text="Diverse Tech Geek" title="Diverse Tech Geek" xmlUrl="https://www.diversetechgeek.com/feed/" htmlUrl="https://www.diversetechgeek.com/"/>
<outline type="rss" text="Docker Blog" title="Docker Blog" xmlUrl="https://blog.docker.com/feed/" htmlUrl="https://blog.docker.com/"/>
<outline type="rss" text="Docker Engineering Blog" title="Docker Engineering Blog" xmlUrl="https://engineering.docker.com/feed/" htmlUrl="https://engineering.docker.com/"/>
<outline type="rss" text="Doğan Uçar" title="Doğan Uçar" xmlUrl="https://www.dogan-ucar.de/feed/" htmlUrl="https://www.dogan-ucar.de/category/blog/"/>
<outline type="rss" text="Domain Driven Design Weekly" title="Domain Driven Design Weekly" xmlUrl="http://dddweekly.com/index.xml" htmlUrl="http://dddweekly.com/"/>
<outline type="rss" text="Domenico Luciani" title="Domenico Luciani" xmlUrl="https://domenicoluciani.com/feed.xml" htmlUrl="https://domenicoluciani.com/"/>
<outline type="rss" text="Don Hamilton III" title="Don Hamilton III" xmlUrl="https://blog.donhamiltoniii.com/rss.xml" htmlUrl="https://blog.donhamiltoniii.com/"/>
<outline type="rss" text="Donny Wals' Blog" title="Donny Wals' Blog" xmlUrl="https://www.donnywals.com/feed/" htmlUrl="https://www.donnywals.com/"/>
<outline type="rss" text="DoorDash" title="DoorDash" xmlUrl="https://medium.com/feed/doordash-blog/tagged/engineering" htmlUrl="https://blog.doordash.com/tagged/engineering"/>
<outline type="rss" text="Doors Geek" title="Doors Geek" xmlUrl="https://doorsgeek.blogspot.com/feeds/posts/default" htmlUrl="https://doorsgeek.blogspot.com/"/>
<outline type="rss" text="Dora's programming blog" title="Dora's programming blog" xmlUrl="http://doraprojects.net/blog/?feed=rss2" htmlUrl="http://doraprojects.net/blog/"/>
<outline type="rss" text="Dot Dev (.dev)" title="Dot Dev (.dev)" xmlUrl="https://dotdev.co/feed/" htmlUrl="https://dotdev.co/"/>
<outline type="rss" text="Doug Hellmann Python, OpenStack, and Open Source" title="Doug Hellmann Python, OpenStack, and Open Source" xmlUrl="https://doughellmann.com/blog/feed/" htmlUrl="https://doughellmann.com/blog/"/>
<outline type="rss" text="Doximity" title="Doximity" xmlUrl="https://engineering.doximity.com/feed" htmlUrl="https://engineering.doximity.com/"/>
<outline type="rss" text="Dragan Djuric" title="Dragan Djuric" xmlUrl="https://dragan.rocks/feed.xml" htmlUrl="http://dragan.rocks/"/>
<outline type="rss" text="Dragan Gaic" title="Dragan Gaic" xmlUrl="https://www.gajotres.net/feed/" htmlUrl="http://www.gajotres.net/"/>
<outline type="rss" text="Dragonfly BSD Digest" title="Dragonfly BSD Digest" xmlUrl="https://www.dragonflydigest.com/feed" htmlUrl="http://www.dragonflydigest.com/"/>
<outline type="rss" text="Dreamix Group » Java" title="Dreamix Group » Java" xmlUrl="https://dreamix.eu/blog/feed" htmlUrl="https://dreamix.eu/blog/category/java"/>
<outline type="rss" text="Drew DeVault" title="Drew DeVault" xmlUrl="https://drewdevault.com/feed.xml" htmlUrl="https://drewdevault.com/"/>
<outline type="rss" text="Drivy" title="Drivy" xmlUrl="https://drivy.engineering/feed.xml" htmlUrl="https://drivy.engineering/"/>
<outline type="rss" text="DroidCrunch" title="DroidCrunch" xmlUrl="https://droidcrunch.com/feed/" htmlUrl="https://droidcrunch.com/"/>
<outline type="rss" text="Droids On Roids Blog iOS Development" title="Droids On Roids Blog iOS Development" xmlUrl="https://www.thedroidsonroids.com/category/blog/ios/feed" htmlUrl="https://www.thedroidsonroids.com/category/blog/ios"/>
<outline type="rss" text="Dropbox Tech Blog" title="Dropbox Tech Blog" xmlUrl="https://blogs.dropbox.com/tech/feed/" htmlUrl="https://blogs.dropbox.com/tech/"/>
<outline type="rss" text="duartes.org/gustavo/blog" title="duartes.org/gustavo/blog" xmlUrl="https://manybutfinite.com/feed.xml" htmlUrl="http://duartes.org/gustavo/blog/"/>
<outline type="rss" text="Dušan Tadić's Blog" title="Dušan Tadić's Blog" xmlUrl="https://www.dusantadic.dev/index.xml" htmlUrl="https://www.dusantadic.dev/"/>
<outline type="rss" text="dwr.io" title="dwr.io" xmlUrl="https://dwr.io/feed" htmlUrl="https://dwr.io/"/>
<outline type="rss" text="Ebay" title="Ebay" xmlUrl="https://www.ebayinc.com/stories/blogs/tech/rss/" htmlUrl="https://www.ebayinc.com/stories/blogs/tech/"/>
<outline type="rss" text="eBay Tech Blog" title="eBay Tech Blog" xmlUrl="https://www.ebayinc.com/stories/news/rss/" htmlUrl="http://www.ebaytechblog.com/"/>
<outline type="rss" text="Echo JS" title="Echo JS" xmlUrl="http://www.echojs.com/rss" htmlUrl="http://www.echojs.com/"/>
<outline type="rss" text="Eddie Smith" title="Eddie Smith" xmlUrl="http://www.practicallyefficient.com/feed.xml" htmlUrl="http://www.practicallyefficient.com/"/>
<outline type="rss" text="Edgar Aroutiounian" title="Edgar Aroutiounian" xmlUrl="https://hyegar.com/rss.xml" htmlUrl="https://hyegar.com/"/>
<outline type="rss" text="Eduards Sizovs" title="Eduards Sizovs" xmlUrl="https://sizovs.net/feed.xml" htmlUrl="https://sizovs.net/"/>
<outline type="rss" text="Edward Faulkner" title="Edward Faulkner" xmlUrl="https://eaf4.com/rss" htmlUrl="https://eaf4.com/"/>
<outline type="rss" text="Effbot" title="Effbot" xmlUrl="http://effbot.org/zone/rss.xml" htmlUrl="http://effbot.org/zone/index.htm"/>
<outline type="rss" text="eFounders" title="eFounders" xmlUrl="https://medium.com/feed/unexpected-token" htmlUrl="https://medium.com/unexpected-token"/>
<outline type="rss" text="Eharmony" title="Eharmony" xmlUrl="https://www.eharmony.com/engineering/feed/" htmlUrl="http://www.eharmony.com/engineering/"/>
<outline type="rss" text="Elastic" title="Elastic" xmlUrl="https://www.elastic.co/blog/feed" htmlUrl="https://www.elastic.co/blog"/>
<outline type="rss" text="Elastic" title="Elastic" xmlUrl="https://www.elastic.co/blog/feed" htmlUrl="https://www.elastic.co/blog/category/engineering"/>
<outline type="rss" text="Elegant Chaos" title="Elegant Chaos" xmlUrl="http://elegantchaos.com/rss.xml" htmlUrl="http://elegantchaos.com/news/"/>
<outline type="rss" text="Elegant Code" title="Elegant Code" xmlUrl="https://elegantcode.com/feed/" htmlUrl="http://elegantcode.com/"/>
<outline type="rss" text="Eleni Papanikolopoul on Medium" title="Eleni Papanikolopoul on Medium" xmlUrl="https://medium.com/feed/@elenipapanikolo" htmlUrl="https://medium.com/@elenipapanikolo"/>
<outline type="rss" text="Eli Bendersky" title="Eli Bendersky" xmlUrl="https://eli.thegreenplace.net/feeds/all.atom.xml" htmlUrl="http://eli.thegreenplace.net/tag/python"/>
<outline type="rss" text="Eli Bendersky" title="Eli Bendersky" xmlUrl="https://eli.thegreenplace.net/feeds/all.atom.xml" htmlUrl="https://eli.thegreenplace.net/"/>
<outline type="rss" text="Eli Perkins' Blog" title="Eli Perkins' Blog" xmlUrl="https://blog.eliperkins.me/rss.xml" htmlUrl="https://blog.eliperkins.me/"/>
<outline type="rss" text="Elijah Lynn" title="Elijah Lynn" xmlUrl="https://www.elijahlynn.net/rss.xml" htmlUrl="https://www.elijahlynn.net/"/>
<outline type="rss" text="Embedded in Academia" title="Embedded in Academia" xmlUrl="https://blog.regehr.org/feed" htmlUrl="http://blog.regehr.org/"/>
<outline type="rss" text="Ember Blog" title="Ember Blog" xmlUrl="https://blog.emberjs.com/feed.xml" htmlUrl="https://www.emberjs.com/blog/"/>
<outline type="rss" text="Emilio Peláez's Blog" title="Emilio Peláez's Blog" xmlUrl="https://medium.com/feed/@Pelaez" htmlUrl="https://medium.com/@Pelaez"/>
<outline type="rss" text="EncodeDna.com " title="EncodeDna.com " xmlUrl="https://www.encodedna.com/rss.xml" htmlUrl="https://www.encodedna.com/"/>
<outline type="rss" text="endlessparentheses.com" title="endlessparentheses.com" xmlUrl="http://endlessparentheses.com/atom.xml" htmlUrl="http://endlessparentheses.com/"/>
<outline type="rss" text="Engine Box" title="Engine Box" xmlUrl="https://www.engine-box.com/feed/" htmlUrl="https://www.engine-box.com/engine-box-document-management-blog/"/>
<outline type="rss" text="Engineering at IFTTT" title="Engineering at IFTTT" xmlUrl="http://engineering.ifttt.com/feed.xml" htmlUrl="http://engineering.ifttt.com/"/>
<outline type="rss" text="Engineering Blog | Facebook Code" title="Engineering Blog | Facebook Code" xmlUrl="https://code.fb.com/feed/" htmlUrl="https://code.facebook.com/posts"/>
<outline type="rss" text="Engineering | Twitter Blogs" title="Engineering | Twitter Blogs" xmlUrl="https://blog.twitter.com/engineering/feed" htmlUrl="https://blog.twitter.com/engineering"/>
<outline type="rss" text="EngineYard" title="EngineYard" xmlUrl="https://blog.engineyard.com/feed.xml" htmlUrl="https://blog.engineyard.com/"/>
<outline type="rss" text="ennioma" title="ennioma" xmlUrl="http://ennioma.com/rss" htmlUrl="http://ennioma.com/"/>
<outline type="rss" text="Entelo" title="Entelo" xmlUrl="https://sourcecode.entelo.com/feed.xml" htmlUrl="https://sourcecode.entelo.com/"/>
<outline type="rss" text="Envato" title="Envato" xmlUrl="https://webuild.envato.com/atom.xml" htmlUrl="https://webuild.envato.com/"/>
<outline type="rss" text="Envato Tuts Code - Swift" title="Envato Tuts Code - Swift" xmlUrl="https://tutsplus.com/posts.atom" htmlUrl="https://code.tutsplus.com/categories/swift"/>
<outline type="rss" text=" Envato Tuts Code | Angular" title=" Envato Tuts Code | Angular" xmlUrl="https://tutsplus.com/posts.atom" htmlUrl="https://code.tutsplus.com/categories/angular"/>
<outline type="rss" text="Envoy" title="Envoy" xmlUrl="https://envoy.engineering/feed" htmlUrl="https://envoy.engineering/"/>
<outline type="rss" text="Eric Elliot" title="Eric Elliot" xmlUrl="https://medium.com/feed/javascript-scene" htmlUrl="https://medium.com/javascript-scene/"/>
<outline type="rss" text="Eric Jiang" title="Eric Jiang" xmlUrl="https://ericjiang.dev/rss.xml" htmlUrl="https://lorderikir.me/blog"/>
<outline type="rss" text="Eric Lippert" title="Eric Lippert" xmlUrl="https://ericlippert.com/feed/" htmlUrl="https://ericlippert.com/"/>
<outline type="rss" text="Erica Sadun" title="Erica Sadun" xmlUrl="https://ericasadun.com/feed/" htmlUrl="https://ericasadun.com/"/>
<outline type="rss" text="Erica Sadun" title="Erica Sadun" xmlUrl="http://ericasadun.com/feed/" htmlUrl="https://ericasadun.com/"/>
<outline type="rss" text="Erik Bernhardsson" title="Erik Bernhardsson" xmlUrl="https://erikbern.com/index.xml" htmlUrl="https://erikbern.com/"/>
<outline type="rss" text="Erik Runyon" title="Erik Runyon" xmlUrl="https://erikrunyon.com/feed.xml" htmlUrl="https://erikrunyon.com/"/>
<outline type="rss" text="Erlang Solutions" title="Erlang Solutions" xmlUrl="https://www.erlang-solutions.com/news.rss" htmlUrl="https://www.erlang-solutions.com/blog.html"/>
<outline type="rss" text="Esferasoft Solutions" title="Esferasoft Solutions" xmlUrl="https://www.esferasoft.com/blog/feed/" htmlUrl="https://www.esferasoft.com/blog/"/>
<outline type="rss" text="Eternal Storms Software Blog" title="Eternal Storms Software Blog" xmlUrl="https://blog.eternalstorms.at/feed/" htmlUrl="https://blog.eternalstorms.at/"/>
<outline type="rss" text="Evan Hahn" title="Evan Hahn" xmlUrl="https://evanhahn.com/feed.xml" htmlUrl="http://evanhahn.com/"/>
<outline type="rss" text="Evan Jones" title="Evan Jones" xmlUrl="https://www.evanjones.ca/index.rss" htmlUrl="http://www.evanjones.ca/chronological.html"/>
<outline type="rss" text="Evan Miller" title="Evan Miller" xmlUrl="https://www.evanmiller.org/news.xml" htmlUrl="http://www.evanmiller.org/"/>
<outline type="rss" text="Evan Tahler" title="Evan Tahler" xmlUrl="https://blog.evantahler.com/feed" htmlUrl="https://blog.evantahler.com/"/>
<outline type="rss" text="evanjones.ca" title="evanjones.ca" xmlUrl="https://www.evanjones.ca/index.rss" htmlUrl="http://www.evanjones.ca/"/>
<outline type="rss" text="Eventbrite" title="Eventbrite" xmlUrl="https://www.eventbrite.com/engineering/feed/" htmlUrl="https://www.eventbrite.com/engineering/"/>
<outline type="rss" text="Evernote" title="Evernote" xmlUrl="https://evernote.com/blog/feed/" htmlUrl="https://blog.evernote.com/tech/"/>
<outline type="rss" text="Evernote" title="Evernote" xmlUrl="https://evernote.com/blog/feed/" htmlUrl="https://evernote.com/blog/"/>
<outline type="rss" text="Evil Martians" title="Evil Martians" xmlUrl="https://evilmartians.com/chronicles.atom" htmlUrl="https://evilmartians.com/chronicles/"/>
<outline type="rss" text="exceptionnotfound.net" title="exceptionnotfound.net" xmlUrl="https://exceptionnotfound.net/rss/" htmlUrl="https://www.exceptionnotfound.net/"/>
<outline type="rss" text="Expedia" title="Expedia" xmlUrl="https://medium.com/feed/expedia-group-tech" htmlUrl="https://medium.com/expedia-group-tech"/>
<outline type="rss" text="Explo-Media | Seo & Web Design Company in Canada" title="Explo-Media | Seo & Web Design Company in Canada" xmlUrl="https://www.explo-media.com/feed/" htmlUrl="https://www.explo-media.com/blog/"/>
<outline type="rss" text="fabiensanglard.net" title="fabiensanglard.net" xmlUrl="http://fabiensanglard.net/rss.xml" htmlUrl="http://fabiensanglard.net/"/>
<outline type="rss" text="Fabio Zadrozny" title="Fabio Zadrozny" xmlUrl="http://pydev.blogspot.com/feeds/posts/default" htmlUrl="http://pydev.blogspot.co.id/"/>
<outline type="rss" text="Fabric Blog" title="Fabric Blog" xmlUrl="https://fabric.io/blog?format=RSS" htmlUrl="https://fabric.io/blog"/>
<outline type="rss" text="Fabrizio Branca" title="Fabrizio Branca" xmlUrl="http://fbrnc.net/blog.atom" htmlUrl="http://fbrnc.net/"/>
<outline type="rss" text="Facebook" title="Facebook" xmlUrl="https://code.fb.com/feed/" htmlUrl="https://code.facebook.com/posts/"/>
<outline type="rss" text="Facebook AI Research" title="Facebook AI Research" xmlUrl="https://research.fb.com/feed/" htmlUrl="https://research.facebook.com/blog/ai/"/>
<outline type="rss" text="Fadi Ossama on Medium" title="Fadi Ossama on Medium" xmlUrl="https://medium.com/feed/@fadyossama" htmlUrl="https://medium.com/@fadyossama"/>
<outline type="rss" text="Fady Derias on Medium" title="Fady Derias on Medium" xmlUrl="https://medium.com/feed/@fadiderias" htmlUrl="https://medium.com/@fadiderias"/>
<outline type="rss" text="Faraday" title="Faraday" xmlUrl="https://blog.faraday.io/rss/" htmlUrl="http://blog.faraday.io/"/>
<outline type="rss" text="fareez.info" title="fareez.info" xmlUrl="https://www.fareez.info/rss.xml" htmlUrl="http://fareez.info/"/>
<outline type="rss" text="Farzad YZ" title="Farzad YZ" xmlUrl="https://farzadyz.com/rss.xml" htmlUrl="https://farzadyz.com/blog"/>
<outline type="rss" text="Fatih Arslan" title="Fatih Arslan" xmlUrl="https://arslan.io/index.xml" htmlUrl="https://arslan.io/"/>
<outline type="rss" text="Fatih Kalifa" title="Fatih Kalifa" xmlUrl="https://fatihkalifa.com/feed/rss" htmlUrl="https://fatihkalifa.com/"/>
<outline type="rss" text="Federico Cargnelutti" title="Federico Cargnelutti" xmlUrl="https://blog.fedecarg.com/feed/" htmlUrl="https://blog.fedecarg.com/"/>
<outline type="rss" text="Federico Tomassetti" title="Federico Tomassetti" xmlUrl="https://tomassetti.me/feed/" htmlUrl="https://tomassetti.me/"/>
<outline type="rss" text="Feedzai" title="Feedzai" xmlUrl="https://medium.com/feed/feedzaitech" htmlUrl="https://medium.com/feedzaitech"/>
<outline type="rss" text="Felix Krause's Blog" title="Felix Krause's Blog" xmlUrl="https://krausefx.com/feed.xml" htmlUrl="https://krausefx.com/"/>
<outline type="rss" text="fgiesen.wordpress.com" title="fgiesen.wordpress.com" xmlUrl="https://fgiesen.wordpress.com/feed/" htmlUrl="https://fgiesen.wordpress.com/"/>
<outline type="rss" text="FiftyThree" title="FiftyThree" xmlUrl="http://making.fiftythree.com/feed.xml" htmlUrl="http://making.fiftythree.com/"/>
<outline type="rss" text="Figure Ink" title="Figure Ink" xmlUrl="http://www.figure.ink/blog?format=RSS" htmlUrl="http://www.figure.ink/"/>
<outline type="rss" text="Filippo Valsorda" title="Filippo Valsorda" xmlUrl="https://blog.filippo.io/rss/" htmlUrl="https://blog.filippo.io/"/>
<outline type="rss" text="Findmypast" title="Findmypast" xmlUrl="https://tech.findmypast.com/feed.xml" htmlUrl="http://tech.findmypast.com/"/>
<outline type="rss" text="finestructure" title="finestructure" xmlUrl="https://finestructure.co/blog?format=RSS" htmlUrl="https://finestructure.co/"/>
<outline type="rss" text="Finn.no" title="Finn.no" xmlUrl="http://tech.finn.no/atom.xml" htmlUrl="http://tech.finn.no/"/>
<outline type="rss" text="Firmafon" title="Firmafon" xmlUrl="https://dev.relatel.dk/blog/feed.xml" htmlUrl="https://dev.firmafon.dk/blog/"/>
<outline type="rss" text="First Class JS | Modern Javascript from A to Z" title="First Class JS | Modern Javascript from A to Z" xmlUrl="https://firstclassjs.com/feed/" htmlUrl="https://firstclassjs.com/"/>
<outline type="rss" text="Five Stars" title="Five Stars" xmlUrl="https://www.fivestars.blog/feed.xml" htmlUrl="https://www.fivestars.blog/"/>
<outline type="rss" text="fiveaday.co | Five web design & development articles a day" title="fiveaday.co | Five web design & development articles a day" xmlUrl="https://fiveaday.co/?feed=rss" htmlUrl="https://fiveaday.co/"/>
<outline type="rss" text="flaviocopes.com" title="flaviocopes.com" xmlUrl="https://flaviocopes.com/index.xml" htmlUrl="https://flaviocopes.com/"/>
<outline type="rss" text="Flawless App Stories" title="Flawless App Stories" xmlUrl="https://medium.com/feed/flawless-app-stories" htmlUrl="https://medium.com/flawless-app-stories"/>
<outline type="rss" text="Flickr" title="Flickr" xmlUrl="https://code.flickr.net/feed/" htmlUrl="http://code.flickr.net/"/>
<outline type="rss" text="Flickr" title="Flickr" xmlUrl="https://code.flickr.net/feed/" htmlUrl="https://code.flickr.net/"/>
<outline type="rss" text="Flight School" title="Flight School" xmlUrl="https://flight.school/feed.xml" htmlUrl="https://flight.school/"/>
<outline type="rss" text="Flipboard" title="Flipboard" xmlUrl="https://engineering.flipboard.com/feed.xml" htmlUrl="http://engineering.flipboard.com/"/>
<outline type="rss" text="Flipkart" title="Flipkart" xmlUrl="https://tech.flipkart.com/feed" htmlUrl="https://tech.flipkart.com/"/>
<outline type="rss" text="Floating little leaves of code" title="Floating little leaves of code" xmlUrl="https://silverhammermba.github.io/blog/feed.xml" htmlUrl="https://silverhammermba.github.io/blog/"/>
<outline type="rss" text="Fluffy" title="Fluffy" xmlUrl="https://fluffy.es/rss/" htmlUrl="https://fluffy.es/"/>
<outline type="rss" text="Fluidinfo" title="Fluidinfo" xmlUrl="http://blogs.fluidinfo.com/fluidinfo/feed/" htmlUrl="http://blogs.fluidinfo.com/"/>
<outline type="rss" text="Foresight Mobile Blog" title="Foresight Mobile Blog" xmlUrl="https://foresightmobile.com/blog?format=rss" htmlUrl="https://foresightmobile.com/blog"/>
<outline type="rss" text="ForeverGeek" title="ForeverGeek" xmlUrl="https://www.forevergeek.com/feed/" htmlUrl="https://www.forevergeek.com/"/>
<outline type="rss" text="Foursquare Engineering Blog" title="Foursquare Engineering Blog" xmlUrl="https://engineering.foursquare.com/feed" htmlUrl="https://engineering.foursquare.com/"/>
<outline type="rss" text="Fragmented | An Android Developer Podcast" title="Fragmented | An Android Developer Podcast" xmlUrl="https://fragmentedpodcast.com/feed/" htmlUrl="https://fragmentedpodcast.com/"/>
<outline type="rss" text="Francois Doin" title="Francois Doin" xmlUrl="http://raspberry-python.blogspot.com/feeds/posts/default" htmlUrl="http://raspberry-python.blogspot.co.id/search/label/english"/>
<outline type="rss" text="FreeCodeCamp" title="FreeCodeCamp" xmlUrl="https://www.freecodecamp.org/news/rss/" htmlUrl="https://medium.freecodecamp.com/"/>
<outline type="rss" text="Freek Van der Herten" title="Freek Van der Herten" xmlUrl="https://murze.be/feed" htmlUrl="https://murze.be/"/>
<outline type="rss" text="Freeletics" title="Freeletics" xmlUrl="https://freeletics.engineering/feed.xml" htmlUrl="https://freeletics.engineering/"/>
<outline type="rss" text="Fresh Swift - Recent content on Fresh Swift" title="Fresh Swift - Recent content on Fresh Swift" xmlUrl="http://freshswift.net/index.xml" htmlUrl="http://freshswift.net/"/>
<outline type="rss" text="From Python Import Podcast" title="From Python Import Podcast" xmlUrl="http://www.frompythonimportpodcast.com/feed" htmlUrl="http://www.frompythonimportpodcast.com/"/>
<outline type="rss" text="fsharpforfunandprofit.com" title="fsharpforfunandprofit.com" xmlUrl="https://fsharpforfunandprofit.com/feed.xml" htmlUrl="https://fsharpforfunandprofit.com/"/>
<outline type="rss" text="Fueled Blog " title="Fueled Blog " xmlUrl="https://fueled.com/feed/" htmlUrl="https://fueled.com/blog/"/>
<outline type="rss" text="Full Stack Geek - For WebDevs" title="Full Stack Geek - For WebDevs" xmlUrl="https://fullstackgeek.blogspot.com/feeds/posts/default" htmlUrl="https://fullstackgeek.blogspot.com/"/>
<outline type="rss" text="FullyTyped" title="FullyTyped" xmlUrl="http://fullytyped.com/index.xml" htmlUrl="http://fullytyped.com/"/>
<outline type="rss" text="Funding Circle" title="Funding Circle" xmlUrl="https://engineering.fundingcircle.com/blog/feed.xml" htmlUrl="https://engineering.fundingcircle.com/"/>
<outline type="rss" text="Furbo" title="Furbo" xmlUrl="http://furbo.org/feed/" htmlUrl="https://furbo.org/"/>
<outline type="rss" text="FusionReactor" title="FusionReactor" xmlUrl="https://www.fusion-reactor.com/feed/" htmlUrl="https://www.fusion-reactor.com/"/>
<outline type="rss" text="FusionReactor: Java Application Performance Monitor" title="FusionReactor: Java Application Performance Monitor" xmlUrl="https://www.fusion-reactor.com/feed/" htmlUrl="https://www.fusion-reactor.com/blog/"/>
<outline type="rss" text="Future Processing" title="Future Processing" xmlUrl="https://www.future-processing.pl/technical-blog/rss" htmlUrl="https://www.future-processing.pl/technical-blog/"/>
<outline type="rss" text="Fynd" title="Fynd" xmlUrl="http://gofynd.io/feed" htmlUrl="http://gofynd.io/blog"/>
<outline type="rss" text="G4 Design House" title="G4 Design House" xmlUrl="https://www.g4designhouse.com/feed/" htmlUrl="https://www.g4designhouse.com/our-blog/"/>
<outline type="rss" text="Gabriel Theodoropoulos' Blog" title="Gabriel Theodoropoulos' Blog" xmlUrl="https://gtiapps.com/?feed=rss2" htmlUrl="https://gtiapps.com/"/>
<outline type="rss" text="Galois" title="Galois" xmlUrl="https://galois.com/feed/" htmlUrl="https://galois.com/blog/"/>
<outline type="rss" text="GameChanger" title="GameChanger" xmlUrl="http://tech.gc.com/atom.xml" htmlUrl="http://tech.gc.com/"/>
<outline type="rss" text="Geek Feminism" title="Geek Feminism" xmlUrl="https://geekfeminismdotorg.wordpress.com/feed/" htmlUrl="https://geekfeminism.org/tag/python/"/>
<outline type="rss" text="Geek Gal Go" title="Geek Gal Go" xmlUrl="https://www.geekgalgo.com/home?format=rss" htmlUrl="https://www.geekgalgo.com/home"/>
<outline type="rss" text="Geek Hash" title="Geek Hash" xmlUrl="http://geekhash.blogspot.com/feeds/posts/default" htmlUrl="http://geekhash.blogspot.com/"/>
<outline type="rss" text="Geek Insider" title="Geek Insider" xmlUrl="https://www.geekinsider.com/feed/" htmlUrl="https://www.geekinsider.com/"/>
<outline type="rss" text="geek-is-stupid" title="geek-is-stupid" xmlUrl="https://geek-is-stupid.github.io/feed.xml" htmlUrl="https://geek-is-stupid.github.io/"/>
<outline type="rss" text="Geek Mamas" title="Geek Mamas" xmlUrl="https://geekmamas.com/feed/" htmlUrl="https://geekmamas.com/"/>
<outline type="rss" text="Geek Universal" title="Geek Universal" xmlUrl="https://www.geekuniversal.com/feeds/posts/default" htmlUrl="https://www.geekuniversal.com/"/>
<outline type="rss" text="GeekDad " title="GeekDad " xmlUrl="https://geekdad.com/feed/" htmlUrl="https://geekdad.com/"/>
<outline type="rss" text="GeekEstate Blog" title="GeekEstate Blog" xmlUrl="https://geekestateblog.com/feed/" htmlUrl="https://geekestateblog.com/blog/"/>
<outline type="rss" text="GeekFence " title="GeekFence " xmlUrl="https://www.geekfence.com/feed/" htmlUrl="https://www.geekfence.com/"/>
<outline type="rss" text="GeekGirlCon" title="GeekGirlCon" xmlUrl="https://geekgirlcon.com/?feed=rss" htmlUrl="https://geekgirlcon.com/blog/"/>
<outline type="rss" text="Geeknews" title="Geeknews" xmlUrl="http://www.geeknews.net/feed" htmlUrl="http://www.geeknews.net/"/>
<outline type="rss" text="Geeks for Geeks" title="Geeks for Geeks" xmlUrl="https://www.geeksforgeeks.org/feed/" htmlUrl="http://www.geeksforgeeks.org/"/>
<outline type="rss" text="Geeks on Tour Blog" title="Geeks on Tour Blog" xmlUrl="https://geeksontour.blogspot.com/feeds/posts/default" htmlUrl="https://geeksontour.blogspot.com/"/>
<outline type="rss" text="Geeky Gadgets" title="Geeky Gadgets" xmlUrl="https://www.geeky-gadgets.com/feed/" htmlUrl="https://www.geeky-gadgets.com/"/>
<outline type="rss" text="Geeky Lifestyle" title="Geeky Lifestyle" xmlUrl="https://geekylifestyle.com/feed" htmlUrl="https://geekylifestyle.com/"/>
<outline type="rss" text="Gene De Lisa's Blog" title="Gene De Lisa's Blog" xmlUrl="https://rockhoppertech.com/blog/feed" htmlUrl="https://rockhoppertech.com/blog"/>
<outline type="rss" text="Geoblink" title="Geoblink" xmlUrl="https://tech.geoblink.com/feed/" htmlUrl="https://tech.geoblink.com/"/>
<outline type="rss" text="Geoff Hackworth on Medium" title="Geoff Hackworth on Medium" xmlUrl="https://medium.com/feed/@hacknicity" htmlUrl="https://medium.com/@hacknicity"/>
<outline type="rss" text="georgestefanis.com" title="georgestefanis.com" xmlUrl="https://www.georgestefanis.com/rss.xml" htmlUrl="https://georgestefanis.com/"/>
<outline type="rss" text="Georgi Yanev" title="Georgi Yanev" xmlUrl="https://blog.georgi-yanev.com/feed.xml" htmlUrl="https://blog.georgi-yanev.com/"/>
<outline type="rss" text="Geospatial Python" title="Geospatial Python" xmlUrl="http://geospatialpython.com/feeds/posts/default" htmlUrl="http://geospatialpython.com/"/>
<outline type="rss" text="Gett Engineering Blog" title="Gett Engineering Blog" xmlUrl="https://medium.com/feed/gett-engineering" htmlUrl="https://medium.com/gett-engineering"/>
<outline type="rss" text="gideonpyzer.com" title="gideonpyzer.com" xmlUrl="https://gideonpyzer.com/blog/rss" htmlUrl="https://gideonpyzer.com/"/>
<outline type="rss" text="Gift Egwuenu" title="Gift Egwuenu" xmlUrl="https://www.giftegwuenu.com/index.xml" htmlUrl="https://www.giftegwuenu.com/"/>
<outline type="rss" text="Gilt" title="Gilt" xmlUrl="http://tech.gilt.com/atom.xml" htmlUrl="http://tech.gilt.com/"/>
<outline type="rss" text="gingerbookgeek" title="gingerbookgeek" xmlUrl="https://gingerbookgeek.wordpress.com/feed/" htmlUrl="https://gingerbookgeek.wordpress.com/"/>
<outline type="rss" text="GIPHY" title="GIPHY" xmlUrl="https://engineering.giphy.com/rss" htmlUrl="https://engineering.giphy.com/"/>
<outline type="rss" text="Gistia Labs" title="Gistia Labs" xmlUrl="https://www.gistia.com/feed/" htmlUrl="https://www.gistia.com/"/>
<outline type="rss" text="GitHub Engineering" title="GitHub Engineering" xmlUrl="https://githubengineering.com/atom.xml" htmlUrl="https://githubengineering.com/"/>
<outline type="rss" text="GitHub Old" title="GitHub Old" xmlUrl="https://blog.github.com/feed.xml" htmlUrl="https://github.com/blog/category/engineering"/>
<outline type="rss" text="Gizmodo | Android News, Videos, Reviews and Gossip" title="Gizmodo | Android News, Videos, Reviews and Gossip" xmlUrl="https://gizmodo.com/rss" htmlUrl="https://gizmodo.com/tag/android"/>
<outline type="rss" text="Gleb Bahmutov" title="Gleb Bahmutov" xmlUrl="https://glebbahmutov.com/blog/atom.xml" htmlUrl="https://glebbahmutov.com/blog/"/>
<outline type="rss" text="Glenn Stovall" title="Glenn Stovall" xmlUrl="https://glennstovall.com/?feed=rss" htmlUrl="https://glennstovall.com/"/>
<outline type="rss" text="Glowing Python" title="Glowing Python" xmlUrl="https://glowingpython.blogspot.com/feeds/posts/default" htmlUrl="http://glowingpython.blogspot.co.id/"/>
<outline type="rss" text="gmarik.info" title="gmarik.info" xmlUrl="https://www.gmarik.info/blog/index.xml" htmlUrl="http://www.gmarik.info/"/>
<outline type="rss" text="Go Forum | Latest topics" title="Go Forum | Latest topics" xmlUrl="https://forum.golangbridge.org/posts.rss" htmlUrl="https://forum.golangbridge.org/"/>
<outline type="rss" text="GO-JEK" title="GO-JEK" xmlUrl="https://blog.gojekengineering.com/feed" htmlUrl="https://blog.gojekengineering.com/"/>
<outline type="rss" text="GoCardless" title="GoCardless" xmlUrl="https://gocardless.com/blog/atom.xml" htmlUrl="https://gocardless.com/blog/tagged/engineering/"/>
<outline type="rss" text="goel.io" title="goel.io" xmlUrl="http://goel.io/feed.xml" htmlUrl="https://goel.io/"/>
<outline type="rss" text="Göksel Köksal on Medium" title="Göksel Köksal on Medium" xmlUrl="https://medium.com/feed/@gokselkoksal" htmlUrl="https://medium.com/@gokselkoksal"/>
<outline type="rss" text="Gokulakrishnan Kalaikovan" title="Gokulakrishnan Kalaikovan" xmlUrl="https://gokul.site/rss.xml" htmlUrl="https://gokul.site/"/>
<outline type="rss" text="Golang | News, Libraries, Apps & more" title="Golang | News, Libraries, Apps & more" xmlUrl="https://golang.ch/feed/" htmlUrl="https://golang.ch/"/>
<outline type="rss" text="Golang Programs | Golang Tutorial" title="Golang Programs | Golang Tutorial" xmlUrl="https://www.golangprograms.com/golang/rss/index/store_id/1/" htmlUrl="https://www.golangprograms.com/golang"/>
<outline type="rss" text="Golangbot | Golang tutorial " title="Golangbot | Golang tutorial " xmlUrl="https://golangbot.com/rss/" htmlUrl="https://golangbot.com/"/>
<outline type="rss" text="GolangCode" title="GolangCode" xmlUrl="https://golangcode.com/index.xml" htmlUrl="https://golangcode.com/"/>
<outline type="rss" text="gomakethings.com" title="gomakethings.com" xmlUrl="https://gomakethings.com/feed/index.xml" htmlUrl="https://gomakethings.com/articles/"/>
<outline type="rss" text="Good coders code, great reuse" title="Good coders code, great reuse" xmlUrl="https://catonmat.net/feed" htmlUrl="https://catonmat.net/"/>
<outline type="rss" text="Good Eggs" title="Good Eggs" xmlUrl="https://team.goodeggs.com/feed" htmlUrl="https://team.goodeggs.com/"/>
<outline type="rss" text="Good Old Geek IT Services" title="Good Old Geek IT Services" xmlUrl="https://www.goodoldgeek.com/feed/" htmlUrl="https://www.goodoldgeek.com/blogs/"/>
<outline type="rss" text="Google Developers Blog" title="Google Developers Blog" xmlUrl="https://developers.googleblog.com/feeds/posts/default" htmlUrl="https://developers.googleblog.com/"/>
<outline type="rss" text="Google Online Security" title="Google Online Security" xmlUrl="https://security.googleblog.com/feeds/posts/default" htmlUrl="https://security.googleblog.com/"/>
<outline type="rss" text="Google Research Blog" title="Google Research Blog" xmlUrl="http://ai.googleblog.com/feeds/posts/default" htmlUrl="https://research.googleblog.com/"/>
<outline type="rss" text="GoSquared" title="GoSquared" xmlUrl="https://engineering.gosquared.com/feed" htmlUrl="https://engineering.gosquared.com/"/>
<outline type="rss" text="Gouthaman Balaraman" title="Gouthaman Balaraman" xmlUrl="http://gouthamanbalaraman.com/feeds/all.atom.xml" htmlUrl="http://gouthamanbalaraman.com/"/>
<outline type="rss" text="Grab" title="Grab" xmlUrl="https://engineering.grab.com/feed.xml" htmlUrl="http://engineering.grab.com/"/>
<outline type="rss" text="Grafana" title="Grafana" xmlUrl="https://grafana.com/blog/blog/index.xml" htmlUrl="https://grafana.com/blog/"/>
<outline type="rss" text="Graham King" title="Graham King" xmlUrl="https://www.darkcoding.net/feed/" htmlUrl="https://www.darkcoding.net/"/>
<outline type="rss" text="Grammarly" title="Grammarly" xmlUrl="https://tech.grammarly.com/feed.xml" htmlUrl="https://tech.grammarly.com/blog/index.html"/>
<outline type="rss" text="Granite Geek" title="Granite Geek" xmlUrl="https://granitegeek.concordmonitor.com/feed/" htmlUrl="https://granitegeek.concordmonitor.com/"/>
<outline type="rss" text="Graphcool" title="Graphcool" xmlUrl="https://www.prisma.io/blog/rss.xml" htmlUrl="https://blog.graph.cool/"/>
<outline type="rss" text="GraphQL Blog - Visual graphql editor" title="GraphQL Blog - Visual graphql editor" xmlUrl="https://blog.graphqleditor.com/rss.xml" htmlUrl="https://blog.graphqleditor.com/"/>
<outline type="rss" text="GraphQL | Reddit" title="GraphQL | Reddit" xmlUrl="https://old.reddit.com/r/graphql/.rss" htmlUrl="https://old.reddit.com/r/graphql/"/>
<outline type="rss" text="GrayCell Technologies" title="GrayCell Technologies" xmlUrl="https://www.graycelltech.com/?feed=rss" htmlUrl="https://www.graycelltech.com/blog/"/>
<outline type="rss" text="Greg Johns" title="Greg Johns" xmlUrl="http://www.gregjohns.com/John_L._Moore.cfm?fp=uxx53pEAcCoWdc0o3E80m7jdYZFQjQB5WNiFzzNZexuG%2BANTTGSJ3TSgSRB1BdeNpArdW%2FiNLCglQ%2FZYzUhAPpAu4nhu8P%2FFtWDs%2BKBQwE2B6ojZRLj7CCbPxvZ4R%2FNICGjTUsdWma7PJPECyHwVzQ%2BKu4bzMZh9K%2BOqxDCtXwMRGZkNd%2FAzcVxZaKuZyvS70ZU7MrBpkVy9YOYxyQIjJA%3D%3D&yep=lOqF9xj3RsVWCtrm3z%2Fpo84Tj1m9Wk5W%2FzrCDfnbKbNZ9Cd82o0ZVr4qkoMAZFVRrXYi14%2F2iayCLyH1ywP%2Bhpz9FSEWc8PLpJdQeSJ3%2FZajQ5O3ZnbKz1K8Aog9ANpM%2BBAZgODb6hOgxEyaTsx1xBZAai%2FnKPt2OLbWf2n%2FEWsfx8fhZIFkW%2Fsz3rp61oEfPQI8ARYIl50wCwQZUs2Sv31tQ0%2Bo525wiFoC9rsLB6mb8lgH0C7vOE17MKT2JsiwomrD90co9A4Z4zg9MGGfYsp%2BEjdyOmx4kOxbRr%2BUTz0D8DdgUoQsBDxIft9WimDX4OLglSwHRudl%2BwhnrKz3L7uQ56KW3XmgCWn8Fi6vLbWoQ6%2BHSpNLhXi69xyKhnSmD1xt5NDUrEiU8hJyxDkcqKReyWFW6%2BWrBFAGyaNyY9YQ20Qf65HNJpzukOIpBBvExR8QBIXd88K5NYfOgMIk%2FBUmj6ChrjbBx%2B8Dg7OM584Dv%2FMt3HB51ErirmNAAr9o2O03iIxOmOhnLF%2FJTYM1gPtNW9MubK0T%2BUTjKmT42gEBqyEx6FpTWfiLilMNKSw59NypeTDhQQO3ESuJms2tcQ%3D%3D&gtnp=0&gtpp=0&maxads=0&kld=1061&yprpnd=GfThdTjF%2Blkz%2BecJ4nE7uUWMiieF5jyVuhmX8UtFFOA%3D&prvtof=Qtfah0PuAkvWCgQQs%2Fg0y8CwPF6Oy%2FRPL8bibePlkx0%3D&feed=rss&gtnp=0&gtpp=0&kt=320&&kbc=71918&ki=106192558&ktd=2199023452416&kld=1061&kp=1" htmlUrl="http://www.gregjohns.com/"/>
<outline type="rss" text="Gritty Engineer" title="Gritty Engineer" xmlUrl="https://grittyengineer.com/feed/" htmlUrl="http://grittyengineer.com/blog/"/>
<outline type="rss" text="Grofers" title="Grofers" xmlUrl="https://lambda.grofers.com/feed" htmlUrl="https://lambda.grofers.com/"/>
<outline type="rss" text="Grokking Android - Getting Down to the Nitty Gritty of Android Development" title="Grokking Android - Getting Down to the Nitty Gritty of Android Development" xmlUrl="https://www.grokkingandroid.com/feed/" htmlUrl="https://www.grokkingandroid.com/"/>
<outline type="rss" text="Grouper" title="Grouper" xmlUrl="http://blog.joingrouper.com/rss" htmlUrl="http://blog.joingrouper.com/"/>
<outline type="rss" text="Groupon Engineering Blog" title="Groupon Engineering Blog" xmlUrl="https://engineering.groupon.com/feed/" htmlUrl="https://engineering.groupon.com/"/>
<outline type="rss" text="Guardian" title="Guardian" xmlUrl="https://www.theguardian.com/info/series/digital-blog/rss" htmlUrl="https://www.theguardian.com/info/developer-blog"/>
<outline type="rss" text="Guido van Rossum" title="Guido van Rossum" xmlUrl="http://neopythonic.blogspot.com/feeds/posts/default" htmlUrl="http://neopythonic.blogspot.com/"/>
<outline type="rss" text="Guilherme Rambo's Blog" title="Guilherme Rambo's Blog" xmlUrl="https://rambo.codes/feed.xml" htmlUrl="https://rambo.codes/"/>
<outline type="rss" text="Guilherme Rodrigues" title="Guilherme Rodrigues" xmlUrl="https://firstdoit.com/feed" htmlUrl="https://firstdoit.com/"/>
<outline type="rss" text="Gusto" title="Gusto" xmlUrl="https://engineering.gusto.com/rss/" htmlUrl="http://engineering.gusto.com/"/>
<outline type="rss" text="Gwenn Guihal on Medium" title="Gwenn Guihal on Medium" xmlUrl="https://medium.com/feed/@_myrddin_" htmlUrl="https://medium.com/@_myrddin_"/>
<outline type="rss" text="Hackday" title="Hackday" xmlUrl="https://hackaday.com/feed/" htmlUrl="http://hackaday.com/"/>
<outline type="rss" text="HackerEarth" title="HackerEarth" xmlUrl="http://engineering.hackerearth.com/atom.xml" htmlUrl="http://engineering.hackerearth.com/"/>
<outline type="rss" text="Hackernoon" title="Hackernoon" xmlUrl="https://hackernoon.com/feed" htmlUrl="https://hackernoon.com/"/>
<outline type="rss" text="Hacking with Swift - Swift Developer News " title="Hacking with Swift - Swift Developer News " xmlUrl="https://www.hackingwithswift.com/articles/rss" htmlUrl="https://www.hackingwithswift.com/articles"/>
<outline type="rss" text="Hadoop Weekly" title="Hadoop Weekly" xmlUrl="https://dataengweekly.substack.com/feed/" htmlUrl="https://hadoopweekly.com/"/>
<outline type="rss" text="Hal Mueller's Blog" title="Hal Mueller's Blog" xmlUrl="https://halmueller.wordpress.com/feed/" htmlUrl="https://halmueller.wordpress.com/"/>
<outline type="rss" text="Hannes Dorfmann" title="Hannes Dorfmann" xmlUrl="http://hannesdorfmann.com/feed.xml" htmlUrl="http://hannesdorfmann.com/"/>
<outline type="rss" text="Hans Gerwitz" title="Hans Gerwitz" xmlUrl="https://hans.gerwitz.com/feeds/microblog.rss" htmlUrl="https://hans.gerwitz.com/"/>
<outline type="rss" text="Happy Programming Guide" title="Happy Programming Guide" xmlUrl="https://www.happyprogrammingguide.com/feed/" htmlUrl="https://www.happyprogrammingguide.com/"/>
<outline type="rss" text="Haptik" title="Haptik" xmlUrl="https://haptik.ai/tech/feed/" htmlUrl="https://haptik.ai/tech/"/>
<outline type="rss" text="Harry's" title="Harry's" xmlUrl="https://medium.com/feed/harrys-engineering" htmlUrl="http://engineering.harrys.com/"/>
<outline type="rss" text="Harry Wolff" title="Harry Wolff" xmlUrl="https://hswolff.com/rss.xml" htmlUrl="https://hswolff.com/"/>
<outline type="rss" text="Hashnode" title="Hashnode" xmlUrl="https://hashnode.blog/feed" htmlUrl="https://hashnode.blog/"/>
<outline type="rss" text="Hashnode" title="Hashnode" xmlUrl="https://hashnode.com/feed/rss/" htmlUrl="https://hashnode.com/"/>
<outline type="rss" text="Hashrocket" title="Hashrocket" xmlUrl="https://hashrocket.com/blog.rss" htmlUrl="https://hashrocket.com/blog"/>
<outline type="rss" text="Hasura" title="Hasura" xmlUrl="https://blog.hasura.io/feed" htmlUrl="https://blog.hasura.io/"/>
<outline type="rss" text="Haus" title="Haus" xmlUrl="https://engineering.haus.com/feed" htmlUrl="https://engineering.haus.com/"/>
<outline type="rss" text="Hayden James" title="Hayden James" xmlUrl="https://haydenjames.io/rss" htmlUrl="https://haydenjames.io/"/>
<outline type="rss" text="Heap" title="Heap" xmlUrl="https://heapanalytics.com/blog/category/engineering/feed" htmlUrl="https://heap.engineering/"/>
<outline type="rss" text="Helftone Blog" title="Helftone Blog" xmlUrl="https://blog.helftone.com/feed.xml" htmlUrl="https://blog.helftone.com/"/>
<outline type="rss" text="Help Desk Geek" title="Help Desk Geek" xmlUrl="https://helpdeskgeek.com/feed/" htmlUrl="https://helpdeskgeek.com/"/>
<outline type="rss" text="Help! I'm Not a Geek" title="Help! I'm Not a Geek" xmlUrl="http://helpimnotageek.blogspot.com/feeds/posts/default" htmlUrl="http://helpimnotageek.blogspot.com/"/>
<outline type="rss" text="Henrik Lau Eriksson" title="Henrik Lau Eriksson" xmlUrl="https://conductofcode.io/feed.xml" htmlUrl="https://conductofcode.io/"/>
<outline type="rss" text="Henrik Warne's blog | Thoughts on programming" title="Henrik Warne's blog | Thoughts on programming" xmlUrl="https://henrikwarne.com/feed/" htmlUrl="https://henrikwarne.com/"/>
<outline type="rss" text="Henry's Zoo" title="Henry's Zoo" xmlUrl="https://www.henryzoo.com/rss.xml" htmlUrl="http://henryzoo.com/"/>
<outline type="rss" text="HERE" title="HERE" xmlUrl="https://developer.here.com/blog/feed" htmlUrl="https://developer.here.com/blog"/>
<outline type="rss" text="herman.asia" title="herman.asia" xmlUrl="https://hermanschaaf.com/index.xml" htmlUrl="http://herman.asia/"/>
<outline type="rss" text="Heroku" title="Heroku" xmlUrl="https://blog.heroku.com/feed" htmlUrl="https://engineering.heroku.com/"/>
<outline type="rss" text="Heroku Engineering Blog" title="Heroku Engineering Blog" xmlUrl="https://blog.heroku.com/engineering" htmlUrl="https://blog.heroku.com/engineering"/>
<outline type="rss" text="Hesham Abd-Elmegid's Blog" title="Hesham Abd-Elmegid's Blog" xmlUrl="https://hesh.am/feed.xml" htmlUrl="https://hesh.am/"/>
<outline type="rss" text="Hexwhale" title="Hexwhale" xmlUrl="https://www.hexwhale.com/feed/" htmlUrl="https://www.hexwhale.com/blog/"/>
<outline type="rss" text="Hey There Buddo!" title="Hey There Buddo!" xmlUrl="http://www.philipzucker.com/feed/" htmlUrl="http://www.philipzucker.com/"/>
<outline type="rss" text="Hi, I'm Sam" title="Hi, I'm Sam" xmlUrl="https://soffes.blog/rss/" htmlUrl="https://soffes.blog/"/>
<outline type="rss" text="hiddedevries.nl" title="hiddedevries.nl" xmlUrl="https://hiddedevries.nl/rss/summaries/" htmlUrl="https://hiddedevries.nl/"/>
<outline type="rss" text="High Caffeine Content" title="High Caffeine Content" xmlUrl="https://www.highcaffeinecontent.com/rss.xml" htmlUrl="https://www.highcaffeinecontent.com/"/>
<outline type="rss" text="High Scalability" title="High Scalability" xmlUrl="http://feeds.feedburner.com/HighScalability" htmlUrl="http://highscalability.com/"/>
<outline type="rss" text="HireArt" title="HireArt" xmlUrl="http://code.hireart.com/feed.xml" htmlUrl="http://code.hireart.com/"/>
<outline type="rss" text="History of Python" title="History of Python" xmlUrl="http://python-history.blogspot.com/feeds/posts/default" htmlUrl="http://python-history.blogspot.co.id/"/>
<outline type="rss" text="Hiteshi" title="Hiteshi" xmlUrl="https://www.hiteshi.com/feed/" htmlUrl="https://www.hiteshi.com/blog/"/>
<outline type="rss" text="Hobbyist Software" title="Hobbyist Software" xmlUrl="https://blog.hobbyistsoftware.com/category/coding/apple/feed" htmlUrl="https://blog.hobbyistsoftware.com/category/coding/apple"/>
<outline type="rss" text="Home - colah's blog" title="Home - colah's blog" xmlUrl="http://colah.github.io/rss.xml" htmlUrl="http://colah.github.io/"/>
<outline type="rss" text="HomeAway" title="HomeAway" xmlUrl="https://medium.com/feed/homeaway-tech-blog" htmlUrl="https://tech.homeaway.com/"/>
<outline type="rss" text="Honeybadger" title="Honeybadger" xmlUrl="https://www.honeybadger.io/blog/feed.xml" htmlUrl="http://blog.honeybadger.io/"/>
<outline type="rss" text="HoneyBadger" title="HoneyBadger" xmlUrl="https://www.honeybadger.io/blog/feed.xml" htmlUrl="https://blog.honeybadger.io/"/>
<outline type="rss" text="Honza Dvorsky's Blog" title="Honza Dvorsky's Blog" xmlUrl="https://honzadvorsky.com/feed.xml" htmlUrl="http://honzadvorsky.com/"/>
<outline type="rss" text="Hootsuite" title="Hootsuite" xmlUrl="https://medium.com/feed/hootsuite-engineering" htmlUrl="http://code.hootsuite.com/"/>
<outline type="rss" text="Hosting" title="Hosting" xmlUrl="https://www.hosting.com/feed/" htmlUrl="https://www.hosting.com/cloud-computing-blog/"/>
<outline type="rss" text="Hostinger" title="Hostinger" xmlUrl="https://www.hostinger.com/blog/feed/" htmlUrl="https://www.hostinger.com/blog/engineering/"/>
<outline type="rss" text="Housing" title="Housing" xmlUrl="https://medium.com/feed/engineering-housing" htmlUrl="https://medium.com/engineering-housing"/>
<outline type="rss" text="Houssein Djirdeh" title="Houssein Djirdeh" xmlUrl="https://houssein.me/feed.xml" htmlUrl="https://houssein.me/"/>
<outline type="rss" text="How to do in JAVA" title="How to do in JAVA" xmlUrl="https://howtodoinjava.com/feed/" htmlUrl="https://howtodoinjava.com/"/>
<outline type="rss" text="How-To Geek" title="How-To Geek" xmlUrl="https://feeds.howtogeek.com/HowToGeek" htmlUrl="https://www.howtogeek.com/"/>
<outline type="rss" text="HubSpot" title="HubSpot" xmlUrl="https://product.hubspot.com/blog/rss.xml" htmlUrl="http://product.hubspot.com/blog/topic/engineering"/>
<outline type="rss" text="Hulu" title="Hulu" xmlUrl="https://medium.com/feed/hulu-tech-blog" htmlUrl="https://tech.hulu.com/"/>
<outline type="rss" text="Huon Wilson" title="Huon Wilson" xmlUrl="http://huonw.github.io/blog/atom.xml" htmlUrl="http://huonw.github.io/"/>
<outline type="rss" text="Huptech Web" title="Huptech Web" xmlUrl="https://www.huptechweb.com/feed/" htmlUrl="https://www.huptechweb.com/blogs/"/>
<outline type="rss" text="Huy Nguyen" title="Huy Nguyen" xmlUrl="https://www.huy.dev/rss.xml" htmlUrl="https://www.huy.dev/"/>
<outline type="rss" text="Hwee-Boon Yar's Blog" title="Hwee-Boon Yar's Blog" xmlUrl="http://hboon.com/feed/" htmlUrl="http://hboon.com/"/>
<outline type="rss" text="Hynek Schlawack" title="Hynek Schlawack" xmlUrl="https://hynek.me/index.xml" htmlUrl="https://hynek.me/articles/"/>
<outline type="rss" text="Hypriot" title="Hypriot" xmlUrl="https://blog.hypriot.com/index.xml" htmlUrl="http://blog.hypriot.com/"/>
<outline type="rss" text="I Am Simme" title="I Am Simme" xmlUrl="https://www.iamsim.me/index.xml" htmlUrl="https://www.iamsim.me/"/>
<outline type="rss" text="I'm Programmer" title="I'm Programmer" xmlUrl="https://www.improgrammer.net/feed/" htmlUrl="https://www.improgrammer.net/"/>
<outline type="rss" text="iamdeveloper.com" title="iamdeveloper.com" xmlUrl="https://www.iamdeveloper.com/rss.xml" htmlUrl="https://iamdeveloper.com/"/>
<outline type="rss" text="Ian Bicking" title="Ian Bicking" xmlUrl="https://www.ianbicking.org/feeds/atom.xml" htmlUrl="http://www.ianbicking.org/blog/"/>
<outline type="rss" text="Ian Hummel" title="Ian Hummel" xmlUrl="https://themodernlife.github.io/feed.xml" htmlUrl="https://themodernlife.github.io/"/>
<outline type="rss" text="Ian Sommerville" title="Ian Sommerville" xmlUrl="https://iansommerville.com/systems-software-and-technology/feed/" htmlUrl="http://iansommerville.com/systems-software-and-technology/"/>
<outline type="rss" text="IBM Cloud computing " title="IBM Cloud computing " xmlUrl="https://www.ibm.com/blogs/cloud-computing/feed/atom/" htmlUrl="https://www.ibm.com/blogs/cloud-computing/"/>
<outline type="rss" text="IBM developerWorks" title="IBM developerWorks" xmlUrl="https://developer.ibm.com/dwblog/feed/" htmlUrl="https://developer.ibm.com/dwblog/"/>
<outline type="rss" text="iCalvin.dev" title="iCalvin.dev" xmlUrl="https://icalvin.dev/posts/json" htmlUrl="https://icalvin.dev/"/>
<outline type="rss" text="Icicle - Web & Technology Blog" title="Icicle - Web & Technology Blog" xmlUrl="https://www.icicletech.com/blog/feed" htmlUrl="https://www.icicletech.com/blog"/>
<outline type="rss" text="Idexcel" title="Idexcel" xmlUrl="https://www.idexcel.com/blog/feed/" htmlUrl="https://www.idexcel.com/blog/"/>
<outline type="rss" text="Idontgetoutmuch's Weblog" title="Idontgetoutmuch's Weblog" xmlUrl="https://idontgetoutmuch.wordpress.com/feed/" htmlUrl="https://idontgetoutmuch.wordpress.com/"/>
<outline type="rss" text="IEEE Cloud Computing" title="IEEE Cloud Computing" xmlUrl="https://www.computer.org/?feed=rss" htmlUrl="https://www.computer.org/cloud-computing/"/>
<outline type="rss" text="Ievgen Kuzminov" title="Ievgen Kuzminov" xmlUrl="http://stdout.in/en/cat/all.rss" htmlUrl="http://stdout.in/"/>
<outline type="rss" text="IG GURU » Dark Web" title="IG GURU » Dark Web" xmlUrl="https://igguru.net/feed/" htmlUrl="https://igguru.net/category/dark-web/"/>
<outline type="rss" text="ignore the code" title="ignore the code" xmlUrl="http://ignorethecode.net/blog/rss/" htmlUrl="http://ignorethecode.net/"/>
<outline type="rss" text="Igor Kulman's Blog" title="Igor Kulman's Blog" xmlUrl="https://blog.kulman.sk/index.xml" htmlUrl="https://blog.kulman.sk/"/>
<outline type="rss" text="Igvita" title="Igvita" xmlUrl="https://www.igvita.com/feed/" htmlUrl="https://www.igvita.com/"/>
<outline type="rss" text="iJoshSmith" title="iJoshSmith" xmlUrl="https://ijoshsmith.com/feed/" htmlUrl="https://ijoshsmith.com/"/>
<outline type="rss" text="Ilian Konchev on Medium" title="Ilian Konchev on Medium" xmlUrl="https://medium.com/feed/@iliankonchev" htmlUrl="https://medium.com/@iliankonchev"/>
<outline type="rss" text="Ilija Eftimov" title="Ilija Eftimov" xmlUrl="https://ieftimov.com/%7balternate%20%7bRSS%20application/rss&#43;xml%20%20index%20alternate%20%20false%20false%20true%20false%20false%200%7d%20/index.xml%20https://ieftimov.com/index.xml%7d" htmlUrl="http://ieftimov.com/"/>
<outline type="rss" text="Ilya Puchka's Blog" title="Ilya Puchka's Blog" xmlUrl="http://ilya.puchka.me/rss/" htmlUrl="http://ilya.puchka.me/"/>
<outline type="rss" text="Imaginea" title="Imaginea" xmlUrl="https://blog.imaginea.com/feed/" htmlUrl="https://blog.imaginea.com/"/>
<outline type="rss" text="Imgur" title="Imgur" xmlUrl="https://blog.imgur.com/feed/" htmlUrl="https://blog.imgur.com/category/eng/"/>
<outline type="rss" text="Import Python Weekly Blog" title="Import Python Weekly Blog" xmlUrl="https://importpython.com/blog/feed" htmlUrl="https://importpython.com/blog/"/>
<outline type="rss" text="Import.io" title="Import.io" xmlUrl="https://www.import.io/feed/" htmlUrl="https://www.import.io/blog/"/>
<outline type="rss" text="IMVU" title="IMVU" xmlUrl="https://engineering.imvu.com/feed/" htmlUrl="https://engineering.imvu.com/"/>
<outline type="rss" text="In'saneLab | Web development, software development, and more!" title="In'saneLab | Web development, software development, and more!" xmlUrl="https://insanelab.com/?feed=rss" htmlUrl="https://insanelab.com/blog/"/>
<outline type="rss" text="Indeed" title="Indeed" xmlUrl="https://engineering.indeedblog.com/feed/" htmlUrl="http://engineering.indeedblog.com/blog/"/>
<outline type="rss" text="INDGLOBA - Web Designing And Development Company " title="INDGLOBA - Web Designing And Development Company " xmlUrl="http://indglobalconsultingsolution.blogspot.com/feeds/posts/default" htmlUrl="http://indglobalconsultingsolution.blogspot.com/"/>
<outline type="rss" text="Indie iOS Focus Weekly" title="Indie iOS Focus Weekly" xmlUrl="https://indieiosfocus.com/issues.rss" htmlUrl="https://indieiosfocus.com/"/>
<outline type="rss" text="Indie Stack" title="Indie Stack" xmlUrl="http://indiestack.com/feed/" htmlUrl="http://indiestack.com/"/>
<outline type="rss" text="Inessential" title="Inessential" xmlUrl="http://inessential.com/xml/rss.xml" htmlUrl="http://inessential.com/"/>
<outline type="rss" text="Infinum | AndroidSweets" title="Infinum | AndroidSweets" xmlUrl="https://androidsweets.ongoodbits.com/feed" htmlUrl="https://androidsweets.ongoodbits.com/"/>
<outline type="rss" text="Influxdata" title="Influxdata" xmlUrl="https://www.influxdata.com/feed/" htmlUrl="https://influxdata.com/blog/"/>
<outline type="rss" text="InfoQ - Java Community Content On InfoQ" title="InfoQ - Java Community Content On InfoQ" xmlUrl="https://feed.infoq.com/java/" htmlUrl="https://www.infoq.com/java/"/>
<outline type="rss" text="Informed K12" title="Informed K12" xmlUrl="https://tostring.informedk12.com/feed" htmlUrl="https://tostring.informedk12.com/"/>
<outline type="rss" text="InfoWorld Cloud Computing" title="InfoWorld Cloud Computing" xmlUrl="http://www.infoworld.com/category/cloud-computing/index.rss" htmlUrl="https://www.infoworld.com/category/cloud-computing/"/>
<outline type="rss" text="Inside PSPDFKit" title="Inside PSPDFKit" xmlUrl="https://pspdfkit.com/blog/feed.atom" htmlUrl="https://pspdfkit.com/blog"/>
<outline type="rss" text=" Inside Technologies" title=" Inside Technologies" xmlUrl="https://www.insidetechnologies.eu/en/feed/" htmlUrl="https://www.insidetechnologies.eu/en/blogs/"/>
<outline type="rss" text="Instabug Blog" title="Instabug Blog" xmlUrl="https://blog.instabug.com/feed/" htmlUrl="https://blog.instabug.com/"/>
<outline type="rss" text="Instacart" title="Instacart" xmlUrl="https://tech.instacart.com/feed" htmlUrl="https://tech.instacart.com/"/>
<outline type="rss" text="Instagram" title="Instagram" xmlUrl="https://instagram-engineering.tumblr.com/rss" htmlUrl="http://instagram-engineering.tumblr.com/"/>
<outline type="rss" text="Instagram" title="Instagram" xmlUrl="https://instagram-engineering.com/feed" htmlUrl="https://engineering.instagram.com/"/>
<outline type="rss" text="Instagram Engineering" title="Instagram Engineering" xmlUrl="https://engineering.instagram.com/osd.xml" htmlUrl="https://engineering.instagram.com/@InstagramEng"/>
<outline type="rss" text="Insurance Geek" title="Insurance Geek" xmlUrl="https://www.insurancegeek.com/feed/" htmlUrl="https://www.insurancegeek.com/blog/"/>
<outline type="rss" text="Intel" title="Intel" xmlUrl="https://software.intel.com/en-us/blogs/feed" htmlUrl="https://software.intel.com/en-us/blogs/"/>
<outline type="rss" text="Intent Media" title="Intent Media" xmlUrl="http://intentmedia.com/feed/" htmlUrl="http://intentmedia.com/blog/"/>
<outline type="rss" text="IntentHQ" title="IntentHQ" xmlUrl="http://engineering.intenthq.com/feed.xml" htmlUrl="http://engineering.intenthq.com/"/>
<outline type="rss" text="Intercom" title="Intercom" xmlUrl="https://engineering.intercom.io/feed.xml" htmlUrl="https://engineering.intercom.io/"/>
<outline type="rss" text="Intercom.io" title="Intercom.io" xmlUrl="https://blog.intercom.io/?feed=rss" htmlUrl="https://blog.intercom.io/"/>
<outline type="rss" text="Internetdevels | Web Development in Drupal" title="Internetdevels | Web Development in Drupal" xmlUrl="https://internetdevels.com/rss.xml" htmlUrl="https://internetdevels.com/blog"/>
<outline type="rss" text="Interop Technology" title="Interop Technology" xmlUrl="https://www.interoptechnology.com/feed/" htmlUrl="https://www.interoptechnology.com/blogs/"/>
<outline type="rss" text="Intuit" title="Intuit" xmlUrl="https://quickbooks-engineering.intuit.com/feed" htmlUrl="https://quickbooks-engineering.intuit.com/"/>
<outline type="rss" text="InvasiveCode Blog" title="InvasiveCode Blog" xmlUrl="https://www.invasivecode.com/weblog/feed/" htmlUrl="https://www.invasivecode.com/weblog/"/>
<outline type="rss" text="InVision" title="InVision" xmlUrl="https://engineering.invisionapp.com/index.xml" htmlUrl="http://engineering.invisionapp.com/"/>
<outline type="rss" text="Ioannis Diamantidis" title="Ioannis Diamantidis" xmlUrl="https://diamantidis.github.io/feed.xml" htmlUrl="https://diamantidis.github.io/"/>
<outline type="rss" text="iOS Creator" title="iOS Creator" xmlUrl="https://www.ioscreator.com/tutorials?format=RSS" htmlUrl="https://www.ioscreator.com/"/>
<outline type="rss" text="iOS Dev Recipes" title="iOS Dev Recipes" xmlUrl="https://iosdev.recipes/rss.xml" htmlUrl="https://iosdev.recipes/"/>
<outline type="rss" text="iOS Dev Tools" title="iOS Dev Tools" xmlUrl="https://iosdev.tools/rss.php" htmlUrl="https://iosdev.tools/"/>
<outline type="rss" text="iOS Dev Weekly" title="iOS Dev Weekly" xmlUrl="https://iosdevweekly.com/issues.rss" htmlUrl="https://iosdevweekly.com/"/>
<outline type="rss" text="iOS Developer News" title="iOS Developer News" xmlUrl="https://iosdevelopernews.com/feed" htmlUrl="https://iosdevelopernews.com/"/>
<outline type="rss" text="iOS Goodies" title="iOS Goodies" xmlUrl="http://ios-goodies.com/rss" htmlUrl="http://ios-goodies.com/"/>
<outline type="rss" text="iOS on Stack Overflow | Featured questions tagged ios" title="iOS on Stack Overflow | Featured questions tagged ios" xmlUrl="https://stackoverflow.com/feeds/tag?tagnames=ios&amp;sort=newest" htmlUrl="https://stackoverflow.com/questions/tagged/ios"/>
<outline type="rss" text="iOS Programming on Reddit" title="iOS Programming on Reddit" xmlUrl="https://www.reddit.com/?feed=rss&amp;after=t3_e5pfnb" htmlUrl="https://www.reddit.com/r/iOSProgramming/"/>
<outline type="rss" text="iOSTutorialJunction" title="iOSTutorialJunction" xmlUrl="https://iostutorialjunction.com/feed" htmlUrl="https://iostutorialjunction.com/"/>
<outline type="rss" text="IPFS" title="IPFS" xmlUrl="https://ipfs.io/blog/index.xml" htmlUrl="https://ipfs.io/blog/"/>
<outline type="rss" text="Ire Aderinokun" title="Ire Aderinokun" xmlUrl="https://bitsofco.de/rss/" htmlUrl="https://bitsofco.de/"/>
<outline type="rss" text="Ismail Ghallou" title="Ismail Ghallou" xmlUrl="https://smakosh.com/rss.xml" htmlUrl="https://smakosh.com/blog/"/>
<outline type="rss" text="Itty Bitty Apps Blog" title="Itty Bitty Apps Blog" xmlUrl="https://www.ittybittyapps.com/blog/index.xml" htmlUrl="https://www.ittybittyapps.com/blog/"/>
<outline type="rss" text="ITworld Cloud Computing" title="ITworld Cloud Computing" xmlUrl="http://www.itworld.com/category/cloud-computing/index.rss" htmlUrl="https://www.itworld.com/category/cloud-computing/"/>
<outline type="rss" text="Ivan Ursul" title="Ivan Ursul" xmlUrl="https://ivanursul.com/feed.xml" htmlUrl="https://ivanursul.com/"/>
<outline type="rss" text="iyzico" title="iyzico" xmlUrl="https://iyzico.engineering/feed" htmlUrl="https://iyzico.engineering/"/>
<outline type="rss" text="J.C. Hiatt" title="J.C. Hiatt" xmlUrl="https://jchiatt.com/rss.xml" htmlUrl="https://jchiatt.com/"/>
<outline type="rss" text="Jacopo Tarantino" title="Jacopo Tarantino" xmlUrl="https://jack.ofspades.com/rss/index.html" htmlUrl="https://jack.ofspades.com/"/>
<outline type="rss" text="jacquesmattheij.com" title="jacquesmattheij.com" xmlUrl="https://jacquesmattheij.com/rss.xml" htmlUrl="http://jacquesmattheij.com/"/>
<outline type="rss" text="Jaime González" title="Jaime González" xmlUrl="https://www.barbarianmeetscoding.com/atom.xml" htmlUrl="https://www.barbarianmeetscoding.com/"/>
<outline type="rss" text="jaimeolmo.com" title="jaimeolmo.com" xmlUrl="https://www.jaimeolmo.com/feed/" htmlUrl="http://www.jaimeolmo.com/"/>
<outline type="rss" text="Jake Archibald" title="Jake Archibald" xmlUrl="https://jakearchibald.com/posts.rss" htmlUrl="https://jakearchibald.com/"/>
<outline type="rss" text="Jake Baker" title="Jake Baker" xmlUrl="https://jakebaker.co.uk/index.xml" htmlUrl="https://jakebaker.co.uk/"/>
<outline type="rss" text="Jake Champion" title="Jake Champion" xmlUrl="https://jakechampion.name/feed.xml" htmlUrl="https://jakechampion.name/"/>
<outline type="rss" text="Jake Jarvis" title="Jake Jarvis" xmlUrl="https://jarv.is/feed.xml" htmlUrl="https://jarv.is/notes/"/>
<outline type="rss" text="Jake Trent" title="Jake Trent" xmlUrl="https://jaketrent.com/index.xml" htmlUrl="https://jaketrent.com/"/>
<outline type="rss" text="Jake Wharton" title="Jake Wharton" xmlUrl="http://jakewharton.com/feed.xml" htmlUrl="http://jakewharton.com/blog"/>
<outline type="rss" text="Jake Yesbeck" title="Jake Yesbeck" xmlUrl="http://jakeyesbeck.com/atom.xml" htmlUrl="http://jakeyesbeck.com/"/>
<outline type="rss" text="James Benett" title="James Benett" xmlUrl="https://www.b-list.org/feeds/entries/" htmlUrl="http://www.b-list.org/weblog/categories/python/"/>
<outline type="rss" text="James Dempsey's Blog" title="James Dempsey's Blog" xmlUrl="http://jamesdempsey.net/feed/" htmlUrl="http://jamesdempsey.net/"/>
<outline type="rss" text="James Hague" title="James Hague" xmlUrl="https://prog21.dadgum.com/atom.xml" htmlUrl="http://prog21.dadgum.com/"/>
<outline type="rss" text="James Long" title="James Long" xmlUrl="https://jlongster.com/atom.xml" htmlUrl="http://jlongster.com/archive"/>
<outline type="rss" text="James Milner" title="James Milner" xmlUrl="https://www.loxodrome.io//index.xml" htmlUrl="https://www.loxodrome.io/"/>
<outline type="rss" text="James Nelson" title="James Nelson" xmlUrl="http://jamesknelson.com/feed/" htmlUrl="http://jamesknelson.com/"/>
<outline type="rss" text="Jameson Quave's Blog" title="Jameson Quave's Blog" xmlUrl="http://jamesonquave.com/blog/feed/" htmlUrl="http://jamesonquave.com/blog/"/>
<outline type="rss" text="Jamis Buck" title="Jamis Buck" xmlUrl="https://feeds.feedburner.com/buckblog" htmlUrl="http://weblog.jamisbuck.org/"/>
<outline type="rss" text="Jampp" title="Jampp" xmlUrl="https://medium.com/feed/jampp-engineering" htmlUrl="https://geeks.jampp.com/"/>
<outline type="rss" text="Jan Lelis" title="Jan Lelis" xmlUrl="https://idiosyncratic-ruby.com/feed.xml" htmlUrl="https://idiosyncratic-ruby.com/"/>
<outline type="rss" text="Jan-Lukas Else" title="Jan-Lukas Else" xmlUrl="https://jlelse.blog/index.xml" htmlUrl="https://jlelse.blog/"/>
<outline type="rss" text="Jane Street" title="Jane Street" xmlUrl="https://blogs.janestreet.com/feed.xml" htmlUrl="https://blogs.janestreet.com/category/ocaml/"/>
<outline type="rss" text="Jared Sinclair's Blog" title="Jared Sinclair's Blog" xmlUrl="http://blog.jaredsinclair.com/rss" htmlUrl="http://blog.jaredsinclair.com/"/>
<outline type="rss" text="Jasdev Singh’s Blog" title="Jasdev Singh’s Blog" xmlUrl="https://jasdev.me/atom.xml" htmlUrl="https://jasdev.me/"/>
<outline type="rss" text="Jason Everett" title="Jason Everett" xmlUrl="https://blog.ijasoneverett.com/feed/" htmlUrl="https://blog.ijasoneverett.com/"/>
<outline type="rss" text="Jason Santa Maria" title="Jason Santa Maria" xmlUrl="http://feeds.feedburner.com/jsm-rss" htmlUrl="http://jasonsantamaria.com/"/>
<outline type="rss" text="Jason Zurita's Blog" title="Jason Zurita's Blog" xmlUrl="https://www.jasonzurita.com/feed.xml" htmlUrl="https://www.jasonzurita.com/blog/"/>
<outline type="rss" text="Java AWS Developer Blog" title="Java AWS Developer Blog" xmlUrl="https://aws.amazon.com/blogs/developer/category/programing-language/java/feed/" htmlUrl="https://aws.amazon.com/blogs/developer/category/java/"/>
<outline type="rss" text="Java Beginners Tutorial" title="Java Beginners Tutorial" xmlUrl="https://javabeginnerstutorial.com/feed/" htmlUrl="https://javabeginnerstutorial.com/"/>
<outline type="rss" text="Java Code Geeks" title="Java Code Geeks" xmlUrl="https://www.javacodegeeks.com/feed" htmlUrl="https://www.javacodegeeks.com/"/>
<outline type="rss" text="Java Deep | Pure Java, what else" title="Java Deep | Pure Java, what else" xmlUrl="https://javax0.wordpress.com/feed/" htmlUrl="https://javax0.wordpress.com/"/>
<outline type="rss" text="Java For Testers" title="Java For Testers" xmlUrl="https://www.eviltester.com/index.xml" htmlUrl="http://blog.javafortesters.com/"/>
<outline type="rss" text="Java Hungry" title="Java Hungry" xmlUrl="https://javahungry.blogspot.com/atom.xml" htmlUrl="https://javahungry.blogspot.com/"/>
<outline type="rss" text="Java Interview Questions and Answers" title="Java Interview Questions and Answers" xmlUrl="https://adnjavainterview.blogspot.com/feeds/posts/default" htmlUrl="https://adnjavainterview.blogspot.com/"/>
<outline type="rss" text="Java Red Hat Developer Blog" title="Java Red Hat Developer Blog" xmlUrl="https://developers.redhat.com/blog/tag/java/feed/" htmlUrl="https://developers.redhat.com/blog/tag/java/"/>
<outline type="rss" text="Java, SQL and jOOQ." title="Java, SQL and jOOQ." xmlUrl="https://blog.jooq.org/feed/" htmlUrl="https://blog.jooq.org/"/>
<outline type="rss" text="Java tutorial for beginners" title="Java tutorial for beginners" xmlUrl="https://feeds.feedburner.com/arpitmandliyasblog" htmlUrl="https://java2blog.com/"/>
<outline type="rss" text="Java67" title="Java67" xmlUrl="https://www.java67.com/feeds/posts/default" htmlUrl="https://www.java67.com/"/>
<outline type="rss" text="Javarevisited" title="Javarevisited" xmlUrl="https://javarevisited.blogspot.com/feeds/posts/default" htmlUrl="https://javarevisited.blogspot.com/"/>
<outline type="rss" text="JavaScript Weekly" title="JavaScript Weekly" xmlUrl="https://javascriptweekly.com/rss/23g6ode2" htmlUrl="https://javascriptweekly.com/"/>
<outline type="rss" text="JavaScriptSearch Articles" title="JavaScriptSearch Articles" xmlUrl="https://www.javascriptsearch.com/rss_xmls/3_rss.xml" htmlUrl="https://www.javascriptsearch.com/"/>
<outline type="rss" text="JavaWorld" title="JavaWorld" xmlUrl="http://www.javaworld.com/index.rss" htmlUrl="https://www.javaworld.com/"/>
<outline type="rss" text="Javier Soto's Blog" title="Javier Soto's Blog" xmlUrl="http://javisoto.tumblr.com/rss" htmlUrl="http://javisoto.tumblr.com/"/>
<outline type="rss" text="Jay Fields" title="Jay Fields" xmlUrl="http://blog.jayfields.com/feeds/posts/default" htmlUrl="http://blog.jayfields.com/"/>
<outline type="rss" text="jdsteinbach.com" title="jdsteinbach.com" xmlUrl="https://jdsteinbach.com/feed.xml" htmlUrl="https://jdsteinbach.com/"/>
<outline type="rss" text="Jean Mainguy on Medium" title="Jean Mainguy on Medium" xmlUrl="https://medium.com/feed/@jhandguy" htmlUrl="https://medium.com/@jhandguy"/>
<outline type="rss" text="Jeff Johnson's Blog" title="Jeff Johnson's Blog" xmlUrl="http://lapcatsoftware.com/articles/atom.xml" htmlUrl="http://lapcatsoftware.com/articles/index.html"/>
<outline type="rss" text="Jeff Knupp" title="Jeff Knupp" xmlUrl="http://feeds.feedblitz.com/hackersgonnahack" htmlUrl="https://www.jeffknupp.com/blog/"/>
<outline type="rss" text="Jeff Preshing" title="Jeff Preshing" xmlUrl="https://preshing.com/feed" htmlUrl="http://preshing.com/"/>
<outline type="rss" text="Jelastic" title="Jelastic" xmlUrl="https://jelastic.com/blog/feed/" htmlUrl="https://blog.jelastic.com/"/>
<outline type="rss" text=" Jens Oliver Meiert Blog" title=" Jens Oliver Meiert Blog" xmlUrl="https://meiert.com/en/feed/" htmlUrl="https://meiert.com/en/"/>
<outline type="rss" text="Jeremy Shaw" title="Jeremy Shaw" xmlUrl="https://blog.jeremyshaw.co.nz/atom.xml" htmlUrl="https://blog.jeremyshaw.co.nz/"/>
<outline type="rss" text="Jeremy W. Sherman's Blog" title="Jeremy W. Sherman's Blog" xmlUrl="https://jeremywsherman.com/index.xml" htmlUrl="https://jeremywsherman.com/"/>
<outline type="rss" text="Jerry Gamblin" title="Jerry Gamblin" xmlUrl="https://jerrygamblin.com/feed/" htmlUrl="https://jerrygamblin.com/"/>
<outline type="rss" text="Jesal Gadhia" title="Jesal Gadhia" xmlUrl="https://jes.al/atom.xml" htmlUrl="https://jes.al/"/>
<outline type="rss" text="Jesse Squires' Blog" title="Jesse Squires' Blog" xmlUrl="https://www.jessesquires.com/feed.xml" htmlUrl="https://www.jessesquires.com/"/>
<outline type="rss" text="Jessie Frazelle" title="Jessie Frazelle" xmlUrl="https://blog.jessfraz.com/index.xml" htmlUrl="https://blog.jessfraz.com/"/>
<outline type="rss" text="Jesus Castello" title="Jesus Castello" xmlUrl="https://www.rubyguides.com/feed/" htmlUrl="http://www.blackbytes.info/"/>
<outline type="rss" text="Jet Technology" title="Jet Technology" xmlUrl="https://medium.com/feed/jettech" htmlUrl="https://tech.jet.com/"/>
<outline type="rss" text="JetBrains | Gogland Blog" title="JetBrains | Gogland Blog" xmlUrl="https://blog.jetbrains.com/go/feed/" htmlUrl="https://blog.jetbrains.com/go/"/>
<outline type="rss" text="Jev Kuznetsov" title="Jev Kuznetsov" xmlUrl="http://tradingwithpython.blogspot.com/feeds/posts/default" htmlUrl="http://tradingwithpython.blogspot.co.id/"/>
<outline type="rss" text="Jibin Thomas" title="Jibin Thomas" xmlUrl="https://blog.jibin.tech/rss.xml" htmlUrl="https://blog.jibin.tech/"/>
<outline type="rss" text="Jille van der Weerd on Medium" title="Jille van der Weerd on Medium" xmlUrl="https://medium.com/feed/@JillevdWeerd" htmlUrl="https://medium.com/@JillevdWeerd"/>
<outline type="rss" text="Jimdo" title="Jimdo" xmlUrl="https://dev.jimdo.com/rss/blog" htmlUrl="https://dev.jimdo.com/"/>
<outline type="rss" text="Jimmy M Andersson on Medium" title="Jimmy M Andersson on Medium" xmlUrl="https://medium.com/feed/@JimmyMAndersson" htmlUrl="https://medium.com/@JimmyMAndersson"/>
<outline type="rss" text="Joachim Complains About Things" title="Joachim Complains About Things" xmlUrl="http://blog.cocoafrog.de/feed.xml" htmlUrl="http://blog.cocoafrog.de/"/>
<outline type="rss" text="@JoanZap" title="@JoanZap" xmlUrl="https://blog.joanzapata.com/rss/" htmlUrl="https://blog.joanzapata.com/"/>
<outline type="rss" text="Jobandtalent" title="Jobandtalent" xmlUrl="https://jobandtalent.engineering/feed" htmlUrl="https://jobandtalent.engineering/"/>
<outline type="rss" text="JobTeaser" title="JobTeaser" xmlUrl="https://medium.com/feed/jobteaser-dev-team" htmlUrl="https://medium.com/jobteaser-dev-team/"/>
<outline type="rss" text="Joe Duffy's Blog" title="Joe Duffy's Blog" xmlUrl="http://joeduffyblog.com/feed.xml" htmlUrl="http://joeduffyblog.com/"/>
<outline type="rss" text="Joe Masilotti's Blog" title="Joe Masilotti's Blog" xmlUrl="http://masilotti.com/atom.xml" htmlUrl="http://masilotti.com/"/>
<outline type="rss" text="Joe Nelson" title="Joe Nelson" xmlUrl="https://begriffs.com/atom.xml" htmlUrl="https://begriffs.com/"/>
<outline type="rss" text="Joe Zim's JavaScript Blog" title="Joe Zim's JavaScript Blog" xmlUrl="https://www.joezimjs.com/feed/" htmlUrl="https://www.joezimjs.com/"/>
<outline type="rss" text="joecodes.com" title="joecodes.com" xmlUrl="https://joecodes.com/feed/" htmlUrl="https://joecodes.com/"/>
<outline type="rss" text="Joel on Software" title="Joel on Software" xmlUrl="https://www.joelonsoftware.com/feed/" htmlUrl="https://www.joelonsoftware.com/"/>
<outline type="rss" text="Johannes Brodwall" title="Johannes Brodwall" xmlUrl="http://johannesbrodwall.com/feed/" htmlUrl="http://johannesbrodwall.com/"/>
<outline type="rss" text="John Reilly" title="John Reilly" xmlUrl="https://blog.johnnyreilly.com/feeds/posts/default" htmlUrl="https://blog.johnnyreilly.com/"/>
<outline type="rss" text="John Resig" title="John Resig" xmlUrl="https://feeds.feedburner.com/JohnResig" htmlUrl="https://johnresig.com/category/blog/"/>
<outline type="rss" text="John Scott's Blog" title="John Scott's Blog" xmlUrl="https://jjrscott.com/atom.xml" htmlUrl="https://jjrscott.com/"/>
<outline type="rss" text="John Wittenauer" title="John Wittenauer" xmlUrl="https://www.johnwittenauer.net/rss/" htmlUrl="http://www.johnwittenauer.net/"/>
<outline type="rss" text="John Yorke's Blog" title="John Yorke's Blog" xmlUrl="https://medium.com/feed/johnyorke/tagged/swift" htmlUrl="https://johnyorke.me/tagged/swift"/>
<outline type="rss" text="Johng | Golang " title="Johng | Golang " xmlUrl="https://johng.cn/feed/" htmlUrl="https://johng.cn/category/programming/golang/"/>
<outline type="rss" text="Jolly Good Code" title="Jolly Good Code" xmlUrl="https://jollygoodcode.github.io/atom.xml" htmlUrl="https://jollygoodcode.github.io/"/>
<outline type="rss" text="Jon Kensy" title="Jon Kensy" xmlUrl="https://www.jonkensy.com/feed/" htmlUrl="http://www.jonkensy.com/"/>
<outline type="rss" text="Jon Kuperman" title="Jon Kuperman" xmlUrl="https://jonkuperman.com/feed/feed.xml" htmlUrl="https://jonkuperman.com/"/>
<outline type="rss" text="Jon Skeet" title="Jon Skeet" xmlUrl="https://codeblog.jonskeet.uk/feed/" htmlUrl="https://codeblog.jonskeet.uk/"/>
<outline type="rss" text="Jonas Plum" title="Jonas Plum" xmlUrl="https://blog.cugu.eu/index.xml" htmlUrl="https://blog.cugu.eu/"/>
<outline type="rss" text="Jonathan Cutrell" title="Jonathan Cutrell" xmlUrl="https://jonathancutrell.com/rss.xml" htmlUrl="https://jonathancutrell.com/"/>
<outline type="rss" text="Jonathan Dekhtiar" title="Jonathan Dekhtiar" xmlUrl="https://www.born2data.com/feed_atom.xml" htmlUrl="http://www.born2data.com/"/>
<outline type="rss" text="Jonathan Snook" title="Jonathan Snook" xmlUrl="https://snook.ca/jonathan/index.rdf" htmlUrl="https://snook.ca/"/>
<outline type="rss" text="Jonathan Tarud - Tech. Business. Design." title="Jonathan Tarud - Tech. Business. Design." xmlUrl="http://feed.jonathant.com/" htmlUrl="https://www.jonathant.com/"/>
<outline type="rss" text="jonathanbossenger.com" title="jonathanbossenger.com" xmlUrl="https://jonathanbossenger.com/feed/" htmlUrl="https://jonathanbossenger.com/"/>
<outline type="rss" text="jonhilton.net" title="jonhilton.net" xmlUrl="https://jonhilton.net/index.xml" htmlUrl="https://jonhilton.net/"/>
<outline type="rss" text="JoomlaGeek's Blog" title="JoomlaGeek's Blog" xmlUrl="https://www.joomlageek.com/blog?format=feed&amp;type=rss" htmlUrl="https://www.joomlageek.com/blog"/>
<outline type="rss" text="jordanm.co.uk" title="jordanm.co.uk" xmlUrl="https://jordanm.co.uk/feed" htmlUrl="https://jordanm.co.uk/"/>