Skip to content

Instantly share code, notes, and snippets.

@thearchduke
Last active April 4, 2017 23:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thearchduke/9363b50874f2ab03584173ebc3bc756c to your computer and use it in GitHub Desktop.
Save thearchduke/9363b50874f2ab03584173ebc3bc756c to your computer and use it in GitHub Desktop.
Blog category co-occurrence edge bundle graph
<!DOCTYPE html>
<meta charset="utf-8">
<style>
svg {
background: black;
}
.node {
font: 300 11px "Helvetica Neue", Helvetica, Arial, sans-serif;
fill: #bbb;
}
.node:hover {
fill: #77f;
}
.link {
stroke: white;
stroke-opacity: .2;
stroke-width: 1;
fill: none;
pointer-events: none;
}
.node:hover,
.node--source,
.node--target {
font-weight: 700;
}
.node--source {
fill: #abc;
}
.node--target {
fill: #def;
}
.link--source,
.link--target {
stroke-opacity: 1;
stroke-width: 2px;
}
.link--source {
stroke: #abc;
}
.link--target {
stroke: #def;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var diameter = 960,
radius = diameter / 2,
innerRadius = radius - 120;
var cluster = d3.layout.cluster()
.size([360, innerRadius])
.sort(null);
//.value(function(d) { return d.size; });
var bundle = d3.layout.bundle();
var line = d3.svg.line.radial()
.interpolate("bundle")
.tension(.85)
.radius(function(d) { return d.y; })
.angle(function(d) { return d.x / 180 * Math.PI; });
var svg = d3.select("body").append("svg")
.attr("width", diameter)
.attr("height", diameter)
.append("g")
.attr("transform", "translate(" + radius + "," + radius + ")");
var link = svg.append("g").selectAll(".link"),
node = svg.append("g").selectAll(".node");
d3.json("tags.json", function(error, classes) {
if (error) throw error;
var nodes = cluster.nodes(packageHierarchy(classes)),
links = packageFellows(nodes);
link = link
.data(bundle(links))
.enter().append("path")
.each(function(d) { d.source = d[0], d.target = d[d.length - 1]; })
.attr("class", "link")
.attr("d", line);
node = node
.data(nodes.filter(function(n) { return !n.children; }))
//if (n.fellows && n.fellows.length > 4) { return true } else { return false }
//})) //return !n.children; }))
.enter().append("text")
.attr("class", "node")
.attr("dy", ".31em")
.attr("transform", function(d) { return "rotate(" + (d.x - 90) + ")translate(" + (d.y + 8) + ",0)" + (d.x < 180 ? "" : "rotate(180)"); })
.style("text-anchor", function(d) { return d.x < 180 ? "start" : "end"; })
.text(function(d) { return d.key; })
.on("mouseover", mouseovered)
.on("mouseout", mouseouted);
});
function mouseovered(d) {
node
.each(function(n) { n.target = n.source = false; });
link
.classed("link--target", function(l) { if (l.target === d) return l.source.source = true; })
.classed("link--source", function(l) { if (l.source === d) return l.target.target = true; })
.filter(function(l) { return l.target === d || l.source === d; })
.each(function() { this.parentNode.appendChild(this); });
node
.classed("node--target", function(n) { return n.target; })
.classed("node--source", function(n) { return n.source; });
}
function mouseouted(d) {
link
.classed("link--target", false)
.classed("link--source", false);
node
.classed("node--target", false)
.classed("node--source", false);
}
d3.select(self.frameElement).style("height", diameter + "px");
// Lazily construct the package hierarchy from class names.
function packageHierarchy(classes) {
var map = {};
function find(name, data) {
var node = map[name], i;
if (!node) {
node = map[name] = data || {name: name, children: []};
if (name.length) {
node.parent = find(name.substring(0, i = name.lastIndexOf(".")));
node.parent.children.push(node);
node.key = name.substring(i + 1);
}
}
return node;
}
classes.forEach(function(d) {
find(d.name, d);
});
return map[""];
}
// Return a list of imports for the given array of nodes.
function packageFellows(nodes) {
var map = {},
fellows = [];
// Compute a map from name to node.
nodes.forEach(function(d) {
map[d.name] = d;
});
// For each import, construct a link from the source to target node.
nodes.forEach(function(d) {
if (d.fellows) d.fellows.forEach(function(i) {
fellows.push({source: map[d.name], target: map[i]});
});
});
return fellows;
}
</script>
[{"name": "Open Thread", "fellows": ["NANCY SMASH!", "Flash Mob of Hate", "fauxtrage", "Repubs in Disarray!", "Glibertarianism", "I Can No Longer Rationally Discuss The Clinton Campaign", "Religion", "Malheur National Wildlife Refuge Occupation", "Dog Blogging", "Peak Wingnut Was a Lie!", "Clap Louder!", "I Can No Longer Rationally Discuss The Sanders Campaign", "Our Failed Media Experiment", "Dolt 45", "Gun nuts", "Their Motto: Apocalypse Now", "kelp", "Domestic Affairs", "Crazification Factor", "Prison Planet", "Good News For Conservatives", "Readership Capture", "Don't Mourn, Organize", "This is not where you come to do your madness!", "Uncategorized", "Military", "Election 2020", "Go Fuck Yourself", "Gamer Dork", "Extremism", "Women's Rights Are Human Rights", "Fables Of The Reconstruction", "Zombie-Eyed Granny Starver", "Wachowskis", "Because of wow.", "Music", "Schadenfreude", "Radical Mycology", "Assholes", "Shitty Cops", "I Smell a Pulitzer!", "Sports", "Election 2017", "Election 2016", "Rare Sincerity", "Just Shut the Fuck Up", "I Reject Your Reality and Substitute My Own", "Terrorism", "Riveted By The Sociological Significance Of It All", "Not Normal", "Election 2018", "C.R.E.A.M.", "Trump Crime Cartel", "Stuff About Black People Written By a Black Person", "domestic terrorists", "Religious Nuts", "Fucked-up-edness", "War", "#BLM #M4BL", "Clown car", "Both Sides Do It!", "hoocoodanode", "America", "Chelsea Bombing", "Foam Finger Nation", "Corrections", "Gay Rights are Human Rights", "An Unexamined Scandal", "Woman in the Whitehouse 2016", "Ammosexuals", "Movies", "Sense8", "Absent Friends", "Security Theatre", "Mushrooms", "Bleg", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Cruz-ifiction", "Free Markets Solve Everything", "Occupied", "Sociopaths", "General Stupidity", "Grifters Gonna Grift", "Immigration", "Green Lantern Pundit Corps", "I Read These Morons So You Don't Have To", "IOKIYAR", "Outrage", "Lizard Blogging", "Sweet Fancy Moses!", "WIN THE MORNING", "Faunasphere", "DC Press Corpse", "Enhanced Protest Techniques", "Bundy Trial", "Media", "NATO", "The Wingularity", "Burkean bells", "Activist Judges!", "David Brooks Giving A Seminar At The Aspen Institute", "Bundy Bunch", "Mayhew On Insurance", "Clown Shoes", "Bernie Sanders 2016", "Our Failed Political Establishment", "the Grey Zone", "Show Us on the Doll Where the Invisible Hand Touched You", "Proud to Be A Democrat", "Straczynski", "Politics", "#notintendedtobeafactualstatement", "Kalamazoo", "Very Serious People", "Bring On The Meteor", "Popular Culture", "Daydream Believers", "Our Awesome Meritocracy", "Green Balloons", "Books", "Vagina Outrage", "Excellent Links", "Fools! Overton Window!", "Chemical Weapons", "Yes We Did", "Blatant Liars and the Lies They Tell", "Science & Technology", "WOLVERINES", "Other", "I Just Had My Oakeshott In The Widener Library For Succor", "Fuck Yeah!", "Poke-a-Trumpus", "Ryan Lyin' Weasel", "Warren for Senate 2012", "Hillary Clinton 2016", "Keep Fucking That Chicken", "Vote Like Your Country Depends On It", "Food", "All we want is life beyond the thunderdome", "Ammon Bundy", "Germany", "leaderless resistance", "Decline and Fall", "Bring on the Brawndo!", "Pet Rescue", "Television", "Lone Wolf", "Climate Change", "Nobody could have predicted", "Republican Crime Syndicate - aka the Bush Admin.", "Foreign Affairs", "Cat Blogging", "Best President Ever", "Republican Venality", "Syria", "Silverman on Security", "Post-racial America", "World's Best Healthcare (If You Can Afford It)", "Get Angry", "Get off my grass you damned kids", "Hail to the Hairpiece", "WTF?", "Critters", "Republican Stupidity", "Jump! You Fuckers!", "Idlib", "Ever Get The Feeling You've Been Cheated?"]}, {"name": "Cat Blogging", "fellows": ["Pet Rescue", "Hillary Clinton 2016", "Hail to the Hairpiece", "Food", "All we want is life beyond the thunderdome", "Election 2016", "Clown Shoes", "Popular Culture", "Faunasphere", "Critters", "Sports", "Religion", "Open Thread", "Proud to Be A Democrat", "Dog Blogging", "Excellent Links", "Repubs in Disarray!"]}, {"name": "Faunasphere", "fellows": ["Canada", "Pigs", "animal rights", "Assholes", "personhood", "Immigration", "Republican Venality", "good works", "Music", "Animal Welfare", "Other", "Iowa", "PCRM", "Eggs", "Dog Blogging", "Unlocking the Cage", "Vegan", "Animal Testing", "Massachusetts", "Nonhuman Rights Project", "America", "Joni Ernst", "Shitty Cops", "Climate Change", "jon stewart", "immigration", "Humane League", "Whanganui", "Nick Kristoff", "Te Urewera", "Naomi Klein", "nonhuman rights", "Humane Revolution", "Critters", "resettlement", "Food", "Open Thread", "Gestation Crates", "Republican Stupidity", "Chickens", "Steven Pinker", "refugees", "Cat Blogging"]}, {"name": "Hail to the Hairpiece", "fellows": ["Shitheads", "Flash Mob of Hate", "fauxtrage", "Repubs in Disarray!", "Religion", "Open Thread", "Peak Wingnut Was a Lie!", "Clap Louder!", "Our Failed Media Experiment", "Their Motto: Apocalypse Now", "Prison Planet", "Good News For Conservatives", "Military", "Assholes", "Women's Rights Are Human Rights", "Riveted By The Sociological Significance Of It All", "Because of wow.", "Tire Swinging is so 2008", "I Read These Morons So You Don't Have To", "Schadenfreude", "IOKIYAR", "Sports", "Election 2016", "Seriously", "Just Shut the Fuck Up", "I Reject Your Reality and Substitute My Own", "C.R.E.A.M.", "The teabagger's apprentice", "domestic terrorists", "Religious Nuts", "Fucked-up-edness", "Clown car", "hoocoodanode", "America", "Foam Finger Nation", "An Unexamined Scandal", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Cruz-ifiction", "Sociopaths", "Republican Stupidity", "General Stupidity", "Grifters Gonna Grift", "Music", "Warren for Senate 2012", "Outrage", "War", "Dog Blogging", "DC Press Corpse", "Enhanced Protest Techniques", "Blatant Liars and the Lies They Tell", "Burkean bells", "Activist Judges!", "Clown Shoes", "Somewhere a Village is Missing its Idiot", "Proud to Be A Democrat", "#notintendedtobeafactualstatement", "Very Serious People", "Bring On The Meteor", "Daydream Believers", "Rare Sincerity", "Our Awesome Meritocracy", "Books", "Vagina Outrage", "Excellent Links", "Fools! Overton Window!", "Media", "WOLVERINES", "I Just Had My Oakeshott In The Widener Library For Succor", "Poke-a-Trumpus", "Ryan Lyin' Weasel", "Hillary Clinton 2016", "Vote Like Your Country Depends On It", "Food", "Decline and Fall", "Bring on the Brawndo!", "I Smell a Pulitzer!", "Nobody could have predicted", "Republican Crime Syndicate - aka the Bush Admin.", "Foreign Affairs", "Cat Blogging", "Republican Venality", "Post-racial America", "World's Best Healthcare (If You Can Afford It)", "Our Failed Political Establishment", "WTF?", "All we want is life beyond the thunderdome", "Gun nuts", "Ammosexuals", "Jump! You Fuckers!", "Keep Fucking That Chicken", "Ever Get The Feeling You've Been Cheated?"]}, {"name": "Hillary Clinton 2016", "fellows": ["Proud to Be A Democrat", "General Stupidity", "NANCY SMASH!", "Yes We Did", "Flash Mob of Hate", "Media", "fauxtrage", "Repubs in Disarray!", "Sports", "Election 2016", "Rare Sincerity", "Open Thread", "Music", "Fuck Yeah!", "Warren for Senate 2012", "Poke-a-Trumpus", "I Reject Your Reality and Substitute My Own", "Their Motto: Apocalypse Now", "Lizard Blogging", "Sweet Fancy Moses!", "C.R.E.A.M.", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Dog Blogging", "DC Press Corpse", "Peak Wingnut Was a Lie!", "ESI", "Rates", "Bernie Sanders 2016", "Both Sides Do It!", "Domestic Affairs", "The Wingularity", "Republican Stupidity", "Green Balloons", "Pet Rescue", "I Can No Longer Rationally Discuss The Sanders Campaign", "I Smell a Pulitzer!", "Insurance", "Mayhew On Insurance", "Climate Change", "Because of wow.", "Foreign Affairs", "Readership Capture", "medicaid", "Cat Blogging", "Arkansas", "Fuck The Poor", "Republican Venality", "Mainstream Media's McCain Mancrush", "I Can No Longer Rationally Discuss The Clinton Campaign", "Post-racial America", "Ever Get The Feeling You've Been Cheated?", "An Unexamined Scandal", "Gamer Dork", "Assholes", "Woman in the Whitehouse 2016", "Hail to the Hairpiece", "WTF?", "All we want is life beyond the thunderdome", "Gun nuts", "Daydream Believers", "Women's Rights Are Human Rights", "Security Theatre", "Ammosexuals", "Best President Ever", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Vagina Outrage", "Military", "Keep Fucking That Chicken", "Politics", "Excellent Links", "I Read These Morons So You Don't Have To", "Sociopaths", "Schadenfreude"]}, {"name": "Schadenfreude", "fellows": ["Hillary Clinton 2016", "Hail to the Hairpiece", "Foreign Affairs", "Clown Shoes", "Repubs in Disarray!", "Assholes", "Enhanced Protest Techniques", "Very Serious People", "Election 2016", "Open Thread", "Jump! You Fuckers!", "Keep Fucking That Chicken", "Republican Venality", "Ryan Lyin' Weasel", "Excellent Links", "Clown car", "Ever Get The Feeling You've Been Cheated?", "Republican Stupidity"]}, {"name": "Dog Blogging", "fellows": ["General Stupidity", "Assholes", "Sports", "Election 2016", "Open Thread", "Music", "Lizard Blogging", "Hillary Clinton 2016", "Our Failed Media Experiment", "Faunasphere", "Domestic Affairs", "Pet Rescue", "Climate Change", "Foreign Affairs", "Cat Blogging", "Proud to Be A Democrat", "#notintendedtobeafactualstatement", "Hail to the Hairpiece", "Critters", "Other", "Politics", "Republican Stupidity"]}, {"name": "Pet Rescue", "fellows": ["Hillary Clinton 2016", "Climate Change", "Popular Culture", "Dog Blogging", "Open Thread", "Cat Blogging", "Proud to Be A Democrat"]}, {"name": "Sports", "fellows": ["Assholes", "Repubs in Disarray!", "Election 2016", "Open Thread", "Music", "C.R.E.A.M.", "Hillary Clinton 2016", "Dolt 45", "Dog Blogging", "Enhanced Protest Techniques", "Domestic Affairs", "Television", "Foam Finger Nation", "Foreign Affairs", "wonkery", "Cat Blogging", "Post-racial America", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Daydream Believers", "Absent Friends"]}, {"name": "Repubs in Disarray!", "fellows": ["Republican Venality", "Blatant Liars and the Lies They Tell", "Sports", "Election 2016", "Open Thread", "Music", "Warren for Senate 2012", "Just Shut the Fuck Up", "Ryan Lyin' Weasel", "Peak Wingnut Was a Lie!", "Clap Louder!", "C.R.E.A.M.", "Hillary Clinton 2016", "Schadenfreude", "Dolt 45", "domestic terrorists", "Grifters Gonna Grift", "Religious Nuts", "Enhanced Protest Techniques", "World's Best Healthcare (If You Can Afford It)", "Clown car", "hoocoodanode", "Burkean bells", "Activist Judges!", "Ever Get The Feeling You've Been Cheated?", "I Smell a Pulitzer!", "Clown Shoes", "Nobody could have predicted", "Republican Crime Syndicate - aka the Bush Admin.", "Decline and Fall", "Hail to the Hairpiece", "Cat Blogging", "Proud to Be A Democrat", "Post-racial America", "Fables Of The Reconstruction", "Go Fuck Yourself", "Assholes", "Our Failed Political Establishment", "All we want is life beyond the thunderdome", "Foreign Affairs", "Very Serious People", "Bring On The Meteor", "Daydream Believers", "Fucked-up-edness", "Our Awesome Meritocracy", "Riveted By The Sociological Significance Of It All", "Ammosexuals", "Vagina Outrage", "Jump! You Fuckers!", "Keep Fucking That Chicken", "Cruz-ifiction", "Excellent Links", "I Read These Morons So You Don't Have To", "Republican Stupidity"]}, {"name": "Music", "fellows": ["Proud to Be A Democrat", "Faunasphere", "Repubs in Disarray!", "Sports", "Religion", "Open Thread", "Clap Louder!", "Hillary Clinton 2016", "Stuff About Black People Written By a Black Person", "domestic terrorists", "Dog Blogging", "Ammosexuals", "Domestic Affairs", "America", "Readership Capture", "Republican Venality", "Post-racial America", "Ever Get The Feeling You've Been Cheated?", "Hail to the Hairpiece", "Foreign Affairs", "Election 2016", "Gun nuts", "Assholes", "Excellent Links"]}, {"name": "Critters", "fellows": ["Faunasphere", "Food", "Dog Blogging", "Foreign Affairs", "Open Thread", "Cat Blogging", "America", "Other", "Lizard Blogging"]}, {"name": "Daydream Believers", "fellows": ["Media", "Science & Technology", "Repubs in Disarray!", "Sports", "Religion", "Rare Sincerity", "Open Thread", "Hillary Clinton 2016", "Enhanced Protest Techniques", "Clown Shoes", "Gay Rights are Human Rights", "Foreign Affairs", "Readership Capture", "Proud to Be A Democrat", "Military", "Excellent Links", "Woman in the Whitehouse 2016", "Hail to the Hairpiece", "Election 2016", "Popular Culture", "Women's Rights Are Human Rights", "Books", "Ever Get The Feeling You've Been Cheated?", "Fools! Overton Window!", "Republican Stupidity"]}, {"name": "Gay Rights are Human Rights", "fellows": ["Gun nuts", "General Stupidity", "Our Failed Media Experiment", "Daydream Believers", "Popular Culture", "Assholes", "Religious Nuts", "Science & Technology", "Fucked-up-edness", "Ammosexuals", "Foreign Affairs", "Open Thread", "Proud to Be A Democrat", "domestic terrorists"]}, {"name": "Popular Culture", "fellows": ["Media", "Election 2016", "Open Thread", "Guest Post", "Fuck Yeah!", "Outrage", "Security Theatre", "Not Normal", "Stuff About Black People Written By a Black Person", "Immigration", "Enhanced Protest Techniques", "Improper Entry", "America", "Pet Rescue", "Television", "Clown Shoes", "Gay Rights are Human Rights", "Movies", "Readership Capture", "wonkery", "Cat Blogging", "Proud to Be A Democrat", "Silverman on Security", "Post-racial America", "Domestic Affairs", "An Unexamined Scandal", "Gamer Dork", "Our Failed Political Establishment", "Daydream Believers", "Our Awesome Meritocracy", "Riveted By The Sociological Significance Of It All", "Vagina Outrage", "Politics", "Unlawful Presence", "Excellent Links", "Politicization of Policy"]}, {"name": "Election 2016", "fellows": ["Shitheads", "NANCY SMASH!", "Flash Mob of Hate", "fauxtrage", "Repubs in Disarray!", "Glibertarianism", "I Can No Longer Rationally Discuss The Clinton Campaign", "Religion", "Open Thread", "Peak Wingnut Was a Lie!", "Clap Louder!", "I Can No Longer Rationally Discuss The Sanders Campaign", "Our Failed Media Experiment", "Their Motto: Apocalypse Now", "Domestic Affairs", "Crazification Factor", "Good News For Conservatives", "Readership Capture", "wonkery", "Don't Mourn, Organize", "Military", "Election 2020", "Go Fuck Yourself", "Gamer Dork", "Assholes", "Women's Rights Are Human Rights", "Fables Of The Reconstruction", "Zombie-Eyed Granny Starver", "Because of wow.", "Tire Swinging is so 2008", "Rates", "I Read These Morons So You Don't Have To", "Schadenfreude", "Gun nuts", "Warren for Senate 2012", "Sports", "Election 2017", "Rare Sincerity", "Politicization of Policy", "Just Shut the Fuck Up", "I Reject Your Reality and Substitute My Own", "Not Normal", "Uncategorized", "C.R.E.A.M.", "Stuff About Black People Written By a Black Person", "domestic terrorists", "Religious Nuts", "Fucked-up-edness", "Clown car", "Both Sides Do It!", "hoocoodanode", "America", "Foam Finger Nation", "Fuck The Poor", "An Unexamined Scandal", "Woman in the Whitehouse 2016", "Security Theatre", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Cruz-ifiction", "Free Markets Solve Everything", "Sociopaths", "Republican Stupidity", "General Stupidity", "Grifters Gonna Grift", "DC Press Corpse", "Music", "IOKIYAR", "Outrage", "War", "Lizard Blogging", "Sweet Fancy Moses!", "WIN THE MORNING", "Dog Blogging", "Immigration", "NATO", "Blatant Liars and the Lies They Tell", "Improper Entry", "The Wingularity", "Burkean bells", "Activist Judges!", "David Brooks Giving A Seminar At The Aspen Institute", "Mayhew On Insurance", "Clown Shoes", "Bernie Sanders 2016", "Somewhere a Village is Missing its Idiot", "Hail to the Hairpiece", "Proud to Be A Democrat", "Mainstream Media's McCain Mancrush", "#notintendedtobeafactualstatement", "Very Serious People", "Bring On The Meteor", "Popular Culture", "Daydream Believers", "Seriously", "Our Awesome Meritocracy", "Green Balloons", "Vagina Outrage", "Excellent Links", "Fools! Overton Window!", "Yes We Did", "Media", "Science & Technology", "Other", "Fuck Yeah!", "Poke-a-Trumpus", "Ryan Lyin' Weasel", "Hillary Clinton 2016", "Vote Like Your Country Depends On It", "Germany", "Decline and Fall", "Bring on the Brawndo!", "Election 2018", "I Smell a Pulitzer!", "Nobody could have predicted", "Even the \"Liberal\" New Republic", "Republican Crime Syndicate - aka the Bush Admin.", "Foreign Affairs", "medicaid", "Cat Blogging", "Arkansas", "Best President Ever", "Republican Venality", "Silverman on Security", "Post-racial America", "Unlawful Presence", "ESI", "Get off my grass you damned kids", "Our Failed Political Establishment", "WTF?", "All we want is life beyond the thunderdome", "Ammosexuals", "Jump! You Fuckers!", "Keep Fucking That Chicken", "Politics", "Ever Get The Feeling You've Been Cheated?", "Insurance"]}, {"name": "Ever Get The Feeling You've Been Cheated?", "fellows": ["Proud to Be A Democrat", "Flash Mob of Hate", "Daydream Believers", "Science & Technology", "Repubs in Disarray!", "DC Press Corpse", "Election 2016", "Rare Sincerity", "Open Thread", "Music", "Outrage", "Ryan Lyin' Weasel", "Not Normal", "C.R.E.A.M.", "Hillary Clinton 2016", "Foreign Affairs", "Our Failed Media Experiment", "Schadenfreude", "Dolt 45", "domestic terrorists", "Religious Nuts", "Enhanced Protest Techniques", "Decline and Fall", "Domestic Affairs", "Television", "Clown car", "Show Us on the Doll Where the Invisible Hand Touched You", "Republican Venality", "Post-racial America", "World's Best Healthcare (If You Can Afford It)", "Woman in the Whitehouse 2016", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Fools! Overton Window!", "Assholes", "Security Theatre", "Zombie-Eyed Granny Starver", "Vagina Outrage", "Because of wow.", "Excellent Links", "Republican Stupidity"]}, {"name": "Assholes", "fellows": ["Shitheads", "Flash Mob of Hate", "fauxtrage", "Repubs in Disarray!", "Open Thread", "Military", "Fucked-up-edness", "Clap Louder!", "I Can No Longer Rationally Discuss The Sanders Campaign", "Our Failed Media Experiment", "Dolt 45", "Their Motto: Apocalypse Now", "Pigs", "Domestic Affairs", "Crazification Factor", "Prison Planet", "Good News For Conservatives", "This is not where you come to do your madness!", "Dog Blogging", "Go Fuck Yourself", "Riveted By The Sociological Significance Of It All", "Zombie-Eyed Granny Starver", "Because of wow.", "I Read These Morons So You Don't Have To", "Schadenfreude", "Shitty Cops", "Sports", "Election 2016", "Rare Sincerity", "Just Shut the Fuck Up", "I Reject Your Reality and Substitute My Own", "Fables Of The Reconstruction", "Not Normal", "C.R.E.A.M.", "Trump Crime Cartel", "Iowa", "Religious Nuts", "Peak Wingnut Was a Lie!", "Clown car", "hoocoodanode", "Joni Ernst", "Foam Finger Nation", "Republican Crime Syndicate - aka the Bush Admin.", "An Unexamined Scandal", "MOAR GUNZ PEW PEW PEW", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Cruz-ifiction", "Free Markets Solve Everything", "Sociopaths", "Republican Stupidity", "General Stupidity", "Grifters Gonna Grift", "Music", "IOKIYAR", "Lizard Blogging", "Sweet Fancy Moses!", "WIN THE MORNING", "Faunasphere", "DC Press Corpse", "Vegan", "Enhanced Protest Techniques", "Media", "The Wingularity", "Green Balloons", "Clown Shoes", "Somewhere a Village is Missing its Idiot", "Our Failed Political Establishment", "Proud to Be A Democrat", "Very Serious People", "Bring On The Meteor", "Our Awesome Meritocracy", "Burkean bells", "Vagina Outrage", "Excellent Links", "Fools! Overton Window!", "Blatant Liars and the Lies They Tell", "I Just Had My Oakeshott In The Widener Library For Succor", "Fuck Yeah!", "Poke-a-Trumpus", "Ryan Lyin' Weasel", "Warren for Senate 2012", "Hillary Clinton 2016", "Vote Like Your Country Depends On It", "Decline and Fall", "Bring on the Brawndo!", "I Smell a Pulitzer!", "Nobody could have predicted", "Even the \"Liberal\" New Republic", "Gay Rights are Human Rights", "Foreign Affairs", "Best President Ever", "Republican Venality", "Post-racial America", "Hail to the Hairpiece", "WTF?", "All we want is life beyond the thunderdome", "Gun nuts", "Ammosexuals", "Gestation Crates", "Jump! You Fuckers!", "Keep Fucking That Chicken", "Politics", "Ever Get The Feeling You've Been Cheated?", "domestic terrorists"]}, {"name": "Politics", "fellows": ["General Stupidity", "Women's Rights Are Human Rights", "Yes We Did", "Flash Mob of Hate", "Media", "Religious Nuts", "Election 2017", "Election 2016", "Rare Sincerity", "Open Thread", "Guest Post", "Politicization of Policy", "Syria", "Poke-a-Trumpus", "Sociopaths", "War", "Not Normal", "Uncategorized", "I Can No Longer Rationally Discuss The Sanders Campaign", "Hillary Clinton 2016", "Foreign Affairs", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Dog Blogging", "Immigration", "NATO", "Go Fuck Yourself", "Clown car", "Both Sides Do It!", "Improper Entry", "Election 2018", "Crazification Factor", "Television", "Clown Shoes", "Bernie Sanders 2016", "Get off my grass you damned kids", "Good News For Conservatives", "Germany", "Our Failed Political Establishment", "wonkery", "Our Awesome Meritocracy", "I Can No Longer Rationally Discuss The Clinton Campaign", "Proud to Be A Democrat", "Military", "Election 2020", "Silverman on Security", "Post-racial America", "hoocoodanode", "An Unexamined Scandal", "Sweet Fancy Moses!", "Woman in the Whitehouse 2016", "America", "All we want is life beyond the thunderdome", "Movies", "Domestic Affairs", "Idlib", "Gun nuts", "Assholes", "Outrage", "Security Theatre", "Ammosexuals", "Other", "Because of wow.", "Best President Ever", "Unlawful Presence", "Chemical Weapons", "Popular Culture", "Republican Stupidity", "Fuck Yeah!"]}, {"name": "Republican Stupidity", "fellows": ["Proud to Be A Democrat", "General Stupidity", "Faunasphere", "hoocoodanode", "Flash Mob of Hate", "Blatant Liars and the Lies They Tell", "Repubs in Disarray!", "Election 2016", "Seriously", "Open Thread", "Fuck Yeah!", "Ryan Lyin' Weasel", "Poke-a-Trumpus", "I Reject Your Reality and Substitute My Own", "Enhanced Protest Techniques", "Not Normal", "Sweet Fancy Moses!", "C.R.E.A.M.", "Hillary Clinton 2016", "Iowa", "Our Failed Media Experiment", "Dolt 45", "Our Awesome Meritocracy", "domestic terrorists", "Grifters Gonna Grift", "Religious Nuts", "Vegan", "Their Motto: Apocalypse Now", "Pigs", "An Unexamined Scandal", "Decline and Fall", "Bring on the Brawndo!", "Domestic Affairs", "Books", "Joni Ernst", "Vagina Outrage", "I Smell a Pulitzer!", "Jump! You Fuckers!", "Trump Crime Cartel", "Clown Shoes", "Foam Finger Nation", "Nobody could have predicted", "Free Markets Solve Everything", "Somewhere a Village is Missing its Idiot", "Clown car", "Hail to the Hairpiece", "Daydream Believers", "Don't Mourn, Organize", "Politics", "Republican Venality", "Dog Blogging", "Post-racial America", "World's Best Healthcare (If You Can Afford It)", "Go Fuck Yourself", "Good News For Conservatives", "Our Failed Political Establishment", "Peak Wingnut Was a Lie!", "MOAR GUNZ PEW PEW PEW", "Foreign Affairs", "Very Serious People", "Bring On The Meteor", "Gun nuts", "Assholes", "Fucked-up-edness", "Outrage", "Security Theatre", "Ammosexuals", "Bleg", "Gestation Crates", "Just Shut the Fuck Up", "Military", "Keep Fucking That Chicken", "Cruz-ifiction", "Ever Get The Feeling You've Been Cheated?", "Best President Ever", "Excellent Links", "Schadenfreude"]}, {"name": "Keep Fucking That Chicken", "fellows": ["General Stupidity", "Republican Venality", "Blatant Liars and the Lies They Tell", "fauxtrage", "Repubs in Disarray!", "Election 2016", "Open Thread", "Their Motto: Apocalypse Now", "Clap Louder!", "War", "Lizard Blogging", "Sweet Fancy Moses!", "C.R.E.A.M.", "Hillary Clinton 2016", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Grifters Gonna Grift", "Religious Nuts", "Peak Wingnut Was a Lie!", "Good News For Conservatives", "hoocoodanode", "The Wingularity", "Burkean bells", "Clown Shoes", "Foam Finger Nation", "Nobody could have predicted", "Somewhere a Village is Missing its Idiot", "Clown car", "Proud to Be A Democrat", "Military", "Hail to the Hairpiece", "WTF?", "Foreign Affairs", "Gun nuts", "Assholes", "Our Awesome Meritocracy", "Green Balloons", "Ammosexuals", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Republican Stupidity", "Cruz-ifiction", "Sociopaths", "Schadenfreude"]}, {"name": "War", "fellows": ["Syria", "Hail to the Hairpiece", "Our Failed Media Experiment", "Foreign Affairs", "Idlib", "Election 2016", "Open Thread", "Keep Fucking That Chicken", "Corrections", "Military", "Domestic Affairs", "Silverman on Security", "Other", "Politics", "Chemical Weapons"]}, {"name": "Readership Capture", "fellows": ["Yes We Did", "Media", "Election 2016", "Open Thread", "Music", "Fuck Yeah!", "Clap Louder!", "Hillary Clinton 2016", "Dolt 45", "domestic terrorists", "Domestic Affairs", "Bernie Sanders 2016", "Movies", "Proud to Be A Democrat", "All we want is life beyond the thunderdome", "Popular Culture", "Daydream Believers", "Women's Rights Are Human Rights", "Excellent Links"]}, {"name": "Because of wow.", "fellows": ["Yes We Did", "Science & Technology", "Glibertarianism", "I Can No Longer Rationally Discuss The Clinton Campaign", "Election 2016", "Rare Sincerity", "Open Thread", "Fuck Yeah!", "Enhanced Protest Techniques", "C.R.E.A.M.", "Hillary Clinton 2016", "Vote Like Your Country Depends On It", "WIN THE MORNING", "Grifters Gonna Grift", "DC Press Corpse", "Their Motto: Apocalypse Now", "#notintendedtobeafactualstatement", "#BLM #M4BL", "Good News For Conservatives", "Burkean bells", "Crazification Factor", "David Brooks Giving A Seminar At The Aspen Institute", "Even the \"Liberal\" New Republic", "Somewhere a Village is Missing its Idiot", "This is not where you come to do your madness!", "Show Us on the Doll Where the Invisible Hand Touched You", "Proud to Be A Democrat", "Military", "World's Best Healthcare (If You Can Afford It)", "Go Fuck Yourself", "Hail to the Hairpiece", "WTF?", "Very Serious People", "Bring On The Meteor", "Assholes", "Women's Rights Are Human Rights", "Sociopaths", "Stuff About Black People Written By a Black Person", "Other", "Politics", "Ever Get The Feeling You've Been Cheated?", "Excellent Links"]}, {"name": "Bring On The Meteor", "fellows": ["Repubs in Disarray!", "Election 2016", "Open Thread", "Outrage", "I Reject Your Reality and Substitute My Own", "Other", "C.R.E.A.M.", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Fucked-up-edness", "Good News For Conservatives", "hoocoodanode", "Burkean bells", "Mayhew On Insurance", "Foam Finger Nation", "Republican Venality", "Post-racial America", "Hail to the Hairpiece", "WTF?", "All we want is life beyond the thunderdome", "Very Serious People", "Fools! Overton Window!", "Assholes", "Books", "Because of wow.", "Tire Swinging is so 2008", "Republican Stupidity"]}, {"name": "Other", "fellows": ["General Stupidity", "Science & Technology", "Election 2016", "WOLVERINES", "Open Thread", "Military", "Terrorism", "leaderless resistance", "Lone Wolf", "Our Failed Media Experiment", "Bundy Trial", "Faunasphere", "Enhanced Protest Techniques", "Ammon Bundy", "War", "America", "Domestic Affairs", "Uncategorized", "Crazification Factor", "Chelsea Bombing", "Clown Shoes", "Because of wow.", "Foreign Affairs", "the Grey Zone", "This is not where you come to do your madness!", "Dog Blogging", "Silverman on Security", "Post-racial America", "Politics", "Gamer Dork", "Movies", "Extremism", "Gun nuts", "Critters", "Ammosexuals", "Bring On The Meteor", "Malheur National Wildlife Refuge Occupation", "domestic terrorists"]}, {"name": "Fucked-up-edness", "fellows": ["Hail to the Hairpiece", "Our Failed Media Experiment", "MOAR GUNZ PEW PEW PEW", "Bring On The Meteor", "Gun nuts", "Repubs in Disarray!", "Assholes", "Seriously", "Gay Rights are Human Rights", "Ammosexuals", "Election 2016", "Bleg", "Open Thread", "Republican Venality", "Enhanced Protest Techniques", "Peak Wingnut Was a Lie!", "Republican Stupidity", "Security Theatre"]}, {"name": "Our Failed Media Experiment", "fellows": ["General Stupidity", "Dog Blogging", "Republican Venality", "Media", "I Can No Longer Rationally Discuss The Clinton Campaign", "Election 2016", "Open Thread", "I Just Had My Oakeshott In The Widener Library For Succor", "IOKIYAR", "Poke-a-Trumpus", "I Reject Your Reality and Substitute My Own", "Clap Louder!", "War", "C.R.E.A.M.", "Hillary Clinton 2016", "Grifters Gonna Grift", "Fucked-up-edness", "Go Fuck Yourself", "Blatant Liars and the Lies They Tell", "Both Sides Do It!", "Domestic Affairs", "America", "Burkean bells", "I Smell a Pulitzer!", "Clown Shoes", "Nobody could have predicted", "Gay Rights are Human Rights", "Foreign Affairs", "Our Failed Political Establishment", "Proud to Be A Democrat", "Mainstream Media's McCain Mancrush", "Even the \"Liberal\" New Republic", "Post-racial America", "An Unexamined Scandal", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Bring On The Meteor", "Corrections", "Assholes", "Our Awesome Meritocracy", "Other", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Vagina Outrage", "Military", "Keep Fucking That Chicken", "Politics", "Ever Get The Feeling You've Been Cheated?", "I Read These Morons So You Don't Have To", "Sociopaths", "Republican Stupidity"]}, {"name": "Sociopaths", "fellows": ["Proud to Be A Democrat", "General Stupidity", "Flash Mob of Hate", "Blatant Liars and the Lies They Tell", "Shitheads", "Election 2016", "Open Thread", "Poke-a-Trumpus", "Peak Wingnut Was a Lie!", "Lizard Blogging", "Sweet Fancy Moses!", "Hillary Clinton 2016", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Grifters Gonna Grift", "Their Motto: Apocalypse Now", "The Wingularity", "Green Balloons", "Crazification Factor", "Clown Shoes", "Keep Fucking That Chicken", "This is not where you come to do your madness!", "Republican Venality", "An Unexamined Scandal", "Hail to the Hairpiece", "WTF?", "All we want is life beyond the thunderdome", "Gun nuts", "Assholes", "Ammosexuals", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Because of wow.", "Politics"]}, {"name": "Bleg", "fellows": ["MOAR GUNZ PEW PEW PEW", "Gun nuts", "Seriously", "Fucked-up-edness", "Ammosexuals", "Open Thread", "Peak Wingnut Was a Lie!", "World's Best Healthcare (If You Can Afford It)", "Republican Stupidity", "Security Theatre"]}, {"name": "Grifters Gonna Grift", "fellows": ["Proud to Be A Democrat", "General Stupidity", "Blatant Liars and the Lies They Tell", "Repubs in Disarray!", "Glibertarianism", "Election 2016", "Open Thread", "Fuck Yeah!", "IOKIYAR", "Just Shut the Fuck Up", "I Reject Your Reality and Substitute My Own", "Clap Louder!", "C.R.E.A.M.", "Our Failed Media Experiment", "Religious Nuts", "Their Motto: Apocalypse Now", "Media", "Domestic Affairs", "I Smell a Pulitzer!", "Mayhew On Insurance", "Clown Shoes", "Foam Finger Nation", "Because of wow.", "Somewhere a Village is Missing its Idiot", "Foreign Affairs", "Hail to the Hairpiece", "Don't Mourn, Organize", "Republican Venality", "Free Markets Solve Everything", "Go Fuck Yourself", "Our Failed Political Establishment", "Assholes", "Our Awesome Meritocracy", "Ammosexuals", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Keep Fucking That Chicken", "Fuck The Poor", "Excellent Links", "I Read These Morons So You Don't Have To", "Sociopaths", "Republican Stupidity"]}, {"name": "Republican Venality", "fellows": ["Shitheads", "Grifters Gonna Grift", "hoocoodanode", "Flash Mob of Hate", "Blatant Liars and the Lies They Tell", "Science & Technology", "Repubs in Disarray!", "Religious Nuts", "Election 2016", "Seriously", "Open Thread", "Music", "Fuck Yeah!", "Warren for Senate 2012", "Just Shut the Fuck Up", "I Reject Your Reality and Substitute My Own", "Fucked-up-edness", "Clap Louder!", "Not Normal", "C.R.E.A.M.", "Hillary Clinton 2016", "Iowa", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Food", "domestic terrorists", "Faunasphere", "DC Press Corpse", "Vegan", "Enhanced Protest Techniques", "Pigs", "Immigration", "Decline and Fall", "Sociopaths", "Their Motto: Apocalypse Now", "Joni Ernst", "Activist Judges!", "IOKIYAR", "I Smell a Pulitzer!", "Trump Crime Cartel", "Nobody could have predicted", "Ryan Lyin' Weasel", "Prison Planet", "Clown car", "Excellent Links", "Don't Mourn, Organize", "Proud to Be A Democrat", "Republican Crime Syndicate - aka the Bush Admin.", "Post-racial America", "World's Best Healthcare (If You Can Afford It)", "An Unexamined Scandal", "Security Theatre", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Foreign Affairs", "Bring On The Meteor", "Gun nuts", "Dolt 45", "Assholes", "Rare Sincerity", "Outrage", "Fables Of The Reconstruction", "Ammosexuals", "WIN THE MORNING", "Zombie-Eyed Granny Starver", "Domestic Affairs", "Gestation Crates", "Vagina Outrage", "Keep Fucking That Chicken", "Republican Stupidity", "Cruz-ifiction", "Ever Get The Feeling You've Been Cheated?", "I Read These Morons So You Don't Have To", "Go Fuck Yourself", "Get Angry", "Schadenfreude"]}, {"name": "Ammosexuals", "fellows": ["Enhanced Protest Techniques", "General Stupidity", "Flash Mob of Hate", "Repubs in Disarray!", "Republican Venality", "Proud to Be A Democrat", "WOLVERINES", "Open Thread", "Malheur National Wildlife Refuge Occupation", "Poke-a-Trumpus", "Their Motto: Apocalypse Now", "Fucked-up-edness", "Clap Louder!", "Hillary Clinton 2016", "Vote Like Your Country Depends On It", "domestic terrorists", "Grifters Gonna Grift", "Zombie-Eyed Granny Starver", "Peak Wingnut Was a Lie!", "Ammon Bundy", "Domestic Affairs", "America", "Green Balloons", "Crazification Factor", "Bundy Bunch", "Music", "Clown Shoes", "Gay Rights are Human Rights", "Sociopaths", "Corrections", "Go Fuck Yourself", "Hail to the Hairpiece", "MOAR GUNZ PEW PEW PEW", "All we want is life beyond the thunderdome", "Election 2016", "Gun nuts", "Assholes", "Seriously", "Absent Friends", "Security Theatre", "Bleg", "Other", "Keep Fucking That Chicken", "Politics", "Bundy Trial", "Republican Stupidity"]}, {"name": "All we want is life beyond the thunderdome", "fellows": ["Shitheads", "Flash Mob of Hate", "Blatant Liars and the Lies They Tell", "Science & Technology", "Repubs in Disarray!", "Republican Venality", "Sports", "Election 2016", "Rare Sincerity", "Open Thread", "Poke-a-Trumpus", "Sociopaths", "Enhanced Protest Techniques", "C.R.E.A.M.", "Hillary Clinton 2016", "The teabagger's apprentice", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Clap Louder!", "Religious Nuts", "Their Motto: Apocalypse Now", "Dolt 45", "Immigration", "Decline and Fall", "Bring on the Brawndo!", "Domestic Affairs", "Burkean bells", "Activist Judges!", "Mayhew On Insurance", "Foam Finger Nation", "Nobody could have predicted", "Republican Crime Syndicate - aka the Bush Admin.", "Hail to the Hairpiece", "Good News For Conservatives", "Readership Capture", "Cat Blogging", "Security Theatre", "Politics", "Proud to Be A Democrat", "Trump Crime Cartel", "World's Best Healthcare (If You Can Afford It)", "Go Fuck Yourself", "Our Failed Political Establishment", "Peak Wingnut Was a Lie!", "Ever Get The Feeling You've Been Cheated?", "Foreign Affairs", "Very Serious People", "Bring On The Meteor", "Gun nuts", "An Unexamined Scandal", "Assholes", "WTF?", "Women's Rights Are Human Rights", "Ammosexuals", "Get Angry", "Books", "Tire Swinging is so 2008", "Fuck The Poor", "Free Markets Solve Everything", "Fools! Overton Window!"]}, {"name": "Flash Mob of Hate", "fellows": ["Shitheads", "Republican Venality", "Blatant Liars and the Lies They Tell", "Science & Technology", "Election 2016", "Open Thread", "Poke-a-Trumpus", "Hillary Clinton 2016", "Vote Like Your Country Depends On It", "Enhanced Protest Techniques", "Nobody could have predicted", "Proud to Be A Democrat", "Post-racial America", "Ever Get The Feeling You've Been Cheated?", "An Unexamined Scandal", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Assholes", "Riveted By The Sociological Significance Of It All", "Ammosexuals", "Politics", "Excellent Links", "Sociopaths", "Republican Stupidity"]}, {"name": "Poke-a-Trumpus", "fellows": ["Hillary Clinton 2016", "General Stupidity", "Hail to the Hairpiece", "Our Failed Media Experiment", "All we want is life beyond the thunderdome", "Flash Mob of Hate", "Assholes", "Ammosexuals", "Election 2016", "Open Thread", "Proud to Be A Democrat", "Politics", "Sociopaths", "Republican Stupidity"]}, {"name": "Domestic Affairs", "fellows": ["Open Thread", "Malheur National Wildlife Refuge Occupation", "Our Failed Media Experiment", "Crazification Factor", "Readership Capture", "wonkery", "Don't Mourn, Organize", "Military", "Election 2020", "Extremism", "Assholes", "Bundy Bunch", "Television", "Sports", "Election 2017", "Election 2016", "Rare Sincerity", "Politicization of Policy", "Terrorism", "leaderless resistance", "Uncategorized", "C.R.E.A.M.", "Trump Crime Cartel", "domestic terrorists", "War", "Both Sides Do It!", "America", "Chelsea Bombing", "Corrections", "An Unexamined Scandal", "Movies", "Absent Friends", "Security Theatre", "Unlawful Presence", "Republican Stupidity", "General Stupidity", "Dog Blogging", "Music", "Outrage", "Sweet Fancy Moses!", "WIN THE MORNING", "Grifters Gonna Grift", "Immigration", "Enhanced Protest Techniques", "Bundy Trial", "NATO", "Improper Entry", "Clown Shoes", "Bernie Sanders 2016", "the Grey Zone", "Proud to Be A Democrat", "Popular Culture", "Our Awesome Meritocracy", "Guest Post", "Excellent Links", "Get Angry", "Media", "WOLVERINES", "Other", "Fuck Yeah!", "Hillary Clinton 2016", "Food", "Ammon Bundy", "Germany", "Not Normal", "Election 2018", "I Smell a Pulitzer!", "Lone Wolf", "Foreign Affairs", "Republican Venality", "Silverman on Security", "Post-racial America", "Our Failed Political Establishment", "All we want is life beyond the thunderdome", "Gun nuts", "Ammosexuals", "Politics", "Ever Get The Feeling You've Been Cheated?"]}, {"name": "Crazification Factor", "fellows": ["General Stupidity", "WTF?", "domestic terrorists", "Assholes", "Their Motto: Apocalypse Now", "Ammosexuals", "Election 2016", "WOLVERINES", "Open Thread", "Malheur National Wildlife Refuge Occupation", "This is not where you come to do your madness!", "Because of wow.", "Politics", "Domestic Affairs", "Enhanced Protest Techniques", "Other", "Sociopaths"]}, {"name": "#notintendedtobeafactualstatement", "fellows": ["David Brooks Giving A Seminar At The Aspen Institute", "Hail to the Hairpiece", "Dog Blogging", "Glibertarianism", "Election 2016", "Open Thread", "Because of wow.", "Good News For Conservatives", "Go Fuck Yourself"]}, {"name": "hoocoodanode", "fellows": ["Proud to Be A Democrat", "Repubs in Disarray!", "Election 2016", "Open Thread", "Outrage", "Clown car", "Mayhew On Insurance", "Foam Finger Nation", "Foreign Affairs", "Politics", "Republican Venality", "An Unexamined Scandal", "Good News For Conservatives", "Hail to the Hairpiece", "Bring On The Meteor", "Gun nuts", "Assholes", "Keep Fucking That Chicken", "Fuck The Poor", "Republican Stupidity"]}, {"name": "Outrage", "fellows": ["hoocoodanode", "Election 2016", "Open Thread", "Politicization of Policy", "Unlawful Presence", "Immigration", "World's Best Healthcare (If You Can Afford It)", "Decline and Fall", "Domestic Affairs", "America", "Foam Finger Nation", "Hail to the Hairpiece", "wonkery", "Republican Venality", "Post-racial America", "Improper Entry", "An Unexamined Scandal", "Our Failed Political Establishment", "Bring On The Meteor", "Popular Culture", "Vagina Outrage", "Politics", "Ever Get The Feeling You've Been Cheated?", "Republican Stupidity"]}, {"name": "Gun nuts", "fellows": ["Proud to Be A Democrat", "General Stupidity", "Bundy Bunch", "Election 2016", "Seriously", "Open Thread", "Malheur National Wildlife Refuge Occupation", "Ryan Lyin' Weasel", "Enhanced Protest Techniques", "Hillary Clinton 2016", "domestic terrorists", "Corrections", "Religious Nuts", "Fucked-up-edness", "Bundy Trial", "Domestic Affairs", "America", "Music", "Gay Rights are Human Rights", "Foreign Affairs", "Republican Venality", "hoocoodanode", "Go Fuck Yourself", "Hail to the Hairpiece", "Peak Wingnut Was a Lie!", "All we want is life beyond the thunderdome", "MOAR GUNZ PEW PEW PEW", "Assholes", "Absent Friends", "Security Theatre", "Ammosexuals", "Bleg", "Other", "Keep Fucking That Chicken", "Politics", "Sociopaths", "Republican Stupidity"]}, {"name": "Rare Sincerity", "fellows": ["Proud to Be A Democrat", "General Stupidity", "Yes We Did", "Daydream Believers", "Religion", "Open Thread", "Warren for Senate 2012", "C.R.E.A.M.", "Hillary Clinton 2016", "Immigration", "Enhanced Protest Techniques", "#BLM #M4BL", "Domestic Affairs", "Trump Crime Cartel", "Foreign Affairs", "Republican Venality", "Military", "Ever Get The Feeling You've Been Cheated?", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Election 2016", "Get Angry", "Assholes", "Security Theatre", "Because of wow.", "Politics", "Excellent Links"]}, {"name": "Warren for Senate 2012", "fellows": ["Hillary Clinton 2016", "Hail to the Hairpiece", "Republican Venality", "Repubs in Disarray!", "Assholes", "Women's Rights Are Human Rights", "Election 2016", "Rare Sincerity", "Open Thread", "Proud to Be A Democrat", "Activist Judges!"]}, {"name": "Jump! You Fuckers!", "fellows": ["General Stupidity", "Hail to the Hairpiece", "Repubs in Disarray!", "Assholes", "Election 2016", "Open Thread", "Schadenfreude", "Ryan Lyin' Weasel", "Republican Stupidity", "Sweet Fancy Moses!"]}, {"name": "Ryan Lyin' Weasel", "fellows": ["C.R.E.A.M.", "Hail to the Hairpiece", "NANCY SMASH!", "domestic terrorists", "Gun nuts", "Repubs in Disarray!", "Assholes", "Zombie-Eyed Granny Starver", "Election 2016", "Proud to Be A Democrat", "Open Thread", "Republican Stupidity", "Jump! You Fuckers!", "Republican Venality", "Ever Get The Feeling You've Been Cheated?", "World's Best Healthcare (If You Can Afford It)", "Schadenfreude"]}, {"name": "Books", "fellows": ["Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Bring On The Meteor", "Daydream Believers", "Open Thread", "Excellent Links", "Republican Stupidity"]}, {"name": "Their Motto: Apocalypse Now", "fellows": ["General Stupidity", "Election 2016", "WOLVERINES", "Open Thread", "Lizard Blogging", "Sweet Fancy Moses!", "Hillary Clinton 2016", "The teabagger's apprentice", "Vote Like Your Country Depends On It", "Grifters Gonna Grift", "Religious Nuts", "Peak Wingnut Was a Lie!", "Decline and Fall", "The Wingularity", "Green Balloons", "Crazification Factor", "Keep Fucking That Chicken", "Hail to the Hairpiece", "This is not where you come to do your madness!", "Republican Venality", "Our Failed Political Establishment", "WTF?", "All we want is life beyond the thunderdome", "Assholes", "Ammosexuals", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Because of wow.", "Sociopaths", "Republican Stupidity"]}, {"name": "Vote Like Your Country Depends On It", "fellows": ["Proud to Be A Democrat", "General Stupidity", "Flash Mob of Hate", "Blatant Liars and the Lies They Tell", "Shitheads", "Religious Nuts", "Election 2016", "WOLVERINES", "Open Thread", "Peak Wingnut Was a Lie!", "Lizard Blogging", "Sweet Fancy Moses!", "C.R.E.A.M.", "Hillary Clinton 2016", "The teabagger's apprentice", "WIN THE MORNING", "DC Press Corpse", "Their Motto: Apocalypse Now", "Decline and Fall", "Bring on the Brawndo!", "The Wingularity", "Burkean bells", "Keep Fucking That Chicken", "Even the \"Liberal\" New Republic", "Republican Crime Syndicate - aka the Bush Admin.", "Good News For Conservatives", "Our Failed Political Establishment", "Republican Venality", "Somewhere a Village is Missing its Idiot", "An Unexamined Scandal", "Hail to the Hairpiece", "WTF?", "All we want is life beyond the thunderdome", "Very Serious People", "Bring On The Meteor", "Assholes", "Women's Rights Are Human Rights", "Green Balloons", "Ammosexuals", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Because of wow.", "Tire Swinging is so 2008", "Politics", "Sociopaths"]}, {"name": "WOLVERINES", "fellows": ["General Stupidity", "Hail to the Hairpiece", "Vote Like Your Country Depends On It", "domestic terrorists", "Their Motto: Apocalypse Now", "Ammosexuals", "Open Thread", "Malheur National Wildlife Refuge Occupation", "Domestic Affairs", "Enhanced Protest Techniques", "Other", "Crazification Factor"]}, {"name": "Our Awesome Meritocracy", "fellows": ["Blatant Liars and the Lies They Tell", "Repubs in Disarray!", "Election 2017", "Election 2016", "Open Thread", "Clap Louder!", "Not Normal", "Election 2018", "C.R.E.A.M.", "Our Failed Media Experiment", "Grifters Gonna Grift", "Domestic Affairs", "America", "Nobody could have predicted", "Foreign Affairs", "Our Failed Political Establishment", "Silverman on Security", "Hail to the Hairpiece", "Popular Culture", "Assholes", "Security Theatre", "Keep Fucking That Chicken", "Politics", "Excellent Links", "Republican Stupidity"]}, {"name": "Our Failed Political Establishment", "fellows": ["Blatant Liars and the Lies They Tell", "Repubs in Disarray!", "Immigration", "Election 2017", "Election 2016", "Open Thread", "Politicization of Policy", "Outrage", "Peak Wingnut Was a Lie!", "Clap Louder!", "Not Normal", "Election 2018", "The teabagger's apprentice", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Grifters Gonna Grift", "Religious Nuts", "Their Motto: Apocalypse Now", "An Unexamined Scandal", "Decline and Fall", "Domestic Affairs", "America", "Burkean bells", "Clown Shoes", "Nobody could have predicted", "Foreign Affairs", "wonkery", "Election 2020", "Silverman on Security", "Improper Entry", "Go Fuck Yourself", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Popular Culture", "Assholes", "Our Awesome Meritocracy", "Security Theatre", "Politics", "Unlawful Presence", "Republican Stupidity"]}, {"name": "General Stupidity", "fellows": ["Dog Blogging", "Shitty Cops", "Religious Nuts", "Election 2016", "Green Lantern Pundit Corps", "Open Thread", "I Just Had My Oakeshott In The Widener Library For Succor", "Fuck Yeah!", "Poke-a-Trumpus", "Their Motto: Apocalypse Now", "Lizard Blogging", "Sweet Fancy Moses!", "I Can No Longer Rationally Discuss The Sanders Campaign", "Hillary Clinton 2016", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Grifters Gonna Grift", "DC Press Corpse", "Enhanced Protest Techniques", "Politics", "Domestic Affairs", "The Wingularity", "Green Balloons", "Crazification Factor", "Rare Sincerity", "Clown Shoes", "Even the \"Liberal\" New Republic", "Gay Rights are Human Rights", "Best President Ever", "Proud to Be A Democrat", "I Can No Longer Rationally Discuss The Clinton Campaign", "Post-racial America", "Peak Wingnut Was a Lie!", "Go Fuck Yourself", "Get off my grass you damned kids", "Hail to the Hairpiece", "WTF?", "Gun nuts", "Assholes", "WOLVERINES", "Sociopaths", "Ammosexuals", "Other", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Just Shut the Fuck Up", "Jump! You Fuckers!", "Keep Fucking That Chicken", "Malheur National Wildlife Refuge Occupation", "domestic terrorists", "Republican Stupidity"]}, {"name": "Mayhew On Insurance", "fellows": ["Yes We Did", "Glibertarianism", "Election 2016", "Green Lantern Pundit Corps", "Open Thread", "Arkansas", "Uncategorized", "C.R.E.A.M.", "Hillary Clinton 2016", "Grifters Gonna Grift", "Rates", "hoocoodanode", "Election 2018", "Foam Finger Nation", "Nobody could have predicted", "medicaid", "Don't Mourn, Organize", "Proud to Be A Democrat", "Election 2020", "ESI", "Get off my grass you damned kids", "All we want is life beyond the thunderdome", "Bring On The Meteor", "Women's Rights Are Human Rights", "Fuck The Poor", "Free Markets Solve Everything", "Insurance"]}, {"name": "Republican Crime Syndicate - aka the Bush Admin.", "fellows": ["Hail to the Hairpiece", "Republican Venality", "All we want is life beyond the thunderdome", "Vote Like Your Country Depends On It", "Repubs in Disarray!", "Assholes", "Election 2016", "Open Thread", "Decline and Fall", "Bring on the Brawndo!", "An Unexamined Scandal"]}, {"name": "America", "fellows": ["Media", "Bundy Bunch", "Election 2017", "Election 2016", "Other", "Malheur National Wildlife Refuge Occupation", "Absent Friends", "Outrage", "Not Normal", "Election 2018", "Foreign Affairs", "Our Failed Media Experiment", "domestic terrorists", "Faunasphere", "Enhanced Protest Techniques", "Bundy Trial", "Germany", "NATO", "Domestic Affairs", "Television", "Clown Shoes", "Foam Finger Nation", "Our Failed Political Establishment", "Politics", "Corrections", "Military", "Election 2020", "Silverman on Security", "Hail to the Hairpiece", "Movies", "Gun nuts", "Critters", "Our Awesome Meritocracy", "Security Theatre", "Ammosexuals", "Open Thread", "Music", "Guest Post", "Popular Culture"]}, {"name": "Proud to Be A Democrat", "fellows": ["General Stupidity", "Grifters Gonna Grift", "NANCY SMASH!", "Yes We Did", "Flash Mob of Hate", "Blatant Liars and the Lies They Tell", "Science & Technology", "Repubs in Disarray!", "Shitheads", "I Can No Longer Rationally Discuss The Clinton Campaign", "Election 2016", "Rare Sincerity", "Open Thread", "I Just Had My Oakeshott In The Widener Library For Succor", "Fuck Yeah!", "Warren for Senate 2012", "Poke-a-Trumpus", "Ryan Lyin' Weasel", "Sweet Fancy Moses!", "I Can No Longer Rationally Discuss The Sanders Campaign", "Hillary Clinton 2016", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "domestic terrorists", "Dog Blogging", "Enhanced Protest Techniques", "Politics", "Go Fuck Yourself", "Media", "Good News For Conservatives", "Sociopaths", "hoocoodanode", "Fools! Overton Window!", "fauxtrage", "Activist Judges!", "Pet Rescue", "C.R.E.A.M.", "I Smell a Pulitzer!", "Climate Change", "Mayhew On Insurance", "Bernie Sanders 2016", "Because of wow.", "Gay Rights are Human Rights", "Foreign Affairs", "Readership Capture", "Don't Mourn, Organize", "Cat Blogging", "Show Us on the Doll Where the Invisible Hand Touched You", "Republican Venality", "Military", "Foam Finger Nation", "Post-racial America", "World's Best Healthcare (If You Can Afford It)", "An Unexamined Scandal", "Assholes", "Woman in the Whitehouse 2016", "Hail to the Hairpiece", "Ever Get The Feeling You've Been Cheated?", "All we want is life beyond the thunderdome", "Fuck The Poor", "Gun nuts", "Dolt 45", "Daydream Believers", "Women's Rights Are Human Rights", "Excellent Links", "Ammosexuals", "Get Angry", "Domestic Affairs", "Vagina Outrage", "Keep Fucking That Chicken", "Music", "Free Markets Solve Everything", "Best President Ever", "Popular Culture", "Republican Stupidity"]}, {"name": "Just Shut the Fuck Up", "fellows": ["General Stupidity", "Grifters Gonna Grift", "I Read These Morons So You Don't Have To", "Clown Shoes", "Repubs in Disarray!", "Assholes", "Religious Nuts", "Hail to the Hairpiece", "Election 2016", "Open Thread", "Republican Venality", "Republican Stupidity"]}, {"name": "Excellent Links", "fellows": ["Proud to Be A Democrat", "Flash Mob of Hate", "Daydream Believers", "Science & Technology", "Repubs in Disarray!", "Election 2016", "Rare Sincerity", "Open Thread", "Music", "Women's Rights Are Human Rights", "Clap Louder!", "Not Normal", "C.R.E.A.M.", "Hillary Clinton 2016", "Stuff About Black People Written By a Black Person", "Grifters Gonna Grift", "Enhanced Protest Techniques", "#BLM #M4BL", "Domestic Affairs", "Republican Stupidity", "I Smell a Pulitzer!", "Trump Crime Cartel", "Nobody could have predicted", "Foreign Affairs", "Readership Capture", "Cat Blogging", "Show Us on the Doll Where the Invisible Hand Touched You", "Republican Venality", "Post-racial America", "Ever Get The Feeling You've Been Cheated?", "Go Fuck Yourself", "Hail to the Hairpiece", "Movies", "Popular Culture", "Assholes", "Our Awesome Meritocracy", "Riveted By The Sociological Significance Of It All", "Books", "Vagina Outrage", "Because of wow.", "Free Markets Solve Everything", "Schadenfreude"]}, {"name": "Uncategorized", "fellows": ["Heilman's", "robotics", "Flood", "Open Thread", "Summersville", "Mars Crawler", "NASA", "Dr. Bronners", "Both Sides Do It!", "Domestic Affairs", "Mayhew On Insurance", "Beckley", "West Virginia", "Foreign Affairs", "Japan", "Hemp", "Kalamazoo", "Election 2016", "show tunes", "Other", "Good People", "Politics", "Free Markets Solve Everything", "refugees", "United Way"]}, {"name": "DC Press Corpse", "fellows": ["General Stupidity", "Election 2016", "Green Lantern Pundit Corps", "Open Thread", "I Just Had My Oakeshott In The Widener Library For Succor", "IOKIYAR", "Hillary Clinton 2016", "Vote Like Your Country Depends On It", "WIN THE MORNING", "Burkean bells", "Even the \"Liberal\" New Republic", "Somewhere a Village is Missing its Idiot", "Republican Venality", "Mainstream Media's McCain Mancrush", "Woman in the Whitehouse 2016", "Hail to the Hairpiece", "Very Serious People", "Assholes", "Because of wow.", "Ever Get The Feeling You've Been Cheated?"]}, {"name": "Woman in the Whitehouse 2016", "fellows": ["Hillary Clinton 2016", "Daydream Believers", "DC Press Corpse", "Women's Rights Are Human Rights", "Election 2016", "Open Thread", "Proud to Be A Democrat", "Politics", "Ever Get The Feeling You've Been Cheated?", "Post-racial America"]}, {"name": "This is not where you come to do your madness!", "fellows": ["WTF?", "Assholes", "Their Motto: Apocalypse Now", "Open Thread", "Because of wow.", "Other", "Sociopaths", "Crazification Factor"]}, {"name": "Bring on the Brawndo!", "fellows": ["Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Vote Like Your Country Depends On It", "Assholes", "Republican Crime Syndicate - aka the Bush Admin.", "Election 2016", "Open Thread", "An Unexamined Scandal", "Republican Stupidity"]}, {"name": "Women's Rights Are Human Rights", "fellows": ["I Can No Longer Rationally Discuss The Clinton Campaign", "Election 2016", "Open Thread", "Fuck Yeah!", "Warren for Senate 2012", "Hillary Clinton 2016", "Vote Like Your Country Depends On It", "Activist Judges!", "Mayhew On Insurance", "Readership Capture", "Politics", "Proud to Be A Democrat", "Post-racial America", "World's Best Healthcare (If You Can Afford It)", "Woman in the Whitehouse 2016", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Daydream Believers", "Vagina Outrage", "Because of wow.", "Fuck The Poor", "Excellent Links"]}, {"name": "C.R.E.A.M.", "fellows": ["Republican Venality", "Repubs in Disarray!", "Glibertarianism", "I Smell a Pulitzer!", "Sports", "Seriously", "Open Thread", "Military", "Ryan Lyin' Weasel", "I Can No Longer Rationally Discuss The Sanders Campaign", "Hillary Clinton 2016", "Keep Fucking That Chicken", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Food", "domestic terrorists", "Grifters Gonna Grift", "Enhanced Protest Techniques", "Go Fuck Yourself", "Decline and Fall", "Both Sides Do It!", "Domestic Affairs", "Free Markets Solve Everything", "Green Balloons", "Television", "Mayhew On Insurance", "Clown Shoes", "Bernie Sanders 2016", "Nobody could have predicted", "Even the \"Liberal\" New Republic", "Foreign Affairs", "Hail to the Hairpiece", "wonkery", "Don't Mourn, Organize", "Show Us on the Doll Where the Invisible Hand Touched You", "Proud to Be A Democrat", "Mainstream Media's McCain Mancrush", "Trump Crime Cartel", "Post-racial America", "World's Best Healthcare (If You Can Afford It)", "An Unexamined Scandal", "Good News For Conservatives", "WTF?", "All we want is life beyond the thunderdome", "Election 2016", "Very Serious People", "Bring On The Meteor", "Dolt 45", "Assholes", "Rare Sincerity", "Our Awesome Meritocracy", "WIN THE MORNING", "Because of wow.", "Tire Swinging is so 2008", "Ever Get The Feeling You've Been Cheated?", "Excellent Links", "Republican Stupidity"]}, {"name": "Foreign Affairs", "fellows": ["Repubs in Disarray!", "Open Thread", "Clap Louder!", "Our Failed Media Experiment", "Dolt 45", "Domestic Affairs", "Prison Planet", "Military", "Election 2020", "Go Fuck Yourself", "Idlib", "Assholes", "Extremism", "Schadenfreude", "I Smell a Pulitzer!", "Sports", "Election 2017", "Election 2016", "Rare Sincerity", "I Reject Your Reality and Substitute My Own", "Terrorism", "leaderless resistance", "Uncategorized", "C.R.E.A.M.", "Trump Crime Cartel", "domestic terrorists", "Religious Nuts", "Clown car", "hoocoodanode", "America", "Chelsea Bombing", "An Unexamined Scandal", "Free Markets Solve Everything", "Republican Stupidity", "Grifters Gonna Grift", "Music", "IOKIYAR", "War", "Lizard Blogging", "Dog Blogging", "Immigration", "NATO", "Burkean bells", "Clown Shoes", "Our Failed Political Establishment", "the Grey Zone", "Show Us on the Doll Where the Invisible Hand Touched You", "Proud to Be A Democrat", "Very Serious People", "Daydream Believers", "Our Awesome Meritocracy", "Excellent Links", "Gun nuts", "Chemical Weapons", "Blatant Liars and the Lies They Tell", "Other", "Hillary Clinton 2016", "Germany", "Not Normal", "Good News For Conservatives", "Election 2018", "Television", "Lone Wolf", "Nobody could have predicted", "Gay Rights are Human Rights", "Republican Venality", "Syria", "Silverman on Security", "Post-racial America", "Get off my grass you damned kids", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Fools! Overton Window!", "Critters", "Get Angry", "Keep Fucking That Chicken", "Politics", "Ever Get The Feeling You've Been Cheated?"]}, {"name": "Television", "fellows": ["C.R.E.A.M.", "Foreign Affairs", "Media", "Popular Culture", "Sports", "Movies", "Open Thread", "Guest Post", "Politics", "Ever Get The Feeling You've Been Cheated?", "America", "Domestic Affairs"]}, {"name": "Good News For Conservatives", "fellows": ["Blatant Liars and the Lies They Tell", "Glibertarianism", "Election 2016", "Open Thread", "C.R.E.A.M.", "Vote Like Your Country Depends On It", "Go Fuck Yourself", "Clown car", "hoocoodanode", "David Brooks Giving A Seminar At The Aspen Institute", "Foam Finger Nation", "Keep Fucking That Chicken", "Foreign Affairs", "Proud to Be A Democrat", "Military", "#notintendedtobeafactualstatement", "An Unexamined Scandal", "Hail to the Hairpiece", "WTF?", "All we want is life beyond the thunderdome", "Very Serious People", "Bring On The Meteor", "Assholes", "Because of wow.", "Tire Swinging is so 2008", "Politics", "Republican Stupidity"]}, {"name": "Tire Swinging is so 2008", "fellows": ["All we want is life beyond the thunderdome", "Bring On The Meteor", "C.R.E.A.M.", "Election 2016", "Good News For Conservatives", "Hail to the Hairpiece", "Very Serious People", "Vote Like Your Country Depends On It", "WTF?"]}, {"name": "Very Serious People", "fellows": ["Repubs in Disarray!", "Election 2016", "Open Thread", "C.R.E.A.M.", "Vote Like Your Country Depends On It", "WIN THE MORNING", "DC Press Corpse", "Good News For Conservatives", "Burkean bells", "Even the \"Liberal\" New Republic", "Somewhere a Village is Missing its Idiot", "Foreign Affairs", "Hail to the Hairpiece", "WTF?", "All we want is life beyond the thunderdome", "Bring On The Meteor", "Assholes", "Republican Stupidity", "Because of wow.", "Tire Swinging is so 2008", "Schadenfreude"]}, {"name": "WTF?", "fellows": ["General Stupidity", "Election 2016", "Open Thread", "Peak Wingnut Was a Lie!", "Lizard Blogging", "Sweet Fancy Moses!", "C.R.E.A.M.", "Hillary Clinton 2016", "Vote Like Your Country Depends On It", "Their Motto: Apocalypse Now", "Good News For Conservatives", "The Wingularity", "Green Balloons", "Crazification Factor", "Because of wow.", "This is not where you come to do your madness!", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Very Serious People", "Bring On The Meteor", "Assholes", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Keep Fucking That Chicken", "Tire Swinging is so 2008", "Sociopaths"]}, {"name": "Free Markets Solve Everything", "fellows": ["Glibertarianism", "Election 2016", "Open Thread", "Not Normal", "Uncategorized", "C.R.E.A.M.", "Trump Crime Cartel", "Grifters Gonna Grift", "World's Best Healthcare (If You Can Afford It)", "Mayhew On Insurance", "Foam Finger Nation", "Foreign Affairs", "Don't Mourn, Organize", "Show Us on the Doll Where the Invisible Hand Touched You", "Proud to Be A Democrat", "Excellent Links", "Get off my grass you damned kids", "All we want is life beyond the thunderdome", "Assholes", "Fuck The Poor", "Republican Stupidity"]}, {"name": "Glibertarianism", "fellows": ["C.R.E.A.M.", "David Brooks Giving A Seminar At The Aspen Institute", "Clown Shoes", "Foam Finger Nation", "Grifters Gonna Grift", "Election 2016", "Mayhew On Insurance", "Open Thread", "#notintendedtobeafactualstatement", "Because of wow.", "Good News For Conservatives", "Fuck The Poor", "Free Markets Solve Everything", "World's Best Healthcare (If You Can Afford It)", "Go Fuck Yourself", "Don't Mourn, Organize"]}, {"name": "World's Best Healthcare (If You Can Afford It)", "fellows": ["NANCY SMASH!", "Repubs in Disarray!", "Glibertarianism", "Proud to Be A Democrat", "Open Thread", "Outrage", "Ryan Lyin' Weasel", "C.R.E.A.M.", "Food", "Decline and Fall", "Activist Judges!", "Show Us on the Doll Where the Invisible Hand Touched You", "Republican Venality", "Ever Get The Feeling You've Been Cheated?", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Women's Rights Are Human Rights", "Bleg", "Vagina Outrage", "Because of wow.", "Free Markets Solve Everything", "Republican Stupidity"]}, {"name": "Sweet Fancy Moses!", "fellows": ["General Stupidity", "Election 2016", "Open Thread", "Fuck Yeah!", "Their Motto: Apocalypse Now", "Lizard Blogging", "Hillary Clinton 2016", "Vote Like Your Country Depends On It", "Peak Wingnut Was a Lie!", "Domestic Affairs", "The Wingularity", "Green Balloons", "Best President Ever", "Proud to Be A Democrat", "WTF?", "Assholes", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Jump! You Fuckers!", "Keep Fucking That Chicken", "Politics", "Sociopaths", "Republican Stupidity"]}, {"name": "I Reject Your Reality and Substitute My Own", "fellows": ["Election 2016", "Open Thread", "Hillary Clinton 2016", "Our Failed Media Experiment", "Grifters Gonna Grift", "Both Sides Do It!", "I Smell a Pulitzer!", "Prison Planet", "Foreign Affairs", "Show Us on the Doll Where the Invisible Hand Touched You", "Republican Venality", "Mainstream Media's McCain Mancrush", "Post-racial America", "An Unexamined Scandal", "Get off my grass you damned kids", "Hail to the Hairpiece", "Bring On The Meteor", "Assholes", "I Read These Morons So You Don't Have To", "Republican Stupidity"]}, {"name": "Military", "fellows": ["Blatant Liars and the Lies They Tell", "Election 2016", "Rare Sincerity", "Open Thread", "Syria", "War", "C.R.E.A.M.", "Hillary Clinton 2016", "Our Failed Media Experiment", "Media", "Good News For Conservatives", "Domestic Affairs", "America", "Clown Shoes", "Foam Finger Nation", "Because of wow.", "Foreign Affairs", "Proud to Be A Democrat", "Silverman on Security", "Post-racial America", "Assholes", "Hail to the Hairpiece", "Idlib", "Daydream Believers", "Other", "Keep Fucking That Chicken", "Politics", "Republican Stupidity", "Chemical Weapons"]}, {"name": "Media", "fellows": ["Hillary Clinton 2016", "Television", "Hail to the Hairpiece", "Our Failed Media Experiment", "Election 2016", "Clown Shoes", "Daydream Believers", "Popular Culture", "Grifters Gonna Grift", "Assholes", "I Smell a Pulitzer!", "Movies", "Open Thread", "Guest Post", "Military", "Proud to Be A Democrat", "Politics", "Readership Capture", "America", "Domestic Affairs"]}, {"name": "I Smell a Pulitzer!", "fellows": ["Republican Venality", "Media", "Repubs in Disarray!", "Election 2016", "Open Thread", "I Reject Your Reality and Substitute My Own", "C.R.E.A.M.", "Hillary Clinton 2016", "Our Failed Media Experiment", "Grifters Gonna Grift", "Both Sides Do It!", "Domestic Affairs", "Even the \"Liberal\" New Republic", "Foreign Affairs", "Proud to Be A Democrat", "Mainstream Media's McCain Mancrush", "An Unexamined Scandal", "Hail to the Hairpiece", "Assholes", "Excellent Links", "I Read These Morons So You Don't Have To", "Republican Stupidity"]}, {"name": "Clown Shoes", "fellows": ["General Stupidity", "Media", "Repubs in Disarray!", "Glibertarianism", "Election 2016", "Open Thread", "Malheur National Wildlife Refuge Occupation", "Just Shut the Fuck Up", "C.R.E.A.M.", "Our Failed Media Experiment", "Grifters Gonna Grift", "Ammon Bundy", "Domestic Affairs", "America", "Green Balloons", "domestic terrorists", "Foreign Affairs", "Hail to the Hairpiece", "Daydream Believers", "Cat Blogging", "Military", "Post-racial America", "Our Failed Political Establishment", "Popular Culture", "Assholes", "Sociopaths", "Ammosexuals", "Other", "Schadenfreude", "Keep Fucking That Chicken", "Politics", "Republican Stupidity"]}, {"name": "Burkean bells", "fellows": ["Repubs in Disarray!", "Election 2016", "Open Thread", "Because of wow.", "Clap Louder!", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "WIN THE MORNING", "DC Press Corpse", "Go Fuck Yourself", "Foam Finger Nation", "Nobody could have predicted", "Even the \"Liberal\" New Republic", "Somewhere a Village is Missing its Idiot", "Foreign Affairs", "Our Failed Political Establishment", "An Unexamined Scandal", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Very Serious People", "Bring On The Meteor", "Fools! Overton Window!", "Assholes", "Keep Fucking That Chicken"]}, {"name": "Even the \"Liberal\" New Republic", "fellows": ["C.R.E.A.M.", "General Stupidity", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Very Serious People", "Assholes", "DC Press Corpse", "Somewhere a Village is Missing its Idiot", "I Smell a Pulitzer!", "Election 2016", "Green Lantern Pundit Corps", "I Just Had My Oakeshott In The Widener Library For Succor", "Because of wow.", "Mainstream Media's McCain Mancrush", "Both Sides Do It!", "Burkean bells", "An Unexamined Scandal", "WIN THE MORNING"]}, {"name": "Somewhere a Village is Missing its Idiot", "fellows": ["Hail to the Hairpiece", "Vote Like Your Country Depends On It", "Very Serious People", "Grifters Gonna Grift", "Assholes", "Even the \"Liberal\" New Republic", "DC Press Corpse", "Election 2016", "Keep Fucking That Chicken", "Because of wow.", "Burkean bells", "Republican Stupidity", "WIN THE MORNING"]}, {"name": "WIN THE MORNING", "fellows": ["C.R.E.A.M.", "Trump Crime Cartel", "Vote Like Your Country Depends On It", "Very Serious People", "Assholes", "DC Press Corpse", "Even the \"Liberal\" New Republic", "Election 2016", "Open Thread", "Because of wow.", "Republican Venality", "Domestic Affairs", "Somewhere a Village is Missing its Idiot", "Burkean bells"]}, {"name": "Science & Technology", "fellows": ["Gamer Dork", "All we want is life beyond the thunderdome", "Flash Mob of Hate", "Daydream Believers", "Republican Venality", "Gay Rights are Human Rights", "Election 2016", "Open Thread", "Because of wow.", "Proud to Be A Democrat", "Ever Get The Feeling You've Been Cheated?", "Other", "Excellent Links", "Activist Judges!"]}, {"name": "Food", "fellows": ["C.R.E.A.M.", "Hail to the Hairpiece", "Faunasphere", "Critters", "Open Thread", "Cat Blogging", "Republican Venality", "Domestic Affairs", "World's Best Healthcare (If You Can Afford It)"]}, {"name": "Activist Judges!", "fellows": ["Science & Technology", "Hail to the Hairpiece", "Republican Venality", "All we want is life beyond the thunderdome", "Get Angry", "Repubs in Disarray!", "Women's Rights Are Human Rights", "Election 2016", "Open Thread", "Warren for Senate 2012", "Proud to Be A Democrat", "World's Best Healthcare (If You Can Afford It)"]}, {"name": "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "fellows": ["Hillary Clinton 2016", "General Stupidity", "Hail to the Hairpiece", "WTF?", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Grifters Gonna Grift", "Assholes", "Green Balloons", "Election 2016", "Open Thread", "Keep Fucking That Chicken", "Their Motto: Apocalypse Now", "The Wingularity", "Peak Wingnut Was a Lie!", "Sociopaths", "Lizard Blogging", "Sweet Fancy Moses!"]}, {"name": "Fuck Yeah!", "fellows": ["General Stupidity", "Republican Venality", "Yes We Did", "Election 2016", "Open Thread", "Sweet Fancy Moses!", "Hillary Clinton 2016", "Dolt 45", "Grifters Gonna Grift", "Domestic Affairs", "Readership Capture", "Don't Mourn, Organize", "Fuck The Poor", "Proud to Be A Democrat", "Popular Culture", "Assholes", "Women's Rights Are Human Rights", "Vagina Outrage", "Because of wow.", "Politics", "Best President Ever", "Republican Stupidity"]}, {"name": "Post-racial America", "fellows": ["General Stupidity", "Politics", "Republican Venality", "Flash Mob of Hate", "Shitty Cops", "Sports", "Election 2016", "Open Thread", "Music", "Women's Rights Are Human Rights", "Outrage", "I Reject Your Reality and Substitute My Own", "C.R.E.A.M.", "Hillary Clinton 2016", "Our Failed Media Experiment", "Stuff About Black People Written By a Black Person", "Enhanced Protest Techniques", "Go Fuck Yourself", "#BLM #M4BL", "Decline and Fall", "Domestic Affairs", "Ever Get The Feeling You've Been Cheated?", "Repubs in Disarray!", "Trump Crime Cartel", "Clown Shoes", "Nobody could have predicted", "Prison Planet", "Foreign Affairs", "Proud to Be A Democrat", "Military", "Silverman on Security", "Popular Culture", "An Unexamined Scandal", "Woman in the Whitehouse 2016", "Hail to the Hairpiece", "Bring On The Meteor", "Fools! Overton Window!", "Assholes", "Absent Friends", "Riveted By The Sociological Significance Of It All", "Other", "Excellent Links", "Get Angry", "Republican Stupidity"]}, {"name": "#BLM #M4BL", "fellows": ["Stuff About Black People Written By a Black Person", "Shitty Cops", "Enhanced Protest Techniques", "Rare Sincerity", "Open Thread", "Because of wow.", "Excellent Links", "Post-racial America"]}, {"name": "Stuff About Black People Written By a Black Person", "fellows": ["Popular Culture", "Election 2016", "Open Thread", "Music", "#BLM #M4BL", "Because of wow.", "Excellent Links", "Post-racial America"]}, {"name": "Blatant Liars and the Lies They Tell", "fellows": ["Proud to Be A Democrat", "Shitheads", "Flash Mob of Hate", "Repubs in Disarray!", "Election 2016", "Open Thread", "IOKIYAR", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Grifters Gonna Grift", "Good News For Conservatives", "Foam Finger Nation", "Foreign Affairs", "Our Failed Political Establishment", "Republican Venality", "Military", "An Unexamined Scandal", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Assholes", "Our Awesome Meritocracy", "Keep Fucking That Chicken", "Sociopaths", "Republican Stupidity"]}, {"name": "Foam Finger Nation", "fellows": ["Blatant Liars and the Lies They Tell", "Glibertarianism", "Sports", "Election 2016", "Open Thread", "Outrage", "Grifters Gonna Grift", "Good News For Conservatives", "hoocoodanode", "America", "Burkean bells", "Mayhew On Insurance", "Don't Mourn, Organize", "Proud to Be A Democrat", "Military", "Get off my grass you damned kids", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Bring On The Meteor", "Fools! Overton Window!", "Assholes", "Keep Fucking That Chicken", "Fuck The Poor", "Free Markets Solve Everything", "Republican Stupidity"]}, {"name": "IOKIYAR", "fellows": ["Hail to the Hairpiece", "Our Failed Media Experiment", "Foreign Affairs", "Blatant Liars and the Lies They Tell", "Grifters Gonna Grift", "Assholes", "DC Press Corpse", "Election 2016", "Open Thread", "Republican Venality"]}, {"name": "Seriously", "fellows": ["C.R.E.A.M.", "Hail to the Hairpiece", "MOAR GUNZ PEW PEW PEW", "Gun nuts", "Fucked-up-edness", "Ammosexuals", "Election 2016", "Bleg", "Republican Venality", "Peak Wingnut Was a Lie!", "Republican Stupidity", "Security Theatre"]}, {"name": "Bernie Sanders 2016", "fellows": ["C.R.E.A.M.", "Hillary Clinton 2016", "Readership Capture", "NANCY SMASH!", "I Can No Longer Rationally Discuss The Sanders Campaign", "Fools! Overton Window!", "Election 2016", "Open Thread", "Proud to Be A Democrat", "Politics", "Domestic Affairs"]}, {"name": "David Brooks Giving A Seminar At The Aspen Institute", "fellows": ["Glibertarianism", "Election 2016", "Open Thread", "#notintendedtobeafactualstatement", "Because of wow.", "Good News For Conservatives", "Go Fuck Yourself"]}, {"name": "Go Fuck Yourself", "fellows": ["Proud to Be A Democrat", "General Stupidity", "Repubs in Disarray!", "Glibertarianism", "Election 2016", "Open Thread", "Clap Louder!", "C.R.E.A.M.", "Our Failed Media Experiment", "Dolt 45", "Grifters Gonna Grift", "#notintendedtobeafactualstatement", "Good News For Conservatives", "Burkean bells", "David Brooks Giving A Seminar At The Aspen Institute", "Nobody could have predicted", "Foreign Affairs", "Republican Venality", "Post-racial America", "An Unexamined Scandal", "Our Failed Political Establishment", "All we want is life beyond the thunderdome", "Assholes", "Ammosexuals", "Zombie-Eyed Granny Starver", "Because of wow.", "Politics", "Excellent Links", "Gun nuts", "Republican Stupidity"]}, {"name": "Fools! Overton Window!", "fellows": ["Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Foreign Affairs", "Assholes", "Daydream Believers", "Bernie Sanders 2016", "Burkean bells", "Election 2016", "Open Thread", "Bring On The Meteor", "Proud to Be A Democrat", "Foam Finger Nation", "Post-racial America", "Ever Get The Feeling You've Been Cheated?"]}, {"name": "Cruz-ifiction", "fellows": ["Hail to the Hairpiece", "Repubs in Disarray!", "Assholes", "Religious Nuts", "Riveted By The Sociological Significance Of It All", "Election 2016", "Open Thread", "Keep Fucking That Chicken", "Republican Venality", "Fables Of The Reconstruction", "Republican Stupidity"]}, {"name": "Decline and Fall", "fellows": ["Repubs in Disarray!", "Election 2016", "Open Thread", "Outrage", "Their Motto: Apocalypse Now", "C.R.E.A.M.", "The teabagger's apprentice", "Vote Like Your Country Depends On It", "Religious Nuts", "Peak Wingnut Was a Lie!", "Republican Crime Syndicate - aka the Bush Admin.", "Our Failed Political Establishment", "Republican Venality", "Post-racial America", "World's Best Healthcare (If You Can Afford It)", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Assholes", "Vagina Outrage", "Ever Get The Feeling You've Been Cheated?", "Republican Stupidity"]}, {"name": "Green Lantern Pundit Corps", "fellows": ["General Stupidity", "Mayhew On Insurance", "Nobody could have predicted", "DC Press Corpse", "Even the \"Liberal\" New Republic", "Open Thread", "I Just Had My Oakeshott In The Widener Library For Succor"]}, {"name": "I Just Had My Oakeshott In The Widener Library For Succor", "fellows": ["General Stupidity", "Hail to the Hairpiece", "Our Failed Media Experiment", "Assholes", "DC Press Corpse", "I Can No Longer Rationally Discuss The Clinton Campaign", "Green Lantern Pundit Corps", "Open Thread", "Proud to Be A Democrat", "Even the \"Liberal\" New Republic"]}, {"name": "Shitty Cops", "fellows": ["General Stupidity", "Faunasphere", "Assholes", "Open Thread", "#BLM #M4BL", "Post-racial America"]}, {"name": "I Can No Longer Rationally Discuss The Clinton Campaign", "fellows": ["I Can No Longer Rationally Discuss The Sanders Campaign", "Hillary Clinton 2016", "Get off my grass you damned kids", "Our Failed Media Experiment", "General Stupidity", "Women's Rights Are Human Rights", "Election 2016", "Open Thread", "I Just Had My Oakeshott In The Widener Library For Succor", "Because of wow.", "Proud to Be A Democrat", "Politics"]}, {"name": "Fuck The Poor", "fellows": ["Hillary Clinton 2016", "All we want is life beyond the thunderdome", "Mayhew On Insurance", "Foam Finger Nation", "Grifters Gonna Grift", "Glibertarianism", "Women's Rights Are Human Rights", "Vagina Outrage", "Election 2016", "Show Us on the Doll Where the Invisible Hand Touched You", "Proud to Be A Democrat", "Free Markets Solve Everything", "hoocoodanode", "Don't Mourn, Organize", "Fuck Yeah!"]}, {"name": "Riveted By The Sociological Significance Of It All", "fellows": ["Gamer Dork", "Hail to the Hairpiece", "Flash Mob of Hate", "Popular Culture", "Repubs in Disarray!", "Assholes", "Enhanced Protest Techniques", "Open Thread", "Cruz-ifiction", "Excellent Links", "Post-racial America", "Nobody could have predicted"]}, {"name": "NATO", "fellows": ["Silverman on Security", "Foreign Affairs", "Election 2017", "Election 2016", "Open Thread", "Germany", "Politics", "Domestic Affairs", "America", "Election 2020", "Not Normal", "Election 2018"]}, {"name": "Peak Wingnut Was a Lie!", "fellows": ["General Stupidity", "Repubs in Disarray!", "Election 2016", "Seriously", "Open Thread", "Fucked-up-edness", "Lizard Blogging", "Sweet Fancy Moses!", "Hillary Clinton 2016", "The teabagger's apprentice", "Vote Like Your Country Depends On It", "Religious Nuts", "Their Motto: Apocalypse Now", "Decline and Fall", "The Wingularity", "Green Balloons", "Our Failed Political Establishment", "Hail to the Hairpiece", "WTF?", "All we want is life beyond the thunderdome", "MOAR GUNZ PEW PEW PEW", "Gun nuts", "Assholes", "Security Theatre", "Ammosexuals", "Bleg", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Keep Fucking That Chicken", "Sociopaths", "Republican Stupidity"]}, {"name": "Religious Nuts", "fellows": ["General Stupidity", "Repubs in Disarray!", "Election 2016", "Open Thread", "Just Shut the Fuck Up", "Their Motto: Apocalypse Now", "The teabagger's apprentice", "Vote Like Your Country Depends On It", "domestic terrorists", "Grifters Gonna Grift", "Peak Wingnut Was a Lie!", "Decline and Fall", "Gay Rights are Human Rights", "Foreign Affairs", "Our Failed Political Establishment", "Cruz-ifiction", "Republican Venality", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Gun nuts", "Dolt 45", "Assholes", "Fables Of The Reconstruction", "Keep Fucking That Chicken", "Politics", "Ever Get The Feeling You've Been Cheated?", "I Read These Morons So You Don't Have To", "Republican Stupidity"]}, {"name": "The teabagger's apprentice", "fellows": ["Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Vote Like Your Country Depends On It", "Religious Nuts", "Peak Wingnut Was a Lie!", "Our Failed Political Establishment", "Decline and Fall", "Their Motto: Apocalypse Now"]}, {"name": "Climate Change", "fellows": ["Pet Rescue", "Hillary Clinton 2016", "Faunasphere", "nonhuman rights", "jon stewart", "Dog Blogging", "Unlocking the Cage", "Te Urewera", "Open Thread", "personhood", "Whanganui", "Proud to Be A Democrat", "Nonhuman Rights Project", "Naomi Klein"]}, {"name": "Enhanced Protest Techniques", "fellows": ["General Stupidity", "Flash Mob of Hate", "Assholes", "Repubs in Disarray!", "Sports", "Proud to Be A Democrat", "Rare Sincerity", "Other", "Malheur National Wildlife Refuge Occupation", "C.R.E.A.M.", "Dolt 45", "domestic terrorists", "Fucked-up-edness", "Bundy Trial", "#BLM #M4BL", "Clown car", "Domestic Affairs", "America", "Crazification Factor", "Nobody could have predicted", "Republican Venality", "Post-racial America", "Ever Get The Feeling You've Been Cheated?", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Gun nuts", "Daydream Believers", "WOLVERINES", "Riveted By The Sociological Significance Of It All", "Ammosexuals", "Open Thread", "Schadenfreude", "Because of wow.", "Excellent Links", "Popular Culture", "Republican Stupidity"]}, {"name": "Clown car", "fellows": ["An Unexamined Scandal", "Good News For Conservatives", "Hail to the Hairpiece", "Foreign Affairs", "Repubs in Disarray!", "Assholes", "Enhanced Protest Techniques", "Election 2016", "Open Thread", "Republican Stupidity", "Keep Fucking That Chicken", "Republican Venality", "Politics", "Ever Get The Feeling You've Been Cheated?", "hoocoodanode", "Schadenfreude"]}, {"name": "Clap Louder!", "fellows": ["Repubs in Disarray!", "Election 2016", "Open Thread", "Music", "Our Failed Media Experiment", "domestic terrorists", "Grifters Gonna Grift", "Go Fuck Yourself", "Burkean bells", "Nobody could have predicted", "Foreign Affairs", "Readership Capture", "Republican Venality", "An Unexamined Scandal", "Our Failed Political Establishment", "Hail to the Hairpiece", "All we want is life beyond the thunderdome", "Assholes", "Our Awesome Meritocracy", "Ammosexuals", "Keep Fucking That Chicken", "Excellent Links"]}, {"name": "jon stewart", "fellows": ["Climate Change", "Faunasphere", "Naomi Klein", "nonhuman rights", "Nonhuman Rights Project", "personhood", "Te Urewera", "Unlocking the Cage", "Whanganui"]}, {"name": "Naomi Klein", "fellows": ["Climate Change", "Faunasphere", "jon stewart", "nonhuman rights", "Nonhuman Rights Project", "personhood", "Te Urewera", "Unlocking the Cage", "Whanganui"]}, {"name": "nonhuman rights", "fellows": ["Climate Change", "Faunasphere", "jon stewart", "Naomi Klein", "Nonhuman Rights Project", "personhood", "Te Urewera", "Unlocking the Cage", "Whanganui"]}, {"name": "Nonhuman Rights Project", "fellows": ["Climate Change", "Faunasphere", "jon stewart", "Naomi Klein", "nonhuman rights", "personhood", "Te Urewera", "Unlocking the Cage", "Whanganui"]}, {"name": "personhood", "fellows": ["Climate Change", "Faunasphere", "jon stewart", "Naomi Klein", "nonhuman rights", "Nonhuman Rights Project", "Te Urewera", "Unlocking the Cage", "Whanganui"]}, {"name": "Te Urewera", "fellows": ["Climate Change", "Faunasphere", "jon stewart", "Naomi Klein", "nonhuman rights", "Nonhuman Rights Project", "personhood", "Unlocking the Cage", "Whanganui"]}, {"name": "Unlocking the Cage", "fellows": ["Climate Change", "Faunasphere", "jon stewart", "Naomi Klein", "nonhuman rights", "Nonhuman Rights Project", "personhood", "Te Urewera", "Whanganui"]}, {"name": "Whanganui", "fellows": ["Climate Change", "Faunasphere", "jon stewart", "Naomi Klein", "nonhuman rights", "Nonhuman Rights Project", "personhood", "Te Urewera", "Unlocking the Cage"]}, {"name": "Nobody could have predicted", "fellows": ["Flash Mob of Hate", "Repubs in Disarray!", "Election 2016", "Green Lantern Pundit Corps", "Open Thread", "Clap Louder!", "C.R.E.A.M.", "Our Failed Media Experiment", "Enhanced Protest Techniques", "Go Fuck Yourself", "Burkean bells", "Mayhew On Insurance", "Hail to the Hairpiece", "Republican Venality", "Post-racial America", "An Unexamined Scandal", "Our Failed Political Establishment", "All we want is life beyond the thunderdome", "Foreign Affairs", "Assholes", "Our Awesome Meritocracy", "Riveted By The Sociological Significance Of It All", "Keep Fucking That Chicken", "Excellent Links", "Republican Stupidity"]}, {"name": "MOAR GUNZ PEW PEW PEW", "fellows": ["Gun nuts", "Assholes", "Seriously", "Fucked-up-edness", "Ammosexuals", "Bleg", "Peak Wingnut Was a Lie!", "Republican Stupidity", "Security Theatre"]}, {"name": "Gamer Dork", "fellows": ["Hillary Clinton 2016", "Movies", "Science & Technology", "Riveted By The Sociological Significance Of It All", "Election 2016", "Open Thread", "Other", "Popular Culture"]}, {"name": "Security Theatre", "fellows": ["Election 2016", "Seriously", "Open Thread", "Peak Wingnut Was a Lie!", "Not Normal", "Hillary Clinton 2016", "Dolt 45", "Immigration", "Fucked-up-edness", "Domestic Affairs", "America", "Trump Crime Cartel", "Republican Venality", "Silverman on Security", "Our Failed Political Establishment", "MOAR GUNZ PEW PEW PEW", "All we want is life beyond the thunderdome", "Popular Culture", "Rare Sincerity", "Our Awesome Meritocracy", "Ammosexuals", "Get Angry", "Bleg", "Politics", "Ever Get The Feeling You've Been Cheated?", "Gun nuts", "Republican Stupidity"]}, {"name": "domestic terrorists", "fellows": ["Proud to Be A Democrat", "General Stupidity", "Republican Venality", "Repubs in Disarray!", "Election 2016", "WOLVERINES", "Open Thread", "Malheur National Wildlife Refuge Occupation", "Ryan Lyin' Weasel", "Clap Louder!", "leaderless resistance", "C.R.E.A.M.", "Ammon Bundy", "Religious Nuts", "Enhanced Protest Techniques", "Bundy Trial", "Domestic Affairs", "America", "Crazification Factor", "Bundy Bunch", "Clown Shoes", "Gay Rights are Human Rights", "Foreign Affairs", "Readership Capture", "Corrections", "Silverman on Security", "Hail to the Hairpiece", "Gun nuts", "Assholes", "Absent Friends", "Ammosexuals", "Zombie-Eyed Granny Starver", "Other", "Music", "Ever Get The Feeling You've Been Cheated?", "Republican Stupidity"]}, {"name": "Lizard Blogging", "fellows": ["Hillary Clinton 2016", "General Stupidity", "Sociopaths", "WTF?", "Election 2016", "Assholes", "Dog Blogging", "Critters", "Peak Wingnut Was a Lie!", "Foreign Affairs", "Open Thread", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Vote Like Your Country Depends On It", "Keep Fucking That Chicken", "Their Motto: Apocalypse Now", "The Wingularity", "Green Balloons", "Sweet Fancy Moses!"]}, {"name": "Immigration", "fellows": ["Canada", "Election 2016", "Rare Sincerity", "good works", "Politicization of Policy", "Outrage", "Trump Crime Cartel", "Faunasphere", "Massachusetts", "Domestic Affairs", "immigration", "Foreign Affairs", "wonkery", "Republican Venality", "Improper Entry", "An Unexamined Scandal", "Our Failed Political Establishment", "All we want is life beyond the thunderdome", "Get Angry", "resettlement", "Security Theatre", "Open Thread", "Politics", "Unlawful Presence", "refugees", "Popular Culture"]}, {"name": "Canada", "fellows": ["Faunasphere", "Immigration", "good works", "immigration", "Massachusetts", "refugees", "resettlement"]}, {"name": "good works", "fellows": ["Faunasphere", "Immigration", "Canada", "immigration", "Massachusetts", "refugees", "resettlement"]}, {"name": "immigration", "fellows": ["Faunasphere", "Immigration", "Canada", "good works", "Massachusetts", "refugees", "resettlement"]}, {"name": "Massachusetts", "fellows": ["Faunasphere", "Immigration", "Canada", "good works", "immigration", "refugees", "resettlement"]}, {"name": "refugees", "fellows": ["Canada", "Faunasphere", "Immigration", "resettlement", "immigration", "good works", "Massachusetts", "Uncategorized"]}, {"name": "resettlement", "fellows": ["Faunasphere", "Immigration", "Canada", "good works", "immigration", "Massachusetts", "refugees"]}, {"name": "An Unexamined Scandal", "fellows": ["Shitheads", "Republican Venality", "Flash Mob of Hate", "Blatant Liars and the Lies They Tell", "Election 2016", "Open Thread", "Politicization of Policy", "Outrage", "I Reject Your Reality and Substitute My Own", "Clap Louder!", "C.R.E.A.M.", "Hillary Clinton 2016", "Our Failed Media Experiment", "Vote Like Your Country Depends On It", "Immigration", "Good News For Conservatives", "Both Sides Do It!", "hoocoodanode", "Burkean bells", "I Smell a Pulitzer!", "Trump Crime Cartel", "Nobody could have predicted", "Even the \"Liberal\" New Republic", "Republican Crime Syndicate - aka the Bush Admin.", "Clown car", "Hail to the Hairpiece", "wonkery", "Bring on the Brawndo!", "Proud to Be A Democrat", "Mainstream Media's McCain Mancrush", "Post-racial America", "Improper Entry", "Go Fuck Yourself", "Our Failed Political Establishment", "All we want is life beyond the thunderdome", "Foreign Affairs", "Popular Culture", "Dolt 45", "Assholes", "Get Angry", "Domestic Affairs", "Politics", "Unlawful Presence", "I Read These Morons So You Don't Have To", "Sociopaths", "Republican Stupidity"]}, {"name": "Religion", "fellows": ["Hail to the Hairpiece", "Daydream Believers", "Election 2016", "Rare Sincerity", "Open Thread", "Music", "Cat Blogging"]}, {"name": "fauxtrage", "fellows": ["Hillary Clinton 2016", "Hail to the Hairpiece", "Assholes", "Election 2016", "Open Thread", "Keep Fucking That Chicken", "Proud to Be A Democrat"]}, {"name": "Beckley", "fellows": ["Kalamazoo", "Summersville", "Mars Crawler", "Heilman's", "Dr. Bronners", "robotics", "Flood", "NASA", "Good People", "Hemp", "West Virginia", "show tunes", "United Way", "Uncategorized"]}, {"name": "Good People", "fellows": ["Uncategorized", "Beckley", "Mars Crawler", "NASA", "robotics", "Summersville", "United Way"]}, {"name": "Mars Crawler", "fellows": ["Uncategorized", "Beckley", "Good People", "NASA", "robotics", "Summersville", "United Way"]}, {"name": "NASA", "fellows": ["Uncategorized", "Beckley", "Good People", "Mars Crawler", "robotics", "Summersville", "United Way"]}, {"name": "robotics", "fellows": ["Uncategorized", "Beckley", "Good People", "Mars Crawler", "NASA", "Summersville", "United Way"]}, {"name": "Summersville", "fellows": ["Uncategorized", "Beckley", "Good People", "Mars Crawler", "NASA", "robotics", "United Way"]}, {"name": "United Way", "fellows": ["Uncategorized", "Beckley", "Good People", "Mars Crawler", "NASA", "robotics", "Summersville"]}, {"name": "Absent Friends", "fellows": ["domestic terrorists", "Bundy Bunch", "Sports", "Ammosexuals", "Open Thread", "Malheur National Wildlife Refuge Occupation", "Corrections", "Domestic Affairs", "America", "Post-racial America", "Gun nuts"]}, {"name": "Corrections", "fellows": ["Our Failed Media Experiment", "Gun nuts", "Bundy Bunch", "Absent Friends", "War", "Ammosexuals", "Open Thread", "Malheur National Wildlife Refuge Occupation", "Domestic Affairs", "America", "domestic terrorists"]}, {"name": "Bundy Bunch", "fellows": ["Absent Friends", "America", "Ammosexuals", "Corrections", "Domestic Affairs", "domestic terrorists", "Gun nuts", "Open Thread", "Malheur National Wildlife Refuge Occupation"]}, {"name": "Malheur National Wildlife Refuge Occupation", "fellows": ["General Stupidity", "Bundy Trial", "Clown Shoes", "domestic terrorists", "Bundy Bunch", "Absent Friends", "Enhanced Protest Techniques", "Ammosexuals", "Ammon Bundy", "WOLVERINES", "Open Thread", "Corrections", "Domestic Affairs", "America", "Other", "Gun nuts", "Crazification Factor"]}, {"name": "I Can No Longer Rationally Discuss The Sanders Campaign", "fellows": ["C.R.E.A.M.", "Hillary Clinton 2016", "General Stupidity", "Bernie Sanders 2016", "Assholes", "Get off my grass you damned kids", "I Can No Longer Rationally Discuss The Clinton Campaign", "Election 2016", "Open Thread", "Don't Mourn, Organize", "Proud to Be A Democrat", "Politics"]}, {"name": "Dr. Bronners", "fellows": ["Uncategorized", "Beckley", "Flood", "Heilman's", "Hemp", "Kalamazoo", "show tunes", "West Virginia"]}, {"name": "Flood", "fellows": ["Uncategorized", "Beckley", "Dr. Bronners", "Heilman's", "Hemp", "Kalamazoo", "show tunes", "West Virginia"]}, {"name": "Heilman's", "fellows": ["Uncategorized", "Beckley", "Dr. Bronners", "Flood", "Hemp", "Kalamazoo", "show tunes", "West Virginia"]}, {"name": "Hemp", "fellows": ["Uncategorized", "Beckley", "Dr. Bronners", "Flood", "Heilman's", "Kalamazoo", "show tunes", "West Virginia"]}, {"name": "Kalamazoo", "fellows": ["Radical Mycology", "Straczynski", "Flood", "Sense8", "Dr. Bronners", "Beckley", "show tunes", "Wachowskis", "Mushrooms", "Heilman's", "Open Thread", "kelp", "West Virginia", "Hemp", "Occupied", "Uncategorized"]}, {"name": "show tunes", "fellows": ["Uncategorized", "Beckley", "Dr. Bronners", "Flood", "Heilman's", "Hemp", "Kalamazoo", "West Virginia"]}, {"name": "West Virginia", "fellows": ["Uncategorized", "Beckley", "Dr. Bronners", "Flood", "Heilman's", "Hemp", "Kalamazoo", "show tunes"]}, {"name": "Vagina Outrage", "fellows": ["Proud to Be A Democrat", "Hillary Clinton 2016", "Hail to the Hairpiece", "Republican Venality", "Our Failed Media Experiment", "Movies", "Popular Culture", "Repubs in Disarray!", "Assholes", "Women's Rights Are Human Rights", "World's Best Healthcare (If You Can Afford It)", "Election 2016", "Open Thread", "Fuck Yeah!", "Outrage", "Decline and Fall", "Fuck The Poor", "Ever Get The Feeling You've Been Cheated?", "Excellent Links", "Republican Stupidity"]}, {"name": "I Read These Morons So You Don't Have To", "fellows": ["Hillary Clinton 2016", "I Smell a Pulitzer!", "Repubs in Disarray!", "Republican Venality", "Our Failed Media Experiment", "Grifters Gonna Grift", "Assholes", "Religious Nuts", "Hail to the Hairpiece", "Both Sides Do It!", "Election 2016", "Open Thread", "I Reject Your Reality and Substitute My Own", "Just Shut the Fuck Up", "Mainstream Media's McCain Mancrush", "An Unexamined Scandal"]}, {"name": "Arkansas", "fellows": ["Election 2016", "Hillary Clinton 2016", "Mayhew On Insurance", "ESI", "Insurance", "medicaid", "Rates"]}, {"name": "ESI", "fellows": ["Election 2016", "Hillary Clinton 2016", "Mayhew On Insurance", "Arkansas", "Insurance", "medicaid", "Rates"]}, {"name": "Insurance", "fellows": ["Election 2016", "Hillary Clinton 2016", "Mayhew On Insurance", "Arkansas", "ESI", "medicaid", "Rates"]}, {"name": "medicaid", "fellows": ["Election 2016", "Hillary Clinton 2016", "Mayhew On Insurance", "Arkansas", "ESI", "Insurance", "Rates"]}, {"name": "Rates", "fellows": ["Election 2016", "Hillary Clinton 2016", "Mayhew On Insurance", "Arkansas", "ESI", "Insurance", "medicaid"]}, {"name": "Show Us on the Doll Where the Invisible Hand Touched You", "fellows": ["C.R.E.A.M.", "Get off my grass you damned kids", "Ever Get The Feeling You've Been Cheated?", "Fuck The Poor", "Free Markets Solve Everything", "Foreign Affairs", "Open Thread", "Because of wow.", "Proud to Be A Democrat", "I Reject Your Reality and Substitute My Own", "Excellent Links", "World's Best Healthcare (If You Can Afford It)"]}, {"name": "Vegan", "fellows": ["Iowa", "Chickens", "Nick Kristoff", "Humane League", "animal rights", "Eggs", "Faunasphere", "Assholes", "PCRM", "Animal Testing", "Pigs", "Gestation Crates", "Animal Welfare", "Republican Venality", "Steven Pinker", "Joni Ernst", "Republican Stupidity", "Humane Revolution"]}, {"name": "Green Balloons", "fellows": ["C.R.E.A.M.", "Hillary Clinton 2016", "General Stupidity", "WTF?", "Vote Like Your Country Depends On It", "Clown Shoes", "Assholes", "Peak Wingnut Was a Lie!", "Ammosexuals", "Election 2016", "Open Thread", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Keep Fucking That Chicken", "Their Motto: Apocalypse Now", "The Wingularity", "Sociopaths", "Lizard Blogging", "Sweet Fancy Moses!"]}, {"name": "Get off my grass you damned kids", "fellows": ["I Can No Longer Rationally Discuss The Sanders Campaign", "General Stupidity", "Foreign Affairs", "Foam Finger Nation", "Mayhew On Insurance", "I Can No Longer Rationally Discuss The Clinton Campaign", "Election 2016", "Open Thread", "Show Us on the Doll Where the Invisible Hand Touched You", "I Reject Your Reality and Substitute My Own", "Politics", "Free Markets Solve Everything"]}, {"name": "wonkery", "fellows": ["C.R.E.A.M.", "Our Failed Political Establishment", "Popular Culture", "Immigration", "Sports", "Election 2016", "Unlawful Presence", "Politicization of Policy", "Outrage", "Politics", "Domestic Affairs", "Improper Entry", "An Unexamined Scandal"]}, {"name": "Improper Entry", "fellows": ["An Unexamined Scandal", "Domestic Affairs", "Election 2016", "Immigration", "Our Failed Political Establishment", "Outrage", "Politics", "Popular Culture", "wonkery", "Politicization of Policy", "Unlawful Presence"]}, {"name": "Politicization of Policy", "fellows": ["An Unexamined Scandal", "Domestic Affairs", "Election 2016", "Immigration", "Our Failed Political Establishment", "Outrage", "Politics", "Popular Culture", "wonkery", "Improper Entry", "Unlawful Presence"]}, {"name": "Unlawful Presence", "fellows": ["An Unexamined Scandal", "Domestic Affairs", "Election 2016", "Immigration", "Our Failed Political Establishment", "Outrage", "Politics", "Popular Culture", "wonkery", "Improper Entry", "Politicization of Policy"]}, {"name": "Don't Mourn, Organize", "fellows": ["I Can No Longer Rationally Discuss The Sanders Campaign", "C.R.E.A.M.", "Mayhew On Insurance", "Foam Finger Nation", "Grifters Gonna Grift", "Glibertarianism", "Election 2016", "Proud to Be A Democrat", "Open Thread", "Fuck Yeah!", "Republican Venality", "Fuck The Poor", "Free Markets Solve Everything", "Domestic Affairs", "Republican Stupidity"]}, {"name": "Both Sides Do It!", "fellows": ["C.R.E.A.M.", "Hillary Clinton 2016", "I Smell a Pulitzer!", "Our Failed Media Experiment", "Even the \"Liberal\" New Republic", "Election 2016", "Open Thread", "Politics", "I Reject Your Reality and Substitute My Own", "Mainstream Media's McCain Mancrush", "Domestic Affairs", "I Read These Morons So You Don't Have To", "An Unexamined Scandal", "Uncategorized"]}, {"name": "Zombie-Eyed Granny Starver", "fellows": ["domestic terrorists", "Assholes", "Ammosexuals", "Election 2016", "Open Thread", "Republican Venality", "Ryan Lyin' Weasel", "Ever Get The Feeling You've Been Cheated?", "Go Fuck Yourself"]}, {"name": "Gestation Crates", "fellows": ["Assholes", "Faunasphere", "Republican Stupidity", "Republican Venality", "Vegan", "Iowa", "Joni Ernst", "Pigs"]}, {"name": "Iowa", "fellows": ["Assholes", "Faunasphere", "Republican Stupidity", "Republican Venality", "Vegan", "Gestation Crates", "Joni Ernst", "Pigs"]}, {"name": "Joni Ernst", "fellows": ["Assholes", "Faunasphere", "Republican Stupidity", "Republican Venality", "Vegan", "Gestation Crates", "Iowa", "Pigs"]}, {"name": "Pigs", "fellows": ["Assholes", "Faunasphere", "Republican Stupidity", "Republican Venality", "Vegan", "Gestation Crates", "Iowa", "Joni Ernst"]}, {"name": "Movies", "fellows": ["Gamer Dork", "Television", "Media", "Popular Culture", "Open Thread", "Readership Capture", "Guest Post", "Vagina Outrage", "Politics", "Excellent Links", "America", "Other", "Domestic Affairs"]}, {"name": "Fables Of The Reconstruction", "fellows": ["Assholes", "Cruz-ifiction", "Election 2016", "Open Thread", "Religious Nuts", "Republican Venality", "Repubs in Disarray!"]}, {"name": "The Wingularity", "fellows": ["Assholes", "Election 2016", "General Stupidity", "Green Balloons", "Hillary Clinton 2016", "Keep Fucking That Chicken", "Lizard Blogging", "Looks Like I Picked the Wrong Week to Stop Sniffing Glue", "Open Thread", "Peak Wingnut Was a Lie!", "Sociopaths", "Sweet Fancy Moses!", "Their Motto: Apocalypse Now", "Vote Like Your Country Depends On It", "WTF?"]}, {"name": "Best President Ever", "fellows": ["Hillary Clinton 2016", "General Stupidity", "Assholes", "Election 2016", "Open Thread", "Fuck Yeah!", "Proud to Be A Democrat", "Politics", "Republican Stupidity", "Sweet Fancy Moses!"]}, {"name": "Mushrooms", "fellows": ["Open Thread", "Kalamazoo", "kelp", "Occupied", "Radical Mycology", "Sense8", "Straczynski", "Wachowskis"]}, {"name": "kelp", "fellows": ["Mushrooms", "Open Thread", "Kalamazoo", "Occupied", "Radical Mycology", "Sense8", "Straczynski", "Wachowskis"]}, {"name": "Occupied", "fellows": ["Mushrooms", "Open Thread", "Kalamazoo", "kelp", "Radical Mycology", "Sense8", "Straczynski", "Wachowskis"]}, {"name": "Radical Mycology", "fellows": ["Mushrooms", "Open Thread", "Kalamazoo", "kelp", "Occupied", "Sense8", "Straczynski", "Wachowskis"]}, {"name": "Sense8", "fellows": ["Mushrooms", "Open Thread", "Kalamazoo", "kelp", "Occupied", "Radical Mycology", "Straczynski", "Wachowskis"]}, {"name": "Straczynski", "fellows": ["Mushrooms", "Open Thread", "Kalamazoo", "kelp", "Occupied", "Radical Mycology", "Sense8", "Wachowskis"]}, {"name": "Wachowskis", "fellows": ["Mushrooms", "Open Thread", "Kalamazoo", "kelp", "Occupied", "Radical Mycology", "Sense8", "Straczynski"]}, {"name": "animal rights", "fellows": ["Faunasphere", "Vegan", "Animal Testing", "Animal Welfare", "Chickens", "Eggs", "Humane League", "Humane Revolution", "Nick Kristoff", "PCRM", "Steven Pinker"]}, {"name": "Animal Testing", "fellows": ["Faunasphere", "Vegan", "animal rights", "Animal Welfare", "Chickens", "Eggs", "Humane League", "Humane Revolution", "Nick Kristoff", "PCRM", "Steven Pinker"]}, {"name": "Animal Welfare", "fellows": ["Faunasphere", "Vegan", "animal rights", "Animal Testing", "Chickens", "Eggs", "Humane League", "Humane Revolution", "Nick Kristoff", "PCRM", "Steven Pinker"]}, {"name": "Chickens", "fellows": ["Faunasphere", "Vegan", "animal rights", "Animal Testing", "Animal Welfare", "Eggs", "Humane League", "Humane Revolution", "Nick Kristoff", "PCRM", "Steven Pinker"]}, {"name": "Eggs", "fellows": ["Faunasphere", "Vegan", "animal rights", "Animal Testing", "Animal Welfare", "Chickens", "Humane League", "Humane Revolution", "Nick Kristoff", "PCRM", "Steven Pinker"]}, {"name": "Humane League", "fellows": ["Faunasphere", "Vegan", "animal rights", "Animal Testing", "Animal Welfare", "Chickens", "Eggs", "Humane Revolution", "Nick Kristoff", "PCRM", "Steven Pinker"]}, {"name": "Humane Revolution", "fellows": ["Faunasphere", "Vegan", "animal rights", "Animal Testing", "Animal Welfare", "Chickens", "Eggs", "Humane League", "Nick Kristoff", "PCRM", "Steven Pinker"]}, {"name": "Nick Kristoff", "fellows": ["Faunasphere", "Vegan", "animal rights", "Animal Testing", "Animal Welfare", "Chickens", "Eggs", "Humane League", "Humane Revolution", "PCRM", "Steven Pinker"]}, {"name": "PCRM", "fellows": ["Faunasphere", "Vegan", "animal rights", "Animal Testing", "Animal Welfare", "Chickens", "Eggs", "Humane League", "Humane Revolution", "Nick Kristoff", "Steven Pinker"]}, {"name": "Steven Pinker", "fellows": ["Faunasphere", "Vegan", "animal rights", "Animal Testing", "Animal Welfare", "Chickens", "Eggs", "Humane League", "Humane Revolution", "Nick Kristoff", "PCRM"]}, {"name": "Yes We Did", "fellows": ["Hillary Clinton 2016", "Readership Capture", "Mayhew On Insurance", "Dolt 45", "Election 2016", "Rare Sincerity", "Open Thread", "Fuck Yeah!", "Because of wow.", "Proud to Be A Democrat", "Politics", "Election 2020", "Election 2018"]}, {"name": "NANCY SMASH!", "fellows": ["Hillary Clinton 2016", "Bernie Sanders 2016", "Election 2016", "Open Thread", "Proud to Be A Democrat", "Ryan Lyin' Weasel", "World's Best Healthcare (If You Can Afford It)"]}, {"name": "Guest Post", "fellows": ["Television", "Media", "Popular Culture", "Movies", "Politics", "Domestic Affairs", "America"]}, {"name": "Prison Planet", "fellows": ["Hail to the Hairpiece", "Assholes", "Foreign Affairs", "Open Thread", "Republican Venality", "I Reject Your Reality and Substitute My Own", "Post-racial America"]}, {"name": "Silverman on Security", "fellows": ["Syria", "Election 2017", "Election 2016", "Open Thread", "Terrorism", "War", "leaderless resistance", "Election 2018", "Lone Wolf", "domestic terrorists", "Germany", "Not Normal", "NATO", "Domestic Affairs", "Chelsea Bombing", "Foreign Affairs", "Our Failed Political Establishment", "the Grey Zone", "Military", "Election 2020", "Post-racial America", "America", "Extremism", "Popular Culture", "Our Awesome Meritocracy", "Security Theatre", "Other", "Idlib", "Politics", "Chemical Weapons"]}, {"name": "leaderless resistance", "fellows": ["Chelsea Bombing", "Lone Wolf", "Extremism", "domestic terrorists", "Foreign Affairs", "Open Thread", "the Grey Zone", "Domestic Affairs", "Silverman on Security", "Other", "Terrorism"]}, {"name": "Chelsea Bombing", "fellows": ["Domestic Affairs", "Foreign Affairs", "Open Thread", "Other", "Silverman on Security", "Extremism", "leaderless resistance", "Lone Wolf", "Terrorism", "the Grey Zone"]}, {"name": "Extremism", "fellows": ["Domestic Affairs", "Foreign Affairs", "Open Thread", "Other", "Silverman on Security", "Chelsea Bombing", "leaderless resistance", "Lone Wolf", "Terrorism", "the Grey Zone"]}, {"name": "Lone Wolf", "fellows": ["Domestic Affairs", "Foreign Affairs", "Open Thread", "Other", "Silverman on Security", "Chelsea Bombing", "Extremism", "leaderless resistance", "Terrorism", "the Grey Zone"]}, {"name": "Terrorism", "fellows": ["Domestic Affairs", "Foreign Affairs", "Open Thread", "Other", "Silverman on Security", "Chelsea Bombing", "Extremism", "leaderless resistance", "Lone Wolf", "the Grey Zone"]}, {"name": "the Grey Zone", "fellows": ["Domestic Affairs", "Foreign Affairs", "Open Thread", "Other", "Silverman on Security", "Chelsea Bombing", "Extremism", "leaderless resistance", "Lone Wolf", "Terrorism"]}, {"name": "Ammon Bundy", "fellows": ["Ammosexuals", "Clown Shoes", "Domestic Affairs", "domestic terrorists", "Open Thread", "Other", "Malheur National Wildlife Refuge Occupation"]}, {"name": "Bundy Trial", "fellows": ["America", "Ammosexuals", "Domestic Affairs", "domestic terrorists", "Enhanced Protest Techniques", "Gun nuts", "Open Thread", "Other", "Malheur National Wildlife Refuge Occupation"]}, {"name": "Mainstream Media's McCain Mancrush", "fellows": ["C.R.E.A.M.", "Hillary Clinton 2016", "I Smell a Pulitzer!", "Our Failed Media Experiment", "Even the \"Liberal\" New Republic", "DC Press Corpse", "Election 2016", "Both Sides Do It!", "I Reject Your Reality and Substitute My Own", "I Read These Morons So You Don't Have To", "An Unexamined Scandal"]}, {"name": "Japan", "fellows": ["Uncategorized"]}, {"name": "Shitheads", "fellows": ["Hail to the Hairpiece", "Republican Venality", "All we want is life beyond the thunderdome", "Vote Like Your Country Depends On It", "Flash Mob of Hate", "Blatant Liars and the Lies They Tell", "Assholes", "Election 2016", "Proud to Be A Democrat", "Sociopaths", "An Unexamined Scandal"]}, {"name": "Trump Crime Cartel", "fellows": ["C.R.E.A.M.", "All we want is life beyond the thunderdome", "Dolt 45", "WIN THE MORNING", "Free Markets Solve Everything", "Get Angry", "Assholes", "Immigration", "Security Theatre", "Republican Stupidity", "Foreign Affairs", "Rare Sincerity", "Open Thread", "Not Normal", "Republican Venality", "Domestic Affairs", "Post-racial America", "Excellent Links", "An Unexamined Scandal"]}, {"name": "Get Angry", "fellows": ["Trump Crime Cartel", "All we want is life beyond the thunderdome", "Foreign Affairs", "Immigration", "Security Theatre", "Proud to Be A Democrat", "Rare Sincerity", "Open Thread", "An Unexamined Scandal", "Republican Venality", "Domestic Affairs", "Post-racial America", "Activist Judges!"]}, {"name": "Chemical Weapons", "fellows": ["Foreign Affairs", "Military", "Open Thread", "Politics", "Silverman on Security", "War", "Idlib", "Syria"]}, {"name": "Idlib", "fellows": ["Foreign Affairs", "Military", "Open Thread", "Politics", "Silverman on Security", "War", "Chemical Weapons", "Syria"]}, {"name": "Syria", "fellows": ["Foreign Affairs", "Military", "Open Thread", "Politics", "Silverman on Security", "War", "Chemical Weapons", "Idlib"]}, {"name": "Dolt 45", "fellows": ["Yes We Did", "Repubs in Disarray!", "Sports", "Republican Venality", "Open Thread", "Fuck Yeah!", "Not Normal", "C.R.E.A.M.", "Trump Crime Cartel", "Religious Nuts", "Enhanced Protest Techniques", "An Unexamined Scandal", "Foreign Affairs", "Readership Capture", "Proud to Be A Democrat", "Go Fuck Yourself", "All we want is life beyond the thunderdome", "Assholes", "Security Theatre", "Ever Get The Feeling You've Been Cheated?", "Republican Stupidity"]}, {"name": "Not Normal", "fellows": ["Election 2017", "Election 2016", "Open Thread", "Election 2018", "Trump Crime Cartel", "Dolt 45", "Germany", "NATO", "Domestic Affairs", "America", "Foreign Affairs", "Republican Venality", "Election 2020", "Silverman on Security", "Free Markets Solve Everything", "Our Failed Political Establishment", "Popular Culture", "Assholes", "Our Awesome Meritocracy", "Security Theatre", "Politics", "Ever Get The Feeling You've Been Cheated?", "Excellent Links", "Republican Stupidity"]}, {"name": "Election 2017", "fellows": ["Our Failed Political Establishment", "Silverman on Security", "Foreign Affairs", "NATO", "Our Awesome Meritocracy", "Election 2016", "Open Thread", "Germany", "Politics", "Domestic Affairs", "America", "Election 2020", "Not Normal", "Election 2018"]}, {"name": "Election 2018", "fellows": ["Our Failed Political Establishment", "Election 2020", "Yes We Did", "Mayhew On Insurance", "Election 2016", "NATO", "Our Awesome Meritocracy", "Election 2017", "Foreign Affairs", "Open Thread", "Germany", "America", "Politics", "Silverman on Security", "Domestic Affairs", "Not Normal"]}, {"name": "Election 2020", "fellows": ["Our Failed Political Establishment", "Yes We Did", "Mayhew On Insurance", "Election 2016", "NATO", "Election 2017", "Foreign Affairs", "Open Thread", "Germany", "America", "Politics", "Silverman on Security", "Domestic Affairs", "Not Normal", "Election 2018"]}, {"name": "Germany", "fellows": ["America", "Domestic Affairs", "Election 2016", "Election 2017", "Election 2018", "Election 2020", "Foreign Affairs", "Not Normal", "Open Thread", "Politics", "Silverman on Security", "NATO"]}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment