-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathout.txt
More file actions
10567 lines (10567 loc) · 610 KB
/
out.txt
File metadata and controls
10567 lines (10567 loc) · 610 KB
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
#1: http://www.nbcnews.com/id/53178567/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, October 01, 2013
#2: http://www.nbcnews.com/id/38935621/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, August 30th, 2010
#3: http://www.nbcnews.com/id/51645529/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, April 23rd, 2013
#4: http://www.nbcnews.com/id/47356028/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, April 25, 2012
#5: http://www.nbcnews.com/id/54428960/ns/msnbc-the_ed_show/
The Ed Show Monday, February 17th, 2014
#6: http://www.nbcnews.com/id/33177583/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, October 2, 2009
#7: http://www.nbcnews.com/id/44890928/ns/msnbc-the_ed_show/
The Ed Show Wednesday, October 12, 2011
#8: http://www.nbcnews.com/id/54951050/ns/msnbc-rachel_maddow_show/
Up with Steve Kornacki Saturday, April 12th, 2014
#9: http://www.nbcnews.com/id/53086443/ns/msnbc/
The Melissa Harris-Perry Show Saturday, September 21st, 2013
#10: http://www.nbcnews.com/id/54280815/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, February 4th, 2014
#11: http://www.nbcnews.com/id/49418506/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, October 12th, 2012
#12: http://www.nbcnews.com/id/44961785/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, October 18, 2011
#13: http://www.nbcnews.com/id/33721444/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, November 5, 2009
#14: http://www.nbcnews.com/id/54099977/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, January 16th, 2014
#15: http://www.nbcnews.com/id/42647628/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, April 15th, 2011
#16: http://www.nbcnews.com/id/48044318/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, June 28, 2012
#17: http://www.nbcnews.com/id/50146108/ns/msnbc-politicsnation/
PoliticsNation Friday, December 7, 2012
#18: http://www.nbcnews.com/id/52850362/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, August 22nd, 2013
#19: http://www.nbcnews.com/id/49212497/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, September 27th, 2012
#20: http://www.nbcnews.com/id/28032843/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday December 2, 2008
#21: http://www.nbcnews.com/id/53061770/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, September 19th, 2013
#22: http://www.nbcnews.com/id/52400125/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, July 3rd, 2013
#23: http://www.nbcnews.com/id/43741600/ns/msnbc-the_ed_show/
The Ed Show Tuesday, July 12, 2011
#24: http://www.nbcnews.com/id/53373342/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, October 24th, 2013
#25: http://www.nbcnews.com/id/54234219/ns/msnbc-the_ed_show/
The Ed Show Thursday, January 30, 2014
#26: http://www.nbcnews.com/id/28368527/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, December 22
#27: http://www.nbcnews.com/id/54022268/ns/msnbc-the_ed_show/
The Ed Show Wednesday, January 8th, 2014
#28: http://www.nbcnews.com/id/42956993/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, May 6, 2011
#29: http://www.nbcnews.com/id/45255587/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, November 10th, 2011
#30: http://www.nbcnews.com/id/53994033/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, December 17th, 2013
#31: http://www.nbcnews.com/id/34431078/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, December 14th, 2009
#32: http://www.nbcnews.com/id/33654885/ns/msnbc-the_ed_show/
The Ed Show Wednesday, November 4, 2009
#33: http://www.nbcnews.com/id/34148750/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, November 24, 2009
#34: http://www.nbcnews.com/id/45816082/ns/msnbc-the_ed_show/
The Ed Show Tuesday, December 27, 2011
#35: http://www.nbcnews.com/id/39350014/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, September 22nd, 2010
#36: http://www.nbcnews.com/id/52430109/ns/msnbc-politicsnation/
PoliticsNation Monday, July 8th, 2013
#37: http://www.nbcnews.com/id/50694931/ns/msnbc-politicsnation/
PoliticsNation Friday, February 1st, 2013
#38: http://www.nbcnews.com/id/44718212/ns/msnbc-the_ed_show/
The Ed Show Wednesday, September 28, 2011
#39: http://www.nbcnews.com/id/45670494/ns/msnbc-the_ed_show/
The Ed Show Tuesday, December 13, 2011
#40: http://www.nbcnews.com/id/53590598/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Friday, November 15th, 2013
#41: http://www.nbcnews.com/id/48147288/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, July 10, 2012
#42: http://www.nbcnews.com/id/47006184/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, April 9, 2012
#43: http://www.nbcnews.com/id/45476746/ns/msnbc-the_ed_show/
The Ed Show Monday, November 28th, 2011
#44: http://www.nbcnews.com/id/30069095/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, April 3, 2009
#45: http://www.nbcnews.com/id/48813337/ns/msnbc-politicsnation/
PoliticsNation Monday, August 27, 2012
#46: http://www.nbcnews.com/id/53396566/ns/msnbc-rachel_maddow_show/
Up with Steve Kornacki Sunday, October 27th, 2013
#47: http://www.nbcnews.com/id/39617209/ns/msnbc-the_ed_show/
The Ed Show Friday, Oct. 8th, 2010
#48: http://www.nbcnews.com/id/28178085/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, December 10, 2008
#49: http://www.nbcnews.com/id/42720084/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, April 21st, 2011
#50: http://www.nbcnews.com/id/45510180/ns/msnbc-politicsnation/
PoliticsNation Wednesday, November 30, 2011
#51: http://www.nbcnews.com/id/54634282/ns/msnbc/
The Melissa Harris-Perry Show Saturday, March 8th, 2014
#52: http://www.nbcnews.com/id/51645351/ns/msnbc-politicsnation/
PoliticsNation Tuesday, April 23rd, 2013
#53: http://www.nbcnews.com/id/37638128/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, June 10th, 2010
#54: http://www.nbcnews.com/id/29894735/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, March 25
#55: http://www.nbcnews.com/id/45612378/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, December 8th, 2011
#56: http://www.nbcnews.com/id/35479410/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, February 18th, 2010
#57: http://www.nbcnews.com/id/27825297/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, November 18, 2008
#58: http://www.nbcnews.com/id/44961497/ns/msnbc-the_ed_show/
Tuesday October 18, 2011
#59: http://www.nbcnews.com/id/36663185/ns/msnbc-hardball_with_chris_matthews/
#60: http://www.nbcnews.com/id/52763115/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, August 14th, 2013
#61: http://www.nbcnews.com/id/48688994/ns/msnbc-the_ed_show/
The Ed Show Wednesday, August 15th, 2012
#62: http://www.nbcnews.com/id/42214473/ns/msnbc/
#63: http://www.nbcnews.com/id/54846309/ns/msnbc-the_ed_show/
The Ed Show Tuesday, April 1st, 2014
#64: http://www.nbcnews.com/id/50270469/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, December 20th, 2012
#65: http://www.nbcnews.com/id/55090176/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, May 1st, 2014
#66: http://www.nbcnews.com/id/34240404/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, December 1, 2009, 11 p.m.
#67: http://www.nbcnews.com/id/42196096/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, March 17th, 2011
#68: http://www.nbcnews.com/id/48764687/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, August 22nd, 2012
#69: http://www.nbcnews.com/id/54653999/ns/msnbc-the_ed_show/
The Ed Show Tuesday, March 11th, 2014
#70: http://www.nbcnews.com/id/42214552/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, March 21st, 2011
#71: http://www.nbcnews.com/id/53362245/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Tuesday, October 22, 2013
#72: http://www.nbcnews.com/id/36217968/ns/msnbc-hardball_with_chris_matthews/
#73: http://www.nbcnews.com/id/47375223/ns/msnbc-politicsnation/
PoliticsNation Wednesday, May 9, 2012
#74: http://www.nbcnews.com/id/44231723/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, August 11, 2011
#75: http://www.nbcnews.com/id/34642917/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, December 29th, 2009
#76: http://www.nbcnews.com/id/44287763/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, August 25, 2011
#77: http://www.nbcnews.com/id/26958774/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday September 29, 2008
#78: http://www.nbcnews.com/id/54564343/ns/msnbc-politicsnation/
PoliticsNation Friday, February 28th, 2014
#79: http://www.nbcnews.com/id/55400663/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, June 12th, 2014
#80: http://www.nbcnews.com/id/54846250/ns/msnbc-politicsnation/
PoliticsNation Tuesday, April 1st, 2014
#81: http://www.nbcnews.com/id/44625571/ns/msnbc-politicsnation/
PoliticsNation Wednesday, September 21, 2011
#82: http://www.nbcnews.com/id/54929415/ns/msnbc-politicsnation/
PoliticsNation Thursday, April 10th, 2014
#83: http://www.nbcnews.com/id/32895753/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, September 16, 2009
#84: http://www.nbcnews.com/id/52772368/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, August 15th, 2013
#85: http://www.nbcnews.com/id/47359611/ns/msnbc-the_ed_show/
The Ed Show Tuesday, April 24, 2012
#86: http://www.nbcnews.com/id/53345733/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, October 21, 2013
#87: http://www.nbcnews.com/id/49180332/ns/msnbc-politicsnation/
PoliticsNation Tuesday, September 25th, 2012
#88: http://www.nbcnews.com/id/50695081/ns/msnbc/
The Melissa Harris-Perry Show February 2nd, 2013
#89: http://www.nbcnews.com/id/54234583/ns/msnbc-politicsnation/
PoliticsNation Thursday, Januay 30, 2014
#90: http://www.nbcnews.com/id/41392698/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, February 1st, 2011
#91: http://www.nbcnews.com/id/26979239/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday October 10, 2008
#92: http://www.nbcnews.com/id/26458862/ns/msnbc-hardball_with_chris_matthews/
Special Coverage the DNC - Thursday, August 28
#93: http://www.nbcnews.com/id/52991956/ns/msnbc-politicsnation/
PoliticsNation Tuesday, September 10th, 2013
#94: http://www.nbcnews.com/id/47804711/ns/msnbc-the_ed_show/
The Ed Show Monday, June 11, 2012
#95: http://www.nbcnews.com/id/53658931/ns/msnbc-rachel_maddow_show/
Up with Steve Kornacki Saturday, November 23rd, 2013
#96: http://www.nbcnews.com/id/53457670/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, October 31st, 2013
#97: http://www.nbcnews.com/id/46237961/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, February 1, 2012
#98: http://www.nbcnews.com/id/55010817/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Monday, April 21, 2014
#99: http://www.nbcnews.com/id/49021381/ns/msnbc-politicsnation/
PoliticsNation Wednesday, September 12th, 2012
#100: http://www.nbcnews.com/id/40557723/ns/msnbc-the_ed_show/
The Ed Show Monday, December 6th, 2010
#101: http://www.nbcnews.com/id/53499884/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Thursday, November 7th, 2013
#102: http://www.nbcnews.com/id/44989764/ns/msnbc-the_ed_show/
The Ed Show Thursday, October 20th, 2011
#103: http://www.nbcnews.com/id/52735209/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, August 9th, 2013
#104: http://www.nbcnews.com/id/45972490/ns/msnbc-politicsnation/
PoliticsNation Wednesday, January 11, 2012
#105: http://www.nbcnews.com/id/53255713/ns/msnbc-politicsnation/
PoliticsNation Thursday, October 10th, 2013
#106: http://www.nbcnews.com/id/52743898/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, August 12th, 2013
#107: http://www.nbcnews.com/id/28693902/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show January 14, 2009
#108: http://www.nbcnews.com/id/45046021/ns/msnbc-the_ed_show/
The Ed Show Tuesday, October 25, 2011
#109: http://www.nbcnews.com/id/49805962/ns/msnbc-politicsnation/
PoliticsNation Monday, November 12th, 2012
#110: http://www.nbcnews.com/id/52022006/ns/msnbc-the_ed_show/
The Ed Show Saturday, May 25th, 2013
#111: http://www.nbcnews.com/id/55375878/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, June 9th, 2014
#112: http://www.nbcnews.com/id/44452497/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, September 8, 2011
#113: http://www.nbcnews.com/id/53635581/ns/msnbc-politicsnation/
PoliticsNation Thursday, November 21
#114: http://www.nbcnews.com/id/53522680/ns/msnbc-politicsnation/
PoliticsNation Friday, November 8th, 2013
#115: http://www.nbcnews.com/id/50873107/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, February 19th, 2013
#116: http://www.nbcnews.com/id/32372208/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, August 10, 2009
#117: http://www.nbcnews.com/id/41873540/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, March 1st, 2011
#118: http://www.nbcnews.com/id/38385355/ns/msnbc-the_ed_show/
The Ed Show Thursday, July 22nd, 2010
#119: http://www.nbcnews.com/id/41297216/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, January 26th, 2011
#120: http://www.nbcnews.com/id/43356252/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, June 9, 2011
#121: http://www.nbcnews.com/id/45401069/ns/msnbc-the_ed_show/
The Ed Show Monday, November 21st, 2011
#122: http://www.nbcnews.com/id/41499491/ns/msnbc-the_ed_show/
The Ed Show Tuesday, February 8th, 2011
#123: http://www.nbcnews.com/id/51429105/ns/msnbc-politicsnation/
PoliticsNation Tuesday, April 2nd, 2013
#124: http://www.nbcnews.com/id/51762957/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, May 2nd, 2013
#125: http://www.nbcnews.com/id/47951442/ns/msnbc-politicsnation/
PoliticsNation Monday, July 2, 2012
#126: http://www.nbcnews.com/id/53373455/ns/msnbc-the_ed_show/
The Ed Show Thursday, Otcober 24
#127: http://www.nbcnews.com/id/49146988/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, September 20th, 2012
#128: http://www.nbcnews.com/id/42272846/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, August 16th, 2010 (put correct date)
#129: http://www.nbcnews.com/id/53467536/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, November 04, 2013
#130: http://www.nbcnews.com/id/54644161/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, March 10, 2014
#131: http://www.nbcnews.com/id/54100118/ns/msnbc-the_ed_show/
The Ed Show Thursday, Janurary 16th, 2014
#132: http://www.nbcnews.com/id/46100913/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, January 20, 2012
#133: http://www.nbcnews.com/id/38166019/ns/msnbc-the_ed_show/
The Ed Show Thursday, July 8th, 2010
#134: http://www.nbcnews.com/id/37357290/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, May 25th, 2010
#135: http://www.nbcnews.com/id/49274645/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, October 2nd, 2012
#136: http://www.nbcnews.com/id/45857610/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, January 2, 2012
#137: http://www.nbcnews.com/id/48609874/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, August 9, 2012
#138: http://www.nbcnews.com/id/45076026/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, October 27th, 2011
#139: http://www.nbcnews.com/id/37705754/ns/msnbc-the_ed_show/
The Ed Show Monday, June 14th, 2010
#140: http://www.nbcnews.com/id/45034991/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, October 21, 2011
#141: http://www.nbcnews.com/id/45816141/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, December 27
#142: http://www.nbcnews.com/id/43896338/ns/msnbc-the_ed_show/
The Ed Show Monday, July 25, 2011
#143: http://www.nbcnews.com/id/26961253/ns/msnbc-hardball_with_chris_matthews/
Special Coverage the First Presidential Debate - Friday September 26, 2008
#144: http://www.nbcnews.com/id/40966860/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, January 6th, 2011
#145: http://www.nbcnews.com/id/54929518/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Thursday, April 10th, 2014
#146: http://www.nbcnews.com/id/39312153/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, September 21st, 2010
#147: http://www.nbcnews.com/id/36461352/ns/msnbc-hardball_with_chris_matthews/
#148: http://www.nbcnews.com/id/50990085/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, February 27th, 2013
#149: http://www.nbcnews.com/id/46116072/ns/msnbc-politicsnation/
PoliticsNation Monday, January 23, 2012
#150: http://www.nbcnews.com/id/28936714/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show January 29, 2009
#151: http://www.nbcnews.com/id/49465433/ns/msnbc-politicsnation/
PoliticsNation Wednesday, October 17th, 2012
#152: http://www.nbcnews.com/id/51675633/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, April 25th, 2013
#153: http://www.nbcnews.com/id/51429390/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, April 2nd, 2013
#154: http://www.nbcnews.com/id/54653905/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, March 11th, 2014
#155: http://www.nbcnews.com/id/48121014/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, July 10, 2012
#156: http://www.nbcnews.com/id/27405649/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday October 24, 2008
#157: http://www.nbcnews.com/id/49623460/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, October 26th, 2012
#158: http://www.nbcnews.com/id/48650696/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, August 10, 2012
#159: http://www.nbcnews.com/id/51645489/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, April 23rd, 2013
#160: http://www.nbcnews.com/id/53414430/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, October 29th, 2013
#161: http://www.nbcnews.com/id/36115758/ns/msnbc-hardball_with_chris_matthews/
#162: http://www.nbcnews.com/id/36503521/ns/msnbc-hardball_with_chris_matthews/
#163: http://www.nbcnews.com/id/38166330/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, July 8th, 2010
#164: http://www.nbcnews.com/id/55237286/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Wednesday, May 14th, 2014
#165: http://www.nbcnews.com/id/53715754/ns/msnbc-politicsnation/
PoliticsNation Wednesday, November 27th, 2013
#166: http://www.nbcnews.com/id/49790541/ns/msnbc-the_ed_show/
The Ed Show Friday, November 9th, 2012
#167: http://www.nbcnews.com/id/49855217/ns/msnbc-politicsnation/
PoliticsNation Thursday, November 15th, 2012
#168: http://www.nbcnews.com/id/47356160/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, May 2, 2012
#169: http://www.nbcnews.com/id/44929833/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, October 14, 2011
#170: http://www.nbcnews.com/id/55001857/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, April 18th, 2014
#171: http://www.nbcnews.com/id/53344951/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, October 21, 2013
#172: http://www.nbcnews.com/id/54468348/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, February 19th, 2014
#173: http://www.nbcnews.com/id/47508492/ns/msnbc/
The Melissa Harris-Perry Show Sunday, May 20, 2012
#174: http://www.nbcnews.com/id/46966672/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, April 2, 2012
#175: http://www.nbcnews.com/id/39777295/ns/msnbc-rachel_maddow_show/
#176: http://www.nbcnews.com/id/38016467/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, June 29th, 2010
#177: http://www.nbcnews.com/id/48972188/ns/msnbc/
The Melissa Harris-Perry Show Saturday, September 8th, 2012
#178: http://www.nbcnews.com/id/40258687/ns/msnbc/
#179: http://www.nbcnews.com/id/51135075/ns/msnbc/
The Melissa Harris-Perry Show Saturday, March 9th, 2013
#180: http://www.nbcnews.com/id/39172713/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday,
#181: http://www.nbcnews.com/id/51290738/ns/msnbc-politicsnation/
PoliticsNation Thursday, March 21st, 2013
#182: http://www.nbcnews.com/id/51819624/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, May 7th, 2013
#183: http://www.nbcnews.com/id/46191230/ns/msnbc-the_ed_show/
The Ed Show Thursday, January 26, 2012
#184: http://www.nbcnews.com/id/50026956/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, November 29th, 2012
#185: http://www.nbcnews.com/id/50421050/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, January 9th, 2013
#186: http://www.nbcnews.com/id/46761772/ns/msnbc-the_ed_show/
The Ed Show Thursday, March 15, 2012
#187: http://www.nbcnews.com/id/52810954/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, August 20th, 2013
#188: http://www.nbcnews.com/id/46574608/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, Februrary 28, 2012
#189: http://www.nbcnews.com/id/52421684/ns/msnbc/
The Melissa Harris-Perry Show Sunday, July 7th, 2013
#190: http://www.nbcnews.com/id/52179787/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, June 11th, 2013
#191: http://www.nbcnews.com/id/47696679/ns/msnbc-the_ed_show/
The Ed Show Monday, June 4, 2012
#192: http://www.nbcnews.com/id/50956798/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday February 25th, 2013
#193: http://www.nbcnews.com/id/52204728/ns/msnbc-politicsnation/
PoliticsNation Thursday, June 13th, 2013
#194: http://www.nbcnews.com/id/54516457/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, February 25th, 2014
#195: http://www.nbcnews.com/id/52192998/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, June 12th, 2013
#196: http://www.nbcnews.com/id/47864837/ns/msnbc-the_ed_show/
The Ed Show Friday, June 15, 2012
#197: http://www.nbcnews.com/id/43008014/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, May 11th, 2011
#198: http://www.nbcnews.com/id/53433496/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, October 31st, 2013
#199: http://www.nbcnews.com/id/46966673/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, April 3, 2012
#200: http://www.nbcnews.com/id/44287885/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, August 24, 2011
#201: http://www.nbcnews.com/id/46642619/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, March 5, 2012
#202: http://www.nbcnews.com/id/50944566/ns/msnbc/
The Melissa Harris-Perry Show Saturday, February 23rd, 2013
#203: http://www.nbcnews.com/id/42421775/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, April 1st, 2011
#204: http://www.nbcnews.com/id/39520986/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, Oct. 4th, 2010
#205: http://www.nbcnews.com/id/42680552/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, April 19, 2011
#206: http://www.nbcnews.com/id/55063151/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, April 28, 2014
#207: http://www.nbcnews.com/id/54055924/ns/msnbc-the_ed_show/
The Ed Show Friday, January 10th, 2014
#208: http://www.nbcnews.com/id/42974458/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, May 9th, 2011
#209: http://www.nbcnews.com/id/52694872/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, August 6th, 2013
#210: http://www.nbcnews.com/id/37637301/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, June 10th, 2010
#211: http://www.nbcnews.com/id/49744853/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, November 7th, 2012
#212: http://www.nbcnews.com/id/53715844/ns/msnbc-politicsnation/
PoliticsNation Tuesday, November 26th, 2013
#213: http://www.nbcnews.com/id/41499646/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, February 8th, 2011
#214: http://www.nbcnews.com/id/52159612/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, June 7th, 2013
#215: http://www.nbcnews.com/id/54468046/ns/msnbc/
The Melissa Harris-Perry Show Sunday, February 16th, 2014
#216: http://www.nbcnews.com/id/43990024/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, July 28, 2011
#217: http://www.nbcnews.com/id/46762101/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, March 15, 2012
#218: http://www.nbcnews.com/id/54907340/ns/msnbc-politicsnation/
PoliticsNation Tuesday, April 8th, 2014
#219: http://www.nbcnews.com/id/50944358/ns/msnbc-the_ed_show/
The Ed Show Friday, February 22nd, 2013
#220: http://www.nbcnews.com/id/47830681/ns/msnbc-politicsnation/
PoliticsNation Thursday, June 14, 2012
#221: http://www.nbcnews.com/id/40927168/ns/msnbc-the_ed_show/
The Ed Show Tuesday, January 4th, 2011
#222: http://www.nbcnews.com/id/48241737/ns/msnbc-the_ed_show/
The Ed Show Wednesday, July 18, 2012
#223: http://www.nbcnews.com/id/36218173/ns/msnbc-rachel_maddow_show/
#224: http://www.nbcnews.com/id/49478406/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, October 18th, 2012
#225: http://www.nbcnews.com/id/34805567/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, January 8th, 2010
#226: http://www.nbcnews.com/id/53220517/ns/msnbc/
The Last Word with Lawrence O'Donnell' for October 7th, 2013
#227: http://www.nbcnews.com/id/50363698/ns/msnbc-politicsnation/
PoliticsNation Thursday, January 3rd, 2013
#228: http://www.nbcnews.com/id/32627387/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, August 28, 2009
#229: http://www.nbcnews.com/id/34974924/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, January 20th, 2010
#230: http://www.nbcnews.com/id/46761771/ns/msnbc-the_ed_show/
The Ed Show Wednesday, March 14
#231: http://www.nbcnews.com/id/50146719/ns/msnbc/
The Melissa Harris-Perry Show Sunday, December 9th, 2012
#232: http://www.nbcnews.com/id/48843753/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, August 29th, 2012
#233: http://www.nbcnews.com/id/50944728/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, February 22nd, 2013
#234: http://www.nbcnews.com/id/43395792/ns/msnbc-the_ed_show/
The Ed Show Monday, June 13, 2011
#235: http://www.nbcnews.com/id/50435503/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, January 10th, 2013
#236: http://www.nbcnews.com/id/47479899/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, May 17, 2012
#237: http://www.nbcnews.com/id/42031949/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, March 10th, 2011
#238: http://www.nbcnews.com/id/50574246/ns/msnbc-the_ed_show/
The Ed Show Wednesday, January 23rd, 2013
#239: http://www.nbcnews.com/id/35420313/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, February 15, 2010
#240: http://www.nbcnews.com/id/44609194/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, September 20, 2011
#241: http://www.nbcnews.com/id/46281041/ns/msnbc-politicsnation/
PoliticsNation Friday, February 3, 2012
#242: http://www.nbcnews.com/id/41951481/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, March 4th, 2011
#243: http://www.nbcnews.com/id/53612303/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, November 19th, 2013
#244: http://www.nbcnews.com/id/52743782/ns/msnbc-politicsnation/
PoliticsNation Monday, August 12th, 2013
#245: http://www.nbcnews.com/id/40910487/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, January 3rd, 2011
#246: http://www.nbcnews.com/id/52106400/ns/msnbc-politicsnation/
PoliticsNation Monday, June 3rd, 2013
#247: http://www.nbcnews.com/id/46823377/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, March 21, 2012
#248: http://www.nbcnews.com/id/43381273/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, June 10, 2011
#249: http://www.nbcnews.com/id/47064490/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, April 12, 2012
#250: http://www.nbcnews.com/id/53034152/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, September 16th, 2013
#251: http://www.nbcnews.com/id/38343831/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, July 20th, 2010
#252: http://www.nbcnews.com/id/47864876/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, June 15, 2012
#253: http://www.nbcnews.com/id/48730188/ns/msnbc-the_ed_show/
The Ed Show Friday, August 17, 2012
#254: http://www.nbcnews.com/id/49330728/ns/msnbc/
The Melissa Harris-Perry Show Sunday, October 7th, 2012
#255: http://www.nbcnews.com/id/44342491/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, August 30, 2011
#256: http://www.nbcnews.com/id/41156426/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, January 10th, 2011
#257: http://www.nbcnews.com/id/37685206/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, June 11th, 2010
#258: http://www.nbcnews.com/id/54653867/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, March 11th, 2014
#259: http://www.nbcnews.com/id/53416426/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Tuesday, October 29th, 2013
#260: http://www.nbcnews.com/id/26440696/ns/msnbc-hardball_with_chris_matthews/
Special Coverage the Democratic National Convention - Wednesday, August 27
#261: http://www.nbcnews.com/id/34642974/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, December 23rd, 2009
#262: http://www.nbcnews.com/id/47461810/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, May 16, 2012
#263: http://www.nbcnews.com/id/45568775/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, December 5, 2011
#264: http://www.nbcnews.com/id/29058304/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show February 5, 2009
#265: http://www.nbcnews.com/id/42421492/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, April 1st, 2011
#266: http://www.nbcnews.com/id/44639338/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, September 22nd, 2011
#267: http://www.nbcnews.com/id/35561716/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, February 23, 2010
#268: http://www.nbcnews.com/id/50397453/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, January 7th, 2013
#269: http://www.nbcnews.com/id/48677252/ns/msnbc-the_ed_show/
The Ed Show Tuesday, August 14, 2012
#270: http://www.nbcnews.com/id/51290764/ns/msnbc-the_ed_show/
The Ed Show Thursday, March 21st, 2013
#271: http://www.nbcnews.com/id/53734079/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, December 2nd, 2013
#272: http://www.nbcnews.com/id/46383183/ns/msnbc-politicsnation/
PoliticsNation Monday, February 13, 2012
#273: http://www.nbcnews.com/id/52802228/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, August 19th, 2013
#274: http://www.nbcnews.com/id/53276918/ns/msnbc/
The Melissa Harris-Perry Show Saturday, October 12th, 2013
#275: http://www.nbcnews.com/id/54013272/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, January 7th, 2014
#276: http://www.nbcnews.com/id/54806780/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, March 27, 2014
#277: http://www.nbcnews.com/id/43183390/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, May 25th, 2011
#278: http://www.nbcnews.com/id/51176775/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, March 13th, 2013
#279: http://www.nbcnews.com/id/54701153/ns/msnbc/
The Melissa Harris-Perry Show Saturday, March 15th, 2014
#280: http://www.nbcnews.com/id/54865263/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, April 3rd, 2014
#281: http://www.nbcnews.com/id/50435465/ns/msnbc-politicsnation/
PoliticsNation Thursday, January 10th, 2013
#282: http://www.nbcnews.com/id/32954665/ns/msnbc-the_ed_show/
The Ed Show Friday, September 19, 2009
#283: http://www.nbcnews.com/id/47356490/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, May 7, 2012
#284: http://www.nbcnews.com/id/51978380/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, May 22nd, 2013
#285: http://www.nbcnews.com/id/49507210/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, October 19th, 2012
#286: http://www.nbcnews.com/id/42115001/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, March 15th, 2011
#287: http://www.nbcnews.com/id/54234075/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, January 30th, 2014
#288: http://www.nbcnews.com/id/47006020/ns/msnbc-politicsnation/
PoliticsNation Monday, April 9, 2012
#289: http://www.nbcnews.com/id/30369127/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, April 21
#290: http://www.nbcnews.com/id/53306401/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, October 16th, 2013
#291: http://www.nbcnews.com/id/45462676/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, November 23, 2011
#292: http://www.nbcnews.com/id/54031831/ns/msnbc-the_ed_show/
The Ed Show Thursday, January 9th, 2014
#293: http://www.nbcnews.com/id/43153744/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, May 20th, 2011
#294: http://www.nbcnews.com/id/35330958/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, February 9th, 2010
#295: http://www.nbcnews.com/id/40898026/ns/msnbc-the_ed_show/
The Ed Show Thursday, December 23rd, 2010
#296: http://www.nbcnews.com/id/36178635/ns/msnbc-the_ed_show/
The Ed Show Friday, April 2nd, 2010
#297: http://www.nbcnews.com/id/46720403/ns/msnbc-the_ed_show/
The Ed Show Monday, March 12, 2012
#298: http://www.nbcnews.com/id/46072853/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, January 19, 2012
#299: http://www.nbcnews.com/id/38659829/ns/msnbc-the_ed_show/
The Ed Show Tuesday, August 10th, 2010
#300: http://www.nbcnews.com/id/48813436/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, August 27th, 2012
#301: http://www.nbcnews.com/id/45765001/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, December 21st, 2011
#302: http://www.nbcnews.com/id/40078873/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, November 8th, 2010
#303: http://www.nbcnews.com/id/46310834/ns/msnbc-politicsnation/
PoliticsNation Tuesday, February 7, 2012
#304: http://www.nbcnews.com/id/49568415/ns/msnbc-politicsnation/
PoliticsNation Wednesday, October 25th, 2012
#305: http://www.nbcnews.com/id/41831872/ns/msnbc-the_ed_show/
The Ed Show Thursday, February 24th, 2011
#306: http://www.nbcnews.com/id/48057985/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, July 2, 2012
#307: http://www.nbcnews.com/id/54386915/ns/msnbc-the_ed_show/
The Ed Show Thursday, February 13th, 2014
#308: http://www.nbcnews.com/id/51583625/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, April 17th, 2013
#309: http://www.nbcnews.com/id/53590387/ns/msnbc/
The Melissa Harris-Perry Show Sunday, November 17th, 2013
#310: http://www.nbcnews.com/id/50117428/ns/msnbc-the_ed_show/
The Ed Show Thursday,December 6 , 2010
#311: http://www.nbcnews.com/id/52927314/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, September 4th, 2013
#312: http://www.nbcnews.com/id/52046347/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, May 29th, 2013
#313: http://www.nbcnews.com/id/37704859/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, June 141th, 2010
#314: http://www.nbcnews.com/id/43825673/ns/msnbc-the_ed_show/
The Ed Show Tuesday, July 19, 2011
#315: http://www.nbcnews.com/id/45322432/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, November 15, 2011
#316: http://www.nbcnews.com/id/53296600/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Tuesday, October 15th, 2013
#317: http://www.nbcnews.com/id/51904957/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, May 15th, 2013
#318: http://www.nbcnews.com/id/42196424/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, March 18th, 2011
#319: http://www.nbcnews.com/id/50905979/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, February 21st, 2013
#320: http://www.nbcnews.com/id/53366175/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, October 23, 2013
#321: http://www.nbcnews.com/id/42934915/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, May 4th, 2011
#322: http://www.nbcnews.com/id/45987570/ns/msnbc-politicsnation/
PoliticsNation Thursday, January 12, 2012
#323: http://www.nbcnews.com/id/47356786/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, June 26, 2012
#324: http://www.nbcnews.com/id/54192823/ns/msnbc/
The Melissa Harris-Perry Show Saturday, January 25th, 2014
#325: http://www.nbcnews.com/id/55236290/ns/msnbc-politicsnation/
PoliticsNation Monday, May 19th 2014
#326: http://www.nbcnews.com/id/53994354/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, January 3rd, 2014
#327: http://www.nbcnews.com/id/35224225/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, February 2nd, 2010
#328: http://www.nbcnews.com/id/27341699/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show **October 22, 2008**
#329: http://www.nbcnews.com/id/37997520/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, June 28th, 2010
#330: http://www.nbcnews.com/id/40276063/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, Nov. 18th, 2010
#331: http://www.nbcnews.com/id/38126707/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, July 6th, 2010
#332: http://www.nbcnews.com/id/45389111/ns/msnbc-politicsnation/
PoliticsNation Friday, November 18, 2011
#333: http://www.nbcnews.com/id/31525850/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, June 23
#334: http://www.nbcnews.com/id/41312925/ns/msnbc-the_ed_show/
The Ed Show Thursday, January 27th, 2011
#335: http://www.nbcnews.com/id/33057958/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, September 25, 2009, 5pm
#336: http://www.nbcnews.com/id/47635979/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, May 30, 2012
#337: http://www.nbcnews.com/id/55462479/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, June 19th, 2014
#338: http://www.nbcnews.com/id/53853282/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews December 16, Monday,, 2013
#339: http://www.nbcnews.com/id/50236647/ns/msnbc-the_ed_show/
The Ed Show Monday, December 17th, 2012
#340: http://www.nbcnews.com/id/43771818/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, July 14, 2011
#341: http://www.nbcnews.com/id/53734195/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, December 3rd, 2013
#342: http://www.nbcnews.com/id/43469429/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, June 16, 2011
#343: http://www.nbcnews.com/id/51393436/ns/msnbc/
The Melissa Harris-Perry Show Saturday, March 30th, 2013
#344: http://www.nbcnews.com/id/53209123/ns/msnbc-rachel_maddow_show/
Up with Steve Kornacki Saturday, October 5th, 2013
#345: http://www.nbcnews.com/id/48080484/ns/msnbc-politicsnation/
PoliticsNation Tuesday, July 3, 2012
#346: http://www.nbcnews.com/id/54192824/ns/msnbc/
The Melissa Harris-Perry Show Sunday, January 26th, 2014
#347: http://www.nbcnews.com/id/33209344/ns/msnbc-the_ed_show/
The Ed Show Tuesday, October 6, 2009
#348: http://www.nbcnews.com/id/54089717/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Wednesday, January 15th, 2014
#349: http://www.nbcnews.com/id/52046265/ns/msnbc-politicsnation/
PoliticsNation Wednesday, May 29th, 2013
#350: http://www.nbcnews.com/id/53366040/ns/msnbc-politicsnation/
PoliticsNation Wednesday, October 22, 2013
#351: http://www.nbcnews.com/id/50858817/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, February 15th, 2013
#352: http://www.nbcnews.com/id/40557724/ns/msnbc-the_ed_show/
The Ed Show Friday, December 3rd, 2010
#353: http://www.nbcnews.com/id/55017883/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, April 21st, 2014
#354: http://www.nbcnews.com/id/50072137/ns/msnbc-the_ed_show/
The Ed Show Monday, December 3rd, 2012
#355: http://www.nbcnews.com/id/42308058/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, March 25th, 2011
#356: http://www.nbcnews.com/id/51748275/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, May 1st, 2013
#357: http://www.nbcnews.com/id/43326760/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, June 6, 2011
#358: http://www.nbcnews.com/id/40588192/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, December 8th, 2010
#359: http://www.nbcnews.com/id/35835254/ns/msnbc-the_ed_show/
The Ed Show Thursday, March 11, 2010
#360: http://www.nbcnews.com/id/50731999/ns/msnbc-politicsnation/
PoliticsNation Wednesday, February 6th, 2013
#361: http://www.nbcnews.com/id/51332965/ns/msnbc-politicsnation/
PoliticsNation Monday, March 25, 2013
#362: http://www.nbcnews.com/id/53563965/ns/msnbc-the_ed_show/
The Ed Show Thursday, November 14th, 2013
#363: http://www.nbcnews.com/id/39951539/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, Oct. 29th, 2010
#364: http://www.nbcnews.com/id/49033879/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, September 13th, 2012
#365: http://www.nbcnews.com/id/54966717/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, April 15th, 2014
#366: http://www.nbcnews.com/id/46630321/ns/msnbc-the_ed_show/
The Ed Show Friday, March 2, 2012
#367: http://www.nbcnews.com/id/34728364/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, January 5th, 2010
#368: http://www.nbcnews.com/id/54377188/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, February 12, 2014
#369: http://www.nbcnews.com/id/53179087/ns/msnbc-politicsnation/
PoliticsNation Tuesdsay, October 1, 2013
#370: http://www.nbcnews.com/id/51442208/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, April 4th, 2013
#371: http://www.nbcnews.com/id/55230071/ns/msnbc-politicsnation/
PoliticsNation Friday, May 16th, 2014
#372: http://www.nbcnews.com/id/55083077/ns/msnbc-the_ed_show/
The Ed Show Wednesday, April 30, 2014
#373: http://www.nbcnews.com/id/48677585/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, August 13, 2012
#374: http://www.nbcnews.com/id/30641411/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, May 5, 2009
#375: http://www.nbcnews.com/id/49121241/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, September 20th, 2012
#376: http://www.nbcnews.com/id/45168145/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, November 1, 2011
#377: http://www.nbcnews.com/id/50639038/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, January 29th, 2013
#378: http://www.nbcnews.com/id/54439508/ns/msnbc-the_ed_show/
The Ed Show Tuesday, February 18th, 2014
#379: http://www.nbcnews.com/id/44111513/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, August 9
#380: http://www.nbcnews.com/id/33550338/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, October 29, 2009
#381: http://www.nbcnews.com/id/40898766/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, December 22nd, 2010
#382: http://www.nbcnews.com/id/53052936/ns/msnbc-politicsnation/
PoliticsNation Wednesday, September 18th, 2013
#383: http://www.nbcnews.com/id/41992825/ns/msnbc-the_ed_show/
The Ed Show Tuesday, March 8th, 2011
#384: http://www.nbcnews.com/id/48609617/ns/msnbc-politicsnation/
PoliticsNation Thursday, August 9, 2012
#385: http://www.nbcnews.com/id/53178330/ns/msnbc-the_ed_show/
The Ed Show Wednesday, October 2nd, 2013
#386: http://www.nbcnews.com/id/46906771/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, March 29, 2012
#387: http://www.nbcnews.com/id/51404727/ns/msnbc-politicsnation/
PoliticsNation Monday, April 1, 2013
#388: http://www.nbcnews.com/id/52810913/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, August 20th, 2013
#389: http://www.nbcnews.com/id/47375343/ns/msnbc-the_ed_show/
The Ed Show Wednesday, May 9, 2012
#390: http://www.nbcnews.com/id/50311523/ns/msnbc-politicsnation/
PoliticsNation Thursday, December 27th, 2012
#391: http://www.nbcnews.com/id/49806060/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, November 12th, 2012
#392: http://www.nbcnews.com/id/35125642/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, January 27, 2010
#393: http://www.nbcnews.com/id/47344649/ns/msnbc-politicsnation/
PoliticsNation Monday, April 23, 2012
#394: http://www.nbcnews.com/id/43727094/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, July 11th, 2011
#395: http://www.nbcnews.com/id/52753608/ns/msnbc-politicsnation/
PoliticsNation Tuesday, August 13, 2013
#396: http://www.nbcnews.com/id/54951072/ns/msnbc-the_ed_show/
The Ed Show Friday, April 11th, 2014
#397: http://www.nbcnews.com/id/55017995/ns/msnbc-politicsnation/
PoliticsNation Tuesday, April 22nd, 2014
#398: http://www.nbcnews.com/id/38222172/ns/msnbc-the_ed_show/
The Ed Show Monday, July 12th, 2010
#399: http://www.nbcnews.com/id/52621492/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, July 29th, 2013
#400: http://www.nbcnews.com/id/43153339/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, May 20th, 2011
#401: http://www.nbcnews.com/id/26545454/ns/msnbc-hardball_with_chris_matthews/
Special Coverage the RNC - Tuesday, September 2
#402: http://www.nbcnews.com/id/40436985/ns/msnbc/
#403: http://www.nbcnews.com/id/32858692/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, September 14, 2009
#404: http://www.nbcnews.com/id/51360845/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, March 26th, 2010
#405: http://www.nbcnews.com/id/52340939/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, June 27th, 2013
#406: http://www.nbcnews.com/id/54055948/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, January 10th, 2014
#407: http://www.nbcnews.com/id/37234017/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, May 18th, 2010; 9 pm show
#408: http://www.nbcnews.com/id/53041547/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday,September 17th, 2013
#409: http://www.nbcnews.com/id/35420468/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, February 15, 2010
#410: http://www.nbcnews.com/id/49695138/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, November 2nd, 2012
#411: http://www.nbcnews.com/id/51135001/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, March 8th, 2013
#412: http://www.nbcnews.com/id/43641897/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, July 1, 2011
#413: http://www.nbcnews.com/id/53522723/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, November 8th, 2013
#414: http://www.nbcnews.com/id/54976809/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, April 16, 2014
#415: http://www.nbcnews.com/id/40337241/ns/msnbc-the_ed_show/
The Ed Show Monday, November 22nd, 2010
#416: http://www.nbcnews.com/id/34345790/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, December 8, 2009, 11 p.m.
#417: http://www.nbcnews.com/id/43918246/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, July 26, 2011
#418: http://www.nbcnews.com/id/55083438/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, April 30, 2014
#419: http://www.nbcnews.com/id/42784131/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, April 26, 2011
#420: http://www.nbcnews.com/id/34040671/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, November 18, 2009
#421: http://www.nbcnews.com/id/55131677/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, May 7, 2014
#422: http://www.nbcnews.com/id/34257513/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, December 2, 2009
#423: http://www.nbcnews.com/id/33072294/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, September 28, 2009
#424: http://www.nbcnews.com/id/33721680/ns/msnbc-the_ed_show/
The Ed Show Thursday, November 5, 2009
#425: http://www.nbcnews.com/id/50420963/ns/msnbc-the_ed_show/
The Ed Show Wednesday, January 9th, 2013
#426: http://www.nbcnews.com/id/49375959/ns/msnbc-the_ed_show/
The Ed Show Wednesday, October 10th, 2012
#427: http://www.nbcnews.com/id/52295791/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, June 21st, 2013
#428: http://www.nbcnews.com/id/39232420/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, September 16th, 2010
#429: http://www.nbcnews.com/id/36645549/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, April 16th, 2010
#430: http://www.nbcnews.com/id/34015255/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, November 17, 2009
#431: http://www.nbcnews.com/id/47064492/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, April 16, 2012
#432: http://www.nbcnews.com/id/53672905/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, November 25, 2013
#433: http://www.nbcnews.com/id/41409665/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, February 2nd, 2011
#434: http://www.nbcnews.com/id/34974709/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, January 20th, 2010
#435: http://www.nbcnews.com/id/45389138/ns/msnbc-the_ed_show/
The Ed Show Friday, November 18, 2011
#436: http://www.nbcnews.com/id/26744812/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, September 12
#437: http://www.nbcnews.com/id/55090202/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Thursday, May 1st, 2014
#438: http://www.nbcnews.com/id/52819009/ns/msnbc-politicsnation/
PoliticsNation Wednesday, August 21, 2013
#439: http://www.nbcnews.com/id/54204325/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, January 27th, 2014
#440: http://www.nbcnews.com/id/50549565/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, January 18th, 2013
#441: http://www.nbcnews.com/id/50027010/ns/msnbc-politicsnation/
PoliticsNation Thursday, November 29th, 2012
#442: http://www.nbcnews.com/id/51645412/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, April 23rd, 2013
#443: http://www.nbcnews.com/id/45076086/ns/msnbc-politicsnation/
PoliticsNation Thursday, October 27th, 2011
#444: http://www.nbcnews.com/id/45987787/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, January 12, 2012
#445: http://www.nbcnews.com/id/33293434/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, October 12, 2009
#446: http://www.nbcnews.com/id/34379947/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, December 10th, 2009
#447: http://www.nbcnews.com/id/55381998/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, June 10th, 2014
#448: http://www.nbcnews.com/id/49518766/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, October 22nd, 2012
#449: http://www.nbcnews.com/id/32914212/ns/msnbc-the_ed_show/
The Ed Show Thursday, September 17, 2009
#450: http://www.nbcnews.com/id/46669107/ns/msnbc-politicsnation/
PoliticsNation Wednesday, March 7, 2012
#451: http://www.nbcnews.com/id/53844442/ns/msnbc-the_ed_show/
The Ed Show Friday, December 13th, 2013
#452: http://www.nbcnews.com/id/48559386/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Monday, August 6th, 2012
#453: http://www.nbcnews.com/id/44874615/ns/msnbc-politicsnation/
PoliticsNation Tuesday, October 11, 2011
#454: http://www.nbcnews.com/id/34863119/ns/msnbc-the_ed_show/
The Ed Show Wednesday, January 13th, 2010
#455: http://www.nbcnews.com/id/48751720/ns/msnbc-the_ed_show/
The Ed Show Tuesday, August 21st, 2012
#456: http://www.nbcnews.com/id/42769999/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, April 25, 2011
#457: http://www.nbcnews.com/id/49901108/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, November 19th, 2012
#458: http://www.nbcnews.com/id/48677034/ns/msnbc-politicsnation/
PoliticsNation Monday, August 13, 2012
#459: http://www.nbcnews.com/id/32756966/ns/msnbc-the_ed_show/
The Ed Show Tuesday, September 8, 2009
#460: http://www.nbcnews.com/id/49887255/ns/msnbc-politicsnation/
PoliticsNation Friday, November 16th, 2012
#461: http://www.nbcnews.com/id/51904895/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, May 15th, 2013
#462: http://www.nbcnews.com/id/52884723/ns/msnbc-politicsnation/
PoliticsNation Thursday, August 29th, 2013
#463: http://www.nbcnews.com/id/50717822/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Tuesday, February 5th, 2013
#464: http://www.nbcnews.com/id/51803891/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, May 6th, 2013
#465: http://www.nbcnews.com/id/34706482/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, January 4th, 2010
#466: http://www.nbcnews.com/id/55381946/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Tuesday, June 10th, 2014
#467: http://www.nbcnews.com/id/44244649/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, August 22nd, 2011
#468: http://www.nbcnews.com/id/43856934/ns/msnbc/
The Last Word with Lawrence O'Donnell Thursday, July 21, 2011
#469: http://www.nbcnews.com/id/48911899/ns/msnbc-politicsnation/
PoliticsNation Tuesday, September 4th, 2012
#470: http://www.nbcnews.com/id/43259397/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, June 1, 2011
#471: http://www.nbcnews.com/id/54583553/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, March 4th, 2014
#472: http://www.nbcnews.com/id/46906748/ns/msnbc-the_ed_show/
The Ed Show Thursday, March 29, 2012
#473: http://www.nbcnews.com/id/54675594/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, March 12th, 2014
#474: http://www.nbcnews.com/id/31186750/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, June 8
#475: http://www.nbcnews.com/id/27216881/ns/msnbc-hardball_with_chris_matthews/
special coverage Wednesday, October 15, 2008
#476: http://www.nbcnews.com/id/49790510/ns/msnbc/
The Melissa Harris-Perry Show Sunday, November 11th, 2012
#477: http://www.nbcnews.com/id/38787030/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, August 19th, 2010
#478: http://www.nbcnews.com/id/53407826/ns/msnbc-all_in_with_chris_hayes/
All In With Chris Hayes Monday, October 28
#479: http://www.nbcnews.com/id/50409725/ns/msnbc-the_ed_show/
The Ed Show Tuesday, January 8th, 2013
#480: http://www.nbcnews.com/id/52753414/ns/msnbc/
The Last Word with Lawrence O'Donnell Tuesday, August 13th, 2013
#481: http://www.nbcnews.com/id/51272531/ns/msnbc/
The Last Word with Lawrence O'Donnell Wednesday, March 20th, 2013
#482: http://www.nbcnews.com/id/51147748/ns/msnbc/
The Last Word with Lawrence O'Donnell Monday, March 11th, 2013
#483: http://www.nbcnews.com/id/41156092/ns/msnbc-the_ed_show/
The Ed Show Friday, January 14th, 2011
#484: http://www.nbcnews.com/id/52763135/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, August 14th, 2013
#485: http://www.nbcnews.com/id/40721457/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Thursday, December 16th, 2010
#486: http://www.nbcnews.com/id/43755972/ns/msnbc-the_ed_show/
The Ed Show Wednesday, July 13, 2011
#487: http://www.nbcnews.com/id/32566112/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, August 25, 2009
#488: http://www.nbcnews.com/id/55140162/ns/msnbc-politicsnation/
PoliticsNation Wednesday, May 8th, 2014
#489: http://www.nbcnews.com/id/38203790/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Friday, July 9th, 2010
#490: http://www.nbcnews.com/id/43259384/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Wednesday, June 1, 2011
#491: http://www.nbcnews.com/id/43549719/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, June 24, 2011
#492: http://www.nbcnews.com/id/47018655/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, April 10, 2012
#493: http://www.nbcnews.com/id/54144584/ns/msnbc-politicsnation/
PoliticsNation Tuesday, January 21st, 2014
#494: http://www.nbcnews.com/id/53715881/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, November 26th, 2013
#495: http://www.nbcnews.com/id/38428499/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Monday, July 23rd, 2010
#496: http://www.nbcnews.com/id/53052652/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Wednesday, September 18th, 2013
#497: http://www.nbcnews.com/id/34805595/ns/msnbc-rachel_maddow_show/
The Rachel Maddow Show Friday, January 8th, 2010
#498: http://www.nbcnews.com/id/48896630/ns/msnbc/
The Melissa Harris-Perry Show Sunday, September 2nd, 2012
#499: http://www.nbcnews.com/id/50507838/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, January 17th, 2013
#500: http://www.nbcnews.com/id/39535785/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, Oct. 5th, 2010
#501: http://www.nbcnews.com/id/50420916/ns/msnbc-politicsnation/
PoliticsNation Wednesday, January 9th, 2013
#502: http://www.nbcnews.com/id/45035098/ns/msnbc/
The Last Word with Lawrence O'Donnell Friday, October 21, 2011
#503: http://www.nbcnews.com/id/47345830/ns/msnbc/
The Melissa Harris-Perry Show Saturday, April 28, 2012
#504: http://www.nbcnews.com/id/47356760/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Tuesday, April 24, 2012
#505: http://www.nbcnews.com/id/46072812/ns/msnbc-hardball_with_chris_matthews/
Hardball with Chris Matthews Thursday, January 19, 2012