-
Notifications
You must be signed in to change notification settings - Fork 2
/
file.html
3963 lines (2491 loc) · 96.4 KB
/
file.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="client-nojs" lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<title>Planet CDOT Feed List - CDOT Wiki</title>
<script>
document.documentElement.className = document.documentElement.className.replace(
/(^|\s)client-nojs(\s|$)/,
'$1client-js$2'
);
</script>
<script>
(window.RLQ = window.RLQ || []).push(function () {
mw.config.set({
wgCanonicalNamespace: '',
wgCanonicalSpecialPageName: false,
wgNamespaceNumber: 0,
wgPageName: 'Planet_CDOT_Feed_List',
wgTitle: 'Planet CDOT Feed List',
wgCurRevisionId: 148304,
wgRevisionId: 148304,
wgArticleId: 2447,
wgIsArticle: true,
wgIsRedirect: false,
wgAction: 'view',
wgUserName: null,
wgUserGroups: ['*'],
wgCategories: [],
wgBreakFrames: false,
wgPageContentLanguage: 'en',
wgPageContentModel: 'wikitext',
wgSeparatorTransformTable: ['', ''],
wgDigitTransformTable: ['', ''],
wgDefaultDateFormat: 'dmy',
wgMonthNames: [
'',
'January',
'February',
'March',
'April',
'May',
'June',
'July',
'August',
'September',
'October',
'November',
'December',
],
wgMonthNamesShort: [
'',
'Jan',
'Feb',
'Mar',
'Apr',
'May',
'Jun',
'Jul',
'Aug',
'Sep',
'Oct',
'Nov',
'Dec',
],
wgRelevantPageName: 'Planet_CDOT_Feed_List',
wgRelevantArticleId: 2447,
wgRequestId: 'X2zl8a41lzedm0zjN-WNgAAAAAs',
wgIsProbablyEditable: false,
wgRelevantPageIsProbablyEditable: false,
wgRestrictionEdit: [],
wgRestrictionMove: [],
wgPreferredVariant: 'en',
wgMFExpandAllSectionsUserOption: false,
wgMFDisplayWikibaseDescriptions: {
search: false,
nearby: false,
watchlist: false,
tagline: false,
},
});
mw.loader.state({
'site.styles': 'ready',
noscript: 'ready',
'user.styles': 'ready',
user: 'ready',
'user.options': 'loading',
'user.tokens': 'loading',
'mediawiki.legacy.shared': 'ready',
'mediawiki.legacy.commonPrint': 'ready',
'mediawiki.sectionAnchor': 'ready',
'mediawiki.skinning.interface': 'ready',
'skins.vector.styles': 'ready',
});
mw.loader.implement('user.options@0bhc5ha', function ($, jQuery, require, module) {
mw.user.options.set([]);
});
mw.loader.implement('user.tokens@1criv6w', function ($, jQuery, require, module) {
mw.user.tokens.set({
editToken: '+\\',
patrolToken: '+\\',
watchToken: '+\\',
csrfToken: '+\\',
}); /*@nomin*/
});
mw.loader.load([
'site',
'mediawiki.page.startup',
'mediawiki.user',
'mediawiki.hidpi',
'mediawiki.page.ready',
'mediawiki.toc',
'mediawiki.searchSuggest',
'skins.vector.js',
]);
});
</script>
<link
rel="stylesheet"
href="/w/load.php?debug=false&lang=en&modules=mediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.sectionAnchor%7Cmediawiki.skinning.interface%7Cskins.vector.styles&only=styles&skin=vector"
/>
<script
async=""
src="/w/load.php?debug=false&lang=en&modules=startup&only=scripts&skin=vector"
></script>
<meta name="ResourceLoaderDynamicStyles" content="" />
<link
rel="stylesheet"
href="/w/load.php?debug=false&lang=en&modules=site.styles&only=styles&skin=vector"
/>
<meta name="generator" content="MediaWiki 1.30.0" />
<link rel="shortcut icon" href="/favicon.ico" />
<link
rel="search"
type="application/opensearchdescription+xml"
href="/w/opensearch_desc.php"
title="CDOT Wiki (en)"
/>
<link
rel="EditURI"
type="application/rsd+xml"
href="https://wiki.cdot.senecacollege.ca/w/api.php?action=rsd"
/>
<link
rel="alternate"
type="application/atom+xml"
title="CDOT Wiki Atom feed"
href="/w/index.php?title=Special:RecentChanges&feed=atom"
/>
<!--[if lt IE 9]><script src="/resources/lib/html5shiv/html5shiv.min.js"></script><![endif]-->
</head>
<body
class="mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-Planet_CDOT_Feed_List rootpage-Planet_CDOT_Feed_List skin-vector action-view"
>
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body" role="main">
<a id="top"></a>
<div class="mw-indicators mw-body-content"></div>
<h1 id="firstHeading" class="firstHeading" lang="en">Planet CDOT Feed List</h1>
<div id="bodyContent" class="mw-body-content">
<div id="siteSub" class="noprint">From CDOT Wiki</div>
<div id="contentSub"></div>
<div id="jump-to-nav" class="mw-jump">
Jump to: <a href="#mw-head">navigation</a>, <a href="#p-search">search</a>
</div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
<div class="mw-parser-output">
<div id="toc" class="toc">
<div class="toctitle"><h2>Contents</h2></div>
<ul>
<li class="toclevel-1 tocsection-1">
<a href="#Introduction"
><span class="tocnumber">1</span> <span class="toctext">Introduction</span></a
>
</li>
<li class="toclevel-1 tocsection-2">
<a href="#IMPORTANT_NOTICE"
><span class="tocnumber">2</span>
<span class="toctext">IMPORTANT NOTICE</span></a
>
</li>
<li class="toclevel-1 tocsection-3">
<a href="#Requirements"
><span class="tocnumber">3</span> <span class="toctext">Requirements</span></a
>
</li>
<li class="toclevel-1 tocsection-4">
<a href="#Using_a_Tagged.2FCategory_Feed"
><span class="tocnumber">4</span>
<span class="toctext">Using a Tagged/Category Feed</span></a
>
</li>
<li class="toclevel-1 tocsection-5">
<a href="#Feed_Info_Format"
><span class="tocnumber">5</span>
<span class="toctext">Feed Info Format</span></a
>
</li>
<li class="toclevel-1 tocsection-6">
<a href="#Feeds"
><span class="tocnumber">6</span> <span class="toctext">Feeds</span></a
>
</li>
</ul>
</div>
<h1><span class="mw-headline" id="Introduction">Introduction</span></h1>
<p>
Seneca students and faculty working on open source related projects and research, as
well as some faculty, students, and researchers from other institutions, use
<a
rel="nofollow"
class="external text"
href="http://zenit.senecac.on.ca/~chris.tyler/planet/"
>Planet CDOT</a
>
to aggregate their blogs. This page contains the information about who is blogging in
<a rel="nofollow" class="external text" href="http://www.planetplanet.org/"
>Planet Feed Reader format</a
>
and serves as the feed configuration for the planet.
</p>
<p>
If you do not have an existing blog, you can open a free account at
<a rel="nofollow" class="external text" href="http://wordpress.com/">Wordpress.com</a>
or
<a rel="nofollow" class="external text" href="https://www.blogger.com/"
>Blogger.com</a
>
or you can set up your own blog software such as
<a rel="nofollow" class="external text" href="http://www.s9y.org">Serendipity</a>.
</p>
<p>
<b>Note:</b> Additions to the feed list will not take effect until they are merged
into the Planet configuration, which is an automatic process scheduled at regular
intervals. If you add a feed and do not see it picked up in the Planet within three
hours, please check your feed entry carefully and then contact
<a href="/wiki/User:Chris_Tyler" title="User:Chris Tyler">Chris Tyler</a> .
</p>
<h1><span class="mw-headline" id="IMPORTANT_NOTICE">IMPORTANT NOTICE</span></h1>
<div
class="messagebox"
style="
background-color: #f9f6b7;
border: 1px solid #c4c295;
color: black;
padding: 5px;
margin: 1ex 0;
min-height: 35px;
padding-left: 45px;
"
>
<div style="float: left; margin-left: -40px">
<a href="/wiki/File:Stop_(medium_size).png" class="image"
><img
alt="Stop (medium size).png"
src="/w/imgs/thumb/Stop_%28medium_size%29.png/35px-Stop_%28medium_size%29.png"
width="35"
height="35"
srcset="/w/imgs/Stop_%28medium_size%29.png 1.5x"
/></a>
</div>
<div>
<b>The Internet has a Long Memory / Posts may be Permanent!</b><br />Blogs which are
included in the Planet CDOT Feed List will have their content aggregated into Planet
CDOT. They will also be mentioned (automatically) on the Planet CDOT Twitter
account, and may also be picked up by other RSS feed aggregators, seach engines, and
caches. It will be difficult or impossible to delete all mentions of a post at a
later date. Be aware of the long memory of the Internet when posting!
</div>
</div>
<h1><span class="mw-headline" id="Requirements">Requirements</span></h1>
<ul>
<li>
Blog postings fed to the planet must conform to the
<a href="/wiki/Blog_Guidelines" title="Blog Guidelines">Blog Guidelines</a>.
</li>
<li>
Feeds that are inactive for a significant period of time may get deleted from this
list.
</li>
</ul>
<h1>
<span class="mw-headline" id="Using_a_Tagged.2FCategory_Feed"
>Using a Tagged/Category Feed</span
>
</h1>
<p>
A tagged or category feed includes only articles that are tagged with particular
keywords or placed in a particular topic category. This can be useful for sending only
selected posts to the planet.
</p>
<p>
These are the URL formats for tagged or category feeds on popular blogging
services/software:
</p>
<ul>
<li>
<a rel="nofollow" class="external text" href="http://www.wordpress.com">Wordpress</a
>:
<code
>[http://<i>blog-user-name</i>.wordpress.com/category/<i>category-name</i>/feed/]</code
>
</li>
<li>
<a rel="nofollow" class="external text" href="http://blogger.com">Blogger</a>:
<code
>[http://<i>blog-user-name</i>.blogspot.com/feeds/posts/default/-/<i>categorylabel</i>?alt=rss]</code
>
</li>
<li>
<a rel="nofollow" class="external text" href="http://s9y.org">Serendipity</a>:
<code
>[http://<i>blog-main-url</i>/index.php?/feeds/categories/<i>categorynumber</i>-<i>categoryname</i>]</code
>
</li>
</ul>
<h1><span class="mw-headline" id="Feed_Info_Format">Feed Info Format</span></h1>
<p>
You can add your blog's
<a
rel="nofollow"
class="external text"
href="http://en.wikipedia.org/wiki/RSS_(file_format)"
>RSS feed</a
>
at the end of the list below by specifying the following:
</p>
<ol>
<li>
The URL to your blog's open source Atom or
<a
rel="nofollow"
class="external text"
href="http://en.wikipedia.org/wiki/RSS_(file_format)"
>RSS Feed</a
>
(i.e., a category or tag). NOTE: Please do not put the URL to your blog -- use the
URL for your feed. Please do not use the feed for your entire blog (unless your blog
contains only open source-related postings). We only want open source related
content.
</li>
<li>Your name as you want it to appear in the list of names for the planet</li>
<li>
Optionally, a URL to a
<a
rel="nofollow"
class="external text"
href="http://en.wikipedia.org/wiki/Hackergotchi"
>hackergotchi</a
>
(<a
rel="nofollow"
class="external text"
href="http://wouterverhelst.livejournal.com/21322.html"
>how to</a
>). Your picture should be an 65x85 PNG with a transparent background.
</li>
</ol>
<h1><span class="mw-headline" id="Feeds">Feeds</span></h1>
<pre>
################# Failing Feeds Commented Out [Start] #################
#Feed excluded due to getaddrinfo ENOTFOUND s-aleinikov.blog.ca s-aleinikov.blog.ca:80
#[http://s-aleinikov.blog.ca/feed/atom/posts/]
#name=Sergey Aleinikov
#Feed excluded due to getaddrinfo ENOTFOUND ejtorre.blog.ca ejtorre.blog.ca:80
#[http://ejtorre.blog.ca/feed/rss2/posts/]
#name=Eugene Torre
#Feed excluded due to getaddrinfo ENOTFOUND rickeyre.ca rickeyre.ca:80
#[http://rickeyre.ca/open-source-feed.xml]
#name=Rick Eyre
#Feed excluded due to Request failed with status code 404
#[http://tea.cesaroliveira.net/archives/tag/seneca/feed]
#name=Cesar Oliveira
#Feed excluded due to getaddrinfo ENOTFOUND blog.marcussaad.com blog.marcussaad.com:80
#[http://blog.marcussaad.com/?feed=rss2&lang=en]
#name=Marcus Saad
#Feed excluded due to getaddrinfo ENOTFOUND matthewtorrance.com matthewtorrance.com:80
#[http://matthewtorrance.com/category/osd/feed/]
#name=Matthew Torrance
#Feed excluded due to getaddrinfo ENOTFOUND hesam-chobanlou.com hesam-chobanlou.com:80
#[http://hesam-chobanlou.com/feed/atom.php]
#name=Hesam Chobanlou
#Feed excluded due to Request failed with status code 404
#[http://zadkielm.blogspot.com/feeds/posts/default/-/open%20source]
#name=Ezadkiel Marbella
#Feed excluded due to Request failed with status code 404
#[http://travisrawn.blogspot.com/feeds/posts/default]
#name=Travis Rawn
#Feed excluded due to Request failed with status code 404
#[http://dev-blog.zerogin.com/category/opensource/feed/]
#name=Tom Wisniewski (t0mmyw)
#Feed excluded due to Request failed with status code 404
#[http://peter.sykokillers.com/category/open-source/feed/]
#name=Peter Chan
#Feed excluded due to getaddrinfo ENOTFOUND http http:80
#[http://http://stephenruthland.wordpress.com/feed/]
#name=Stephen Ruthland
#Feed excluded due to getaddrinfo ENOTFOUND main.justinflowers.ca main.justinflowers.ca:80
#[http://main.justinflowers.ca/web/wordpress/?cat=2&feed=rss2]
#name=Justin Flowers
#Feed excluded due to getaddrinfo ENOTFOUND http http:80
#[http://http://hhashimi3.wordpress.com/feed/]
#name=Hamid Hashimi
#Feed excluded due to getaddrinfo ENOTFOUND dps909.defilippis.ca dps909.defilippis.ca:443
#[https://dps909.defilippis.ca/index.php/feed/]
#name=Steven De Filippis
[https://jadach1201231188.wordpress.com/feed/]
name=Jacob Adach
#Feed excluded due to Request failed with status code 404
#[http://farhadnorouzi.blogspot.com/feeds/posts/default]
#name=Farhad Norouzi
#Feed excluded due to Request failed with status code 403
#[http://blog.leapproject.ca/feed/]
#name=LEAP Project
#Feed excluded due to Request failed with status code 404
#[http://techtalkwithaaron.blogspot.com/feeds/posts/default/Open%20Source]
#name=Aaron Scott
#Feed excluded due to Request failed with status code 404
#[http://msousa3.blogspot.com/feeds/posts/default]
#name=Michael Sousa
#Feed excluded due to Request failed with status code 404
#[http://sjhan5.blogspot.ca/feeds/posts/default/]
#name=Suk-Joong Han
#Feed excluded due to Request failed with status code 404
#[http://aaronrey15.blogspot.com/feeds/posts/default/-/Seneca]
#name=Aaron Chan
#Feed excluded due to Request failed with status code 503
#[http://www.danepstein.ca/category/open-source/feed]
#name=Dan Epstein
#Feed excluded due to Request failed with status code 404
#[http://amartinencosbr600.blogspot.com/feeds/posts/default]
#name=Andrei Martinenco
#Feed excluded due to Request failed with status code 404
#[http://sbr600.tumblr.com/rss]
#name=Daniel Delidjakov
#Feed excluded due to Request failed with status code 404
#[http://harjinderv.tumblr.com/tagged/Open_Source/rss]
#name=Harjinder Virdi
#Feed excluded due to Request failed with status code 410
#[http://www.bpcoding.com/blog/category/spo/]
#name=Bruno Pereira
#Feed excluded due to Hostname/IP does not match certificate's altnames: Host: assmith2017_.blogspot.ca. is not in the cert's altnames: DNS:*.googleusercontent.com, DNS:*.apps.googleusercontent.com, DNS:*.appspot.com.storage.googleapis.com, DNS:*.audiobook-additional-material-staging.googleusercontent.com, DNS:*.audiobook-additional-material.googleusercontent.com, DNS:*.blogspot.com, DNS:*.bp.blogspot.com, DNS:*.commondatastorage.googleapis.com, DNS:*.content-storage-download.googleapis.com, DNS:*.content-storage-upload.googleapis.com, DNS:*.content-storage.googleapis.com, DNS:*.doubleclickusercontent.com, DNS:*.ggpht.com, DNS:*.googledrive.com, DNS:*.googlesyndication.com, DNS:*.googleweblight.com, DNS:*.local.amp4mail.googleusercontent.com, DNS:*.playground-internal.amp4mail.googleusercontent.com, DNS:*.playground.amp4mail.googleusercontent.com, DNS:*.prod.amp4mail.googleusercontent.com, DNS:*.safenup.googleusercontent.com, DNS:*.sandbox.googleusercontent.com, DNS:*.storage-download.googleapis.com, DNS:*.storage-upload.googleapis.com, DNS:*.storage.googleapis.com, DNS:*.storage.select.googleapis.com, DNS:*.translate.goog, DNS:blogspot.com, DNS:bp.blogspot.com, DNS:commondatastorage.googleapis.com, DNS:doubleclickusercontent.com, DNS:ggpht.com, DNS:googledrive.com, DNS:googleusercontent.com, DNS:googleweblight.com, DNS:manifest.lh3.googleusercontent.com, DNS:manifest.lh3.photos.google.com, DNS:static.panoramio.com.storage.googleapis.com, DNS:storage.googleapis.com, DNS:storage.select.googleapis.com, DNS:translate.goog, DNS:unfiltered.news
#[https://assmith2017_.blogspot.ca/feeds/posts/default]
#name=Azusa Shimazaki
#Feed excluded due to unable to verify the first certificate
#[http://hcoelho.com/blog/feed]
#name=Henrique Coelho
#Feed excluded due to Request failed with status code 404
#[https://jalemansite.wordpress.com/category/feed/]
#name=Johann Aleman
#Feed excluded due to Request failed with status code 410
#[http://sinomai.wordpress.com/category/planet-cdot/feed/]
#name=Matt Jang
#Feed excluded due to Request failed with status code 410
#[http://hzahoori.wordpress.com/category/open-source/feed]
#name=Habib Zahoori
#Feed excluded due to Request failed with status code 404
#[http://vprasanth.com/blog/archives/category/spo600-2/feed]
#name=Prasanth Vaaheeswaran
#Feed excluded due to Request failed with status code 410
#[http://rlawrence5.wordpress.com/feed/]
#name=Ryan Lawrence
#Feed excluded due to Request failed with status code 404
#[https://apspo600.blogspot.com/feed/posts/default/]
#name=Atilla Puskas
#Feed excluded due to Request failed with status code 410
#[https://bapetov.wordpress.com/category/opensourcedps909/feed]
#name=Bakytzhan Apetov
#Feed excluded due to Request failed with status code 410
#[http://adsantokhi.wordpress.com/category/open-source/feed]
#name=Anil Santokhi
#Feed excluded due to Request failed with status code 404
#[http://rawkamatic.github.io/opensourcefeed]
#name=Hunter Jansen
#Feed excluded due to Request failed with status code 404
#[http://ayufidin.blogspot.ca/feeds/posts/default]
#name=Alon Yufidin
#Feed excluded due to Request failed with status code 404
#[http://kevinpaiva.com/category/spo600/feed/]
#name=Kevin Manuel Paiva
#Feed excluded due to Request failed with status code 410
#[http://dboddie46.wordpress.com/category/SBR600A/feed/]
#name=Derrick Boddie
#Feed excluded due to Request failed with status code 404
#[http://liandrew.ca/feed.opensource.xml]
#name=Andrew Li
#Feed excluded due to Client network socket disconnected before secure TLS connection was established
#[https://fahadkarar1.wordpress.com/category/spo600/feed/]
#name=Fahad Karar
#Feed excluded due to Client network socket disconnected before secure TLS connection was established
#[http://jgoguette.wordpress.com/category/open-source/feed]
#name=Jerry Goguette
#Feed excluded due to connect ECONNREFUSED 104.200.30.7:80
#[http://dokidoki.duckdns.org/tag/polished/rss/]
#name=Kenny Nguyen
#Feed excluded due to Client network socket disconnected before secure TLS connection was established
#[http://tjduavis.wordpress.com/category/open-source/feed/]
#name=Timothy Duavis
#Feed excluded due to Client network socket disconnected before secure TLS connection was established
#[http://selmys.wordpress.com/category/opensource/feed]
#name=John Selmys
#Feed excluded due to Request failed with status code 410
#[http://cldenobrega.wordpress.com/category/open-source/feed/]
#name=Crystal de Nobrega (cldenobrega)
#Feed excluded due to Request failed with status code 404
#[https://www.jielselmani.me/blog?category=Open+Source&format=rss]
#name=Jiel Selmani
#Feed excluded due to Request failed with status code 410
#[https://naperkovskiy.wordpress.com/feed/]
#name=Igor Naperkovskiy
#Feed excluded due to timeout of 10000ms exceeded
#[http://belligero.org/index.php?option=com_content&view=section&id=1&format=feed&type=rss]
#name=Jason Tarka
#Feed excluded due to timeout of 10000ms exceeded
#[http://stani.ca/?feed=rss2&cat=3]
#name=Robert Stanica
################# Failing Feeds Commented Out [End] #################
##### pre-2020-start #######
[https://danielsirkovich.blogspot.com/feeds/posts/default?alt=rss]
name=Daniel Sirkovich
[https://medium.com/@akakakak668]
name=Ryeoeul Ko
[https://abdulosd.blogspot.com/feeds/posts/default?alt=rss]
name=Abdul Abdi
[http://palak-chawla.blogspot.com/feeds/posts/default?alt=rss]
name=Palak Chawla
[http://zjjiang2.blogspot.com/feeds/posts/default/-/categorylabel?alt=rss]
name=ZongJin (Jason) Jiang
[https://dev.to/feed/phast184]
name=Thanh Tien Phat Nguyen
[https://hyunjijanelee.blogspot.com/feeds/posts/default/-/Open-Source?alt=rss]
name=Hyunji Lee
[https://osdnathanp.wordpress.com/feed/]
name=Nathan Pang
[https://medium.com/feed/@random4900]
name=Alexi Joseph
[https://medium.com/feed/@danishali_mussa]
name=Danish Mussa
[https://www.abuzayed.ca/my-blog/osd600/category/open-source/feed/]
name=Abu Zayed Kazi
[https://joelazwaros.blogspot.com/feeds/posts/default?alt=rss]
name=Joel Azwar
[https://mintaedotblog.wordpress.com/category/open-source/feed/]
name=Mintae Kim
[https://dev.to/feed/fluentinstroll]
name=Raymond Rambo
[http://weihuangosd.blogspot.com/feeds/posts/default/-/categorylabel?alt=rss]
name=Wei Huang
[https://sostellajung.blogspot.com/feeds/posts/default/-/openSource?alt=rss]
name=Stella Jung
[https://nesabyte.wordpress.com/feed/]
name=Nesa Bertanico
[https://tjstavern24697521.wordpress.com/feed]
name=TJ LeBlanc
[https://xingpancanada.blogspot.com/feeds/posts/default/-/open%20source?alt=rss]
name=Xing Pan
[https://dev.to/feed/slaterslater/]
name=Anthony Slater
[https://medium.com/feed/@roycedev]
name=Royce Ayroso-Ong
[https://dev.to/feed/yuanleemidori]
name=Yuan-Hsi Lee
[https://medium.com/feed/@moho472]
name=Mohammed Ahmed
[https://badalsarkar.ca/blog-opensource/feed.xml]
name=Badal Sarkar
[https://dev.to/feed/bpan2]
name=Bing Pan
[https://ryudeveloper.wordpress.com/category/open-source/feed/]
name=Roger Yu
[https://abhaseen.github.io/feed.xml]
name=Andre Bhaseen
[https://kmchan12.wordpress.com/category/open-source/feed/]
name=Kam Chan
[https://dev.to/feed/isabellaliu77/#opensource]
name=Isabella Liu
[http://gonewiththewind1982.blogspot.com/feeds/posts/default/-/Open%20Source?alt=rss]
name=Leon Li
[http://markham2020.blogspot.com/feeds/posts/default/-/open%20source?alt=rss]
name=Hongbin Li
[https://dev.to/feed/isabellaliu77]
name=Isabella Liu
[https://medium.com/feed/@rabautista]
name=Ruby Anne Bautista
[https://dev.to/feed/niazulhaque]
name=Mohammed Niaz ul Haque
[https://jongwon-jang.blogspot.com/feeds/posts/default?alt=rss]
name=Jongwon Jang
[https://jyangblogs.wordpress.com/category/open-source/feed/]
name=Jie Yang
[https://dev.to/feed/mljbrackett]
name=Michael Brackett
[https://fgaervgedwg.blogspot.com/feeds/posts/default?alt=rss]
name=Tonghuyn Yi
[https://dev.to/feed/hyperthd]
name=Abdulbasid Guled
[https://dev.to/feed/strawberries73]
name=Jennifer Croft
[https://medium.com/feed/@safrin2]
name=Sanjida Afrin
[https://dev.to/feed/zg3d]
name=Devansh Shah
[https://jliu396.blogspot.com/feeds/posts/default/-/Open%20Source?alt=rss]
name=Junyong Liu
[http://mamadou--diallo.blogspot.com/feeds/posts/default]
name=Mamadou Diallo
[https://muskanshinh.wordpress.com/category/open-source/feed/]
name=Muskan Shinh
[https://dev.to/feed/klee214]
name=Kimin Lee
[https://medium.com/feed/@ahugh2000]
name=Alexander Hugh
[https://muioverflow.wordpress.com/feed/]
name=Jasper Mui
[https://os-discovery.blogspot.com/feeds/posts/default]
name=Matthew Ross
[https://medium.com/feed/@tonyknvu]
name=Tony Vu
[https://dev.to/feed/chrispinkney]
name=Chris Pinkney
[https://1jz.tech.blog/feed]
name=Philip Golovin
[https://medium.com/feed/@egrinberg]
name=Ekaterina Grinberg
[https://matthew-k-stewardson.blogspot.com/feeds/posts/default?alt=rss]
name=Matthew Stewardson
[https://dev.to/feed/yzwdroid]
name=Zongwei Yang
[https://osd600.blogspot.com/feeds/posts/default/]
name=Paul Sin
[https://x7z.net/feed]
name=Minh Huy Nguyen
[https://medium.com/feed/@pedrofonsecadev]
name=Pedro Fonseca
[https://plamenvelkovtech.blogspot.com/feeds/posts/default]
name=Plamen Velkov
[https://ekim105.wordpress.com/category/open-source/feed/]
name=Eunbee Kim
[http://osd600-joey-assal.blogspot.com/feeds/posts/default/-/OpenSource?alt=rss]
name=Joseph (Joey) Assal
##### pre-2020-end #######
[https://neilong31.wordpress.com/feed/]
name=Neil Ong
[http://ajhooper.blogspot.com/feeds/posts/default]
name=Aaron Hooper
[http://ljubomirgorscak.blogspot.com/feeds/posts/default]
name=Ljubomir Gorscak
[http://nashutzu.blogspot.com/feeds/posts/default]
name=George Popescu (GeorgeP)
[http://nadavid.blogspot.com/feeds/posts/default]
name=Neil David
[http://gkrilov.blogspot.com/feeds/posts/default]
name=Greg Krilov
[http://KrazyDre.blogspot.com/feeds/posts/default?alt=rss]
name=Andrei Artamonov
[http://dcucereavii.blogspot.com/feeds/posts/default?alt=rss]
name=Diana Cucereavii
[http://anastasias-myblog.blogspot.com/feeds/posts/default/-/OOP344]
name=Anastasia Semionova
[http://jdbcdps.blogspot.com/feeds/posts/default]
name=Julia Vasserman
[https://npolugari.wordpress.com/feed/]
name=Nagashashank
[http://sp0009.blogspot.ca/feeds/posts/default/-/spo600]
name=ShlokKumar Purani
[http://rkyoop344.blogspot.com/feeds/posts/default/]
name=Keyan Ren
[http://docsage.blogspot.com/feeds/posts/default/-/OOP344]
name=Eric Dell
[http://processingjs.org/blog/?feed=rss2]
name=Processing.js Blog
[http://shunyao-cpa.blogspot.com/feeds/posts/default]
name=shun yao zhang
[https://ebraublog.wordpress.com/category/CDOT/feed/]
name=Eric Brauer
[http://feeds.feedburner.com/lsblakk_open-source]
name=Lukas Blakk (lsblakk)
[http://88mishok.blogspot.com/feeds/posts/default]
name=Francois Des Jarlais
[http://sidsbr.blogspot.com/feeds/posts/default?alt=rss]
name=Sadiki Latty
[http://brookspatola.blogspot.ca/feeds/posts/default]
name=Brooks Patola
[https://sgupta44blog.wordpress.com/tag/open-source/feed/]
name=Shivam Gupta
[http://jabhad.blogspot.com/feeds/posts/default?alt=rss]
name=Mohamed Aden
[https://medium.com/feed/@aqeelparpia/]
name=Aqeel Parpia
[http://lchen97.blogspot.com/feeds/posts/default]
name=Chris Chen
[https://ppatel221.wordpress.com/category/open-source/feed/]
name=Parthkumar Patel
[https://gblogs2017.wordpress.com/category/open-source/feed/]
name=Gaurav Verma
[https://hfsimsspo.blogspot.com/feeds/posts/default/-/SPO600]
name=Harley Sims
[http://acfunktron.blogspot.com/feeds/posts/default]
name=Anton Chan
[http://oop344ylseow.blogspot.com/feeds/posts/default]
name=Yip Lim Seow
[http://oyoung4.blogspot.com/feeds/posts/default]
name=Oliver Young
[http://codingblub.blogspot.com/search/label/Open%20Source]
name=Oluwaseyi Aketepe
[http://senecajon.blogspot.com/feeds/posts/default]
name=Jonathan Cheung (jcheung23)
[https://stephentopensource.wordpress.com/category/osd600/feed/]
name=Stephen Truong
[http://ttsuji1.blogspot.com/feeds/posts/default]
name=Trevor Tsuji
[http://feihong-xiong.blogspot.com/feeds/posts/default]
name=Feihong Xiong
[http://sudodamha.blogspot.com/feeds/posts/default]
name=Ahmad Taychouri
[https://medium.com/feed/haorc/tagged/opensource]
name=Hao Chen
[http://drozhkov.blogspot.com/feeds/posts/default/-/seneca]
name=Dmitriy Rozhkov
[http://robplusplus.blogspot.com/feeds/posts/default/-/OpenSource]
name=Robert Dittrich
[http://pokerface3.blogspot.com/feeds/posts/default/-/SBR?alt=rss]
name=David Cabral
[https://medium.com/feed/@jrkong.hfd]
name=Alex Kong
[http://sbr600cabbott.blogspot.com/feeds/posts/default]
name=Chris Abbott
[http://opp344-yxue.blogspot.com/feeds/posts/default]
name=Yong Xue
[http://shivaris.blogspot.com/feeds/posts/default/-/OSD600]
name=Hien Huynh
[http://bharmidy.blogspot.ca/feeds/posts/default/-/open%20source]
name=Bryce Harmidy
[http://qwang135.wordpress.com/category/open_source/feed/]
name=Qingwen Wang
[https://jnguyen36blog.wordpress.com/category/spo600/feed/]
name=John Nguyen