-
Notifications
You must be signed in to change notification settings - Fork 18
/
google-reader-subscriptions.xml
1343 lines (1343 loc) · 99.8 KB
/
google-reader-subscriptions.xml
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="1.0">
<head>
<title>torrez subscriptions in Google Reader</title>
</head>
<body>
<outline text="50 Watts" title="50 Watts" type="rss"
xmlUrl="http://feeds.feedburner.com/50Watts" htmlUrl="http://50watts.com"/>
<outline text="Andre's Notes" title="Andre's Notes" type="rss"
xmlUrl="http://notes.torrez.org/atom.xml" htmlUrl="http://notes.torrez.org/"/>
<outline text="Blame It On The Voices"
title="Blame It On The Voices" type="rss"
xmlUrl="http://feeds.feedburner.com/BlameItOnTheVoices" htmlUrl="http://www.blameitonthevoices.com/"/>
<outline text="blog.subsquare.com" title="blog.subsquare.com"
type="rss"
xmlUrl="http://feeds.feedburner.com/subsquareblog" htmlUrl="http://blog.subsquare.com"/>
<outline
text="Brad Frost Web » Brad Frost Web | Web Development, Design, Music and Art"
title="Brad Frost Web » Brad Frost Web | Web Development, Design, Music and Art"
type="rss"
xmlUrl="http://feeds.feedburner.com/brad-frosts-blog" htmlUrl="http://bradfrostweb.com"/>
<outline text="decommodify" title="decommodify" type="rss"
xmlUrl="http://decommodify.com/rss.xml" htmlUrl="http://decommodify.com"/>
<outline text="Designboom - Weblog" title="Designboom - Weblog"
type="rss" xmlUrl="http://www.designboom.com/weblog/rss.php" htmlUrl="http://www.designboom.com"/>
<outline text="lomokev's tit bits" title="lomokev's tit bits"
type="rss" xmlUrl="http://lomokev.tumblr.com/rss" htmlUrl="http://lomokev.tumblr.com/"/>
<outline text="markpasc" title="markpasc" type="rss"
xmlUrl="http://markpasc.typepad.com/blog/atom.xml" htmlUrl="http://markpasc.typepad.com/blog/"/>
<outline text="PandoDaily" title="PandoDaily" type="rss"
xmlUrl="http://pandodaily.com/feed/" htmlUrl="http://pandodaily.com"/>
<outline text="The Great Leap Sideways"
title="The Great Leap Sideways" type="rss"
xmlUrl="http://www.thegreatleapsideways.com/?feed=rss2" htmlUrl="http://www.thegreatleapsideways.com"/>
<outline text="We’re Here To Make Friends"
title="We’re Here To Make Friends" type="rss"
xmlUrl="http://simpleform.com/rss" htmlUrl="http://simpleform.com/"/>
<outline title="Software" text="Software">
<outline text="Hog Bay Software" title="Hog Bay Software"
type="rss" xmlUrl="http://blog.hogbaysoftware.com/rss" htmlUrl="http://blog.hogbaysoftware.com/"/>
<outline text="Mac Menu Bars" title="Mac Menu Bars"
type="rss" xmlUrl="http://macmenubars.com/rss" htmlUrl="http://macmenubars.com/"/>
</outline>
<outline title="games" text="games">
<outline text="4 color rebellion" title="4 color rebellion"
type="rss"
xmlUrl="http://www.4colorrebellion.com/?feed=rss2" htmlUrl="http://www.4colorrebellion.com"/>
<outline text="Attract Mode" title="Attract Mode" type="rss"
xmlUrl="http://attractmo.de/syndication/rss" htmlUrl="http://attractmo.de/"/>
<outline text="auntie pixelante" title="auntie pixelante"
type="rss"
xmlUrl="http://www.auntiepixelante.com/?feed=rss2" htmlUrl="http://www.auntiepixelante.com"/>
<outline text="Bliterations" title="Bliterations" type="rss"
xmlUrl="http://www.bliterations.com/feed/" htmlUrl="http://www.bliterations.com"/>
<outline text="Braid" title="Braid" type="rss"
xmlUrl="http://braid-game.com/news/?feed=rss2" htmlUrl="http://braid-game.com/news"/>
<outline
text="CACTUSQUID.com // GAME DESIGN by JONATAN SÖDERSTRÖM"
title="CACTUSQUID.com // GAME DESIGN by JONATAN SÖDERSTRÖM"
type="rss"
xmlUrl="http://cactusquid.blogspot.com/feeds/posts/default" htmlUrl="http://cactusquid.blogspot.com/"/>
<outline text="Costume GET!" title="Costume GET!" type="rss"
xmlUrl="http://costumeget.blogspot.com/feeds/posts/default" htmlUrl="http://costumeget.blogspot.com/"/>
<outline text="Cryptic Sea" title="Cryptic Sea" type="rss"
xmlUrl="http://crypticsea.blogspot.com/feeds/posts/default" htmlUrl="http://crypticsea.blogspot.com/"/>
<outline text="Dead End Thrills" title="Dead End Thrills"
type="rss" xmlUrl="http://deadendthrills.com/feed/" htmlUrl="http://deadendthrills.com"/>
<outline text="Dream and Friends" title="Dream and Friends"
type="rss" xmlUrl="http://dreamandfriends.com/feed/" htmlUrl="http://dreamandfriends.com"/>
<outline text="Experimental Gameplay Project"
title="Experimental Gameplay Project" type="rss"
xmlUrl="http://experimentalgameplay.com/blog/feed/" htmlUrl="http://experimentalgameplay.com/blog"/>
<outline text="game girl advance" title="game girl advance"
type="rss"
xmlUrl="http://www.gamegirladvance.com/index.rdf" htmlUrl="http://www.gamegirladvance.com/"/>
<outline text="GameSetWatch" title="GameSetWatch" type="rss"
xmlUrl="http://www.gamesetwatch.com/index.xml" htmlUrl="http://www.gamesetwatch.com/"/>
<outline text="Geek on Stun" title="Geek on Stun" type="rss"
xmlUrl="http://www.geekonstun.com/index.xml" htmlUrl="http://www.geekonstun.com/"/>
<outline text="Grand Text Auto" title="Grand Text Auto"
type="rss"
xmlUrl="http://grandtextauto.gatech.edu/feed/rss2/" htmlUrl="http://grandtextauto.org"/>
<outline text="ICO Blog - The ICO Companion Blog"
title="ICO Blog - The ICO Companion Blog" type="rss"
xmlUrl="http://the-last-guardian.com/blog/feed/" htmlUrl="http://the-last-guardian.com/blog"/>
<outline text="IndieGames.com - The Weblog"
title="IndieGames.com - The Weblog" type="rss"
xmlUrl="http://www.indiegames.com/blog/atom.xml" htmlUrl="http://indiegames.com/"/>
<outline text="Infinite Lives" title="Infinite Lives"
type="rss" xmlUrl="http://www.infinitelives.net/feed/" htmlUrl="http://infinitelives.net"/>
<outline text="insert credit" title="insert credit"
type="rss" xmlUrl="http://insertcredit.com/feed/" htmlUrl="http://insertcredit.com"/>
<outline text="Lost Garden" title="Lost Garden" type="rss"
xmlUrl="http://lostgarden.com/atom.xml" htmlUrl="http://www.lostgarden.com/"/>
<outline text="LostLevels" title="LostLevels" type="rss"
xmlUrl="http://lostlevels.org/wordpress/?feed=rss2" htmlUrl="http://www.lostlevels.org/wordpress"/>
<outline text="Magweasel" title="Magweasel" type="rss"
xmlUrl="http://magweasel.com/feed/" htmlUrl="http://magweasel.com"/>
<outline text="OMG Nintendo Daily Update"
title="OMG Nintendo Daily Update" type="rss"
xmlUrl="http://feeds.feedburner.com/OmgNintendo" htmlUrl="http://omgnintendo.blogfaction.com"/>
<outline text="RetroGaming with racketboy"
title="RetroGaming with racketboy" type="rss"
xmlUrl="http://feeds.feedburner.com/RetrogamingWithRacketboy" htmlUrl="http://www.racketboy.com"/>
<outline text="Rock, Paper, Shotgun"
title="Rock, Paper, Shotgun" type="rss"
xmlUrl="http://www.rockpapershotgun.com/feed/" htmlUrl="http://www.rockpapershotgun.com"/>
<outline text="selectparks" title="selectparks" type="rss"
xmlUrl="http://www.selectparks.net/backend.php" htmlUrl="http://www.selectparks.net"/>
<outline text="Sexy Videogameland"
title="Sexy Videogameland" type="rss"
xmlUrl="http://sexyvideogameland.blogspot.com/feeds/posts/default" htmlUrl="http://sexyvideogameland.blogspot.com/"/>
<outline
text="Sony Defense Force - Playstation 3, Playstation 2, Playstation Portable, Playstation Network"
title="Sony Defense Force - Playstation 3, Playstation 2, Playstation Portable, Playstation Network"
type="rss"
xmlUrl="http://www.sonydefenseforce.com/?feed=rss2" htmlUrl="http://www.sonydefenseforce.com"/>
<outline text="Team ICO Gamers" title="Team ICO Gamers"
type="rss"
xmlUrl="http://teamicogamers.blogspot.com/feeds/posts/default" htmlUrl="http://teamicogamers.blogspot.com/"/>
<outline text="The Artful Gamer" title="The Artful Gamer"
type="rss" xmlUrl="http://www.artfulgamer.com/feed/" htmlUrl="http://www.artfulgamer.com"/>
<outline text="The Ludologist" title="The Ludologist"
type="rss"
xmlUrl="http://www.jesperjuul.net/ludologist/?feed=rss2" htmlUrl="http://www.jesperjuul.net/ludologist"/>
<outline text="the random Gnomes' random Lair"
title="the random Gnomes' random Lair" type="rss"
xmlUrl="http://feeds.feedburner.com/ARandomGnomesRandomLair" htmlUrl="http://www.gnomeslair.com/"/>
<outline text="the-inbetween.com [ceci n'est pas]"
title="the-inbetween.com [ceci n'est pas]" type="rss"
xmlUrl="http://the-inbetween.com/index.xml" htmlUrl="http://the-inbetween.com/"/>
<outline text="TIGSource" title="TIGSource" type="rss"
xmlUrl="http://www.tigsource.com/xml/rss" htmlUrl="http://www.tigsource.com"/>
<outline text="Tiny Cartridge" title="Tiny Cartridge"
type="rss"
xmlUrl="http://feeds.feedburner.com/TinyCartridge" htmlUrl="http://tinycartridge.com/"/>
<outline text="/var/log/sysblog" title="/var/log/sysblog"
type="rss"
xmlUrl="http://selectparks.net/~julian/rss.php" htmlUrl="http://selectparks.net/~julian/blog.php"/>
<outline text="Water Cooler Games"
title="Water Cooler Games" type="rss"
xmlUrl="http://www.watercoolergames.org/index.rdf" htmlUrl="http://www.watercoolergames.org/"/>
<outline text="Zero Punctuation" title="Zero Punctuation"
type="rss"
xmlUrl="http://pipes.yahoo.com/pipes/pipe.run?_id=dtTSWOh33BGuwcXbqGIyXQ&_render=rss" htmlUrl="http://pipes.yahoo.com/pipes/pipe.info?_id=dtTSWOh33BGuwcXbqGIyXQ"/>
<outline text="Zophar's Domain" title="Zophar's Domain"
type="rss" xmlUrl="http://www.zophar.net/index.rss" htmlUrl="http://www.zophar.net"/>
</outline>
<outline title="Cocoa" text="Cocoa">
<outline text="Cocoa Blogs - Articles"
title="Cocoa Blogs - Articles" type="rss"
xmlUrl="http://cocoablogs.com/feeds/articles-newest.xml" htmlUrl="http://cocoablogs.com/"/>
<outline text="Cocoa Is My Girlfriend"
title="Cocoa Is My Girlfriend" type="rss"
xmlUrl="http://www.cimgf.com/feed/" htmlUrl="http://www.cimgf.com"/>
<outline text="Cocoa Samurai" title="Cocoa Samurai"
type="rss"
xmlUrl="http://cocoasamurai.blogspot.com/feeds/posts/default" htmlUrl="http://cocoasamurai.blogspot.com/"/>
<outline text="Matt Legend Gemmell"
title="Matt Legend Gemmell" type="rss"
xmlUrl="http://mattgemmell.com/feed/" htmlUrl="http://mattgemmell.com/"/>
<outline text="Theobroma Cacao" title="Theobroma Cacao"
type="rss" xmlUrl="http://theocacao.com/index.rss" htmlUrl="http://theocacao.com/"/>
</outline>
<outline title="consumerism" text="consumerism">
<outline text="2Modern Blog" title="2Modern Blog" type="rss"
xmlUrl="http://blog.2modern.com/atom.xml" htmlUrl="http://blog.2modern.com"/>
<outline text="Acquire" title="Acquire" type="rss"
xmlUrl="http://feeds.feedburner.com/acquire" htmlUrl="http://www.acquiremag.com/"/>
<outline text="Cool Material" title="Cool Material"
type="rss" xmlUrl="http://coolmaterial.com/feed/" htmlUrl="http://coolmaterial.com"/>
<outline text="Cool Tools" title="Cool Tools" type="rss"
xmlUrl="http://feeds.feedburner.com/CoolTools" htmlUrl="http://kk.org/cooltools"/>
<outline text="Core77" title="Core77" type="rss"
xmlUrl="http://feeds2.feedburner.com/core77/blog" htmlUrl="http://www.core77.com/blog/"/>
<outline text="CREATIVESESSION" title="CREATIVESESSION"
type="rss" xmlUrl="http://www.creativesession.us/feed/" htmlUrl="http://www.creativesession.com"/>
<outline text="Designcollector™" title="Designcollector™"
type="rss" xmlUrl="http://designcollector.net/feed/" htmlUrl="http://designcollector.net"/>
<outline text="Dezeen" title="Dezeen" type="rss"
xmlUrl="http://feeds.feedburner.com/dezeen" htmlUrl="http://www.dezeen.com"/>
<outline text="EDC" title="EDC" type="rss"
xmlUrl="http://everyday-carry.com/rss" htmlUrl="http://everyday-carry.com/"/>
<outline text="Gear Patrol" title="Gear Patrol" type="rss"
xmlUrl="http://gearpatrol.com/blog/feed/" htmlUrl="http://gearpatrol.com"/>
<outline text="GearCulture" title="GearCulture" type="rss"
xmlUrl="http://feeds.feedburner.com/GearCulture" htmlUrl="http://www.gearculture.com"/>
<outline
text="Gentleman's Gadgets | The Source of Inspiration for Modern Men"
title="Gentleman's Gadgets | The Source of Inspiration for Modern Men"
type="rss"
xmlUrl="http://feeds.feedburner.com/gentlemansgadgets" htmlUrl="http://www.gentlemansgadgets.com"/>
<outline text="HackerThings" title="HackerThings" type="rss"
xmlUrl="http://feeds.feedburner.com/hackerthings" htmlUrl="http://hackerthings.com/"/>
<outline text="Kaufmann Mercantile Blog & Store"
title="Kaufmann Mercantile Blog & Store" type="rss"
xmlUrl="http://feeds.feedburner.com/KMPipe" htmlUrl="http://pipes.yahoo.com/pipes/pipe.info?_id=0844226ff0b9624cc8639e91397ead54"/>
<outline text="Minimalismi Design Blog"
title="Minimalismi Design Blog" type="rss"
xmlUrl="http://www.minimalismi.com/feed/" htmlUrl="http://www.minimalismi.com"/>
<outline text="MoCoLoco" title="MoCoLoco" type="rss"
xmlUrl="http://mocoloco.com/index.rdf" htmlUrl="http://mocoloco.com/"/>
<outline text="Monoscope Deux" title="Monoscope Deux"
type="rss" xmlUrl="http://www.monoscope.com/feed/" htmlUrl="http://www.monoscope.com"/>
<outline text="New Found Original"
title="New Found Original" type="rss"
xmlUrl="http://newfoundoriginal.com/main/?feed=rss2" htmlUrl="http://newfoundoriginal.com/main"/>
<outline text="Nooka" title="Nooka" type="rss"
xmlUrl="http://www.nooka.com/wordpress.html?feed=rss2" htmlUrl="http://www.nooka.com"/>
<outline text="Shoebox Dwelling" title="Shoebox Dwelling"
type="rss" xmlUrl="http://shoeboxdwelling.com/feed/" htmlUrl="http://shoeboxdwelling.com"/>
<outline text="SolidSmack.com" title="SolidSmack.com"
type="rss"
xmlUrl="http://feeds.feedburner.com/solidsmack" htmlUrl="http://solidsmack.com"/>
<outline text="The Daily Module" title="The Daily Module"
type="rss" xmlUrl="http://module-r.com/blog/?feed=rss2" htmlUrl="http://module-r.com/blog"/>
<outline text="The Gear Journal" title="The Gear Journal"
type="rss" xmlUrl="http://www.gearjournal.com/feed/" htmlUrl="http://www.gearjournal.com"/>
<outline text="The Wirecutter" title="The Wirecutter"
type="rss"
xmlUrl="http://feeds.feedburner.com/TheWirecutter" htmlUrl="http://thewirecutter.com"/>
<outline text="ThinkGeek :: What's New"
title="ThinkGeek :: What's New" type="rss"
xmlUrl="http://www.thinkgeek.com/thinkgeek.rss" htmlUrl="http://pipes.yahoo.com/pipes/pipe.info?_id=6cc7c4fc1c188e2df1434c386f759a23"/>
<outline text="Tools and Toys" title="Tools and Toys"
type="rss"
xmlUrl="http://feeds.feedburner.com/toolsandtoys" htmlUrl="http://toolsandtoys.net"/>
<outline text="Uncrate" title="Uncrate" type="rss"
xmlUrl="http://feeds.feedburner.com/uncrate" htmlUrl="http://uncrate.com/"/>
<outline text="Vetted" title="Vetted" type="rss"
xmlUrl="http://blog.vettedshop.com/vetted/atom.xml" htmlUrl="http://blog.vettedshop.com/vetted/"/>
</outline>
<outline title="absolutely" text="absolutely">
<outline text="A Whole Lotta Nothing"
title="A Whole Lotta Nothing" type="rss"
xmlUrl="http://feeds.feedburner.com/AWholeLottaNothing" htmlUrl="http://a.wholelottanothing.org/"/>
<outline text="Adactio" title="Adactio" type="rss"
xmlUrl="http://adactio.com/journal/rss" htmlUrl="http://adactio.com/journal/"/>
<outline text="al3x" title="al3x" type="rss"
xmlUrl="http://feeds.feedburner.com/al3x" htmlUrl="http://al3x.net/"/>
<outline text="AMASSBLOG" title="AMASSBLOG" type="rss"
xmlUrl="http://amassblog.com/?feed=rss2" htmlUrl="http://amassblog.com"/>
<outline text="amberdawn" title="amberdawn" type="rss"
xmlUrl="http://amberdawn.tumblr.com/rss" htmlUrl="http://amberdawn.tumblr.com/"/>
<outline text="An Entirely Other Day"
title="An Entirely Other Day" type="rss"
xmlUrl="http://blog.eod.com/rss" htmlUrl="http://www.eod.com/blog/"/>
<outline text="Analysis Ahoy" title="Analysis Ahoy"
type="rss"
xmlUrl="http://usernameguy.livejournal.com/data/rss" htmlUrl="http://usernameguy.livejournal.com/"/>
<outline text="Anil Dash" title="Anil Dash" type="rss"
xmlUrl="http://feeds.feedburner.com/AnilDash" htmlUrl="http://dashes.com/anil/"/>
<outline text="App Mecha" title="App Mecha" type="rss"
xmlUrl="http://appmecha.wordpress.com/feed/" htmlUrl="http://appmecha.wordpress.com"/>
<outline text="BeingFamous.com | Amir's Online Home"
title="BeingFamous.com | Amir's Online Home" type="rss"
xmlUrl="http://www.beingfamous.com/?feed=rss2" htmlUrl="http://www.beingfamous.com"/>
<outline text="Ben Brown, Internet Rockstar"
title="Ben Brown, Internet Rockstar" type="rss"
xmlUrl="http://feeds.feedburner.com/BenBrownSays" htmlUrl="http://ilovebenbrown.com/"/>
<outline text="blurbomat.com" title="blurbomat.com"
type="rss" xmlUrl="http://blurbomat.com/feed/" htmlUrl="http://blurbomat.com"/>
<outline text="Bobulate" title="Bobulate" type="rss"
xmlUrl="http://bobulate.com/rss" htmlUrl="http://bobulate.com/"/>
<outline text="Brand New" title="Brand New" type="rss"
xmlUrl="http://www.underconsideration.com/brandnew/atom.xml" htmlUrl="http://www.underconsideration.com/brandnew/"/>
<outline text="cabel.name" title="cabel.name" type="rss"
xmlUrl="http://cabel.name/atom.xml" htmlUrl="http://www.cabel.name/"/>
<outline text="Capn Design" title="Capn Design" type="rss"
xmlUrl="http://capndesign.com/index.xml" htmlUrl="http://www.capndesign.com/"/>
<outline text="Caterina.net" title="Caterina.net" type="rss"
xmlUrl="http://www.caterina.net/index.rdf" htmlUrl="http://caterina.net"/>
<outline text="cdixon.org - chris dixon's blog"
title="cdixon.org - chris dixon's blog" type="rss"
xmlUrl="http://cdixon.org/feed/" htmlUrl="http://cdixon.org"/>
<outline text="Click Nothing" title="Click Nothing"
type="rss"
xmlUrl="http://clicknothing.typepad.com/click_nothing/atom.xml" htmlUrl="http://www.clicknothing.com/click_nothing/"/>
<outline text="Coding Horror" title="Coding Horror"
type="rss"
xmlUrl="http://www.codinghorror.com/blog/index.xml" htmlUrl="http://www.codinghorror.com/blog/"/>
<outline text="Comments on your photos and/or sets"
title="Comments on your photos and/or sets" type="rss"
xmlUrl="http://api.flickr.com/services/feeds/activity.gne?user_id=35034363505@N01&format=rss_200" htmlUrl="http://www.flickr.com/recent_activity.gne"/>
<outline text="Computerlove | Connecting Creative Talents"
title="Computerlove | Connecting Creative Talents"
type="rss" xmlUrl="http://www.cpluv.com/www/feedrss/" htmlUrl="http://www.cpluv.com/"/>
<outline text="Coudal Partners Blended Feed"
title="Coudal Partners Blended Feed" type="rss"
xmlUrl="http://feeds.feedburner.com/CoudalFreshSignals" htmlUrl="http://www.coudal.com/"/>
<outline text="Cruft" title="Cruft" type="rss"
xmlUrl="http://cruftbox.com/index.rdf" htmlUrl="http://cruftbox.com/"/>
<outline text="Curbed SF" title="Curbed SF" type="rss"
xmlUrl="http://feeds.feedburner.com/CurbedSF" htmlUrl="http://sf.curbed.com/"/>
<outline text="Daring Fireball" title="Daring Fireball"
type="rss" xmlUrl="http://daringfireball.net/index.xml" htmlUrl="http://daringfireball.net/"/>
<outline text="Derek Powazek" title="Derek Powazek"
type="rss" xmlUrl="http://powazek.com/feed/" htmlUrl="http://powazek.com"/>
<outline text="Derek Sivers" title="Derek Sivers" type="rss"
xmlUrl="http://sivers.org/en.atom" htmlUrl="http://sivers.org/"/>
<outline text="dooce" title="dooce" type="rss"
xmlUrl="http://www.dooce.com/atom.xml" htmlUrl="http://dooce.com/feed_main/feed"/>
<outline text="Editpus Rex" title="Editpus Rex" type="rss"
xmlUrl="http://adamrex.blogspot.com/feeds/posts/default" htmlUrl="http://adamrex.blogspot.com/"/>
<outline text="Emptyage" title="Emptyage" type="rss"
xmlUrl="http://www.emptyage.com/rss" htmlUrl="http://www.emptyage.com/"/>
<outline text="Enjoymentland" title="Enjoymentland"
type="rss" xmlUrl="http://enjoymentland.com/feed/" htmlUrl="http://enjoymentland.com"/>
<outline text="Ephram Zerb" title="Ephram Zerb" type="rss"
xmlUrl="http://ephramzerb.com/feed/" htmlUrl="http://kanevski.org"/>
<outline text="F.U. & The Blog You Rode In On"
title="F.U. & The Blog You Rode In On" type="rss"
xmlUrl="http://catbird.tumblr.com/rss" htmlUrl="http://catbird.tumblr.com/"/>
<outline text="Fireland" title="Fireland" type="rss"
xmlUrl="http://fireland.tumblr.com/rss" htmlUrl="http://fireland.tumblr.com/"/>
<outline text="Flip Flop Flying" title="Flip Flop Flying"
type="rss"
xmlUrl="http://www.flipflopflyin.com/g/atom.xml" htmlUrl="http://www.flipflopflyin.com/g/"/>
<outline text="FreshArrival" title="FreshArrival" type="rss"
xmlUrl="http://www.fresharrival.com/blog/feed/" htmlUrl="http://www.fresharrival.com/blog"/>
<outline text="GirlHacker's Random Log"
title="GirlHacker's Random Log" type="rss"
xmlUrl="http://feeds.feedburner.com/girlhacker" htmlUrl="http://www.girlhacker.com"/>
<outline text="hackety org" title="hackety org" type="rss"
xmlUrl="http://feeds.feedburner.com/HacketyOrg" htmlUrl="http://hackety.org/"/>
<outline text="Hark! A Vagrant" title="Hark! A Vagrant"
type="rss"
xmlUrl="http://beatonna.livejournal.com/data/rss" htmlUrl="http://beatonna.livejournal.com/"/>
<outline text="hello, typepad" title="hello, typepad"
type="rss"
xmlUrl="http://hello.typepad.com/hello/atom.xml" htmlUrl="http://hello.typepad.com/hello/"/>
<outline text="Hey, Stuff! New Items"
title="Hey, Stuff! New Items" type="rss"
xmlUrl="http://heystuff.com/new_items/" htmlUrl="http://www.heystuff.com/"/>
<outline text="http://lulinternet.com/"
title="http://lulinternet.com/" type="rss"
xmlUrl="http://lulinternet.com/rss" htmlUrl="http://lulinternet.com/"/>
<outline text="i to one" title="i to one" type="rss"
xmlUrl="http://emptyage.honan.net/i21/atom.xml" htmlUrl="http://emptyage.honan.net/i21/"/>
<outline text="In Case Of Actual Death"
title="In Case Of Actual Death" type="rss"
xmlUrl="http://kfan.tumblr.com/rss" htmlUrl="http://kfan.tumblr.com/"/>
<outline text="inessential.com" title="inessential.com"
type="rss" xmlUrl="http://inessential.com/xml/rss.xml" htmlUrl="http://inessential.com/"/>
<outline text="Ironic Sans" title="Ironic Sans" type="rss"
xmlUrl="http://www.ironicsans.com/index.xml" htmlUrl="http://www.ironicsans.com/"/>
<outline text="Jesse James Garrett's Hidden Agenda"
title="Jesse James Garrett's Hidden Agenda" type="rss"
xmlUrl="http://feeds.feedburner.com/jjg" htmlUrl="http://blog.jjg.net/weblog/"/>
<outline text="John Battelle's Searchblog"
title="John Battelle's Searchblog" type="rss"
xmlUrl="http://feeds.feedburner.com/JohnBattellesSearchblog" htmlUrl="http://battellemedia.com"/>
<outline text="join-the-dots" title="join-the-dots"
type="rss"
xmlUrl="http://www.srcf.ucam.org/~hmw26/join-the-dots/feed/atom/" htmlUrl="http://www.srcf.ucam.org/~hmw26/join-the-dots"/>
<outline text="Justinsomnia" title="Justinsomnia" type="rss"
xmlUrl="http://justinsomnia.org/atom/" htmlUrl="http://justinsomnia.org/"/>
<outline text="Keith Starky Explains Twitter"
title="Keith Starky Explains Twitter" type="rss"
xmlUrl="http://explainingtwitter.tumblr.com/rss" htmlUrl="http://explainingtwitter.tumblr.com/"/>
<outline text="Kotaku" title="Kotaku" type="rss"
xmlUrl="http://www.kotaku.com/index.xml" htmlUrl="http://kotaku.com"/>
<outline text="kottke.org" title="kottke.org" type="rss"
xmlUrl="http://feeds.kottke.org/main" htmlUrl="http://kottke.org/"/>
<outline text="Kung Fu Grippe" title="Kung Fu Grippe"
type="rss" xmlUrl="http://www.kungfugrippe.com/rss" htmlUrl="http://www.kungfugrippe.com/"/>
<outline text="lonelysandwich" title="lonelysandwich"
type="rss" xmlUrl="http://lonelysandwich.com/rss" htmlUrl="http://lonelysandwich.com/"/>
<outline text="Maniacal Rage" title="Maniacal Rage"
type="rss" xmlUrl="http://maniacalrage.net/rss" htmlUrl="http://log.maniacalrage.net/"/>
<outline text="Maxvoltar" title="Maxvoltar" type="rss"
xmlUrl="http://feeds.feedburner.com/maxvoltar" htmlUrl="http://maxvoltar.com/"/>
<outline text="Michael Buffington"
title="Michael Buffington" type="rss"
xmlUrl="http://michaelbuffington.com/xml/atom/feed.xml" htmlUrl="http://michaelbuffington.com/"/>
<outline text="Mickipedia" title="Mickipedia" type="rss"
xmlUrl="http://www.mickipedia.com/?feed=rss2" htmlUrl="http://www.mickipedia.com"/>
<outline text="Mike Monteiro can&amp;#8217;t blog"
title="Mike Monteiro can&amp;#8217;t blog"
type="rss" xmlUrl="http://mikemonteiro.com/rss" htmlUrl="http://mikemonteiro.com/"/>
<outline text="Monoscope" title="Monoscope" type="rss"
xmlUrl="http://www.monoscope.com/atom.xml" htmlUrl="http://www.monoscope.com/"/>
<outline text="Mule Design : Off the Hoof"
title="Mule Design : Off the Hoof" type="rss"
xmlUrl="http://feeds.feedburner.com/muledesign/offthehoof" htmlUrl="http://weblog.muledesign.com/"/>
<outline text="Nelson's Weblog" title="Nelson's Weblog"
type="rss"
xmlUrl="http://www.somebits.com/weblog/index.atom" htmlUrl="http://www.somebits.com/weblog"/>
<outline text="Nerd Boyfriend" title="Nerd Boyfriend"
type="rss" xmlUrl="http://nerdboyfriend.tumblr.com/rss" htmlUrl="http://nerdboyfriend.tumblr.com/"/>
<outline text="NOTCOT" title="NOTCOT" type="rss"
xmlUrl="http://www.notcot.com/atom.xml" htmlUrl="http://www.notcot.com/"/>
<outline text="onfocus.com" title="onfocus.com" type="rss"
xmlUrl="http://xml.onfocus.com/posts" htmlUrl="http://www.onfocus.com/"/>
<outline text="Panic Blog" title="Panic Blog" type="rss"
xmlUrl="http://www.panic.com/blog/feed/" htmlUrl="http://www.panic.com/blog"/>
<outline text="rc3.org" title="rc3.org" type="rss"
xmlUrl="http://rc3.org/atom.xml" htmlUrl="http://rc3.org/"/>
<outline text="Red Sweater Blog" title="Red Sweater Blog"
type="rss"
xmlUrl="http://www.red-sweater.com/blog/feed/" htmlUrl="http://www.red-sweater.com/blog"/>
<outline text="Ricky Van Veen's GET EXCITED"
title="Ricky Van Veen's GET EXCITED" type="rss"
xmlUrl="http://rickyvanveen.com/rss" htmlUrl="http://rickyvanveen.com/"/>
<outline text="Sam Brown" title="Sam Brown" type="rss"
xmlUrl="http://feeds.feedburner.com/massiveblue/sam" htmlUrl="http://sam.brown.tc/"/>
<outline
text="San Francisco real estate insight, statistics, gossip, and news with a twist and some flavor - theFrontSteps"
title="San Francisco real estate insight, statistics, gossip, and news with a twist and some flavor - theFrontSteps"
type="rss" xmlUrl="http://thefrontsteps.com/feed/" htmlUrl="http://thefrontsteps.com"/>
<outline text="Sci-Fi Hi-Fi: Weblog"
title="Sci-Fi Hi-Fi: Weblog" type="rss"
xmlUrl="http://log.scifihifi.com/rss" htmlUrl="http://log.scifihifi.com/"/>
<outline text="ShaunInman.com // plus Elsewhere"
title="ShaunInman.com // plus Elsewhere" type="rss"
xmlUrl="http://www.shauninman.com/feeds/plus" htmlUrl="http://www.shauninman.com/"/>
<outline text="shellen dot com" title="shellen dot com"
type="rss"
xmlUrl="http://feeds.feedburner.com/shellendotcom" htmlUrl="http://blog.shellen.com/"/>
<outline text="Snarkout: Sideout" title="Snarkout: Sideout"
type="rss"
xmlUrl="http://www.snarkout.org/side/side.xml" htmlUrl="http://www.snarkout.org/side/"/>
<outline text="so this is happening."
title="so this is happening." type="rss"
xmlUrl="http://sothisishappening.com/rss" htmlUrl="http://sothisishappening.com/"/>
<outline text="SocketSite™" title="SocketSite™" type="rss"
xmlUrl="http://www.socketsite.com/atom.xml" htmlUrl="http://www.socketsite.com/"/>
<outline text="~stevenf" title="~stevenf" type="rss"
xmlUrl="http://stevenf.com/index.rdf" htmlUrl="http://stevenf.tumblr.com/"/>
<outline text="Street Use" title="Street Use" type="rss"
xmlUrl="http://feeds.feedburner.com/StreetUse" htmlUrl="http://www.kk.org/streetuse/"/>
<outline text="SUM" title="SUM" type="rss"
xmlUrl="http://sum.bakkabakka.com/feed/" htmlUrl="http://sum.bakkabakka.com"/>
<outline text="Tasteland" title="Tasteland" type="rss"
xmlUrl="http://tasteland.com/rss" htmlUrl="http://tasteland.com/"/>
<outline text="The Jay-Z of Blogging"
title="The Jay-Z of Blogging" type="rss"
xmlUrl="http://anil.vox.com/library/posts/atom.xml" htmlUrl="http://anil.vox.com/library/posts/page/1/"/>
<outline text="the last ten days" title="the last ten days"
type="rss"
xmlUrl="http://glass.typepad.com/journal/index.rdf" htmlUrl="http://journal.chrisglass.com/"/>
<outline text="The Shape of Everything"
title="The Shape of Everything" type="rss"
xmlUrl="http://shapeof.com/atom.xml" htmlUrl="http://shapeof.com/"/>
<outline
text="the-inbetween.com amalgamated feed - Mike Nowak"
title="the-inbetween.com amalgamated feed - Mike Nowak"
type="rss" xmlUrl="http://feeds.feedburner.com/n0wak" htmlUrl="http://the-inbetween.com"/>
<outline text="Things I've Bought that I Love"
title="Things I've Bought that I Love" type="rss"
xmlUrl="http://mindyephron.blogspot.com/feeds/posts/default" htmlUrl="http://mindyephron.blogspot.com/"/>
<outline text="this is sippey.typepad.com"
title="this is sippey.typepad.com" type="rss"
xmlUrl="http://feeds.feedburner.com/sippey" htmlUrl="http://www.sippey.com/"/>
<outline text="trenchant.org - daily"
title="trenchant.org - daily" type="rss"
xmlUrl="http://trenchant.org/daily/rss.xml" htmlUrl="http://trenchant.org"/>
<outline text="Untitled Source" title="Untitled Source"
type="rss" xmlUrl="http://diveintomark.org/feed/" htmlUrl="http://diveintomark.org/"/>
<outline text="uvula" title="uvula" type="rss"
xmlUrl="http://www.uvula.jp/rss.xml" htmlUrl="http://www.uvula.jp"/>
<outline text="Waxy.org" title="Waxy.org" type="rss"
xmlUrl="http://www.waxy.org/index.xml" htmlUrl="http://waxy.org/"/>
<outline text="Waxy.org Links" title="Waxy.org Links"
type="rss" xmlUrl="http://waxy.org/links/index.xml" htmlUrl="http://www.waxy.org/links/"/>
<outline text="we*heart*art" title="we*heart*art" type="rss"
xmlUrl="http://www.weheartart.com/atom.xml" htmlUrl="http://www.weheartart.com/"/>
<outline text="we[heart]prints" title="we[heart]prints"
type="rss"
xmlUrl="http://www.weheartprints.com/index.xml" htmlUrl="http://www.weheartprints.com/"/>
<outline text="You Look Nice Today"
title="You Look Nice Today" type="rss"
xmlUrl="http://youlooknicetoday.tumblr.com/rss" htmlUrl="http://youlooknicetoday.tumblr.com/"/>
<outline text="your monkey called"
title="your monkey called" type="rss"
xmlUrl="http://feeds.feedburner.com/ymc" htmlUrl="http://yourmonkeycalled.com/"/>
<outline text="Your New Favorite" title="Your New Favorite"
type="rss" xmlUrl="http://yournewfavorite.com/rss" htmlUrl="http://yournewfavorite.com/"/>
<outline text="Yummy Fresh grain feed!"
title="Yummy Fresh grain feed!" type="rss"
xmlUrl="http://grainedit.com/feed/" htmlUrl="http://grainedit.com"/>
<outline text="下手の横好き世界4" title="下手の横好き世界4" type="rss"
xmlUrl="http://heta.metalbat.com/?feed=rss2" htmlUrl="http://heta.metalbat.com"/>
</outline>
<outline title="art" text="art">
<outline text="BibliOdyssey" title="BibliOdyssey" type="rss"
xmlUrl="http://bibliodyssey.blogspot.com/atom.xml" htmlUrl="http://bibliodyssey.blogspot.com/"/>
<outline text="BLDGBLOG" title="BLDGBLOG" type="rss"
xmlUrl="http://bldgblog.blogspot.com/feeds/posts/default" htmlUrl="http://bldgblog.blogspot.com/"/>
<outline text="Blog" title="Blog" type="rss"
xmlUrl="http://blog.pentagram.com/atom.xml" htmlUrl="http://mig.pentagram.com/en/"/>
<outline text="fontshop posts" title="fontshop posts"
type="rss" xmlUrl="http://www.fontshop.be/rss/" htmlUrl="http://www.fontshop.be/"/>
<outline text="Heavy Backpack - A Creative Catalogue"
title="Heavy Backpack - A Creative Catalogue" type="rss"
xmlUrl="http://www.heavy-backpack.com/feed/atom/" htmlUrl="http://www.heavy-backpack.com/"/>
<outline text="Hewn &amp;amp;amp; Hammered"
title="Hewn &amp;amp;amp; Hammered" type="rss"
xmlUrl="http://feeds.feedburner.com/hewn" htmlUrl="http://www.hewnandhammered.com/hewn_and_hammered/"/>
<outline text="It&amp;#39;s Nice That"
title="It&amp;#39;s Nice That" type="rss"
xmlUrl="http://www.itsnicethat.com/index.php?atom=1" htmlUrl="http://www.itsnicethat.com"/>
<outline text="Joshua Davis | Studios"
title="Joshua Davis | Studios" type="rss"
xmlUrl="http://www.joshuadavis.com/feed/" htmlUrl="http://www.joshuadavis.com"/>
<outline text="manystuff.org" title="manystuff.org"
type="rss" xmlUrl="http://www.manystuff.org/?feed=rss2" htmlUrl="http://www.manystuff.org"/>
<outline text="Ministry of Type" title="Ministry of Type"
type="rss"
xmlUrl="http://www.ministryoftype.co.uk/words/rss/" htmlUrl="http://ministryoftype.co.uk/"/>
<outline text="my love for you is a stampede of horses."
title="my love for you is a stampede of horses."
type="rss"
xmlUrl="http://myloveforyou.typepad.com/my_love_for_you/atom.xml" htmlUrl="http://myloveforyou.typepad.com/my_love_for_you/"/>
<outline text="Pulse Laser" title="Pulse Laser" type="rss"
xmlUrl="http://schulzeandwebb.com/blog/feed/" htmlUrl="http://berglondon.com"/>
<outline text="things magazine" title="things magazine"
type="rss"
xmlUrl="http://www.thingsmagazine.net/index.rdf" htmlUrl="http://www.google.com/reader/view/feed%2Fhttp%3A%2F%2Fwww.thingsmagazine.net%2Findex.rdf"/>
<outline text="Tiny Buildings" title="Tiny Buildings"
type="rss"
xmlUrl="http://blog.tinybuildings.com/feeds/posts/default" htmlUrl="http://blog.tinybuildings.com/"/>
<outline text="(title unknown)" title="(title unknown)"
type="rss"
xmlUrl="http://productetcetera.com/broadcast/?feed=rss2" htmlUrl="http://productetcetera.com/broadcast"/>
<outline text="today and tomorrow"
title="today and tomorrow" type="rss"
xmlUrl="http://www.todayandtomorrow.net/feed/" htmlUrl="http://www.todayandtomorrow.net"/>
<outline text="VVORK" title="VVORK" type="rss"
xmlUrl="http://www.vvork.com/?feed=rss2" htmlUrl="http://www.vvork.com"/>
<outline text="Who Needs Friends..."
title="Who Needs Friends..." type="rss"
xmlUrl="http://pens.h099.com/?feed=rss2" htmlUrl="http://h099.com"/>
<outline text="Wooster Collective"
title="Wooster Collective" type="rss"
xmlUrl="http://www.woostercollective.com/atom.xml" htmlUrl="http://www.woostercollective.com/"/>
<outline text="yay!everyday" title="yay!everyday" type="rss"
xmlUrl="http://feeds.feedburner.com/yayeveryday" htmlUrl="http://yayeveryday.com/"/>
</outline>
<outline title="Tech" text="Tech">
<outline text="Code: Flickr Developer Blog"
title="Code: Flickr Developer Blog" type="rss"
xmlUrl="http://code.flickr.com/blog/feed/" htmlUrl="http://code.flickr.com/blog"/>
<outline text="Finer Things in Mac"
title="Finer Things in Mac" type="rss"
xmlUrl="http://feeds.feedburner.com/finermac" htmlUrl="http://finerthings.in/mac?format=rss"/>
<outline text="Instapaper: Unread"
title="Instapaper: Unread" type="rss"
xmlUrl="http://www.instapaper.com/rss/157656/rGO3wgvWCt9FSaNsiQuTdYKg7E" htmlUrl="http://www.instapaper.com/u"/>
<outline text="Little Big Details"
title="Little Big Details" type="rss"
xmlUrl="http://feeds.feedburner.com/littlebigdetails" htmlUrl="http://littlebigdetails.com/"/>
<outline text="MacOSXHints.com" title="MacOSXHints.com"
type="rss"
xmlUrl="http://www.macosxhints.com/backend/osxhints.rss" htmlUrl="http://hints.macworld.com"/>
<outline text="One Thing Well" title="One Thing Well"
type="rss" xmlUrl="http://onethingwell.org/rss" htmlUrl="http://onethingwell.org/"/>
<outline text="Panic Blog" title="Panic Blog" type="rss"
xmlUrl="http://www.panic.com/blog/feed/" htmlUrl="http://www.panic.com/blog"/>
<outline text="Photojojo" title="Photojojo" type="rss"
xmlUrl="http://feeds.feedburner.com/Photojojo" htmlUrl="http://content.photojojo.com"/>
<outline text="Pinboard - bookmarking for introverts"
title="Pinboard - bookmarking for introverts" type="rss"
xmlUrl="http://pinboard.in/feed" htmlUrl="http://pinboard.in/"/>
<outline text="Surfin' Safari" title="Surfin' Safari"
type="rss" xmlUrl="http://webkit.org/blog/feed/atom/" htmlUrl="http://www.webkit.org/blog"/>
<outline text="The Unofficial Apple Weblog"
title="The Unofficial Apple Weblog" type="rss"
xmlUrl="http://apple.weblogsinc.com/rss.xml" htmlUrl="http://www.tuaw.com"/>
</outline>
<outline title="News" text="News">
<outline text="haighteration" title="haighteration"
type="rss"
xmlUrl="http://feeds.feedburner.com/haighteration" htmlUrl="http://haighteration.com"/>
<outline text="SFist" title="SFist" type="rss"
xmlUrl="http://sfist.com/index.rdf" htmlUrl="http://sfist.com/"/>
</outline>
<outline title="weheartcomics" text="weheartcomics">
<outline text="Doot Doot Garden Blog"
title="Doot Doot Garden Blog" type="rss"
xmlUrl="http://blog.dootdootgarden.com/feed/" htmlUrl="http://www.craigthompsonbooks.com"/>
<outline text="fartparty.org's Photos"
title="fartparty.org's Photos" type="rss"
xmlUrl="http://flickr.com/services/feeds/photos_public.gne?id=40138884@N00&format=rss_200" htmlUrl="http://www.flickr.com/photos/thefartparty/"/>
<outline text="featherbed's Photos"
title="featherbed's Photos" type="rss"
xmlUrl="http://api.flickr.com/services/feeds/photos_public.gne?id=97019740@N00&format=atom" htmlUrl="http://www.flickr.com/photos/featherbed/"/>
<outline text="Filth Hole" title="Filth Hole" type="rss"
xmlUrl="http://filthhole.com/?feed=atom" htmlUrl="http://www.filthhole.com/"/>
<outline text="First Second Books - Doodles and Dailies"
title="First Second Books - Doodles and Dailies"
type="rss"
xmlUrl="http://firstsecondbooks.typepad.com/mainblog/atom.xml" htmlUrl="http://firstsecondbooks.typepad.com/mainblog/"/>
<outline text="King Cat" title="King Cat" type="rss"
xmlUrl="http://www.king-cat.net/atom.xml" htmlUrl="http://www.king-cat.net/"/>
<outline text="MATT'S BLOG" title="MATT'S BLOG" type="rss"
xmlUrl="http://mattbernier.blogspot.com/feeds/posts/default" htmlUrl="http://mattbernier.blogspot.com/"/>
<outline text="new bodega" title="new bodega" type="rss"
xmlUrl="http://newbodega.blogspot.com/feeds/posts/default" htmlUrl="http://newbodega.blogspot.com/"/>
<outline text="sarah glidden" title="sarah glidden"
type="rss"
xmlUrl="http://www.smallnoises.com/?feed=rss2" htmlUrl="http://www.smallnoises.com"/>
<outline text="Tessa's Braces" title="Tessa's Braces"
type="rss"
xmlUrl="http://tessasbraces.blogspot.com/feeds/posts/default" htmlUrl="http://tessasbraces.blogspot.com/"/>
<outline text="The Fart Party" title="The Fart Party"
type="rss" xmlUrl="http://www.fartparty.org/feed/atom/" htmlUrl="http://juliawertz.com/"/>
<outline text="the holy consumption bulletin"
title="the holy consumption bulletin" type="rss"
xmlUrl="http://theholybulletin.blogspot.com/feeds/posts/default" htmlUrl="http://theholybulletin.blogspot.com/"/>
<outline text="The Perry Bible Fellowship"
title="The Perry Bible Fellowship" type="rss"
xmlUrl="http://pbfcomics.com/feed/feed.xml" htmlUrl="http://www.google.com/reader/view/feed%2Fhttp%3A%2F%2Fpbfcomics.com%2Ffeed%2Ffeed.xml"/>
<outline text="The Superest" title="The Superest" type="rss"
xmlUrl="http://thesuperest.com/feed/rss.xml" htmlUrl="http://www.thesuperest.com/"/>
<outline text="there is no liz, only zuul."
title="there is no liz, only zuul." type="rss"
xmlUrl="http://comicnrrd.livejournal.com/data/atom" htmlUrl="http://comicnrrd.livejournal.com/"/>
<outline text="Your Weblog Name" title="Your Weblog Name"
type="rss" xmlUrl="http://saraholeksyk.com/rss/rss2.php" htmlUrl="http://saraholeksyk.com"/>
</outline>
<outline title="Mine" text="Mine">
<outline text="The Setup" title="The Setup" type="rss"
xmlUrl="http://api.flickr.com/services/feeds/groups_discuss.gne?id=1789557@N20&lang=en-us&format=rss_200" htmlUrl="http://www.flickr.com/groups/usesthis/"/>
</outline>
<outline title="main" text="main">
<outline text="0xDECAFBAD" title="0xDECAFBAD" type="rss"
xmlUrl="http://decafbad.com/blog/feed/rdf" htmlUrl="http://decafbad.com/blog"/>
<outline text="110 beats per minute"
title="110 beats per minute" type="rss"
xmlUrl="http://110bpm.co.uk/rss/" htmlUrl="http://110bpm.co.uk/"/>
<outline text="2 or 3 things I know..."
title="2 or 3 things I know..." type="rss"
xmlUrl="http://2or3things.blogspot.com/feeds/posts/default" htmlUrl="http://2or3things.blogspot.com/"/>
<outline text="43 Folders" title="43 Folders" type="rss"
xmlUrl="http://www.43folders.com/feed/" htmlUrl="http://www.43folders.com"/>
<outline text="A Brief Message" title="A Brief Message"
type="rss"
xmlUrl="http://feeds.feedburner.com/abriefmessage" htmlUrl="http://abriefmessage.com/"/>
<outline text="absidea" title="absidea" type="rss"
xmlUrl="http://absidea.free.fr/wordpress/index.php/feed/atom/" htmlUrl="http://absidea.free.fr/wordpress"/>
<outline text="Acts of Volition" title="Acts of Volition"
type="rss" xmlUrl="http://rss.actsofvolition.com/" htmlUrl="http://www.actsofvolition.com/"/>
<outline text="All in the head" title="All in the head"
type="rss" xmlUrl="http://allinthehead.com/rss/" htmlUrl="http://allinthehead.com/"/>
<outline text="alwaysBETA" title="alwaysBETA" type="rss"
xmlUrl="http://feeds.feedburner.com/alwaysBETA" htmlUrl="http://www.alwaysbeta.com"/>
<outline text="Ben jenkins' an Informality"
title="Ben jenkins' an Informality" type="rss"
xmlUrl="http://an.informality.org/feed/" htmlUrl="http://an.informality.org"/>
<outline text="Big Contrarian" title="Big Contrarian"
type="rss"
xmlUrl="http://feeds.feedburner.com/BigContrarian" htmlUrl="http://www.bigcontrarian.com"/>
<outline text="bits bytes pixels &amp; sprites"
title="bits bytes pixels &amp; sprites" type="rss"
xmlUrl="http://feeds.feedburner.com/BitsBytesPixelsSprites" htmlUrl="http://www.thebbps.com/en/"/>
<outline text="Blog" title="Blog" type="rss"
xmlUrl="http://petelumbis.org/blog/?feed=rss2" htmlUrl="http://petelumbis.org/blog"/>
<outline text="Boing Boing" title="Boing Boing" type="rss"
xmlUrl="http://feeds.feedburner.com/boingboing/iBag" htmlUrl="http://boingboing.net"/>
<outline text="Boing Boing Gadgets"
title="Boing Boing Gadgets" type="rss"
xmlUrl="http://feeds.feedburner.com/boingboing/gadgets" htmlUrl="http://boingboing.net"/>
<outline text="Brewcaster" title="Brewcaster" type="rss"
xmlUrl="http://www.brewcaster.com/atom.xml" htmlUrl="http://www.brewcaster.com/"/>
<outline text="Brilliant Corners" title="Brilliant Corners"
type="rss"
xmlUrl="http://brilliantcorners.org/node/feed" htmlUrl="http://brilliantcorners.org"/>
<outline text="buffington" title="buffington" type="rss"
xmlUrl="http://michaelbuffington.com/rss" htmlUrl="http://michaelbuffington.wordpress.com"/>
<outline text="cabuki.com" title="cabuki.com" type="rss"
xmlUrl="http://cabuki.com/feed/" htmlUrl="http://cabuki.com"/>
<outline text="cityofsound" title="cityofsound" type="rss"
xmlUrl="http://www.cityofsound.com/blog/atom.xml" htmlUrl="http://www.cityofsound.com/blog/"/>
<outline text="conceptual device" title="conceptual device"
type="rss"
xmlUrl="http://www.conceptualdevice.com/atom.xml" htmlUrl="http://www.activesocialplastic.com/"/>
<outline text="Conscientious" title="Conscientious"
type="rss"
xmlUrl="http://www.jmcolberg.com/weblog/atom.xml" htmlUrl="http://jmcolberg.com/weblog/"/>
<outline text="Cool Kids Table" title="Cool Kids Table"
type="rss" xmlUrl="http://feeds.feedburner.com/coolkids" htmlUrl="http://refreshbox.com/cool/index.php"/>
<outline text="Cool Tools" title="Cool Tools" type="rss"
xmlUrl="http://feeds.feedburner.com/CoolTools" htmlUrl="http://kk.org/cooltools"/>
<outline text="Crap, it's a weblog"
title="Crap, it's a weblog" type="rss"
xmlUrl="http://dakotasmith.org/blog/feedie.xml" htmlUrl="http://dakotasmith.org/blog/"/>
<outline text="CrapTV" title="CrapTV" type="rss"
xmlUrl="http://craptv.com/?feed=rss2" htmlUrl="http://craptv.com"/>
<outline text="DadHacker" title="DadHacker" type="rss"
xmlUrl="http://www.dadhacker.com/blog/?feed=rss2" htmlUrl="http://www.dadhacker.com/blog"/>
<outline text="Damn Interesting" title="Damn Interesting"
type="rss"
xmlUrl="http://www.damninteresting.com/?feed=rss2" htmlUrl="http://www.damninteresting.com"/>
<outline text="Decisive Moments" title="Decisive Moments"
type="rss" xmlUrl="http://www.seemann.com/luke/atom.xml" htmlUrl="http://www.seemann.com/luke/"/>
<outline text="del.icio.us" title="del.icio.us" type="rss"
xmlUrl="http://blog.del.icio.us/blog/atom.xml" htmlUrl="http://blog.delicious.com/blog"/>
<outline
text="Derivative Works: The personal website of Daniel X. O'Neil"
title="Derivative Works: The personal website of Daniel X. O'Neil"
type="rss"
xmlUrl="http://www.derivativeworks.com/atom.xml" htmlUrl="http://www.derivativeworks.com/"/>
<outline text="Dethroner" title="Dethroner" type="rss"
xmlUrl="http://dethroner.com/feed/atom/" htmlUrl="http://dethroner.com/"/>
<outline text="dooce links" title="dooce links" type="rss"
xmlUrl="http://www.pheedo.com/f/dooce_links" htmlUrl="http://www.dooce.com/links/"/>
<outline text="doodledee" title="doodledee" type="rss"
xmlUrl="http://www.doodledee.com/index.xml" htmlUrl="http://www.doodledee.com"/>
<outline text="DrunkenBlog" title="DrunkenBlog" type="rss"
xmlUrl="http://www.drunkenblog.com/index.rdf" htmlUrl="http://www.drunkenblog.com/"/>
<outline text="erasing.org" title="erasing.org" type="rss"
xmlUrl="http://www.erasing.org/xml/" htmlUrl="http://erasing.org"/>
<outline text="ERIC ALBA dot org" title="ERIC ALBA dot org"
type="rss"
xmlUrl="http://feeds.feedburner.com/EricAlbaDotOrg" htmlUrl="http://feeds.feedburner.com/ericalba-stream"/>
<outline text="Errol Morris" title="Errol Morris" type="rss"
xmlUrl="http://morris.blogs.nytimes.com/atom.xml" htmlUrl="http://opinionator.blogs.nytimes.com/category/errol-morris/atom/"/>
<outline text="ethernet noodles" title="ethernet noodles"
type="rss"
xmlUrl="http://ethernetnoodles.blogspot.com/feeds/posts/default" htmlUrl="http://ethernetnoodles.blogspot.com/"/>
<outline text="everybody likes sandwiches"
title="everybody likes sandwiches" type="rss"
xmlUrl="http://everybodylikessandwiches.blogspot.com/feeds/posts/default" htmlUrl="http://everybodylikessandwiches.blogspot.com/"/>
<outline text="FilePile: Timeline"
title="FilePile: Timeline" type="rss"
xmlUrl="http://torrez.svnrepository.com/FilePile/trac.cgi/timeline?milestone=on&ticket=on&wiki=on&max=50&daysback=90&format=rss" htmlUrl="http://torrez.svnrepository.com/FilePile/trac.cgi/timeline"/>
<outline text="Fireland" title="Fireland" type="rss"
xmlUrl="http://www.fireland.com/index.xml" htmlUrl="http://www.fireland.com/"/>
<outline text="fortuitous" title="fortuitous" type="rss"
xmlUrl="http://feeds.feedburner.com/fortuitousblog" htmlUrl="http://fortuito.us/"/>
<outline text="Godwin's Law" title="Godwin's Law" type="rss"
xmlUrl="http://www.godwinslaw.org/feed/atom/" htmlUrl="http://blog.wikimedia.org/"/>
<outline text="Good Magazine:" title="Good Magazine:"
type="rss"
xmlUrl="http://feed.goodmagazine.com/good/feeds/homepage" htmlUrl="http://www.google.com/reader/view/feed%2Fhttp%3A%2F%2Ffeed.goodmagazine.com%2Fgood%2Ffeeds%2Fhomepage"/>
<outline text="Gulfstream" title="Gulfstream" type="rss"
xmlUrl="http://beebo.org/gulfstream/index.rss" htmlUrl="http://www.google.com/reader/view/feed%2Fhttp%3A%2F%2Fbeebo.org%2Fgulfstream%2Findex.rss"/>
<outline text="Harold Check's blog, Offhand Remarks"
title="Harold Check's blog, Offhand Remarks" type="rss"
xmlUrl="http://www.haroldcheck.com/atom.xml" htmlUrl="http://www.haroldcheck.com/"/>
<outline text="Hoefler & Frere-Jones"
title="Hoefler & Frere-Jones" type="rss"
xmlUrl="http://www.typography.com/rss/" htmlUrl="http://www.typography.com/"/>
<outline text="Hyperbole and a Half"
title="Hyperbole and a Half" type="rss"
xmlUrl="http://feeds.feedburner.com/Hyperbole-and-a-half" htmlUrl="http://hyperboleandahalf.blogspot.com/"/>
<outline text="I did not know that yesterday!"
title="I did not know that yesterday!" type="rss"
xmlUrl="http://feeds.feedburner.com/IDidNotKnowThatYesterday" htmlUrl="http://ididnotknowthatyesterday.blogspot.com/"/>
<outline text="I like" title="I like" type="rss"
xmlUrl="http://www.ilike.org.uk/atom.xml" htmlUrl="http://www.ilike.org.uk/"/>
<outline text="ikeepadiary" title="ikeepadiary" type="rss"
xmlUrl="http://www.ikeepadiary.com/diary/index.rss" htmlUrl="http://www.ikeepadiary.com/diary/"/>
<outline text="Intelligent Artifice"
title="Intelligent Artifice" type="rss"
xmlUrl="http://feeds.feedburner.com/IntelligentArtifice" htmlUrl="http://www.intelligent-artifice.com"/>
<outline text="Interconnected" title="Interconnected"
type="rss" xmlUrl="http://interconnected.org/home/;atom" htmlUrl="http://interconnected.org/home/"/>
<outline text="iPhone Development"
title="iPhone Development" type="rss"
xmlUrl="http://iphonedevelopment.blogspot.com/feeds/posts/default" htmlUrl="http://iphonedevelopment.blogspot.com/"/>
<outline text="James Duncan Davidson"
title="James Duncan Davidson" type="rss"
xmlUrl="http://blog.duncandavidson.com/rss.xml" htmlUrl="http://duncandavidson.com/blog"/>
<outline text="James Gardner" title="James Gardner"
type="rss" xmlUrl="http://jimmyg.org/feed/atom/" htmlUrl="http://jimmyg.org"/>
<outline text="Jason Santa Maria | Articles"
title="Jason Santa Maria | Articles" type="rss"
xmlUrl="http://www.jasonsantamaria.com/index.rdf" htmlUrl="http://jasonsantamaria.com/articles/"/>
<outline text="Jeffrey McManus" title="Jeffrey McManus"
type="rss"
xmlUrl="http://feeds.feedburner.com/typepad/JHFw" htmlUrl="http://blog.jeffreymcmanus.com/"/>
<outline text="Jeremy Zawodny's blog"
title="Jeremy Zawodny's blog" type="rss"
xmlUrl="http://jeremy.zawodny.com/blog/rss2.xml" htmlUrl="http://jeremy.zawodny.com/blog/"/>
<outline text="JG etc." title="JG etc." type="rss"
xmlUrl="http://feeds.feedburner.com/JgEtc" htmlUrl="http://www.jamesgross.com"/>
<outline text="jibber jabber: the eddie underworld"
title="jibber jabber: the eddie underworld" type="rss"
xmlUrl="http://www.eddie.com/feed/" htmlUrl="http://www.eddie.com"/>
<outline text="Joel on Software" title="Joel on Software"
type="rss"
xmlUrl="http://www.joelonsoftware.com/rss.xml" htmlUrl="http://www.joelonsoftware.com"/>
<outline text="Joi Ito's Web" title="Joi Ito's Web"
type="rss" xmlUrl="http://joi.ito.com/atom.xml" htmlUrl="http://joi.ito.com/weblog/"/>
<outline text="join the conversation"
title="join the conversation" type="rss"
xmlUrl="http://wopr.federatedmedia.net/~ayang/spinnaker/rss.php" htmlUrl="http://wopr.federatedmedia.net/~ayang/spinnaker/"/>
<outline text="jonathan's travels"
title="jonathan's travels" type="rss"
xmlUrl="http://jtrips.wordpress.com/feed/" htmlUrl="http://jtrips.wordpress.com"/>
<outline text="Justin Blanton" title="Justin Blanton"
type="rss" xmlUrl="http://justinblanton.com/syndicate" htmlUrl="http://hypertext.net"/>
<outline text="jvollmer.org" title="jvollmer.org" type="rss"
xmlUrl="http://feeds.feedburner.com/jvollmer" htmlUrl="http://jvollmer.org"/>
<outline text="jwz" title="jwz" type="rss"
xmlUrl="http://jwz.livejournal.com/data/atom" htmlUrl="http://jwz.livejournal.com/"/>
<outline text="kapowaz" title="kapowaz" type="rss"
xmlUrl="http://www.kapowaz.net/feed.xml" htmlUrl="http://stumble.kapowaz.net/"/>
<outline text="Kevin Burton's NEW FeedBlog"
title="Kevin Burton's NEW FeedBlog" type="rss"
xmlUrl="http://feedblog.org/feed/" htmlUrl="http://feedblog.org"/>
<outline text="Last Plane to Jakarta"
title="Last Plane to Jakarta" type="rss"
xmlUrl="http://www.lastplanetojakarta.com/atom.xml" htmlUrl="http://www.lastplanetojakarta.com/"/>
<outline text="little. yellow. different."
title="little. yellow. different." type="rss"
xmlUrl="http://www.littleyellowdifferent.com/feed/" htmlUrl="http://www.littleyellowdifferent.com"/>
<outline text="Magnetbox » Ideas" title="Magnetbox » Ideas"
type="rss"
xmlUrl="http://www.magnetbox.com/?feed=rss2&cat=5" htmlUrl="http://www.magnetbox.com"/>
<outline text="Maniacal Rage" title="Maniacal Rage"
type="rss" xmlUrl="http://maniacalrage.net/rss" htmlUrl="http://log.maniacalrage.net/"/>
<outline text="mathowie's blog" title="mathowie's blog"
type="rss"
xmlUrl="http://mathowie.vox.com/library/posts/atom.xml" htmlUrl="http://mathowie.vox.com/library/posts/page/1/"/>
<outline text="MBV" title="MBV" type="rss"
xmlUrl="http://www.mbvmusic.com/feed" htmlUrl="http://www.mbvmusic.com"/>
<outline text="Michel Gondry ·· News"
title="Michel Gondry ·· News" type="rss"
xmlUrl="http://www.director-file.com/gondry/news/?feed=rss2" htmlUrl="http://www.director-file.com/gondry/news"/>
<outline text="Mickipedia" title="Mickipedia" type="rss"
xmlUrl="http://www.mickipedia.com/?feed=rss2" htmlUrl="http://www.mickipedia.com"/>
<outline text="moopy &amp; me"
title="moopy &amp; me" type="rss"
xmlUrl="http://neststudio.typepad.com/moopy_me/atom.xml" htmlUrl="http://neststudio.typepad.com/moopy_me/"/>
<outline text="Movable Type News" title="Movable Type News"
type="rss"
xmlUrl="http://feeds.feedburner.com/MovableTypeNews" htmlUrl="http://www.movabletype.com/"/>
<outline text="n.sputnik" title="n.sputnik" type="rss"
xmlUrl="http://feeds.feedburner.com/nsputnik" htmlUrl="http://nsputnik.com"/>
<outline text="nick gray dot net - my blog"
title="nick gray dot net - my blog" type="rss"
xmlUrl="http://nickgray.net/atomfeed.xml" htmlUrl="http://nickgray.net/blog.html"/>
<outline text="nickbaum.com" title="nickbaum.com" type="rss"
xmlUrl="http://feeds.feedburner.com/nickbaum/" htmlUrl="http://posterous.nickbaum.com"/>
<outline text="NPR Blogs: Monitor Mix"
title="NPR Blogs: Monitor Mix" type="rss"
xmlUrl="http://www.npr.org/blogs/monitormix/index.xml" htmlUrl="http://www.npr.org/blogs/monitormix/"/>
<outline text="One-Button Mouse" title="One-Button Mouse"
type="rss" xmlUrl="http://onebuttonmouse.com/feed/" htmlUrl="http://onebuttonmouse.com"/>
<outline text="Particletree" title="Particletree" type="rss"
xmlUrl="http://particletree.com/rss/" htmlUrl="http://particletree.com"/>
<outline text="patrickmoberg.com" title="patrickmoberg.com"
type="rss" xmlUrl="http://www.patrickmoberg.com/rss" htmlUrl="http://www.patrickmoberg.com/"/>
<outline text="Paul Deegan" title="Paul Deegan" type="rss"
xmlUrl="http://feeds.feedburner.com/pauldeegan" htmlUrl="http://www.pauldeegan.com/index.php"/>
<outline text="Pitchfork: Today" title="Pitchfork: Today"
type="rss"
xmlUrl="http://www.pitchforkmedia.com/atom/today" htmlUrl="http://www.pitchforkmedia.com/page/home"/>
<outline text="practicalist" title="practicalist" type="rss"
xmlUrl="http://www.practicalist.com/mt/atom.xml" htmlUrl="http://www.practicalist.com/"/>
<outline
text="Proceedings of the Athanasius Kircher Society"
title="Proceedings of the Athanasius Kircher Society"
type="rss"
xmlUrl="http://www.kirchersociety.org/blog/?feed=rss2" htmlUrl="http://www.kirchersociety.org/blog"/>
<outline text="PVRblog" title="PVRblog" type="rss"
xmlUrl="http://www.pvrblog.com/pvr/index.rdf" htmlUrl="http://www.pvrblog.com/"/>
<outline text="Rabbit Blog" title="Rabbit Blog" type="rss"
xmlUrl="http://interglacial.com/rss/rabbitblog.rss" htmlUrl="http://www.rabbitblog.com/"/>
<outline text="Raw Thought (from Aaron Swartz)"
title="Raw Thought (from Aaron Swartz)" type="rss"
xmlUrl="http://www.aaronsw.com/weblog/index.xml" htmlUrl="http://www.aaronsw.com/weblog/"/>
<outline text="Recruitards.com" title="Recruitards.com"
type="rss" xmlUrl="http://recruitards.com/?feed=atom" htmlUrl="http://recruitards.com/"/>
<outline text="Rescue Muni" title="Rescue Muni" type="rss"
xmlUrl="http://www.rescuemuni.org/feed/" htmlUrl="http://www.rescuemuni.org"/>
<outline text="RobotSkirts" title="RobotSkirts" type="rss"
xmlUrl="http://www.robotskirts.com/feed/" htmlUrl="http://www.robotskirts.com"/>
<outline text="rodcorp" title="rodcorp" type="rss"
xmlUrl="http://feeds.feedburner.com/typepad/rmcl/rodcorp" htmlUrl="http://rodcorp.typepad.com/rodcorp/"/>
<outline text="Rough Type: Nicholas Carr's Blog"
title="Rough Type: Nicholas Carr's Blog" type="rss"
xmlUrl="http://feeds.feedburner.com/roughtype/unGc" htmlUrl="http://www.roughtype.com/"/>
<outline text="Rubbish, With Occasional Music"
title="Rubbish, With Occasional Music" type="rss"
xmlUrl="http://headcrab.org/feed/atom/" htmlUrl="http://headcrab.org/"/>
<outline text="ruhlman.com" title="ruhlman.com" type="rss"
xmlUrl="http://blog.ruhlman.com/ruhlmancom/atom.xml" htmlUrl="http://ruhlman.com/"/>
<outline text="Sam Ruby" title="Sam Ruby" type="rss"
xmlUrl="http://intertwingly.net/blog/index.atom" htmlUrl="http://www.google.com/reader/view/feed%2Fhttp%3A%2F%2Fintertwingly.net%2Fblog%2Findex.atom"/>
<outline text="San Francisco Brewcraft: Brewmasters' Blog"
title="San Francisco Brewcraft: Brewmasters' Blog"
type="rss"
xmlUrl="http://sanfranciscobrewcraft.wordpress.com/feed/" htmlUrl="http://sanfranciscobrewcraft.wordpress.com"/>
<outline text="Second Verse" title="Second Verse" type="rss"
xmlUrl="http://secondverse.wordpress.com/feed/" htmlUrl="http://secondverse.wordpress.com"/>
<outline text="Service Untitled" title="Service Untitled"
type="rss"
xmlUrl="http://feeds.feedburner.com/ServiceUntitled" htmlUrl="http://www.serviceuntitled.com"/>
<outline text="Shots Ring Out" title="Shots Ring Out"
type="rss"
xmlUrl="http://www.shotsringout.com/?feed=atom" htmlUrl="http://www.shotsringout.com/"/>
<outline text="Sixfoot6.com" title="Sixfoot6.com" type="rss"
xmlUrl="http://www.sixfoot6.com/feeds/index.xml" htmlUrl="http://www.sixfoot6.com/"/>
<outline text="slower.net" title="slower.net" type="rss"
xmlUrl="http://www.slower.net/index.rss.xml" htmlUrl="http://www.slower.net/"/>
<outline text="Soylent Green" title="Soylent Green"
type="rss"
xmlUrl="http://feeds.feedburner.com/peoplemakeitbetterblog" htmlUrl="http://www.peoplemakeitbetter.com/blog"/>
<outline text="Stay Free! Daily" title="Stay Free! Daily"
type="rss"
xmlUrl="http://blog.stayfreemagazine.org/index.rdf" htmlUrl="http://blog.stayfreemagazine.org/"/>
<outline text="strange maps" title="strange maps" type="rss"
xmlUrl="http://strangemaps.wordpress.com/feed/" htmlUrl="http://bigthink.com/blogs/strange-maps"/>
<outline text="strange|beautiful" title="strange|beautiful"
type="rss"
xmlUrl="http://www.strangebeautiful.net/feed/" htmlUrl="http://www.strangebeautiful.net"/>
<outline text="Streeter Seidell" title="Streeter Seidell"
type="rss" xmlUrl="http://streeter.tumblr.com/rss" htmlUrl="http://www.streeterseidell.com/"/>
<outline text="Subtraction" title="Subtraction" type="rss"
xmlUrl="http://www.subtraction.com/index.xml" htmlUrl="http://www.subtraction.com/"/>
<outline text="taint.org: Justin Mason's Weblog"
title="taint.org: Justin Mason's Weblog" type="rss"
xmlUrl="http://taint.org/feed/atom/" htmlUrl="http://taint.org/"/>
<outline text="teendrama" title="teendrama" type="rss"
xmlUrl="http://feeds.feedburner.com/teendrama" htmlUrl="http://dpstyles.tumblr.com/"/>
<outline text="That's How It Happened"
title="That's How It Happened" type="rss"
xmlUrl="http://www.howithappened.com/atom.xml" htmlUrl="http://howithappened.com/"/>
<outline text="The Anti-Advertising Agency"
title="The Anti-Advertising Agency" type="rss"
xmlUrl="http://antiadvertisingagency.com/feed/atom/" htmlUrl="http://antiadvertisingagency.com/"/>
<outline text="The Daily Brad" title="The Daily Brad"
type="rss"
xmlUrl="http://www.bradlands.com/dailybrad/atom.xml" htmlUrl="http://www.bradlands.com/dailybrad/"/>
<outline text="The Laboratorium" title="The Laboratorium"
type="rss" xmlUrl="http://laboratorium.net/atom.xml" htmlUrl="http://laboratorium.net/"/>
<outline text="the last ten days" title="the last ten days"
type="rss"
xmlUrl="http://glass.typepad.com/journal/index.rdf" htmlUrl="http://journal.chrisglass.com/"/>
<outline text="The Macalope: An Apple blog"
title="The Macalope: An Apple blog" type="rss"
xmlUrl="http://blogs.cnet.com/8300-13509_1-20.xml" htmlUrl="http://blogs.cnet.com/8300-13509_1-20.html"/>
<outline
text="The Merlin Show - Thirty theoretically productive frames per second"
title="The Merlin Show - Thirty theoretically productive frames per second"
type="rss" xmlUrl="http://www.themerlinshow.com/rss.xml" htmlUrl="http://www.themerlinshow.com"/>
<outline text="The Morning News" title="The Morning News"
type="rss"
xmlUrl="http://www.themorningnews.org/rss.xml" htmlUrl="http://www.themorningnews.org/"/>
<outline text="The Mountain Goats"
title="The Mountain Goats" type="rss"
xmlUrl="http://feeds.feedburner.com/TheMountainGoats" htmlUrl="http://www.mountain-goats.com/"/>
<outline text="The Netsetter" title="The Netsetter"
type="rss" xmlUrl="http://thenetsetter.com/blog/feed/" htmlUrl="http://thenetsetter.com/blog"/>
<outline text="The Presurfer" title="The Presurfer"
type="rss"
xmlUrl="http://presurfer.blogspot.com/feeds/posts/default" htmlUrl="http://presurfer.blogspot.com/"/>
<outline text="The Sartorialist" title="The Sartorialist"
type="rss"
xmlUrl="http://thesartorialist.blogspot.com/feeds/posts/default" htmlUrl="http://thesartorialist.blogspot.com/"/>
<outline text="Things I've Bought that I Love"
title="Things I've Bought that I Love" type="rss"
xmlUrl="http://mindyephron.blogspot.com/feeds/posts/default" htmlUrl="http://mindyephron.blogspot.com/"/>
<outline text="this is aaronland" title="this is aaronland"
type="rss"
xmlUrl="http://www.aaronland.info/weblog/syndication/atom-0.3.xml" htmlUrl="http://www.aaronland.info/weblog"/>
<outline text="Three Minds @ Organic"
title="Three Minds @ Organic" type="rss"
xmlUrl="http://threeminds.organic.com/atom.xml" htmlUrl="http://threeminds.organic.com/"/>
<outline text="tien mao's little read book..."
title="tien mao's little read book..." type="rss"
xmlUrl="http://www.tienmao.com/index.rdf" htmlUrl="http://www.tienmao.com/"/>
<outline text="Veronica Belmont" title="Veronica Belmont"
type="rss"
xmlUrl="http://www.veronicabelmont.com/feed/atom/" htmlUrl="http://www.veronicabelmont.com"/>
<outline text="waferbaby: The latest"
title="waferbaby: The latest" type="rss"
xmlUrl="http://feed.waferbaby.com/" htmlUrl="http://waferbaby.com/"/>
<outline text="We Made This" title="We Made This" type="rss"
xmlUrl="http://feeds.feedburner.com/wemadethisblog" htmlUrl="http://www.wemadethis.co.uk/blog"/>
<outline text="Western Homes" title="Western Homes"
type="rss"
xmlUrl="http://rss.toaster.tv/blogs/westernhomes.xml" htmlUrl="http://westernhomes.toaster.tv/"/>
<outline text="Wonderland" title="Wonderland" type="rss"
xmlUrl="http://feeds.feedburner.com/Wonderland" htmlUrl="http://www.wonderlandblog.com/wonderland/"/>
<outline text="yizzle.com" title="yizzle.com" type="rss"
xmlUrl="http://yizzle.com/?feed=atom" htmlUrl="http://yizzle.com"/>
<outline text="You Aint No Picasso"
title="You Aint No Picasso" type="rss"
xmlUrl="http://www.youaintnopicasso.com/feed/" htmlUrl="http://www.youaintnopicasso.com"/>
<outline text="youngpup.net" title="youngpup.net" type="rss"
xmlUrl="http://www.youngpup.net/rss" htmlUrl="http://youngpup.net/"/>
<outline text="Your Daily Awesome"
title="Your Daily Awesome" type="rss"
xmlUrl="http://www.yourdailyawesome.com/feed/atom/" htmlUrl="http://www.yourdailyawesome.com"/>
<outline text="Zach Klein" title="Zach Klein" type="rss"
xmlUrl="http://www.zachklein.com/blog/atom.xml" htmlUrl="http://pipes.yahoo.com/pipes/pipe.info?_id=iFVQG5fS3BGzRrpSJhOy0Q"/>
<outline text="Zulkey.com" title="Zulkey.com" type="rss"
xmlUrl="http://www.zulkey.com/atom.xml" htmlUrl="http://www.zulkey.com/"/>
</outline>
<outline title="Fun" text="Fun">
<outline text="@heyhuxley - Webstagram"
title="@heyhuxley - Webstagram" type="rss"
xmlUrl="http://web.stagram.com/rss/n/heyhuxley/" htmlUrl="http://web.stagram.com/rss/n/heyhuxley/"/>
<outline text="Best of Craigslist"
title="Best of Craigslist" type="rss"