Skip to content

Instantly share code, notes, and snippets.

@madelfio
Last active August 29, 2015 13:56
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 madelfio/8839979 to your computer and use it in GitHub Desktop.
Save madelfio/8839979 to your computer and use it in GitHub Desktop.
NewsStand QuickView
<!doctype html>
<meta charset="utf-8">
<style>
/*html, body {height: 100%; width: 100%;}*/
.js-traffic, #info {display:inline-block; vertical-align:middle;}
#info {
height: 200px;
width: 400px;
position:relative;
overflow: hidden;
}
.item {
position: absolute;
height: 120px;
width: 385px;
text-decoration: none;
color: black;
border: 1px solid #eee;
overflow: hidden;
border-radius: 2px;
margin-left: 3px;
box-shadow: 2px 2px 2px #888;
}
</style>
<body>
<div class="js-traffic" style="width:500px; height:500px;">
<div class="content">
<div class="js-graph">
</div>
</div>
</div>
<div id="info">
</div>
</body>
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="./newstour.js"></script>
"use strict";
(function() {
var setScale = function(canvas, context) {
var width = $(canvas.node()).width();
var height = $(canvas.node()).height();
var deviceRatio = window.devicePixelRatio || 1;
var ratio = (context.webkitBackingStorePixelRatio ||
context.mozBackingStorePixelRatio ||
context.msBackingStorePixelRatio ||
context.oBackingStorePixelRatio ||
context.backingStorePixelRatio || 1);
var scale = deviceRatio / ratio;
if (window.devicePixelRatio !== ratio) {
canvas.attr("width", width * scale)
.attr("height", height * scale)
.style("width", width + "px")
.style("height", height + "px");
return context.scale(scale, scale)
}
};
var setup = function() {
var r, height, s, a, width;
var container = $(".js-traffic");
s = container.get(0);
width = container.width();
height = container.height();
container.find("canvas").remove();
width = height = Math.min(width, height);
var projection = d3.geo.orthographic()
.clipAngle(90)
.precision(.5);
var canvas = d3.select(".js-traffic .js-graph")
.append("canvas")
.attr("width", width)
.attr("height", height)
.attr("class", "traffic-map-canvas");
var ctx = canvas.node().getContext("2d");
setScale(canvas, ctx);
r = d3.geo.graticule();
var path = d3.geo.path()
.projection(projection)
.context(ctx);
var circle = d3.geo.circle();
d3.json("world-110m.json", function(err, mapjson) {
var r, o, c, p;
if (err != null) {
console.log(err);
return;
}
o = {type: "Sphere"};
var land = topojson.feature(mapjson, mapjson.objects.land);
var borders = topojson.mesh(mapjson, mapjson.objects.countries, function(e, t) {
return e !== t
});
projection.scale(1).translate([0, 0]);
r = path.bounds(land);
c = .9 / Math.max((r[1][0] - r[0][0]) / width, (r[1][1] - r[0][1]) / height);
p = [(width - c * (r[1][0] + r[0][0])) / 2, (height - c * (r[1][1] + r[0][1])) / 2];
projection.scale(c).translate(p);
var redraw = function() {
ctx.fillStyle = "#10112e";
ctx.strokeStyle = "#10112e";
ctx.beginPath();
ctx.lineWidth = 2;
path(o);
ctx.stroke();
ctx.fill();
ctx.fillStyle = "#3a4385";
ctx.strokeStyle = "#10112e";
ctx.beginPath();
path(land);
ctx.stroke();
ctx.fill();
ctx.strokeStyle = "#2d346b";
ctx.lineWidth = 1;
ctx.beginPath();
path(borders);
ctx.stroke();
return ctx.stroke();
};
redraw();
var update = function(e, d) {
var lat = parseFloat(d.lat) || 0,
lon = parseFloat(d.lon) || 0;
return function() {
return d3.transition().duration(1200).tween("rotate", function() {
var i = d3.interpolate(projection.rotate(), [-lon, -lat]);
return function(t) {
var px, py, color, pos, c;
if ($.isScrolled) {return;}
projection.rotate(i(t));
ctx.clearRect(0, 0, width, height);
if (lat && lon) {
var v = i(t);
projection.rotate(i(t));
}
redraw();
if (!lat || !lon) {
console.log('missing lat or lon!');
return;
}
d.pts.forEach(function(p) {
c = circle.origin([+p.longitude, +p.latitude]).angle(2.0)();
color = "#9DB390";
ctx.fillStyle = color;
ctx.lineWidth = 3;
ctx.beginPath();
path(c);
ctx.stroke();
ctx.fill();
});
var cs = [
{a: 4.0, f: '#9DA3C0'},
{a: 2.5, f: '#FFFFFF'},
{a: 0.5, f: '#9DB390'},
];
cs.forEach(function(disc) {
c = circle.origin([+d.lon, +d.lat]).angle(disc.a)();
ctx.fillStyle = disc.f;
ctx.lineWidth = 1;
ctx.beginPath();
path(c);
ctx.stroke();
ctx.fill();
});
}
})
}()
};
$(document).on("event", update);
});
};
$(setup)
$(function() {
// to refresh top_stories data in repo, run
// wget http://newsstand.umiacs.umd.edu/news/top_stories_json -O top_stories.json
d3.json('./top_stories.json', function(data) {
data.top_stories.forEach(function(story) {
var pts = data.markers.filter(function(m) {return m.cluster_id == story.cluster_id;})
story.lat = (pts[0] && pts[0].latitude);
story.lon = (pts[0] && pts[0].longitude);
story.pts = pts.slice(1, pts.length)
story.idx = idx;
});
data.top_stories = data.top_stories.filter(function(d) {
return typeof d.lat != "undefined" && typeof d.lon != "undefined";
});
var idx = 0;
var items = d3.select('#info').selectAll('.item')
.data(data.top_stories, function(d) {return d.cluster_id;});
var div = items.enter()
.append('a')
.each(function(d, i) {d.loaded = d.loaded || (i < 4);})
.attr('href', function(d) {return d.url;})
.attr('class', 'item')
.style('top', function(d, i) {return (i*100 + 150) + 'px';})
.style('opacity', '0');
div.append('img')
.on('error', function() {this.style.display='none';}) // hide broken imgs
.style('float', 'right')
.style('max-width', '200px')
.filter(function(d) {return d.loaded;})
.attr('src', function(d) {return d.loaded ? d.rep_image_url : "";});
div.append('span')
.style('font-size', '16pt')
.text(function(d) {return d.title;})
var newData = function() {
idx++;
showData();
}
var showData = function() {
idx = (idx + data.top_stories.length) % data.top_stories.length;
var story = data.top_stories[idx];
var pts = data.markers.filter(function(m) {return m.cluster_id == story.cluster_id;})
story.lat = (pts[0] && pts[0].latitude);
story.lon = (pts[0] && pts[0].longitude);
story.pts = pts.slice(1, pts.length)
story.idx = idx;
$(document).trigger("event", story);
}
var interval = setInterval(newData, 3500);
newData();
$(document).keydown(function(e) {
if (e.which == 37 || e.which == 38) {
clearInterval(interval);
idx--;
showData();
} else if (e.which == 39 || e.which == 40) {
clearInterval(interval);
idx++;
showData();
} else if (e.which == 32) {
clearInterval(interval);
interval = setInterval(newData, 3500);
newData();
}
});
$(document).on("event", function(e, story) {
var active_story = story.idx;
items.selectAll('img')
.each(function(d, i) {d.loaded = d.loaded || (Math.abs(i - story.idx) < 4);})
.filter(function(d) {return d.loaded;})
.attr('src', function(d) {return d.loaded ? d.rep_image_url : "";})
items
.transition()
.duration(1000)
.style('top', function(d, i) {return ((i-idx)*100 + 50) + 'px';})
.style('opacity', function(d, i) {return i == story.idx ? '1' : '0';});
});
});
});
})()
{"top_stories":[{"title":"China seeks satellite data evidence on missing Malaysian plane","cluster_id":"35343528","url":"http://feeds.baltimoresun.com/~r/baltimoresun/news/rss2/~3/uKIbH1bq3yQ/story01.htm","description":"Grief and anger was unleashed on Monday night after Malaysian Prime Minister Najib Razak announced that Malaysia Airlines Flight MH370, which vanished more than two weeks ago while flying to Beijing from Kuala Lumpur, had crashed in the southern Indian Ocean.","domain":"baltimoresun.com","topic":"General","num_docs":"7997","num_images":"2880","num_videos":"128","time_since":"00:01:13","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d002","rep_image_caption":"Time, uncertainty make plane hunt uniquely hard ","url_id":"947275341","feed_name":null},{"title":"With Ukraine on his mind, Obama meets close Putin ally","cluster_id":"34424929","url":"http://haaretz.feedsportal.com/c/34191/f/620528/s/3895e756/sc/1/l/0L0Shaaretz0N0Cnews0Cworld0C10B581852/story01.htm","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","domain":"haaretz.com","topic":"General","num_docs":"20592","num_images":"7918","num_videos":"275","time_since":"00:01:23","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","rep_image_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","url_id":"947257384","feed_name":"Ha'aretz"},{"title":"Pistorius trial: Cell phone expert back on stand","cluster_id":"35582456","url":"http://rssfeeds.usatoday.com/~r/usatoday-NewsTopStories/~3/7XTBUIwM-_o/","description":"More than 1,000 messages between Oscar Pistorius and Reeva Steenkamp are being examined.","domain":"usatoday.com","topic":"General","num_docs":"260","num_images":"109","num_videos":"7","time_since":"00:04:43","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa2","rep_image_caption":"Text messages Oscar Pistorius murder trial","url_id":"946923163","feed_name":"USA Today"},{"title":"Egypt adjourns second mass Brotherhood trial","cluster_id":"35600600","url":"http://www.aljazeera.com/news/middleeast/2014/03/egypt-adjourns-second-mass-brotherhood-trial-201432592426453446.html","description":"Trial of nearly 700 alleged Muslim Brotherhood supporters, on charges including murder, is adjourned until April 28.","domain":"aljazeera.com","topic":"General","num_docs":"179","num_images":"60","num_videos":"2","time_since":"00:00:20","translate_title":null,"rep_image_url":"http://news.yahoo.com/egypt-rule-islamists-mass-trial-april-28-131512048.html","rep_image_caption":"Supporters of ousted President Mohammed Morsi chant slogans during a demonstration inside Ain Shams University in Cairo Egypt, Monday, March 24, 2014. A court in Egypt on Monday sentenced to death 529 supporters of Morsi on charges of murdering a policeman and attacking police, convicting them after only two sessions in one of the largest mass trials in the country in decades. (AP Photo/Roger Anis, El Shorouk) EGYPT OUT","url_id":"947368316","feed_name":"Al Jazeera"},{"title":"Two killed in US naval base shooting","cluster_id":"35621183","url":"http://www.aljazeera.com/news/americas/2014/03/two-killed-us-naval-base-shooting-201432594934904476.html","description":"Civilian suspect killed after shooting at Virginia naval base leaves one sailor dead.","domain":"aljazeera.com","topic":"General","num_docs":"82","num_images":"11","num_videos":"1","time_since":"00:01:10","translate_title":null,"rep_image_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2588665-6OKyqzLf8-HSK1-587_308x185.jpg","rep_image_caption":"A male sailor was shot by another man, a civilian, who was able to gain access to the USS Mahan on Monday night and the suspect was shot dead by security forces later (pictured in 2004)","url_id":"947280580","feed_name":"Al Jazeera"},{"title":"Canadian returns from Africa with Ebola-like symptoms","cluster_id":"35581747","url":"http://haaretz.feedsportal.com/c/34191/f/620528/s/3895ee86/sc/40/l/0L0Shaaretz0N0Cnews0Cworld0C10B581859/story01.htm","description":"Man who traveled to West Africa is seriously ill and being kept in isolation in a Canadian hospital with a hemorrhagic fever resembling the Ebola virus.","domain":"haaretz.com","topic":"Health","num_docs":"139","num_images":"31","num_videos":"4","time_since":"00:00:55","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa6","rep_image_caption":"Ebola","url_id":"947309042","feed_name":"Ha'aretz"},{"title":"Obama to propose ending NSA bulk collection of phone records","cluster_id":"35617839","url":"http://haaretz.feedsportal.com/c/34191/f/620528/s/38942c7c/sc/1/l/0L0Shaaretz0N0Cnews0Cworld0C10B581796/story01.htm","description":"Government could still access 'metadata' when needed in new arrangement, top official says.","domain":"haaretz.com","topic":"Health","num_docs":"94","num_images":"17","num_videos":"0","time_since":"00:03:46","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d234","rep_image_caption":"US President Barack Obama waves as he arrives at the Royal Palace Huis ten Bosch in The Hague on March 24, 2014","url_id":"947011025","feed_name":"Ha'aretz"},{"title":"Luxottica shares rise sharply on Google Glass deal","cluster_id":"35581329","url":"http://www.miamiherald.com/2014/03/25/4017263/luxottica-shares-rise-sharply.html","description":"Shares in Italian eyewear maker Luxottica have risen sharply on the announcement that it will make frames for Google's new Internet-connected eyewear, the Google Glass.","domain":"miamiherald.com","topic":"Entertainment","num_docs":"85","num_images":"19","num_videos":"0","time_since":"00:03:09","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d05a","rep_image_caption":"A Google search page is seen through the spectacles of a computer user in Leicester, central England July 20, 2007. REUTERS/Darren Staples/Files","url_id":"947068637","feed_name":null},{"title":"Japan-U.S. nuclear deal announced at Hague summit","cluster_id":"35580948","url":"http://haaretz.feedsportal.com/c/34191/f/620528/s/388e0474/sc/1/l/0L0Shaaretz0N0Cnews0Cworld0C10B581652/story01.htm","description":"U.S. President Barack Obama scores a victory in his attempts to limit global nuclear proliferation.","domain":"haaretz.com","topic":"General","num_docs":"164","num_images":"67","num_videos":"1","time_since":"00:19:14","translate_title":null,"rep_image_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","rep_image_caption":"David Cameron arrives for dinner at NSS summit","url_id":"945728850","feed_name":"Ha'aretz"},{"title":"168,000 gallons of oil to corral","cluster_id":"35580655","url":"http://rssfeeds.usatoday.com/~r/usatoday-NewsTopStories/~3/0apk9eM94AU/","description":"The spill came at the start of the migrating and nesting season for many area shorebirds.","domain":"usatoday.com","topic":"General","num_docs":"287","num_images":"138","num_videos":"3","time_since":"00:10:08","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cd08","rep_image_caption":"Texas Bay Oil Spill","url_id":"946476172","feed_name":"USA Today"},{"title":"Search for Wash. landslide victims to resume Tuesday","cluster_id":"35580770","url":"http://rssfeeds.usatoday.com/~r/usatoday-NewsTopStories/~3/ztQsFHnjqaw/","description":"About 176 people are still missing following a Saturday landslide in Oso.","domain":"usatoday.com","topic":"General","num_docs":"389","num_images":"192","num_videos":"3","time_since":"00:07:12","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cf46","rep_image_caption":"Washington slide death toll 14; search continues","url_id":"946704767","feed_name":"USA Today"},{"title":"'Miracle' no deaths in Chicago airport train crash","cluster_id":"35601571","url":"http://www.miamiherald.com/2014/03/25/4017079/miracle-no-deaths-in-chicago-airport.html","description":"Federal officials are investigating what caused a Chicago commuter train to jump its track and crash up an escalator at one of the world's largest airports.","domain":"miamiherald.com","topic":"General","num_docs":"211","num_images":"76","num_videos":"2","time_since":"00:07:54","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d111","rep_image_caption":"A Chicago Transit Authority train car rests on an escalator at the O’Hare Airport station after it derailed early Monday in Chicago. More than 30 people were injured after the train “climbed over the last stop, jumped up on the sidewalk and then went up the stairs and escalator,” according to Chicago Fire Commissioner Jose Santiago.","url_id":"946647329","feed_name":null},{"title":"5 Madoff ex-employees convicted of aiding in Ponzi scheme","cluster_id":"35611919","url":"http://feeds.boston.com/c/35022/f/646951/s/388f6d1b/sc/30/l/0L0Sboston0N0Cbusiness0C20A140C0A30C240Cmadoff0Eemployees0Econvicted0Eaiding0Eponzi0Escheme0C7D43lqPYZnmTuINUuZ0ArmN0Cstory0Bhtml/story01.htm","description":"No description","domain":"boston.com","topic":"General","num_docs":"89","num_images":"40","num_videos":"0","time_since":"00:16:45","translate_title":null,"rep_image_url":"http://media.centredaily.com/smedia/2014/03/25/06/40/717-dIher.AuSt.55.jpeg","rep_image_caption":"Madoff Fraud Trial","url_id":"945932039","feed_name":null},{"title":"Afghan police detain 9 in Kabul hotel attack","cluster_id":"35555684","url":"http://feeds.boston.com/c/35022/f/646951/s/3892f9b9/sc/20/l/0L0Sboston0N0Cnews0Cworld0Casia0C20A140C0A30C250Cafghan0Epolice0Edetain0Ekabul0Ehotel0Eattack0CDHSoLoEFq7KnsN0A3mpFYpI0Cstory0Bhtml/story01.htm","description":"KABUL, Afghanistan (AP) — Afghan police have detained nine senior employees of a private security company that provided guards to the Kabul hotel attacked by the Taliban last week.","domain":"boston.com","topic":"General","num_docs":"201","num_images":"59","num_videos":"3","time_since":"00:05:34","translate_title":null,"rep_image_url":"http://news.yahoo.com/taliban-hit-kabul-election-office-kill-least-4-115940838.html","rep_image_caption":"Afghan security officers arrive to the scene after two suicide bombers have struck near the home of candidate running for president, Ashraf Ghani Ahmadzai in the country&#39;s April 5 elections, in Kabul, Afghanistan, Tuesday, March 25, 2014. An Afghan police official said two suicide bombers were dead but another four insurgents may still be inside the election commission office. Witnesses reported heavy gunfire and scores of heavily armed troops with Afghanistan’s rapid response force had surrounded the building, located near the home of Ahmadzai. (AP Photo/Rahmat Gul)","url_id":"946848036","feed_name":null},{"title":"Religious case at Supreme Court could affect Obamacare and much more","cluster_id":"35580774","url":"http://feeds.chicagotribune.com/~r/chicagotribune/news/nationworld/~3/kaXjxp2jpi0/story01.htm","description":"The Supreme Court will hear Hobby Lobby's religious liberty challenge to Obamacare on Tuesday. Its decision could have far-reaching consequences.","domain":"chicagotribune.com","topic":"Health","num_docs":"83","num_images":"30","num_videos":"0","time_since":"00:21:53","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cbe3","rep_image_caption":"Supreme Court Birth Control","url_id":"945501826","feed_name":"Chicago Tribune"},{"title":"Apple, Comcast reportedly in talks about TV service","cluster_id":"35582815","url":"http://www.sfgate.com/technology/article/Apple-Comcast-reportedly-in-talks-about-TV-5345579.php","description":"Comcast, which signed a deal last month with streaming service Netflix, is now talking with Apple about advancing that company's long-cherished dream of entering the streaming TV business in a big way, according to sources and a published report. A combined Comcast-Time Warner Cable could control one-third of the nation's broadband market, and its network would reach almost 60 percent of U.S. homes, Buckingham Research Group analyst James Ratcliffe said Monday.","domain":"m.sfgate.com","topic":"Entertainment","num_docs":"132","num_images":"17","num_videos":"0","time_since":"00:11:10","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c51c","rep_image_caption":"Comcast, Apple reported to be in talks about a TV service ","url_id":"946392588","feed_name":"San Francisco Chronicle"},{"title":"'It's gone.' Community copes with deadly mudslide","cluster_id":"35621262","url":"http://feeds.boston.com/c/35022/f/646951/s/3892f9a2/sc/8/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C250Cgone0Ecommunity0Ecopes0Ewith0Edeadly0Emudslide0C7Z7TxWO3gUqQuPI3McnHyO0Cstory0Bhtml/story01.htm","description":"OSO, Wash. (AP) — First there was a \"whoosh.\" Elaine Young said she thought it might be a chimney fire, a rush of air that lasted about 45 seconds. But when she stepped outside there was ominous silence. Something felt very, very wrong.","domain":"boston.com","topic":"General","num_docs":"25","num_images":"3","num_videos":"0","time_since":"00:05:34","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d000","rep_image_caption":" This March 23, 2014 photo, made available by the Washington State Dept of Transportation shows a view of the damage from Saturday's mudslide near Oso, Wash. At least eight people were killed in the 1-square-mile slide that hit in a rural area about 55 miles northeast of Seattle on Saturday. Several people also were critically injured, and about 30 homes were destroyed. (AP Photo/Washington State Dept of Transportation) ","url_id":"946848006","feed_name":null},{"title":"Gwar frontman found dead at age 50","cluster_id":"35600182","url":"http://www.bbc.co.uk/newsbeat/26722260#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"Dave Brockie, lead singer with the heavy metal band, has been found dead at his home in the US.","domain":"bbc.co.uk","topic":"Entertainment","num_docs":"91","num_images":"37","num_videos":"11","time_since":"00:21:07","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cf09","rep_image_caption":"R.I.P. Oderus Urungus: David Brockie's Death Confirmed","url_id":"945568690","feed_name":"BBC News"},{"title":"Skydivers arrested for World Trade Center jump","cluster_id":"35610098","url":"http://rssfeeds.usatoday.com/~r/usatoday-NewsTopStories/~3/utKPeROLfXM/","description":"Three daredevils and an accomplice face felony charges for the Sept. 30 stunt.","domain":"usatoday.com","topic":"Entertainment","num_docs":"39","num_images":"20","num_videos":"1","time_since":"00:10:08","translate_title":null,"rep_image_url":"http://cbsnewyork.files.wordpress.com/2014/03/wtc_base_jump_0324.jpg?w=300&h=200&crop=1","rep_image_caption":"WTC B.A.S.E Jump","url_id":"946476174","feed_name":"USA Today"},{"title":"Spotify slashes prices for US college students","cluster_id":"35624997","url":"http://feeds.boston.com/c/35022/f/646951/s/38965881/sc/36/l/0L0Sboston0N0Cnews0Ceducation0C20A140C0A30C250Cspotify0Eslashes0Eprices0Efor0Ecollege0Estudents0CbJVC8LijmVqGELN45OKdkL0Cstory0Bhtml/story01.htm","description":"LOS ANGELES (AP) — Spotify is wooing U.S. college students with a $5-a-month premium music deal, half off the regular rate.","domain":"boston.com","topic":"Business","num_docs":"10","num_images":"0","num_videos":"0","time_since":"00:01:10","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"947281800","feed_name":null},{"title":"French consumer group targets US social networks","cluster_id":"35624416","url":"http://feeds.boston.com/c/35022/f/646951/s/389564d8/sc/4/l/0L0Sboston0N0Cnews0Cworld0Ceurope0C20A140C0A30C250Cfrench0Econsumer0Egroup0Etargets0Esocial0Enetworks0CPloZpQcZ0AVPRDdLHfkCOOO0Cstory0Bhtml/story01.htm","description":"PARIS (AP) — A top French consumer group is asking a Paris court to order Google, Facebook and Twitter to scrap or modify the fine print on their terms of use — insisting it's too complex.","domain":"boston.com","topic":"Entertainment","num_docs":"11","num_images":"0","num_videos":"0","time_since":"00:01:43","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"947222621","feed_name":null},{"title":"Ex-TV Judge Joe Brown arrested in Tennessee","cluster_id":"35613053","url":"http://www.miamiherald.com/2014/03/24/4016197/ex-tv-judge-joe-brown-arrested.html","description":"The star of the television show \"Judge Joe Brown\" has been arrested and charged with five counts of contempt of court in Tennessee.","domain":"miamiherald.com","topic":"General","num_docs":"60","num_images":"13","num_videos":"0","time_since":"00:15:37","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ced7","rep_image_caption":"Judge Joe Brown attends the 39th Annual Daytime Entertainment Emmy Awards at The Beverly Hilton Hotel on June 23, 2012 in Beverly Hills, California. (credit: Frederick M. Brown/Getty Images)","url_id":"946027492","feed_name":null},{"title":"Capt. Phillips to attend Mass. Maritime graduation","cluster_id":"35623761","url":"http://feeds.boston.com/c/35022/f/646951/s/38950990/sc/33/l/0L0Sboston0N0Cnews0Ceducation0C20A140C0A30C250Ccapt0Ephillips0Eattend0Emass0Emaritime0Egraduation0CPVyW17nkaVCrrhyR9Bqo7L0Cstory0Bhtml/story01.htm","description":"BOURNE, Mass. (AP) — Richard Phillips, whose real-life ordeal as a hostage of Somali pirates was the subject of the movie \"Captain Phillips,\" has been selected to address graduates at Massachusetts Maritime Academy's commencement.","domain":"boston.com","topic":"General","num_docs":"10","num_images":"5","num_videos":"0","time_since":"00:02:10","translate_title":null,"rep_image_url":"http://bostonherald.com/sites/default/files/styles/full/public/media/ap/55532d3fc54542d6b924294a18d03557.jpg?c=538efa3ebb0279f19e6c354de14eedeb","rep_image_caption":"Photo by:The Associated Press FILE - In this Oct. 1, 2013 file photo, Richard Phillips, whose real-life ordeal as a hostage of Somali pirates was the subject of the movie \"Captain Phillips,\" smiles during an interview before a screening of the film, in Williston, Vt. Phillips has been selected to address graduates at Massachusetts Maritime Academy's commencement on June 21, 2014. (AP Photo/Toby Talbot, File) ","url_id":"947175628","feed_name":null},{"title":"Invest That Tax Refund In Yourself","cluster_id":"35622999","url":"http://pittsburgh.cbslocal.com/2014/03/25/invest-that-tax-refund-in-yourself/","description":"No description","domain":"pittsburgh.cbslocal.com","topic":"Entertainment","num_docs":"12","num_images":"12","num_videos":"0","time_since":"00:01:14","translate_title":null,"rep_image_url":"http://cbspittsburgh.files.wordpress.com/2014/03/refund_check.jpg?w=300&h=200&crop=1","rep_image_caption":"Photo Credit Thinkstock","url_id":"947273138","feed_name":null},{"title":"German business optimism slips amid Ukraine crisis","cluster_id":"35622703","url":"http://feeds.boston.com/c/35022/f/646951/s/3894ae14/sc/24/l/0L0Sboston0N0Cnews0Cworld0Ceurope0C20A140C0A30C250Cgerman0Ebusiness0Eoptimism0Eslips0Eamid0Eukraine0Ecrisis0CLzeKW8UnzFLOF9ObUMGSsN0Cstory0Bhtml/story01.htm","description":"BERLIN (AP) — A closely watched survey shows business confidence in Germany slipping back from a 2 ½-year high as tensions over Ukraine cloud companies' outlook for the next six months.","domain":"boston.com","topic":"Business","num_docs":"14","num_images":"0","num_videos":"0","time_since":"00:03:30","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"947034080","feed_name":null},{"title":"Ethiopian lawmakers to pass bill deemed anti-gay","cluster_id":"35622352","url":"http://feeds.boston.com/c/35022/f/646951/s/38943a5f/sc/1/l/0L0Sboston0N0Cnews0Cworld0Cafrica0C20A140C0A30C250Cethiopian0Elawmakers0Epass0Ebill0Edeemed0Eanti0Egay0CLtFpfUDYdMhd30AZsu3iWWJ0Cstory0Bhtml/story01.htm","description":"ADDIS ABABA, Ethiopia (AP) — Lawmakers in Ethiopia are set to pass a bill that puts homosexuality on a list of offenses considered \"non-pardonable\" under the country's amnesty law.","domain":"boston.com","topic":"General","num_docs":"12","num_images":"2","num_videos":"0","time_since":"00:04:17","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ce33","rep_image_caption":"Ethiopia's President Mulatu Teshome. (AFP)","url_id":"946963396","feed_name":null},{"title":"Woman freed after serving 32 years in '81 killing","cluster_id":"35612606","url":"http://feeds.boston.com/c/35022/f/646951/s/38965c24/sc/38/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C250Cwoman0Efreed0Eafter0Eserving0Eyears0Ekilling0CDlbbkTOc5mOrxN1Fv2hW3L0Cstory0Bhtml/story01.htm","description":"LOS ANGELES (AP) — A 74-year-old California woman is free after serving 32 years of a life sentence for her role in a 1981 killing.","domain":"boston.com","topic":"General","num_docs":"16","num_images":"7","num_videos":"0","time_since":"00:00:54","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d16d","rep_image_caption":"Left: Mary Virginia Jones, 74, smiles in an undated photo. Right: Jones is seen in court on Monday, March 24, 2014.","url_id":"947310902","feed_name":null},{"title":"Wahlberg guarantees a hit with 'Transformers'","cluster_id":"35618497","url":"http://www.miamiherald.com/2014/03/25/4017249/wahlberg-guarantees-a-hit-with.html","description":"Mark Wahlberg, star of the upcoming \"Transformers: Age of Extinction,\" is promising the fourth installment of the Michael Bay-directed franchise will be a huge hit.","domain":"miamiherald.com","topic":"Entertainment","num_docs":"16","num_images":"12","num_videos":"0","time_since":"00:03:09","translate_title":null,"rep_image_url":"http://media.theolympian.com/smedia/2014/03/25/06/05/594-1njbSw.AuSt.55.jpeg","rep_image_caption":"CinemaCon 2014 - Paramount Opening Night Presentation","url_id":"947068636","feed_name":null},{"title":"FCC: Thousands of hotels don't offer direct 911","cluster_id":"35620441","url":"http://www.miamiherald.com/2014/03/25/4017113/fcc-thousands-of-hotels-dont-offer.html","description":"A federal official says tens of thousands of hotels don't allow guests to directly reach emergency services when dialing 911 from their room phones.","domain":"miamiherald.com","topic":"General","num_docs":"19","num_images":"0","num_videos":"0","time_since":"00:06:31","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"946759907","feed_name":null},{"title":"18, 108, 176? How many missing from landslide?","cluster_id":"35621309","url":"http://feeds.boston.com/c/35022/f/646951/s/3892f9a1/sc/42/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C250Chow0Emany0Emissing0Efrom0Elandslide0CZ0AVxvQ8RmFW0Ab4WmdqJfzM0Cstory0Bhtml/story01.htm","description":"SEATTLE (AP) — Three days after a huge landslide destroyed a small community in rural Washington state, authorities still had no firm idea how many people were missing, possibly buried in the tangled mess of mud, trees and debris. And the potential number keeps fluctuating wildly - first it was 18, then 108, then 176.","domain":"boston.com","topic":"General","num_docs":"16","num_images":"11","num_videos":"0","time_since":"00:05:34","translate_title":null,"rep_image_url":"http://media.philly.com/images/320*240/8b5b8049a34045768bed987df6d48a4d-64fa300dd4b56a0b4f0f6a706700ac99.jpg","rep_image_caption":"18, 108, 176? How many missing from landslide? ","url_id":"946848005","feed_name":null},{"title":"India cricket chief 'should quit'","cluster_id":"35620232","url":"http://www.bbc.co.uk/news/world-asia-india-26727264#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"India's Supreme Court tells the country's top cricket official N Srinivasan to step down while an investigation is carried out into illegal betting in the sport.","domain":"bbc.co.uk","topic":"General","num_docs":"20","num_images":"4","num_videos":"0","time_since":"00:03:36","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c8fa","rep_image_caption":"N. Srinivasan","url_id":"947027002","feed_name":"BBC News"},{"title":"Fukushima nuke worker life gets recorded as manga","cluster_id":"35622481","url":"http://feeds.boston.com/c/35022/f/646951/s/3893bd29/sc/38/l/0L0Sboston0N0Cnews0Cworld0Casia0C20A140C0A30C250Cfukushima0Enuke0Eworker0Elife0Egets0Erecorded0Emanga0C5ayUAMp33KB9fRHq2eKJCM0Cstory0Bhtml/story01.htm","description":"TOKYO (AP) — First off, no one who works at Japan's wrecked nuclear power plant calls it Fukushima Dai-ichi, comic-book artist Kazuto Tatsuta says in his book about his time on the job. It's ichi efu, or 1F.","domain":"boston.com","topic":"Entertainment","num_docs":"12","num_images":"7","num_videos":"0","time_since":"00:04:03","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cdd0","rep_image_caption":"Comic-book artist Kazuto Tatsuta draws the main character in his comic &quot;1F: The Labor Diary Of Fukushima Dai-ichi Nuclear Power Plant in his studio","url_id":"946983441","feed_name":null},{"title":"WHO: Pollution kills 7 million people a year","cluster_id":"35616063","url":"http://www.aljazeera.com/news/europe/2014/03/who-pollution-kills-7-million-people-year-20143251275355458.html","description":"World Health Organization says air pollution now the cause of one in eight deaths, with indoor stoves the biggest risk.","domain":"aljazeera.com","topic":"Health","num_docs":"37","num_images":"15","num_videos":"1","time_since":"00:11:27","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cbb9","rep_image_caption":" The WHO says reducing air pollution could save millions of lives","url_id":"946371226","feed_name":"Al Jazeera"},{"title":"Fate of dog in Arizona mauling to be decided","cluster_id":"35621022","url":"http://feeds.boston.com/c/35022/f/646951/s/3892f9be/sc/8/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C250Cfate0Edog0Earizona0Emauling0Edecided0CR8xOWRDCkHB3DLac5pDULL0Cstory0Bhtml/story01.htm","description":"PHOENIX (AP) — It is a legal case that has attracted a team of top death penalty lawyers, candlelight vigils and a polarizing Internet debate on mercy, blame and animal violence.","domain":"boston.com","topic":"General","num_docs":"14","num_images":"5","num_videos":"0","time_since":"00:05:34","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c861","rep_image_caption":"Dog Mauling","url_id":"946848053","feed_name":null},{"title":"How Dwayne Johnson kept 'Hercules' look a secret","cluster_id":"35620983","url":"http://www.miamiherald.com/2014/03/25/4017136/how-dwayne-johnson-kept-hercules.html","description":"It was extremely hard for Dwayne Johnson to keep his \"Hercules\" look under wraps while filming the Brett Ratner-directed movie in Hungary last year. But he did it for the greater good of the big reveal.","domain":"miamiherald.com","topic":"Entertainment","num_docs":"15","num_images":"14","num_videos":"0","time_since":"00:05:54","translate_title":null,"rep_image_url":"http://static1.i4u.com/sites/default/files/imagecache/main_image/images/2014/03/hercules-rock.png","rep_image_caption":"Hercules Trailer To be Released Today","url_id":"946816316","feed_name":null},{"title":"Redskins owner creates foundation to help Native Americans; activist compares it to ‘bribery’","cluster_id":"35618013","url":"http://www.theglobeandmail.com/sports/football/redskins-owner-creates-foundation-to-help-native-americans-activist-compares-it-to-bribery/article17656222/?cmpid=rss1","description":"Dan Snyder gave no indication he plans to change the NFL team’s name","domain":"m.theglobeandmail.com","topic":"Entertainment","num_docs":"27","num_images":"3","num_videos":"0","time_since":"00:00:40","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c6b6","rep_image_caption":"FILE - In this Oct. 12, 2008 file photo, Washington Redskins owner Daniel Snyder is seen before the St. Louis Rams NFL football game in Landover, Md. Snyder says it's time to put some money behind his claim that his team's nickname honors Native Americans. Snyder said Monday March 24, 2014, he's creating a foundation to assist American Indian tribes, even as some in that community continue to assert that the name \"Redskins\" is offensive. NICK WASS, FILE — AP Photo ","url_id":"947335963","feed_name":"Globe and Mail"},{"title":"Carter: Russian invasion of Crimea 'inevitable'","cluster_id":"35620525","url":"http://www.miamiherald.com/2014/03/25/4017125/carter-russian-invasion-of-crimea.html","description":"Former President Jimmy Carter says the Crimean annexation was \"inevitable\" because Russia considers it to be part of their country and so many Crimeans consider themselves Russian.","domain":"miamiherald.com","topic":"General","num_docs":"14","num_images":"10","num_videos":"0","time_since":"00:06:31","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cbd7","rep_image_caption":"In this photo provided by CBS, former President Jimmy Carter, left, talks with David Letterman on \"Late Show with David Letterman,\" Monday March 24, 2014. Carter said during the broadcast that the Crimean annexation was \"inevitable\" because Russia considers it to be part of their country and so many Crimeans consider themselves Russian. But he says Russian President Vladimir Putin shouldn't be permitted to go any further. (AP Photo/CBS, Jeffrey R. Staab)","url_id":"946759906","feed_name":null},{"title":"76ers' skid reaches 25 games","cluster_id":"35618501","url":"http://hosted.ap.org/dynamic/stories/B/BKN_SKIDDING_76ERS?SITE=FLTAM&SECTION=HOME&TEMPLATE=DEFAULT","description":"SAN ANTONIO (AP) -- Brett Brown and the young Philadelphia 76ers are closing in on some dubious NBA history....","domain":"hosted.ap.org","topic":"Sports","num_docs":"30","num_images":"10","num_videos":"0","time_since":"00:05:24","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cf9c","rep_image_caption":"Photo by:The Associated Press San Antonio Spurs' Marco Belinelli (3), of Italy, drives around 76ers' Michael Carter-Williams (1) during the first half of an NBA basketball game, Monday, March 24, 2014, in San Antonio. (AP Photo/Eric Gay) ","url_id":"946862139","feed_name":"Associated Press"},{"title":"عبد الله غل: حظر تويتر سيرفع قريبا","cluster_id":"35567529","url":"http://www.aljazeera.net/Home/GetPage/f6451603-4dff-4ca1-9c10-122741d17432/6bd49dd9-3066-4ebc-939c-2cd2a3750815","description":"أكد الرئيس التركي عبد الله غل أن الحظر على موقع تويتر سيرفع قريبا، في حين جدد رئيس حكومته رجب طيب أردوغان هجومه على شبكتي التواصل الاجتماعي فيسبوك ويوتيوب.","domain":"aljazeera.net","topic":"General","num_docs":"210","num_images":"55","num_videos":"2","time_since":"01:03:34","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ac1b","rep_image_caption":"Turkey - Tor usage","url_id":"944990662","feed_name":"الجزيرة - Al Jazeera"},{"title":"Washington Is Encouraging The Next Hurricane Sandy, By Creating New Subsidies For Flood Insurance","cluster_id":"35587523","url":"http://www.forbes.com/sites/realspin/2014/03/25/washington-is-encouraging-the-next-hurricane-sandy-by-creating-new-subsidies-for-flood-insurance/","description":"No description","domain":"forbes.com","topic":"General","num_docs":"171","num_images":"49","num_videos":"0","time_since":"00:03:21","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ac41","rep_image_caption":"Regina Bachman stands on her deck overlooking her backyard and a small creek that runs behind her home in Loveland, Ohio on Friday, March 21, 2014. Bachman bought the home in September 2013 and was initially told by the bank that flood insurance on the property would be affordable, only to find out after closing that the rates were going to increase over $7,000 more annually with new premiums for the National Flood Insurance Program. (AP Photo/Al Behrman)","url_id":"947049712","feed_name":"Forbes"},{"title":"Hysterical scenes in China after Malaysia says jet crashed","cluster_id":"35607430","url":"http://timesofindia.indiatimes.com/world/rest-of-world/MH370-Relatives-erupt-with-grief-as-Malaysia-confirms-plane-is-lost/articleshow/32619971.cms","description":"In dramatic scenes in Beijing, stretcher-bearing paramedics were drafted in to tend to family members devastated by the news, which was broken to them by the airline.","domain":"m.timesofindia.com","topic":"General","num_docs":"78","num_images":"11","num_videos":"1","time_since":"00:17:00","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150a9d2","rep_image_caption":"Family members of passengers aboard Malaysia Airlines MH370 cry after watching a television broadcast of a news conference, in the Lido hotel in Beijing, on March 24. Photo by Kim Kyung-Hoon/Reuters","url_id":"945910949","feed_name":"Times of India"},{"title":"Feds reach out to kids over online predators","cluster_id":"35620216","url":"http://www.kmov.com/news/just-posted/Feds-reach-out-to-kids-over-online-predators-252227771.html","description":"Federal agents are reaching out to children to get them to use street smarts online in a nationwide push to prevent sexual exploitation cases.","domain":"kmov.com","topic":"Entertainment","num_docs":"12","num_images":"0","num_videos":"0","time_since":"00:00:22","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"947365547","feed_name":"KMOV"},{"title":"UPDATE 2-Disney to buy YouTube network Maker Studios for $500 mln","cluster_id":"35614923","url":"http://feeds.reuters.com/~r/reuters/mergersNews/~3/9gASqAiZEbI/story01.htm","description":"(Adds comment from Disney executive, forecast for impact on earnings, paragraphs 4-6)","domain":"mobile.reuters.com","topic":"Entertainment","num_docs":"38","num_images":"4","num_videos":"1","time_since":"00:14:34","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b961","rep_image_caption":"In this Friday, Jan. 31, 2014, photo, a Minnie Mouse character plays piano in a Disney Store display window in Saugus, Mass. Walt Disney Co. reports quarterly financial results after the market closes on Wednesday, Feb. 5, 2014. (AP Photo/Elise Amendola)","url_id":"946115377","feed_name":"Reuters"},{"title":"Thai bus crash leaves dozens dead","cluster_id":"35609481","url":"http://www.aljazeera.com/news/asia-pacific/2014/03/thai-bus-crash-leaves-dozens-dead-20143254572962810.html","description":"At least 30 killed and 22 injured after bus carrying municipal workers plunged off steep road in country's west.","domain":"aljazeera.com","topic":"General","num_docs":"19","num_images":"3","num_videos":"0","time_since":"00:06:36","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c566","rep_image_caption":"In this photo taken Monday, 24 March 2014, Thai charity workers and onlookers stand next to bodies of victims of a road accident, wrapped in white cloths, foreground, in Mae Sot, northern Thailand","url_id":"946752726","feed_name":"Al Jazeera"},{"title":"Gallery: Flames stun Sharks with shootout win","cluster_id":"35619161","url":"http://www.calgaryherald.com/sports/hockey/calgary-flames/Gallery+Sharks+Flames/9656859/story.html","description":"The Calgary Flames downed the San Jose Sharks in an entertaining 2-1 shoot out victory Monday night at the Scotiabank Saddledome.","domain":"calgaryherald.com","topic":"Sports","num_docs":"16","num_images":"14","num_videos":"0","time_since":"00:00:27","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ca3e","rep_image_caption":"Calgary's Karri Ramo denies San Jose left wing James Sheppard in the shootout, during which Ramo stops all three Sharks tries. (USATSI)","url_id":"947358140","feed_name":"Calgary Herald"},{"title":"Report: Payday loans can cost borrowers much","cluster_id":"35595790","url":"http://www.thenewstribune.com/2014/03/24/3114837/report-payday-loans-can-cost-borrowers.html#storylink=rss","description":"No description","domain":"thenewstribune.com","topic":"Business","num_docs":"14","num_images":"2","num_videos":"0","time_since":"00:02:46","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bee4","rep_image_caption":"payday","url_id":"947111408","feed_name":"TheNewsTribune.com"},{"title":"Marriner to learn fate over error","cluster_id":"35584736","url":"http://www.bbc.co.uk/sport/0/football/26711403","description":"Referee Andre Marriner will learn on Monday if he will be dropped this weekend after sending off the wrong player.","domain":"bbc.co.uk","topic":"Sports","num_docs":"126","num_images":"198","num_videos":"1","time_since":"01:05:34","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d21a","rep_image_caption":"Hard to take: Manager Arsene Wenger doesn't appear to have a plan B when facing the top sides","url_id":"944818448","feed_name":"BBC News"},{"title":"Dotcom's Mega to list on NZ market","cluster_id":"35615496","url":"http://www.bbc.co.uk/news/technology-26732824#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"Internet tycoon Kim Dotcom, who is fighting extradition to the US, announces plans to list his new file-sharing firm on the stock market.","domain":"bbc.co.uk","topic":"Entertainment","num_docs":"24","num_images":"15","num_videos":"0","time_since":"00:00:21","translate_title":null,"rep_image_url":"http://news.bbcimg.co.uk/media/images/73791000/jpg/_73791917_172531375.jpg","rep_image_caption":"Kim Dotcom interviewed by reporters","url_id":"947367641","feed_name":"BBC News"},{"title":"Former Texas star, NBA player reported dead, is not dead","cluster_id":"35619017","url":"http://www.ksat.com/news/former-texas-star-nba-player-reported-dead-is-not-dead/25147974","description":"No description","domain":"ksat.com","topic":"Entertainment","num_docs":"13","num_images":"1","num_videos":"0","time_since":"00:02:22","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c6c4","rep_image_caption":"Former NBA player: 'Tough day' being reported dead","url_id":"947153995","feed_name":"KSAT"},{"title":"Oklahoma girl breaks Girl Scout cookie sales mark","cluster_id":"35614652","url":"http://feeds.boston.com/c/35022/f/646951/s/388fcdae/sc/10/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Coklahoma0Egirl0Ebreaks0Egirl0Escout0Ecookie0Esales0Emark0CBoLsr2szcHGl19jun3JgbK0Cstory0Bhtml/story01.htm","description":"OKLAHOMA CITY (AP) — An Oklahoma City girl who says she asks everyone she meets to buy Girl Scout cookies has broken the organization's decades-old sales record by a margin about the size of a Thin Mint.","domain":"boston.com","topic":"Entertainment","num_docs":"26","num_images":"0","num_videos":"0","time_since":"00:15:45","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"946016615","feed_name":null},{"title":"Hedo pointless, but Clippers still conquer Ersan-less Milwaukee","cluster_id":"35619706","url":"http://www.todayszaman.com//news-342976-hedo-pointless-but-clippers-still-conquer-ersan-less-milwaukee.html","description":"No description","domain":"todayszaman.com","topic":"Sports","num_docs":"10","num_images":"4","num_videos":"0","time_since":"00:00:28","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c31b","rep_image_caption":"Blake Griffin provides 27 points to help the Clips reach the 50-win milestone in back-to-back seasons. (Getty Images)","url_id":"947355847","feed_name":"Today's Zaman"},{"title":"Biden, possible '16 hopeful, off to New Hampshire","cluster_id":"35592331","url":"http://www.miamiherald.com/2014/03/25/4017106/biden-possible-16-hopeful-off.html","description":"Vice President Joe Biden is coming to New Hampshire to discuss jobs but the visit likely will stir talk of a possible run for president in 2016.","domain":"miamiherald.com","topic":"General","num_docs":"13","num_images":"5","num_videos":"0","time_since":"00:07:02","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c9b2","rep_image_caption":"Biden Health Care","url_id":"946717059","feed_name":null},{"title":"Syrian jet shot down near Turkish border","cluster_id":"35580814","url":"http://haaretz.feedsportal.com/c/34191/f/620528/s/3882227c/sc/20/l/0L0Shaaretz0N0Cnews0Cmiddle0Eeast0C10B581469/story01.htm","description":"Turkey's NTV quotes officials saying Turkish Armed Forces shot down jet after it violated Turkish air space.","domain":"haaretz.com","topic":"General","num_docs":"115","num_images":"31","num_videos":"2","time_since":"01:10:51","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150abd4","rep_image_caption":"Tensions run high after Syrian aircraft shot down by Turkey","url_id":"944328928","feed_name":"Ha'aretz"},{"title":"Tennessee Williams story published","cluster_id":"35619075","url":"http://www.bbc.co.uk/news/entertainment-arts-26728703#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"A previously unseen short story by US writer Tennessee Williams, inspired in part by an old college girlfriend, is published for the first time.","domain":"bbc.co.uk","topic":"Entertainment","num_docs":"11","num_images":"1","num_videos":"0","time_since":"00:03:30","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c91d","rep_image_caption":"Tennessee Williams in 1965","url_id":"947034444","feed_name":"BBC News"},{"title":"David Cassidy sentenced to rehab in DUI case","cluster_id":"35616747","url":"http://www.miamiherald.com/2014/03/24/4016452/david-cassidy-sentenced-to-rehab.html","description":"A judge has sentenced 1970s teen heartthrob David Cassidy to three months in rehab and five years of probation in a drunken driving case.","domain":"miamiherald.com","topic":"Entertainment","num_docs":"22","num_images":"13","num_videos":"0","time_since":"00:13:02","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c7dd","rep_image_caption":"David Cassidy","url_id":"946242232","feed_name":null},{"title":"British teen who gunned down officer had left suicide note","cluster_id":"35613721","url":"http://telegraph.feedsportal.com/c/32726/f/534871/s/38930ae5/sc/42/l/0L0Stelegraph0O0Cnews0Cworldnews0Cnorthamerica0Cusa0C10A720A0A870CBritish0Eteen0Ewho0Egunned0Edown0Eofficer0Ehad0Eleft0Esuicide0Enote0Bhtml/story01.htm","description":"Alexandria Hollinghurst and Brandon Goode may have been planning 'suicide by cop' after gunning down an armed officer in Florida","domain":"telegraph.co.uk","topic":"General","num_docs":"13","num_images":"7","num_videos":"0","time_since":"00:05:06","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bcfd","rep_image_caption":"dead police officer had been wearing a body camera and the footage will prove crucial to any investigation. Photo / Thinkstock","url_id":"946888241","feed_name":null},{"title":"Climate scientists in Japan to study warming risks","cluster_id":"35618619","url":"http://feeds.boston.com/c/35022/f/646951/s/3890f3aa/sc/29/l/0L0Sboston0N0Cnews0Cworld0Casia0C20A140C0A30C240Cclimate0Escientists0Ejapan0Estudy0Ewarming0Erisks0CndCvlzRWnWuQgg9FzFTNdI0Cstory0Bhtml/story01.htm","description":"YOKOHAMA, Japan (AP) — Top climate scientists assessing the impact of global warming say that along with the enormous risks facing humanity are opportunities to improve public health and build a better world.","domain":"boston.com","topic":"SciTech","num_docs":"10","num_images":"0","num_videos":"0","time_since":"00:09:57","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"946491384","feed_name":null},{"title":"Panasonic brings 4K to wearable action camcorders","cluster_id":"35605246","url":"http://rss.feedsportal.com/c/559/f/7174/s/389393c6/sc/15/l/0L0Spcadvisor0O0Cnews0Cphoto0Evideo0C350A82920Cpanasonic0Ebrings0E4k0Eto0Ewearable0Eaction0Ecamcorders0C0Dolo0Frss/story01.htm","description":"No description","domain":"mobile.pcadvisor.co.uk","topic":"Entertainment","num_docs":"11","num_images":"1","num_videos":"1","time_since":"00:01:46","translate_title":null,"rep_image_url":"http://cdn3.pcadvisor.co.uk/cmsdata/features/3508292/panasonic_hx-a500.jpg","rep_image_caption":"Panasonic HX-A500","url_id":"947217940","feed_name":"PC Advisor"},{"title":"Powerful spring snowstorm to slam New England","cluster_id":"35586419","url":"http://rssfeeds.usatoday.com/~r/usatoday-NewsTopStories/~3/GdKrRxMOcDM/","description":"A ferocious spring snowstorm is forecast to lash eastern New England with snow, wind.","domain":"usatoday.com","topic":"General","num_docs":"41","num_images":"10","num_videos":"0","time_since":"00:20:23","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d23b","rep_image_caption":"A students walks on Missouri Western State University campus Monday in St. Joseph, Mo., as snow storm blows into the region. On Tuesday, parts of the","url_id":"945633946","feed_name":"USA Today"},{"title":"What's next in the search for the Malaysia airliner?","cluster_id":"35598693","url":"http://haaretz.feedsportal.com/c/34191/f/620528/s/38929329/sc/39/l/0L0Shaaretz0N0Cnews0Cworld0C10B581799/story01.htm","description":"Time is running out to find the crucial keys that could solve the mystery of how and why Malaysia Airlines Flight 370 went down.","domain":"haaretz.com","topic":"SciTech","num_docs":"34","num_images":"11","num_videos":"0","time_since":"00:07:12","translate_title":null,"rep_image_url":"http://news.bbcimg.co.uk/media/images/73795000/jpg/_73795341_flight_data_recorder_624in.jpg","rep_image_caption":"Graphic: Black box flight recorders","url_id":"946704859","feed_name":"Ha'aretz"},{"title":"Rafael Nadal, Maria Sharapova, Serena Williams advance at Sony Open","cluster_id":"35610597","url":"http://www.miamiherald.com/2014/03/24/4015929/rafael-nadal-sharapova-serena.html","description":"No. 1 Rafael Nadal reached the fourth round of the Sony Open, a tournament title he dearly wants to win because of the love of his fans.","domain":"miamiherald.com","topic":"Sports","num_docs":"38","num_images":"29","num_videos":"0","time_since":"00:10:42","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c9d7","rep_image_caption":"Rafael Nadal dropped just one game as he crushed Denis Istoman 6-1 6-0","url_id":"946431741","feed_name":null},{"title":"Cisco to invest over $1B in cloud computing","cluster_id":"35600021","url":"http://seattletimes.com/html/businesstechnology/2023214810_apxciscocloudcomputing.html?syndication=rss","description":"Cisco says it plans to spend more than $1 billion over the next two years to build up its cloud computing network.","domain":"seattletimes.com","topic":"SciTech","num_docs":"60","num_images":"3","num_videos":"0","time_since":"00:18:15","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150aca2","rep_image_caption":"Cisco cloud computing","url_id":"945807423","feed_name":"Seattle Times"},{"title":"Lady Bears Beat Cal To Reach Sweet 16","cluster_id":"35618620","url":"http://dfw.cbslocal.com/2014/03/25/lady-bears-beat-cal-to-reach-sweet-16/","description":"No description","domain":"dfw.cbslocal.com","topic":"Sports","num_docs":"14","num_images":"15","num_videos":"0","time_since":"00:02:03","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c0ed","rep_image_caption":"NCAA California Baylor Basketball","url_id":"947187539","feed_name":null},{"title":"Greg Cote: When it comes to Miami Heat, only postseason matters","cluster_id":"35610225","url":"http://www.miamiherald.com/2014/03/24/4016842/greg-cote-when-it-comes-to-miami.html","description":"Heat coach Erik Spoelestra said something that was small and quiet but it distilled this thing to its essence Monday night as his slumping, angry, searching champions set out looking for answers and a needed victory.","domain":"miamiherald.com","topic":"Sports","num_docs":"26","num_images":"12","num_videos":"1","time_since":"00:09:10","translate_title":null,"rep_image_url":"http://media.kgw.com/images/470*264/480363649.jpg","rep_image_caption":"James, Bosh lift Heat over Trail Blazers 93-91","url_id":"946543937","feed_name":null},{"title":"Chinese relatives of passengers protest at embassy","cluster_id":"35619197","url":"http://feeds.boston.com/c/35022/f/646951/s/3890fa90/sc/39/l/0L0Sboston0N0Cnews0Cworld0Casia0C20A140C0A30C240Cchinese0Erelatives0Epassengers0Eprotest0Eembassy0CbBLPcBZyGdLmvOeuYntlYP0Cstory0Bhtml/story01.htm","description":"BEIJING (AP) — Furious over Malaysia's handling of the lost jetliner a day after the country said the passengers must be dead, Chinese relatives of the missing marched Tuesday to the Malaysia Embassy, where they threw plastic water bottles, tried to rush the gate and chanted, \"Liars!\"","domain":"boston.com","topic":"General","num_docs":"12","num_images":"0","num_videos":"0","time_since":"00:08:26","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"946604228","feed_name":null},{"title":"Brazil World Cup city 'may drop out'","cluster_id":"35615352","url":"http://www.bbc.co.uk/news/world-latin-america-26726275#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"A mayor in southern Brazil says his city may drop out of June's football World Cup if the state assembly does not pass key legislation this week.","domain":"bbc.co.uk","topic":"General","num_docs":"17","num_images":"15","num_videos":"0","time_since":"00:15:12","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c7a1","rep_image_caption":"The Estadio Beira-Rio could be forced to pull out of hosting matches in the 2014 World Cup","url_id":"946061050","feed_name":"BBC News"},{"title":"China demands Malaysian satellite data on plane","cluster_id":"35611427","url":"http://feeds.boston.com/c/35022/f/646951/s/38907400/sc/39/l/0L0Sboston0N0Cnews0Cworld0Casia0C20A140C0A30C240Cchina0Edemands0Emalaysian0Esatellite0Edata0Eplane0Cn94MIylUuBpaZwA2hAr1rJ0Cstory0Bhtml/story01.htm","description":"BEIJING (AP) — China is demanding that Malaysia turn over satellite data used to conclude that a Malaysia Airlines passenger jet was lost in the southern Indian Ocean with no survivors.","domain":"boston.com","topic":"General","num_docs":"21","num_images":"1","num_videos":"0","time_since":"00:10:43","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bee2","rep_image_caption":"A family member of a passenger aboard Malaysia Airlines MH370 protests near Lido Hotel in Beijing on Tuesday. Bad weather and rough seas on Tuesday forced the suspension of the search for any wreckage of a missing Malaysian jetliner that officials are now sure crashed in the remote Indian Ocean with the loss of all 239 people on board.","url_id":"946429373","feed_name":null},{"title":"Moyes 'the right man', says Charlton","cluster_id":"35584738","url":"http://www.bbc.co.uk/sport/0/football/26729956","description":"Sir Bobby Charlton is \"absolutely certain\" Manchester United were right to appoint David Moyes as manager.","domain":"bbc.co.uk","topic":"Sports","num_docs":"60","num_images":"85","num_videos":"0","time_since":"00:00:17","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ce2f","rep_image_caption":"United 'have already signed two new players'","url_id":"947374389","feed_name":"BBC News"},{"title":"MH370 passengers' relatives protest in China","cluster_id":"35606833","url":"http://www.aljazeera.com/news/asia-pacific/2014/03/mh370-passengers-relatives-protest-china-20143254173613347.html","description":"Relatives demanding answers over missing plane march on Malaysian embassy in Beijing.","domain":"aljazeera.com","topic":"General","num_docs":"30","num_images":"3","num_videos":"0","time_since":"00:07:06","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/015097a5","rep_image_caption":"China Malaysia Plane","url_id":"946712724","feed_name":"Al Jazeera"},{"title":"Box to go public, hoping to raise $250M","cluster_id":"35615414","url":"http://rss.computerworld.com/~r/computerworld/news/feed/~3/TsjVaGv7jeM/Box_to_go_public_hoping_to_raise_250M","description":"Box, the eight-year-old company that has taken on industry giants to become a leader in cloud storage and file sharing, will seek to raise US$250 million by selling shares publicly for the first time.","domain":"computerworld.com","topic":"Business","num_docs":"16","num_images":"0","num_videos":"0","time_since":"00:00:39","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"947337679","feed_name":"Computerworld"},{"title":"Japanese architect wins top prize","cluster_id":"35613925","url":"http://www.bbc.co.uk/news/entertainment-arts-26731137#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"Shigeru Ban, who uses cardboard tubes to make temporary housing in disaster zones, wins this year's Pritzker Architecture Prize.","domain":"bbc.co.uk","topic":"Entertainment","num_docs":"24","num_images":"6","num_videos":"0","time_since":"00:01:16","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ce88","rep_image_caption":"A row of paper log houses in Kobe, Japan, designed by Tokyo-born architect Shigeru Ban, 56","url_id":"947269315","feed_name":"BBC News"},{"title":"DePaul upsets Duke women 74-65 in NCAA tournament","cluster_id":"35617229","url":"http://abclocal.go.com/wtvd/story?section=news/local&id=9478543&rss=rss-wtvd-article-9478543","description":"DePaul will play the James Madison-Texas A&M winner on Saturday in the Lincoln Regional semifinals.","domain":"abclocal.go.com","topic":"Sports","num_docs":"17","num_images":"17","num_videos":"0","time_since":"00:11:36","translate_title":null,"rep_image_url":"http://www.indyweek.com/binary/411d/1395715247-dukdpwil.jpg","rep_image_caption":"DePaul’s Centrese McGee (23) and Jasmine Perry (31) fight Duke’s Elizabeth Williams for a rebound. Duke’s No. 32 is Tricia Liston.","url_id":"946359840","feed_name":null},{"title":"Beckham unveils MLS stadium plans","cluster_id":"35597947","url":"http://www.bbc.co.uk/sport/0/football/26728226","description":"Former England captain David Beckham unveils plans for a 25,000-seat stadium in Miami for his Major League Soccer team.","domain":"bbc.co.uk","topic":"Entertainment","num_docs":"40","num_images":"22","num_videos":"0","time_since":"00:03:54","translate_title":null,"rep_image_url":"http://www.independent.co.uk/img/rO0ABXQAZWZ7aHR0cDovL3d3dy5pbmRlcGVuZGVudC5jby51ay9pbmNvbWluZy9hcnRpY2xlOTE1NTA0Ni5lY2UvQUxURVJOQVRFUy93NDYwL2JlY2toYW0tNjAwLmpwZ31mNzc3N2YzNjB0.jpg","rep_image_caption":"Beckham pictured at the announcement of the Miami franchise","url_id":"946997574","feed_name":"BBC News"},{"title":"Watch: Tampa Bay Lightning's Steven Stamkos swings his stick... and scores!","cluster_id":"35607265","url":"http://nhl.si.com/2014/03/24/tampa-bay-lightning-steven-stamkos-scores-amazing-goal/","description":"No description","domain":"nhl.si.com","topic":"Sports","num_docs":"20","num_images":"8","num_videos":"0","time_since":"00:09:25","translate_title":null,"rep_image_url":"http://sports.cbsimg.net/u/photos/hockey/img24499681.jpg","rep_image_caption":"Ottawa's Jason Spezza beats Tampa Bay's Ben Bishop for the only goal of the shootout period. (USATSI)","url_id":"946527437","feed_name":"CNN"},{"title":"Canadiens stop Bruins' 12-game win streak","cluster_id":"35580433","url":"http://feeds.boston.com/c/35022/f/646951/s/38907490/sc/13/l/0L0Sboston0N0Cnews0Clocal0Cmassachusetts0C20A140C0A30C240Ccanadiens0Estop0Ebruins0Egame0Ewin0Estreak0CVeteZw9qjIQruqIXfiCDjL0Cstory0Bhtml/story01.htm","description":"BOSTON (AP) — Alex Galchenyuk scored the only shootout goal, and the Montreal Canadiens stopped the Boston Bruins' 12-game winning streak with a 2-1 victory Monday night.","domain":"boston.com","topic":"Sports","num_docs":"42","num_images":"11","num_videos":"4","time_since":"00:10:33","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d017","rep_image_caption":"Boston Bruins defenseman Johnny Boychuk throws down P.K. Subban of the Montreal Canadiens in the second period during the game at TD Garden on March 24, 2014 in Boston, Massachusetts. (Photo by Jared Wickerham/Getty Images)","url_id":"946444294","feed_name":null},{"title":"Coyotes goalie Mike Smith suffers lower body injury vs. Rangers","cluster_id":"35618017","url":"http://nhl.si.com/2014/03/24/coyotes-goalie-mike-smith-injured-vs-rangers/","description":"No description","domain":"nhl.si.com","topic":"Sports","num_docs":"17","num_images":"1","num_videos":"0","time_since":"00:09:45","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bb86","rep_image_caption":"Photo by:The Associated Press New York Rangers' Derick Brassard reacts after scoring during the second period of the NHL hockey game against the Phoenix Coyotes, Monday, March 24, 2014, in New York. (AP Photo/Seth Wenig) ","url_id":"946506854","feed_name":"CNN"},{"title":"League, union to discuss workplace issue ","cluster_id":"35615401","url":"http://seattletimes.com/html/seahawks/2023218404_nfl25xml.html?syndication=rss","description":"Commissioner Roger Goodell says the league will meet April 8 with the players union to discuss improving the workplace environment.","domain":"seattletimes.com","topic":"General","num_docs":"17","num_images":"1","num_videos":"0","time_since":"00:09:59","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b1a4","rep_image_caption":"NFL Commissioner Roger Goodell answers questions during a news conference at the NFL football annual meeting in Orlando, Fla., Monday, March 24, 2014. (AP Photo/John Raoux)","url_id":"946488395","feed_name":"Seattle Times"},{"title":"Kings end Flyers' win streak","cluster_id":"35617834","url":"http://timesleader.com/news/hockey/1279138/Kings-end-Flyers-win-streak&source=RSS","description":"PHILADELPHIA 8212 Dwight King scored a tiebreaking goal midway through the third period, leading the Los Angeles Kings to a 3-2 victory over the Philadelphia Flyers on Monday night.","domain":"timesleader.com","topic":"Sports","num_docs":"16","num_images":"7","num_videos":"0","time_since":"00:07:26","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bc08","rep_image_caption":"Dwight King #74 of the Los Angeles Kings takes the puck in the first period against the Philadelphia Flyers at Wells Fargo Center on March 24, 2014 in Philadelphia, Pennsylvania. (credit: Elsa/Getty Images)","url_id":"946684856","feed_name":"The Times Leader"},{"title":"Energy Department OKs LNG terminal on Oregon coast","cluster_id":"35588044","url":"http://www.miamiherald.com/2014/03/24/4016013/energy-department-oks-lng-terminal.html","description":"The U.S. Energy Department gave conditional authorization Monday for liquefied natural gas to be exported from a proposed terminal in Coos Bay, on the Oregon coast.","domain":"miamiherald.com","topic":"Business","num_docs":"33","num_images":"0","num_videos":"0","time_since":"00:16:10","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945980607","feed_name":null},{"title":"Congress locked in Ukraine aid bill dispute","cluster_id":"35584103","url":"http://feeds.boston.com/c/35022/f/646951/s/3892f9bd/sc/1/l/0L0Sboston0N0Cnews0Cpolitics0C20A140C0A30C250Ccongress0Elocked0Eukraine0Eaid0Ebill0Edispute0Cpu0AqKqBVb6WUequJktW7MJ0Cstory0Bhtml/story01.htm","description":"WASHINGTON (AP) — The Senate and House appear headed for a standoff over competing bills to authorize sanctions on Russia and provide aid to Ukraine, potentially prolonging Congress' inaction over the two weeks since Russian President Vladimir Putin's military intervention in the Crimean peninsula.","domain":"boston.com","topic":"General","num_docs":"32","num_images":"11","num_videos":"0","time_since":"00:05:34","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c5ff","rep_image_caption":"Congress Ukraine","url_id":"946848050","feed_name":null},{"title":"Woman: Mudslide likely killed 4 family members","cluster_id":"35615535","url":"http://feeds.boston.com/c/35022/f/646951/s/388fd0ae/sc/38/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Cwoman0Emudslide0Elikely0Ekilled0Efamily0Emembers0CLvAMIpctk5vYROyfv7SBRL0Cstory0Bhtml/story01.htm","description":"SEATTLE (AP) — A Texas woman whose family members were in the area of the deadly landslide in Washington state says she has lost hope that they can be found alive in the rubble.","domain":"boston.com","topic":"General","num_docs":"17","num_images":"5","num_videos":"0","time_since":"00:14:52","translate_title":null,"rep_image_url":"http://extras.mnginteractive.com/live/media/site333/2014/0324/20140324__USWashingtonMudslideFamily~p2_200.jpg","rep_image_caption":"In this undated photo provided by Nichole Webb Rivera, Rivera&#8217;s parents, Thom and Marcy Satterlee, are shown. Rivera, of Houston, traveled to","url_id":"946088871","feed_name":null},{"title":"Woods: 'Still too soon' to know if fit for Masters","cluster_id":"35607368","url":"http://hosted.ap.org/dynamic/stories/G/GLF_WOODS_MASTERS?SITE=FLTAM&SECTION=HOME&TEMPLATE=DEFAULT","description":"WASHINGTON (AP) -- Tiger Woods is not sure whether his ailing back will allow him to play in the Masters, which is two weeks away....","domain":"hosted.ap.org","topic":"Sports","num_docs":"44","num_images":"11","num_videos":"0","time_since":"00:11:18","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b91c","rep_image_caption":"Stroke: The American said it is too soon yet to know whether he will be able to play at Augusta","url_id":"946382396","feed_name":"Associated Press"},{"title":"Coastal Calif. town knows sorrows mudslides bring","cluster_id":"35617082","url":"http://feeds.boston.com/c/35022/f/646951/s/38906edd/sc/10/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Ccoastal0Ecalif0Etown0Eknows0Esorrows0Emudslides0Ebring0CBgxDAmj5tkSAuBFkY8rLRL0Cstory0Bhtml/story01.htm","description":"As with Oso, Wash., the coastal Southern California town of La Conchita knows the sorrows that a major mudslide can unleash. In 2005, a wall of debris slammed down from a bluff soaked by winter storms, killing 10 people and damaging or destroying 36 homes.","domain":"boston.com","topic":"General","num_docs":"15","num_images":"0","num_videos":"0","time_since":"00:12:31","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"946285246","feed_name":null},{"title":"Arab League summit to begin amid divisions","cluster_id":"35584341","url":"http://www.aljazeera.com/news/middleeast/2014/03/arab-league-summit-201432552716861683.html","description":"Leaders hold annual meeting in Kuwait amid diplomatic fallout among Gulf countries and tension over Syria and Egypt.","domain":"aljazeera.com","topic":"General","num_docs":"50","num_images":"28","num_videos":"0","time_since":"00:07:06","translate_title":null,"rep_image_url":"http://news.yahoo.com/qatar-calls-dialogue-egypt-130606492.html","rep_image_caption":"Qatar&#39;s Emir Sheikh Tamim bin Hamad al-Thani attends the 25th Arab League summit at Bayan palace in Kuwait City, on March 25, 2014","url_id":"946712713","feed_name":"Al Jazeera"},{"title":"Videos key to case in NYC against bin Laden in-law","cluster_id":"35586975","url":"http://feeds.boston.com/c/35022/f/646951/s/3894b869/sc/11/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C250Cvideos0Ekey0Ecase0Eagainst0Ebin0Eladen0Elaw0CN4y55Anyh7iT66YejHQZUM0Cstory0Bhtml/story01.htm","description":"NEW YORK (AP) — One 2002 al-Qaida propaganda video — titled \"Convoy of Martyrs\" — features Osama bin Laden's son-in-law preaching over still-horrific scenes of a plane flying into one of the World Trade Center towers on Sept. 11. Another shows the son-in-law looking at bin Laden admiringly as the al-Qaida leader boasts that he knew the attack would make both towers fall.","domain":"boston.com","topic":"General","num_docs":"52","num_images":"11","num_videos":"0","time_since":"00:02:57","translate_title":null,"rep_image_url":"http://news.yahoo.com/videos-key-case-nyc-against-bin-laden-law-100942874.html","rep_image_caption":"FILE - In this undated image made from video and provided by by Al-Jazeera, Sulaiman Abu Ghaith, is shown. Osama bin Laden&#39;s son-in-law and spokesman still maintains that there was justification for the September 11, 2001 attacks orchestrated by al-Qaida upon the United States. Sulaiman Abu Ghaith, who is being tried in a New York City courtroom for conspiring to kill Americans, is using courtroom theater, intentionally or not, to press his case that the United States is such a bully in the Middle East that even killing civilians was justified. (AP Photo/Al-Jazeera, File)","url_id":"947090696","feed_name":null},{"title":"Seattle scientists show how Deepwater Horizon spill caused heart damage in young tuna ","cluster_id":"35612064","url":"http://seattletimes.com/html/localnews/2023218482_fishheartsxml.html?syndication=rss","description":"Formed after the Exxon Valdez spill, a NOAA team continues to document the harmful effects of oil spills around the world.","domain":"seattletimes.com","topic":"SciTech","num_docs":"14","num_images":"2","num_videos":"0","time_since":"00:09:20","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bec0","rep_image_caption":" Image, top, shows a normal tuna larva not long after hatching, and, at bottom, a larva exposed to Deepwater Horizon crude oil. ","url_id":"946531268","feed_name":"Seattle Times"},{"title":"‘Candy Crush’ maker, King Digital, to go public this week","cluster_id":"35598971","url":"http://seattletimes.nwsource.com/html/businesstechnology/2023217842_candycrushipoxml.html?syndication=rss","description":"King Digital’s stock could be valued as high as $7.6 billion, nearly twice as much as its closest rival Zynga, the creator of “FarmVille.”","domain":"seattletimes.com","topic":"Business","num_docs":"34","num_images":"13","num_videos":"0","time_since":"00:13:52","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d02d","rep_image_caption":"Riccardo Zacconi: Co-founder and chief executive of Candy Crush developer King will make a fortune in float","url_id":"946174343","feed_name":"Seattle Times"},{"title":"Agency calls WTC parachute jump a 'selfish act'","cluster_id":"35613464","url":"http://feeds.boston.com/c/35022/f/646951/s/38950640/sc/3/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C250Cagency0Ecalls0Ewtc0Eparachute0Ejump0Eselfish0Eact0C5ghIbWLmRZ0AwMjIhGgsz1K0Cstory0Bhtml/story01.htm","description":"NEW YORK (AP) — The Port Authority of New York and New Jersey has condemned the parachute jump off 1 World Trade Center last fall by four skydiving enthusiasts as a \"lawless and selfish act that clearly endangered the public.\"","domain":"boston.com","topic":"General","num_docs":"13","num_images":"0","num_videos":"0","time_since":"00:02:31","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"947137963","feed_name":null},{"title":"US aircraft to aid hunt for LRA chief Kony","cluster_id":"35583802","url":"http://www.aljazeera.com/news/africa/2014/03/us-aircraft-aid-hunt-lra-chief-kony-201432415440885563.html","description":"White House says CV-22 Osprey, refuelling aircraft and \"support personnel\" will help hunt for remaining rebel leaders.","domain":"aljazeera.com","topic":"General","num_docs":"76","num_images":"18","num_videos":"0","time_since":"00:18:41","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c07f","rep_image_caption":"Joseph Kony. Photo / File / AP","url_id":"945773770","feed_name":"Al Jazeera"},{"title":"NFL compensatory picks announced: As usual, Ravens cash in","cluster_id":"35615633","url":"http://nfl.si.com/2014/03/24/nfl-compensatory-picks-baltimore-ravens/","description":"No description","domain":"nfl.si.com","topic":"Sports","num_docs":"14","num_images":"1","num_videos":"0","time_since":"00:14:20","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b28b","rep_image_caption":"Four teams were awarded third-round compensatory draft picks.","url_id":"946133951","feed_name":"CNN"},{"title":"Whispers, secrets and lies? Anonymity apps rise","cluster_id":"35610856","url":"http://www.miamiherald.com/2014/03/24/4015609/whispers-secrets-and-lies-anonymity.html","description":"At a time when Facebook, Twitter and LinkedIn are pushing people to put forward their most polished, put-together selves, a new class of mobile applications aims for a bit more honesty.","domain":"miamiherald.com","topic":"Entertainment","num_docs":"30","num_images":"4","num_videos":"0","time_since":"00:18:57","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150becc","rep_image_caption":"click image to enlargeDavid Byttow, left, and Chrys Bader-Wechseler co-founded Secret, a new app that lets people share anonymous messages with their friends and friends of friends. The Associated Press Select images available for purchase in theMaine Today Photo Store","url_id":"945752203","feed_name":null},{"title":"Mother and daughter both battle TB","cluster_id":"35593856","url":"http://www.bbc.co.uk/news/health-26679220#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"Mother and daughter battle drug-resistant TB","domain":"bbc.co.uk","topic":"Health","num_docs":"20","num_images":"2","num_videos":"1","time_since":"00:00:12","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150824e","rep_image_caption":"World TB Day: Millions suffering from 'forgotten plague'","url_id":"947383049","feed_name":"BBC News"},{"title":"Anglo American halts mine in Chile after violence","cluster_id":"35614593","url":"http://feeds.boston.com/c/35022/f/646951/s/38906ee3/sc/30/l/0L0Sboston0N0Cnews0Cworld0Clatin0Eamerica0C20A140C0A30C240Canglo0Eamerican0Ehalts0Emine0Echile0Eafter0Eviolence0CBCO9ov6Icz99G7etmAVbKL0Cstory0Bhtml/story01.htm","description":"SANTIAGO, Chile (AP) — British mining company Anglo American Plc has halted operations at its Los Bronces copper mine in Chile, saying it wants to guarantee safety of its employees after violent protests by contractors.","domain":"boston.com","topic":"General","num_docs":"11","num_images":"0","num_videos":"0","time_since":"00:12:31","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"946285247","feed_name":null},{"title":"Montana murder case hinges on mental disability","cluster_id":"35599433","url":"http://feeds.boston.com/c/35022/f/646951/s/3892f9bb/sc/40/l/0L0Sboston0N0Cnews0Ceducation0C20A140C0A30C250Cmontana0Emurder0Ecase0Ehinges0Emental0Edisability0CxmsBMlHUYGAtLY5Irgdc6K0Cstory0Bhtml/story01.htm","description":"SIDNEY, Mont. (AP) — Prosecutors are expected to call on doctors from the Montana state mental hospital Tuesday to bolster claims that a Colorado man is fit to stand trial in the killing of a teacher in the heart of the Bakken oil patch.","domain":"boston.com","topic":"General","num_docs":"23","num_images":"17","num_videos":"0","time_since":"00:05:34","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c529","rep_image_caption":"Missing Montana Teacher-Trial","url_id":"946848044","feed_name":null},{"title":"Death toll in Washington mudslide rises to 14","cluster_id":"35608807","url":"http://feeds.chicagotribune.com/~r/chicagotribune/news/~3/xPI4dqOYDLM/story01.htm","description":"The death toll in a massive Washington state mudslide has risen to 14 as six more bodies were found, officials said.","domain":"chicagotribune.com","topic":"General","num_docs":"43","num_images":"10","num_videos":"0","time_since":"00:12:17","translate_title":null,"rep_image_url":"http://media.theolympian.com/smedia/2014/03/24/21/39/413-1ljyqa.AuSt.55.jpeg","rep_image_caption":"Washington Mudslide","url_id":"946303752","feed_name":"Chicago Tribune"},{"title":"Trespassing fracking activist wants ban lifted","cluster_id":"35598026","url":"http://www.miamiherald.com/2014/03/24/4015967/trespassing-fracking-activist.html","description":"A high-profile anti-fracking activist who often gives tours of natural gas drilling sites in northeastern Pennsylvania's Marcellus Shale region asked a judge Monday for relief from an order barring her from stepping foot on more than 300 square miles of land owned or leased by one of the state's leading natural gas drillers.","domain":"miamiherald.com","topic":"General","num_docs":"22","num_images":"0","num_videos":"0","time_since":"00:16:49","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945925834","feed_name":null},{"title":"Nokia deal with Microsoft delayed until April","cluster_id":"35599024","url":"http://feeds.boston.com/c/35022/f/646951/s/38883ef5/sc/5/l/0L0Sboston0N0Cnews0Cworld0Ceurope0C20A140C0A30C240Cnokia0Edeal0Ewith0Emicrosoft0Edelayed0Euntil0Eapril0CvPD0AvcbV4B4VxrBOCl6dqO0Cstory0Bhtml/story01.htm","description":"HELSINKI (AP) — Nokia Corp. says the sale of its mobile phone unit to Microsoft will be delayed until next month because it is still waiting for approval from regulatory authorities in Asia.","domain":"boston.com","topic":"Business","num_docs":"65","num_images":"7","num_videos":"0","time_since":"01:05:24","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/015090e2","rep_image_caption":"Nokia Sale of Handset Business to Microsoft Delayed to April","url_id":"944835605","feed_name":null},{"title":"Navy breaks down ice camp north of Alaska","cluster_id":"35610638","url":"http://feeds.boston.com/c/35022/f/646951/s/388fd83e/sc/10/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Cnavy0Ebreaks0Edown0Eice0Ecamp0Enorth0Ealaska0CjT0Aan8FOfRHtRQyi4k4ahJ0Cstory0Bhtml/story01.htm","description":"ANCHORAGE, Alaska (AP) — Cracks in polar sea ice are prompting the Navy to break down an ice camp north of Alaska that provided support for an exercise involving submarines.","domain":"boston.com","topic":"General","num_docs":"12","num_images":"2","num_videos":"0","time_since":"00:13:38","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c004","rep_image_caption":"Submarine Ice Camp","url_id":"946194066","feed_name":null},{"title":"Wisconsin offers income tax filing assistance","cluster_id":"35583691","url":"http://www.channel3000.com/news/wisconsin-offers-income-tax-filing-assistance/25150628","description":"The Wisconsin Department of Revenue is reminding taxpayers of a variety of resources it is offering to help as the deadline for filing income tax returns nears. The April 15 filing deadline is just three weeks away. The Revenue Department's website has instructional videos, links to forms and common questions, as well as a new mobile app with the most popular tax-related online services. There are also more than 200 sites across the state where free income tax filing assistance is available for...","domain":"channel3000.com","topic":"Health","num_docs":"14","num_images":"1","num_videos":"0","time_since":"00:00:37","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ba89","rep_image_caption":"1 in 10 will be eligible for 2013 breaks, so check before you fileLow income families, college students, parents who adopted children last year and educators who paid for classroom supplies and others will save $49 million in 2013 taxes because of the new law. That break will be shared by more than 250,000 taxpayers. Article by: Rachel E. Stassen-Berger , Star Tribune Updated: March 24, 2014 - 8:57 PM","url_id":"947343006","feed_name":"WISC"},{"title":"Ceremony honours 'The Great Escape'","cluster_id":"35587330","url":"http://www.bbc.co.uk/news/uk-26706141#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"A ceremony to commemorate the Great Escape, the famous breakout from German prisoner of war camp Stalag Luft III in 1944, is due to take place later.","domain":"bbc.co.uk","topic":"Entertainment","num_docs":"19","num_images":"16","num_videos":"0","time_since":"01:10:48","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d179","rep_image_caption":"British officers marching to mark 'Great Escape'","url_id":"944333884","feed_name":"BBC News"},{"title":"US contractor liable for worker abuse","cluster_id":"35615764","url":"http://www.bangkokpost.com/news/local/401679/us-contractor-liable-for-thai-worker-abuse","description":"HONOLULU - A federal judge has found a US labour contractor liable for discrimination and abuse of hundreds of Thai workers at Hawaii farms.","domain":"bangkokpost.com","topic":"General","num_docs":"14","num_images":"0","num_videos":"0","time_since":"00:02:54","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"947096557","feed_name":"Bangkok Post"},{"title":"US lobbies Vatican for pope visit in 2015","cluster_id":"35579813","url":"http://feeds.boston.com/c/35022/f/646951/s/38965884/sc/10/l/0L0Sboston0N0Cnews0Cworld0Ceurope0C20A140C0A30C250Clobbies0Evatican0Efor0Epope0Evisit0CBMJSLCIklelm5HtKg1Z9BJ0Cstory0Bhtml/story01.htm","description":"VATICAN CITY (AP) — U.S. officials have made their case to the Vatican for Pope Francis to visit the U.S. next year, saying his \"message needs to be heard\" during a massive church celebration of the family planned for Philadelphia.","domain":"boston.com","topic":"General","num_docs":"23","num_images":"3","num_videos":"0","time_since":"00:01:10","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d003","rep_image_caption":"Vatican Pope","url_id":"947281804","feed_name":null},{"title":"GOP's Gardner reverses position on 'personhood'","cluster_id":"35605755","url":"http://feeds.boston.com/c/35022/f/646951/s/388f6d25/sc/7/l/0L0Sboston0N0Cnews0Cpolitics0C20A140C0A30C240Cgop0Egardner0Ereverses0Eposition0Epersonhood0C1eXRm6aW38XEwidWYEu6gN0Cstory0Bhtml/story01.htm","description":"DENVER (AP) — Republican Rep. Cory Gardner says he's changed his position and now opposes measures to grant a fertilized egg the same legal protections as a person.","domain":"boston.com","topic":"Health","num_docs":"13","num_images":"1","num_videos":"0","time_since":"00:16:45","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c601","rep_image_caption":"FILE - In this March 1, 2014, file photo, Colorado Republican Rep. Cory Gardner shakes hands with supporters at an event to officially announce his candidacy for the U.S. Senate in Denver. Gardner’s reversal on the issue of personhood reflects a political assessment of the Colorado electorate. Female voters have been a significant force in determining the outcome of presidential and Senate races in the state. No Republican has won a top-of-the-ticket election in Colorado since 2004. Gardner will run against Democratic Sen. Mark Udall. CHRIS SCHNEIDER, FILE — AP Photo ","url_id":"945932054","feed_name":null},{"title":"Ethic panel continues ethics review of GOP leader","cluster_id":"35613251","url":"http://rssfeeds.usatoday.com/~r/usatoday-NewsTopStories/~3/CDu8Yh2rfyM/","description":"Ethics investigators say McMorris Rodgers may have mixed official and campaign funds.","domain":"usatoday.com","topic":"General","num_docs":"17","num_images":"4","num_videos":"0","time_since":"00:17:04","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bda2","rep_image_caption":" Rep. Cathy McMorris Rodgers","url_id":"945904868","feed_name":"USA Today"},{"title":"خمس مواجهات تاريخية بين ريال وبرشلونة","cluster_id":"35581732","url":"http://www.aljazeera.net/Home/GetPage/f6451603-4dff-4ca1-9c10-122741d17432/a7f796d2-d2ee-42ee-bf22-42eb100230c6","description":"تحمل المواجهة اليوم بين ريال مدريد المتصدر وبرشلونة الثالث الرقم 227 في تاريخ لقاءاتهما، لكن أبرز هذه المواجهات خمس تبقى على قدر كبير من الأهمية.","domain":"aljazeera.net","topic":"Sports","num_docs":"84","num_images":"119","num_videos":"1","time_since":"01:03:34","translate_title":null,"rep_image_url":"http://media.thestate.com/smedia/2014/03/25/08/45/925-1kszxI.AuSt.55.jpeg","rep_image_caption":"Spain Soccer La Liga","url_id":"944990661","feed_name":"الجزيرة - Al Jazeera"},{"title":"Pelicans rally from 22 down, knock off Nets in OT","cluster_id":"35606626","url":"http://www.cbssports.com/nba/gametracker/recap/NBA_20140324_BKN@NO/pelicans-rally-from-22-down-defeat-nets-in-ot","description":"Tyreke Evans scored a season-high 33 points and the short-handed New Orleans Pelicans ralled from 22 down in the third quarter, beating the Brooklyn Nets 109-104 in overtime Monday night.","domain":"cbssports.com","topic":"Sports","num_docs":"14","num_images":"2","num_videos":"0","time_since":"00:06:29","translate_title":null,"rep_image_url":"http://sports.cbsimg.net/u/photos/baseball/mlb/img24499630.jpg","rep_image_caption":"Tyreke Evans pours in a season-high 33 points, and the Pelicans storm back from 22 down to win in overtime. ","url_id":"946761786","feed_name":"CBS SportsLine.com"},{"title":"NYC museum dedicated to 9/11 victims opens May 21","cluster_id":"35605466","url":"http://www.miamiherald.com/2014/03/24/4015215/nyc-museum-dedicated-to-911-victims.html","description":"A long-awaited museum dedicated to the victims of the Sept. 11 terror attacks will open to the public at the World Trade Center site on May 21, officials announced Monday.","domain":"miamiherald.com","topic":"Entertainment","num_docs":"44","num_images":"6","num_videos":"0","time_since":"00:23:47","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150abaa","rep_image_caption":"In this file photo of June 19, 2011, a damaged New York Fire Department truck is stored in Hangar 17 at John F. Kennedy International Airport in New York.","url_id":"945336499","feed_name":null},{"title":"Kentucky ends Wichita State's perfect run, 78-76","cluster_id":"35580839","url":"http://www.miamiherald.com/2014/03/23/4013819/kentucky-ends-wichita-states-perfect.html","description":"John Calipari stood frozen on the Kentucky sideline. Every player on the Wichita State bench held his breath. Everything seemed to stop inside the Scottrade Center as Fred VanVleet let loose with a 3-pointer that could have kept the Shockers perfect.","domain":"miamiherald.com","topic":"Sports","num_docs":"89","num_images":"50","num_videos":"0","time_since":"01:10:44","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bb7e","rep_image_caption":"Gregg Marshall, Tekele Cotton","url_id":"944340952","feed_name":null},{"title":"Venezuela unveils new currency market","cluster_id":"35611780","url":"http://feeds.boston.com/c/35022/f/646951/s/388f6a4f/sc/2/l/0L0Sboston0N0Cnews0Cworld0Clatin0Eamerica0C20A140C0A30C240Cvenezuela0Eunveils0Enew0Ecurrency0Emarket0C12jb3ASClt2GlLUykJklKN0Cstory0Bhtml/story01.htm","description":"CARACAS, Venezuela (AP) — President Nicolas Maduro's cash-strapped government unveiled a new currency market Monday that allows Venezuelans to buy and sell dollars legally for the first time since 2010.","domain":"boston.com","topic":"Business","num_docs":"15","num_images":"2","num_videos":"0","time_since":"00:16:56","translate_title":null,"rep_image_url":"http://ep01.epimg.net/economia/imagenes/2014/03/25/actualidad/1395740817_055663_1395743447_noticia_normal.jpg","rep_image_caption":"El presidente de Venezuela, Nicols Maduro. / SANTI DONAIRE(EFE)","url_id":"945916793","feed_name":null},{"title":"Brooklyn Nets owner says plans to bring club under Russian jurisdiction","cluster_id":"35609216","url":"http://feeds.reuters.com/~r/reuters/sportsNews/~3/IPu-amfRnUw/story01.htm","description":"MOSCOW (Reuters) - A Russian billionaire said on Monday he planned to relocate his company that runs the Brooklyn Nets basketball team to Russia in keeping with the Kremlin's call on Russian businessmen to repatriate their assets to help combat new U.S. sanctions.","domain":"mobile.reuters.com","topic":"General","num_docs":"17","num_images":"2","num_videos":"0","time_since":"00:20:53","translate_title":null,"rep_image_url":"http://news.yahoo.com/prokhorov-says-transferring-brooklyn-nets-ownership-russia-172007557--nba.html","rep_image_caption":"Russian billionaire Mikhail Prokhorov speaks at his press conference in Moscow, on June 13, 2013","url_id":"945589643","feed_name":"Reuters"},{"title":"Chinese relatives promise 'revenge'","cluster_id":"35607596","url":"http://www.bangkokpost.com/news/asia/401636/chinese-relatives-promise-revenge","description":"BEIJING - Malaysian Prime Minister Najib Razak announced new evidence indicating that Malaysian Airlines flight MH370 had crashed in the Indian Ocean, with no chance of survivors among the 239 passengers and crew.","domain":"bangkokpost.com","topic":"General","num_docs":"11","num_images":"0","num_videos":"0","time_since":"00:09:57","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"946490867","feed_name":"Bangkok Post"},{"title":"China wants explanation on US spying","cluster_id":"35581135","url":"http://www.bbc.co.uk/news/world-asia-26712564#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"China demands a clear explanation from the United States following reports that it infiltrated the servers of the Chinese telecoms giant, Huawei.","domain":"bbc.co.uk","topic":"General","num_docs":"79","num_images":"11","num_videos":"0","time_since":"01:03:33","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bc59","rep_image_caption":"National Security Agency leaker Edward Snowden.","url_id":"944992282","feed_name":"BBC News"},{"title":"Evangelical charity to hire married gay Christians","cluster_id":"35614646","url":"http://feeds.boston.com/c/35022/f/646951/s/388f7257/sc/7/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Cevangelical0Echarity0Ehire0Emarried0Egay0Echristians0CpSwlfdY7nMu8X6VFLIZFkP0Cstory0Bhtml/story01.htm","description":"NEW YORK (AP) — One of the most prominent evangelical charities in the country will start hiring Christians in same-sex marriages.","domain":"boston.com","topic":"General","num_docs":"16","num_images":"1","num_videos":"0","time_since":"00:15:58","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b2fd","rep_image_caption":"Evangelical charity to hire married gay ChristiansThe prominent Christian relief agency World Vision said Monday it will hire Christians who are in same-sex marriages, a dramatic policy change on one of the most divisive social issues facing religious groups. Article by: RACHEL ZOLL , Associated Press Updated: March 24, 2014 - 5:58 PM","url_id":"945997134","feed_name":null},{"title":"Lots of favorites in Sweet 16","cluster_id":"35580862","url":"http://www.miamiherald.com/2014/03/24/4014859/lots-of-favorites-in-sweet-16.html","description":"The Billion Dollar Dream has been over for a while. Most bracket sheets are loaded with red X's. Still, there is plenty of March Madness ahead of us in the NCAA tournament's round of 16.","domain":"miamiherald.com","topic":"Sports","num_docs":"94","num_images":"38","num_videos":"0","time_since":"01:05:30","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c05c","rep_image_caption":"Duke's Elizabeth Williams drives and encounters tough defense from Chanise Jenkins (13) and a DePaul teammate during Monday’s NCAA second-round game in Durham, N.C. DePaul beat second-seeded Duke 74-65.","url_id":"944824792","feed_name":null},{"title":"Mark Cuban is right to warn about greed, but the NFL is smart enough to adjust","cluster_id":"35582189","url":"http://seattletimes.com/html/larrystone/2023218142_stone25xml.html?syndication=rss","description":"NFL has the brain trust to stay in its prominent position in the sports world","domain":"seattletimes.com","topic":"Entertainment","num_docs":"33","num_images":"9","num_videos":"0","time_since":"00:08:45","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b97e","rep_image_caption":"Mark Cuban attends DIRECTV's Super Saturday Night Party on Saturday, Feb. 1, 2014 in New York. (Photo by Charles Sykes/Invision/AP) -- INVW","url_id":"946578370","feed_name":"Seattle Times"},{"title":"Is 'Noah' sacred enough?","cluster_id":"35588678","url":"http://rss.cnn.com/~r/rss/cnn_topstories/~3/ivSKBLYDJvo/index.html","description":"Can a secular, Hollywood insider make a religious movie Americans can fully, warmly embrace and -- wait for it -- actually learn from?","domain":"cnn.com","topic":"Entertainment","num_docs":"22","num_images":"5","num_videos":"2","time_since":"00:23:51","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c6b1","rep_image_caption":"This image released by Paramount Pictures shows director Darren Aronofsky, left, and actor Russell Crowe on the set of &quot;Noah.&quot;","url_id":"945331009","feed_name":"CNN"},{"title":"Brown works to overcome residency questions","cluster_id":"35592573","url":"http://feeds.boston.com/c/35022/f/646951/s/3892f9a4/sc/8/l/0L0Sboston0N0Cnews0Clocal0Cnew0Ehampshire0C20A140C0A30C250Cbrown0Eworks0Eovercome0Eresidency0Equestions0CtY4aE3gTNg0A4p8eHEjtTXL0Cstory0Bhtml/story01.htm","description":"MANCHESTER, N.H. (AP) — Scott Brown is working to convince New Hampshire voters he is one of them.","domain":"boston.com","topic":"General","num_docs":"16","num_images":"8","num_videos":"0","time_since":"00:05:34","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c88b","rep_image_caption":"Photo by:The Associated Press This photo taken March 22, 2014, shows former Massachusetts Sen. Scott Brown in his pick-up truck in Tilton, N.H. as he makes his way through the state. Brown is fighting to re-write political history as he tours New Hampshire. But there are early signs that the state's notoriously feisty voters may be reluctant to embrace the recent Republican transplant. Brown joined New Hampshire’s U.S. Senate race roughly a week ago. He moved to the state 13 weeks ago. Brown is trying to become the third person to serve more than one state in the Senate. The last one was elected more than two centuries ago. His residency figures to play prominently in his quest to defeat Democratic Sen. Jeanne Shaheen this fall. (AP Photo/Jim Cole) ","url_id":"946848011","feed_name":null},{"title":"Staff 'speechless' at flamingo deaths","cluster_id":"35606174","url":"http://www.bbc.co.uk/news/blogs-news-from-elsewhere-26714665#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"The mysterious killing of 15 flamingos at Frankfurt Zoo shocks staff and puzzles police.","domain":"bbc.co.uk","topic":"General","num_docs":"25","num_images":"19","num_videos":"0","time_since":"00:20:48","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa4","rep_image_caption":"Flamingos ","url_id":"945596800","feed_name":"BBC News"},{"title":"HRW: Syrian regime's barrel bombs \"terrorize\" Aleppo despite UN resolution","cluster_id":"35602459","url":"http://www.albawaba.com/conflict-syria/syria-barrel-bombs-563867","description":"No description","domain":"m.albawaba.com","topic":"General","num_docs":"10","num_images":"1","num_videos":"0","time_since":"00:06:41","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b401","rep_image_caption":" \nThis picture taken on Wednesday, March 5, 2014, provided by the anti-government activist group Aleppo Media Center (AMC), which has been authenticated based on its contents and other AP reporting, shows Syrians inspecting the rubble of a destroyed buildings following a Syrian government airstrike in Aleppo, Syria. \n","url_id":"946746072","feed_name":"Al Bawaba"},{"title":"Unbranded cigarettes could mean people smoke more, experts warn","cluster_id":"35593544","url":"http://telegraph.feedsportal.com/c/32726/f/534871/s/38901193/sc/30/l/0L0Stelegraph0O0Chealth0Cchildren0Ishealth0C10A7197390CUnbranded0Ecigarettes0Ecould0Emean0Epeople0Esmoke0Emore0Eexperts0Ewarn0Bhtml/story01.htm","description":"Unbranded cigarette packs could mean people smoke more, experts warn","domain":"telegraph.co.uk","topic":"Health","num_docs":"38","num_images":"7","num_videos":"0","time_since":"00:14:26","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ceb3","rep_image_caption":"The new data from the tobacco industry suggests that the plain packaging in Australia has actually increased sales of cigarettes and loose tobacco, the reverse effect from the agenda of plain packaging","url_id":"946126531","feed_name":null},{"title":"Indiana withdrawing from Common Core standards","cluster_id":"35599961","url":"http://seattletimes.com/html/nationworld/2023215070_apxcommoncoreindiana.html?syndication=rss","description":"Indiana on Monday became the first state to formally withdraw from the Common Core education standards in a move that did little to appease critics of the national program, who contend the state is simply stripping the \"Common Core\" label while largely keeping the benchmarks.","domain":"seattletimes.com","topic":"General","num_docs":"36","num_images":"3","num_videos":"0","time_since":"00:09:20","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150aaac","rep_image_caption":"FILE - This Jan. 14, 2014 file photo shows former Florida Gov. Jeb Bush talking about education reform during a forum in Nashville, Tenn. More than five years after governors from both major parties began a mostly quiet effort to set new standards in American schools, the so-called Common Core initiative has morphed into a political tempest that fuels division among Republicans. Bush hails Common Core as a way to improve student performance and, over the long term, competitiveness of American workers. (AP Photo/Mark Humphrey, File)","url_id":"946531264","feed_name":"Seattle Times"},{"title":"RiRi earns prestigious fashion icon award","cluster_id":"35607913","url":"http://www.iol.co.za/riri-earns-prestigious-fashion-icon-award-1.1666009","description":"No description","domain":"iol.co.za","topic":"Entertainment","num_docs":"21","num_images":"18","num_videos":"0","time_since":"00:00:17","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bf30","rep_image_caption":"Style icon: Rihanna (pictured here at last month's Chanel show), will be honored as the year's biggest fashion icon at the CFDA Awards","url_id":"947374455","feed_name":"Independent Online"},{"title":"Senate Democrats push back on Nate Silver forecast","cluster_id":"35604426","url":"http://rssfeeds.usatoday.com/~r/usatoday-NewsTopStories/~3/Z_sHy4LPiQs/","description":"Senate Democratic campaign arm pushes back on political forecast on Nate Silver's popular blog.","domain":"onpolitics.usatoday.com","topic":"General","num_docs":"16","num_images":"3","num_videos":"1","time_since":"00:22:33","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150a7f7","rep_image_caption":"Nate Silver arrives at the 30th Edinburgh International Book Festival, Aug. 13, 2013.","url_id":"945444200","feed_name":"USA Today"},{"title":"Stacy Keibler says she's pregnant with 1st child","cluster_id":"35609509","url":"http://hosted.ap.org/dynamic/stories/U/US_PEOPLE_STACY_KEIBLER?SITE=AZPHG&SECTION=HOME&TEMPLATE=DEFAULT","description":"NEW YORK (AP) -- Stacy Keibler and her husband, Jared Pobre, are expecting their first child together....","domain":"hosted.ap.org","topic":"Entertainment","num_docs":"22","num_images":"8","num_videos":"0","time_since":"00:17:54","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b2a8","rep_image_caption":"Left: Stacy Keibler and husband Jared Pobre are seen in a photo posted on her Instagram page on Feb. 22, 2014. Right: Stacy Keibler posted this photo of a bun in an oven to announce her pregnancy via Twitter and Instagram on Monday, March 24, 2014.","url_id":"945837111","feed_name":"Associated Press"},{"title":"Arkadin lanza soluciones de videoconferencia en la nube en México","cluster_id":"35580233","url":"http://www.marketwired.com/mw/release.do?id=1892135&sourceType=3","description":"No description","domain":"marketwired.com","topic":"Entertainment","num_docs":"658","num_images":"89","num_videos":"4","time_since":"00:00:18","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bcb1","rep_image_caption":"A l’attention du grand romancier Algrien Waciny Laradj","url_id":"947373720","feed_name":"Market Wire"},{"title":"Mexico detains oil executive for possible fraud","cluster_id":"35598851","url":"http://feeds.boston.com/c/35022/f/646951/s/388ed75f/sc/24/l/0L0Sboston0N0Cnews0Cworld0Clatin0Eamerica0C20A140C0A30C240Cmexico0Edetains0Eoil0Eexecutive0Efor0Epossible0Efraud0CVsEWlQUzDVW6YMzXAevnuJ0Cstory0Bhtml/story01.htm","description":"MEXICO CITY (AP) — Mexican authorities have detained the owner of a Mexican oil services company who allegedly defrauded Citigroup and may have used his professional soccer team to launder money.","domain":"boston.com","topic":"General","num_docs":"18","num_images":"3","num_videos":"0","time_since":"00:17:16","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bc7a","rep_image_caption":"A branch of Mexican Banamex bank, pictured in Mexico City, on November 23, 2009","url_id":"945889229","feed_name":null},{"title":"Chileans worry over string of 300 quakes in north","cluster_id":"35581939","url":"http://feeds.boston.com/c/35022/f/646951/s/38923cb4/sc/8/l/0L0Sboston0N0Cnews0Cworld0Clatin0Eamerica0C20A140C0A30C240Cchileans0Eworry0Eover0Estring0Equakes0Enorth0C9Ai9hWJX3ch0AQChs6QJLeI0Cstory0Bhtml/story01.htm","description":"SANTIAGO, Chile (AP) — More than 300 earthquakes have shaken Chile's far-northern coast the past week, keeping people on edge as scientists say there is no way to tell if the unusual string of tremors is a harbinger of an impending disaster.","domain":"boston.com","topic":"SciTech","num_docs":"15","num_images":"10","num_videos":"0","time_since":"00:08:43","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c8da","rep_image_caption":"Chile Earthquake Worries","url_id":"946581139","feed_name":null},{"title":"JavaScript creator takes Mozilla helm","cluster_id":"35612970","url":"http://rss.feedsportal.com/c/270/f/470440/s/3893fb4c/sc/23/l/0Lnews0Btechworld0N0Capplications0C350A82540Cjavascript0Ecreator0Etakes0Emozilla0Ehelm0C0Dolo0Frss/story01.htm","description":"JavaScript creator and Brendan Eich has taken over the CEO spot at the Mozilla Corporation, continuing the company's charge into mobile platforms.","domain":"mobile.techworld.com","topic":"SciTech","num_docs":"10","num_images":"2","num_videos":"0","time_since":"00:03:22","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b8a7","rep_image_caption":"Brendan Eich ","url_id":"947047639","feed_name":"Techworld.com"},{"title":"Adam McKay to direct finance drama 'The Big Short'","cluster_id":"35609937","url":"http://hosted.ap.org/dynamic/stories/U/US_FILM_THE_BIG_SHORT?SITE=AZPHG&SECTION=HOME&TEMPLATE=DEFAULT","description":"NEW YORK (AP) -- In a shift to drama, Adam McKay will write and direct an adaptation of Michael Lewis' financial crisis best-seller \"The Big Short: The Doomsday Machine.\"...","domain":"hosted.ap.org","topic":"Entertainment","num_docs":"14","num_images":"4","num_videos":"0","time_since":"00:19:15","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150aa47","rep_image_caption":"Film-The Big Short","url_id":"945727804","feed_name":"Associated Press"},{"title":"Cardinals linebacker pleads guilty in assault case","cluster_id":"35615397","url":"http://www.miamiherald.com/2014/03/24/4015841/cardinals-linebacker-pleads-guilty.html","description":"Arizona Cardinals linebacker Daryl Washington pleaded guilty Monday to charges that he assaulted his ex-girlfriend last year.","domain":"miamiherald.com","topic":"Sports","num_docs":"11","num_images":"0","num_videos":"0","time_since":"00:14:46","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"946098015","feed_name":null},{"title":"Audio Captures Confusion Of Southwest Wrong-Airport Landing","cluster_id":"35609208","url":"http://dfw.cbslocal.com/2014/03/24/audio-captures-confusion-of-southwest-wrong-airport-landing/","description":"No description","domain":"dfw.cbslocal.com","topic":"General","num_docs":"12","num_images":"7","num_videos":"0","time_since":"00:11:59","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b2fe","rep_image_caption":"Audio captures confusion of wrong-airport landingA newly released air traffic control recording captures the confusion when a Southwest plane landed at the wrong Missouri airport in January. Article by: Associated Press Updated: March 24, 2014 - 5:55 PM","url_id":"946328639","feed_name":null},{"title":"Box office: 'Divergent' tops while 'Muppets' flop","cluster_id":"35615078","url":"http://seattletimes.com/html/movies/2023212382_apxboxoffice.html?syndication=rss","description":"With sequels already in the works, the young-adult franchise-in-the-making \"Divergent\" opened with $54.6 million.","domain":"seattletimes.com","topic":"Entertainment","num_docs":"12","num_images":"0","num_videos":"0","time_since":"00:15:19","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"946050590","feed_name":"Seattle Times"},{"title":"'Good Wife' leaves viewers shocked, bereaved","cluster_id":"35598257","url":"http://www.miamiherald.com/2014/03/24/4014728/good-wife-leaves-viewers-shocked.html","description":"Viewers of \"The Good Wife\" were gobsmacked by the sudden, unexpected death of its dashing attorney, Will Gardner, on Sunday's episode of the CBS legal drama.","domain":"miamiherald.com","topic":"Entertainment","num_docs":"48","num_images":"12","num_videos":"1","time_since":"01:07:55","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bd59","rep_image_caption":"Josh Charles on David Letterman to Talk Good Wife Death","url_id":"944599752","feed_name":null},{"title":"Health care, tech names lead decline in US stocks","cluster_id":"35613446","url":"http://www.miamiherald.com/2014/03/24/4015937/health-care-tech-names-lead-decline.html","description":"Weakness in the health care and technology sectors dragged the U.S. stock market lower.","domain":"miamiherald.com","topic":"Business","num_docs":"18","num_images":"7","num_videos":"0","time_since":"00:16:23","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150aed0","rep_image_caption":"FILE - In this Wednesday, March 19, 2014, file photo, Specialist Meric Greenbaum works at his post on the floor of the New York Stock Exchange. 2014. U.S. stocks are falling in midday trading Monday, March 24, 2014, as tensions with Russia escalate. RICHARD DREW, FILE — AP Photo ","url_id":"945961602","feed_name":null},{"title":"Bulls topple Pacers in typical physical tussle","cluster_id":"35588880","url":"http://www.ledger-enquirer.com/2014/03/24/3022042/bulls-topple-pacers-in-typical.html#storylink=rss","description":"No description","domain":"ledger-enquirer.com","topic":"Sports","num_docs":"18","num_images":"6","num_videos":"0","time_since":"00:06:07","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c0e3","rep_image_caption":"Chicago's Carlos Boozer battles Indiana's Paul George for a loose ball. (Jonathan Daniel/Getty Images)","url_id":"946794145","feed_name":null},{"title":"Andrea Bocelli marries longtime companion Berti","cluster_id":"35601723","url":"http://www.miamiherald.com/2014/03/24/4016107/andrea-bocelli-marries-longtime.html","description":"Singer Andrea Bocelli has wed longtime companion Veronica Berti.","domain":"miamiherald.com","topic":"Entertainment","num_docs":"12","num_images":"6","num_videos":"0","time_since":"00:16:10","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bd03","rep_image_caption":"This March 2, 2010 file photo shows Italian tenor Andrea Bocelli, right, and Veronica Berti pose at the dedication ceremonies for his new star on the Hollywood Walk of Fame in Los Angeles. Reps for Bocelli announced Monday, March 24, 2014, that Bocelli and his companion Veronica Berti married on March 21. (AP Photo/Reed Saxon, File)","url_id":"945980606","feed_name":null},{"title":"Legal questions abound over same-sex marriages in Mich.","cluster_id":"35580820","url":"http://rssfeeds.usatoday.com/~r/usatoday-NewsTopStories/~3/XLH1kkyC4cE/","description":"Michigan won't say if it recognizes the marriages as it waits for decision from court.","domain":"usatoday.com","topic":"General","num_docs":"95","num_images":"16","num_videos":"2","time_since":"01:10:43","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/015082e5","rep_image_caption":"Gay Marriage Michigan","url_id":"944342889","feed_name":"USA Today"},{"title":"Canada 'webcam killer' in plea offer","cluster_id":"35586516","url":"http://www.bbc.co.uk/news/world-us-canada-26687073#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"A Toronto man accused of killing a Chinese student whose last moments were witnessed via webcam by her boyfriend offers to admit manslaughter.","domain":"bbc.co.uk","topic":"Entertainment","num_docs":"19","num_images":"14","num_videos":"0","time_since":"01:10:49","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b696","rep_image_caption":"Brian Dickson allegedly used the online name dj_jake_the_snake to talk online about sexual fantasies and drug use","url_id":"944330817","feed_name":"BBC News"},{"title":"Feds probe San Diego police misconduct","cluster_id":"35614778","url":"http://feeds.boston.com/c/35022/f/646951/s/388fcdaf/sc/42/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Cfeds0Eprobe0Esan0Ediego0Epolice0Emisconduct0C1SPAWsxSEkjq7AVGzPZf4O0Cstory0Bhtml/story01.htm","description":"SAN DIEGO (AP) — Federal officials are conducting two separate probes into the San Diego Police Department that has been besieged by more than a dozen cases of officer misconduct, ranging from drunken driving to rape, city and federal officials announced Monday.","domain":"boston.com","topic":"General","num_docs":"12","num_images":"1","num_videos":"0","time_since":"00:15:45","translate_title":null,"rep_image_url":"http://media.theolympian.com/smedia/2014/03/24/19/59/485-oG3kg.AuSt.55.jpeg","rep_image_caption":"San Diego Police Review","url_id":"946016618","feed_name":null},{"title":"UN: Haiti has more cholera than any other nation","cluster_id":"35595742","url":"http://feeds.boston.com/c/35022/f/646951/s/388f725a/sc/13/l/0L0Sboston0N0Cnews0Cworld0Cunited0Enations0C20A140C0A30C240Chaiti0Ehas0Emore0Echolera0Ethan0Eany0Eother0Enation0CxYdjpq3BhwOfHjWiDQuelO0Cstory0Bhtml/story01.htm","description":"UNITED NATIONS (AP) — The top United Nations envoy to Haiti says that country's cholera outbreak is still the worst in the world.","domain":"boston.com","topic":"Health","num_docs":"10","num_images":"1","num_videos":"0","time_since":"00:15:58","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b932","rep_image_caption":"UN: Haiti has more cholera than any other nation, Manila Bulletin, Haiti, Cholera, outbreak, United Nations, Sandra Honore, Security Council, Haiti, crime rate, public health, UN: Haiti has more cholera than any other nation, Manila Bulletin, Haiti, Cholera, outbreak, United Nations, Sandra Honore, Security Council, Haiti, crime rate, public health, UN: Haiti has more cholera than any other nation, Manila Bulletin, Haiti, Cholera, outbreak, United Nations, Sandra Honore, Security Council, Haiti, crime rate, public health, UN: Haiti has more cholera than any other nation, Manila Bulletin, Haiti, Cholera, outbreak, United Nations, Sandra Honore, Security Council, Haiti, crime rate, public health, ","url_id":"945997140","feed_name":null},{"title":"Venezuela to punish 'excesses' against protesters","cluster_id":"35581440","url":"http://rssfeeds.usatoday.com/~r/UsatodaycomWorld-TopStories/~3/BpVGXBC_UQc/","description":"The country's attorney general said 15 police officers have been arrested.","domain":"usatoday.com","topic":"General","num_docs":"44","num_images":"24","num_videos":"1","time_since":"01:10:57","translate_title":null,"rep_image_url":"http://ep01.epimg.net/internacional/imagenes/2014/03/24/actualidad/1395701671_050646_1395701792_noticia_normal.jpg","rep_image_caption":"Machado, el viernes frente a la sede de la OEA. / LENIN NOLLY(EFE)","url_id":"944314615","feed_name":null},{"title":"Errol Flynn widow Wymore dies at 87","cluster_id":"35588692","url":"http://www.bbc.co.uk/news/entertainment-arts-26728702#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"Actress Patrice Wymore, the widow of swashbuckling Hollywood actor Errol Flynn, dies in Jamaica at the age of 87.","domain":"bbc.co.uk","topic":"Entertainment","num_docs":"20","num_images":"7","num_videos":"0","time_since":"00:04:32","translate_title":null,"rep_image_url":"http://www-deadline-com.vimg.net/wp-content/uploads/2014/03/patrice-wymore__140325103112-150x150.jpg","rep_image_caption":"patrice wymore","url_id":"946940848","feed_name":"BBC News"},{"title":"Colo. court says lawyers can advise pot clients","cluster_id":"35613114","url":"http://feeds.boston.com/c/35022/f/646951/s/388e65ca/sc/7/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Ccolo0Ecourt0Esays0Elawyers0Ecan0Eadvise0Epot0Eclients0CXTPs0Az8ptgP93LCDvEijHN0Cstory0Bhtml/story01.htm","description":"DENVER (AP) — Colorado's Supreme Court says attorneys in the state can advise marijuana businesses on how to navigate the industry's legal complexities without fear of violating state ethics rules.","domain":"boston.com","topic":"Health","num_docs":"10","num_images":"0","num_videos":"0","time_since":"00:17:23","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945879437","feed_name":null},{"title":"What clues could wreckage bring?","cluster_id":"35610229","url":"http://edition.cnn.com/2014/03/24/world/asia/missing-jet-clues/index.html?eref=edition","description":"With the search for the wreckage of Malaysia Airlines Flight 370 now concentrated in the southern Indian Ocean, any debris found could give investigators some clues as to what happened to the jetliner.","domain":"edition.cnn.com","topic":"SciTech","num_docs":"29","num_images":"0","num_videos":"1","time_since":"00:18:09","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945816090","feed_name":"CNN"},{"title":"Steyn inspires South Africa victory","cluster_id":"35601541","url":"http://www.bbc.co.uk/sport/0/cricket/26714269","description":"Dale Steyn bowls South Africa to a thrilling two-run victory over New Zealand in the World Twenty20 in Bangladesh.","domain":"bbc.co.uk","topic":"Sports","num_docs":"32","num_images":"22","num_videos":"0","time_since":"00:23:46","translate_title":null,"rep_image_url":"http://news.yahoo.com/du-plessis-hails-steyn-last-ball-heroics-061624259--spt.html","rep_image_caption":"South Africa&#39;s Dale Steyn (3nd R) celebrates the wicket of New Zealand&#39;s Nathan McCullum during their World Twenty20 in Chittagong on March 24, 2014","url_id":"945337482","feed_name":"BBC News"},{"title":"Latinos being left behind in health care overhaul","cluster_id":"35610221","url":"http://hosted.ap.org/dynamic/stories/U/US_HEALTH_OVERHAUL_HISPANICS?SITE=FLTAM&SECTION=HOME&TEMPLATE=DEFAULT","description":"WASHINGTON (AP) -- The nation's largest minority group risks being left behind by President Barack Obama's health care overhaul....","domain":"hosted.ap.org","topic":"Health","num_docs":"21","num_images":"12","num_videos":"0","time_since":"00:19:45","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b3b1","rep_image_caption":"Health Overhaul Hispanic","url_id":"945686994","feed_name":"Associated Press"},{"title":"Seahawks sit, wait on Jared Allen’s decision","cluster_id":"35609702","url":"http://seattletimes.com/html/seahawks/2023218263_seahawks25xml.html?syndication=rss","description":"Offensive lineman Paul McQuistan, a 14-game starter for Seattle in 2013, signs with Cleveland Browns.","domain":"seattletimes.com","topic":"Sports","num_docs":"30","num_images":"4","num_videos":"0","time_since":"00:11:09","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bb8e","rep_image_caption":"Offensive lineman Paul McQuistan.","url_id":"946395177","feed_name":"Seattle Times"},{"title":"Austrian politician compares EU with 3rd Reich","cluster_id":"35609479","url":"http://feeds.boston.com/c/35022/f/646951/s/388d909b/sc/7/l/0L0Sboston0N0Cnews0Cworld0Ceurope0C20A140C0A30C240Caustrian0Epolitician0Ecompares0Ewith0Ereich0Cpu4gihVlRys5ylv1PezFqN0Cstory0Bhtml/story01.htm","description":"VIENNA (AP) — The head of Vienna's Jewish community is urging that a far-right politician running for EU parliament withdraw his candidacy over his suggestion that Hitler's rule was more liberal than the European Union.","domain":"boston.com","topic":"General","num_docs":"13","num_images":"0","num_videos":"0","time_since":"00:19:31","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945706044","feed_name":null},{"title":"Nearly 100 dead in DR Congo boat accident","cluster_id":"35581783","url":"http://www.aljazeera.com/news/africa/2014/03/nearly-100-dead-dr-congo-boat-accident-2014324152341544888.html","description":"As many as 250 people may have been on vessel that capsized on Lake Albert after leaving Uganda, UN refugee agency says.","domain":"aljazeera.com","topic":"General","num_docs":"37","num_images":"8","num_videos":"0","time_since":"00:19:04","translate_title":null,"rep_image_url":"http://news.bbcimg.co.uk/media/images/73792000/jpg/_73792563_73792562.jpg","rep_image_caption":" Volunteers prepare to carry the bodies of people killed after a boat disaster on Lake Albert in Uganda (24 March 2014)","url_id":"945742748","feed_name":"Al Jazeera"},{"title":"Ohio mumps outbreak up to 56 reported cases, spreads beyond university","cluster_id":"35607805","url":"http://feeds.reuters.com/~r/Reuters/domesticNews/~3/rv4aawrp860/story01.htm","description":"(Reuters) - Some 56 cases of mumps have been reported in Ohio in an outbreak that started at Ohio State University in Columbus but has spread to people without ties to the school - a \"disturbing development,\" say public health officials.","domain":"mobile.reuters.com","topic":"Health","num_docs":"11","num_images":"0","num_videos":"0","time_since":"00:20:19","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945638229","feed_name":"Reuters"},{"title":"Jeb Bush, Hillary Clinton to discuss education","cluster_id":"35600056","url":"http://www.kentucky.com/2014/03/24/3158050/jeb-bush-hillary-clinton-to-discuss.html","description":"Their presidential plans may be uncertain but one thing is clear: Jeb Bush and Hillary Rodham Clinton keep bumping into each other.","domain":"kentucky.com","topic":"General","num_docs":"36","num_images":"15","num_videos":"0","time_since":"00:23:18","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ac9c","rep_image_caption":"Hillary Clinton (left) and Jeb Bush are pictured in this composite image. | AP Photos","url_id":"945378131","feed_name":null},{"title":"Democrat: Report clearing Gov. Christie incomplete","cluster_id":"35609086","url":"http://feeds.boston.com/c/35022/f/646951/s/388d8256/sc/7/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Cdemocrat0Ereport0Eclearing0Egov0Echristie0Eincomplete0CfDR8z0AmDaY3TxVZQFB89jM0Cstory0Bhtml/story01.htm","description":"TRENTON, N.J. (AP) — The head of a New Jersey legislative panel investigating a political payback plot says a review undertaken by Gov. Chris Christie's lawyers lacks credibility because it is missing information from key players.","domain":"boston.com","topic":"General","num_docs":"17","num_images":"0","num_videos":"0","time_since":"00:20:54","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945588914","feed_name":null},{"title":" \"دبلوماسية السيدات\" بين واشنطن وبكين","cluster_id":"35580760","url":"http://www.aljazeera.net/Home/GetPage/f6451603-4dff-4ca1-9c10-122741d17432/b9bf9bbc-3625-49ee-9f8d-3c3a2be25656","description":"بدأت سيدة البيت الأبيض ميشيل أوباما زيارة لافتة للصين تستغرق أسبوعاً كاملاً برفقة وفد عائلي من ثلاثة أجيال، إذ ترافقها ابنتاها ماليا وساشا ووالدتها ماريان روبنسون.","domain":"aljazeera.net","topic":"General","num_docs":"51","num_images":"45","num_videos":"0","time_since":"01:03:34","translate_title":null,"rep_image_url":"http://news.yahoo.com/us-first-lady-urges-chinese-students-aim-high-122204666.html","rep_image_caption":"U.S. first lady Michelle Obama meets the students as she visits an English language class at Chengdu No.7 High School in Chengdu in southwestern province of Sichuan, China Tuesday, March 25, 2014. Obama spoke to rural Chinese students via web conferencing Tuesday, at her last stop of the six-day China tour focusing on education and cultural exchange. (AP Photo/Andy Wong)","url_id":"944990650","feed_name":"الجزيرة - Al Jazeera"},{"title":"Camera used on moon landing sold for $758,489","cluster_id":"35602611","url":"http://feeds.boston.com/c/35022/f/646951/s/3889ba24/sc/8/l/0L0Sboston0N0Cnews0Cworld0Ceurope0C20A140C0A30C240Ccamera0Eused0Emoon0Elanding0Esold0Efor0CBMPFn63iwPceAQm2wmH5bL0Cstory0Bhtml/story01.htm","description":"VIENNA (AP) — It was put on auction as the only camera that made it to the moon and back. And it had its price — nearly $760,000.","domain":"boston.com","topic":"Entertainment","num_docs":"36","num_images":"13","num_videos":"0","time_since":"01:02:34","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ac08","rep_image_caption":"click image to enlargeThis photo provided by Galerie Westlicht in Vienna shows a Hasselblad 500 camera that was part of the equipment carried by the 1971 Apollo 15 mission. Westlicht identifies the new owner as Japanese businessman Terukazu Fujisawa. The Associated Press Select images available for purchase in theMaine Today Photo Store","url_id":"945082775","feed_name":null},{"title":"Disney names news chief Sherwood to co-chair of media networks","cluster_id":"35609761","url":"http://feeds.reuters.com/~r/reuters/entertainment/~3/D3tc8xMtNPE/story01.htm","description":"(Reuters) - The Walt Disney Co on Monday named ABC News President Ben Sherwood as co-chairman of Disney Media Networks and president of Disney/ABC Television Group, effective February 1, 2015.","domain":"mobile.reuters.com","topic":"Entertainment","num_docs":"23","num_images":"3","num_videos":"0","time_since":"00:19:02","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c85f","rep_image_caption":"Bob Iger","url_id":"945745242","feed_name":"Reuters"},{"title":"US actor James Rebhorn dies aged 65","cluster_id":"35580815","url":"http://www.bbc.co.uk/news/entertainment-arts-26710547#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"US character actor James Rebhorn, who had a five-decade career in TV, film and on stage, dies at the age of 65 after a long battle with skin cancer.","domain":"bbc.co.uk","topic":"Entertainment","num_docs":"78","num_images":"25","num_videos":"0","time_since":"01:10:55","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150a074","rep_image_caption":"James Rebhorn","url_id":"944319932","feed_name":"BBC News"},{"title":"Death toll rises in Venezuela protests","cluster_id":"35611207","url":"http://www.aljazeera.com/news/americas/2014/03/death-toll-rises-venezuela-protests-20143250332825264.html","description":"Soldier and pregnant woman killed in latest bout of violence as top opposition politician loses her seat in Congress.","domain":"aljazeera.com","topic":"General","num_docs":"12","num_images":"3","num_videos":"0","time_since":"00:04:50","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b701","rep_image_caption":"Venezuela opposition politician Maria Corina Machado","url_id":"946912496","feed_name":"Al Jazeera"},{"title":"Special team standout Osgood re-signs with 49ers","cluster_id":"35610837","url":"http://feedproxy.google.com/~r/bostonherald/~3/FToG5Kstaj8/special_team_standout_osgood_re_signs_with_49ers","description":"No description","domain":"bostonherald.com","topic":"Sports","num_docs":"16","num_images":"0","num_videos":"0","time_since":"00:00:51","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"947316895","feed_name":null},{"title":"Khan to fight on Mayweather bill","cluster_id":"35608850","url":"http://www.bbc.co.uk/sport/0/boxing/26723431","description":"Amir Khan will fight Luis Collazo on the undercard of Floyd Mayweather's bout with Marcos Maidana in Las Vegas.","domain":"bbc.co.uk","topic":"Sports","num_docs":"21","num_images":"17","num_videos":"0","time_since":"00:21:01","translate_title":null,"rep_image_url":"http://www.independent.co.uk/img/rO0ABXQAY2Z7aHR0cDovL3d3dy5pbmRlcGVuZGVudC5jby51ay9pbmNvbWluZy9hcnRpY2xlOTIxMzkyMi5lY2UvQUxURVJOQVRFUy93NjIwL0FtaXItS2hhbi5qcGd9Zjc3NzdmMzYwdA==.jpg","rep_image_caption":"Amir Khan has promised to return 'stronger, more skilled and smarter' in his return to the ring against Luis Collazo","url_id":"945577553","feed_name":"BBC News"},{"title":"Mayor: Wrong to say Albuquerque shooting justified","cluster_id":"35589871","url":"http://feeds.boston.com/c/35022/f/646951/s/38906de4/sc/8/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Cmayor0Ewrong0Esay0Ealbuquerque0Eshooting0Ejustified0CTDezs4sFEbipeVY0AY2bikI0Cstory0Bhtml/story01.htm","description":"ALBUQUERQUE, N.M. (AP) — In a rare show of displeasure with the troubled Police Department, Albuquerque Mayor Richard Berry said Monday it was wrong for the new police chief to say officers were justified in killing a homeless camper in the Sandia foothills.","domain":"boston.com","topic":"General","num_docs":"29","num_images":"11","num_videos":"1","time_since":"00:12:53","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c587","rep_image_caption":"Mayor Richard Berry on Monday spoke to the media for the first time about APD's most recent shooting. (Roberto E. Rosales/Journal)","url_id":"946254798","feed_name":null},{"title":"Tour of Catalonia: Chris Froome and Alberto Contador well placed","cluster_id":"35608780","url":"http://rss.feedsportal.com/c/266/f/3784/s/38951e48/sc/13/l/0L0Sindependent0O0Csport0Ccycling0Ctour0Eof0Ecatalonia0Echris0Efroome0Eand0Ealberto0Econtador0Ewell0Eplaced0E92132810Bhtml/story01.htm","description":"No description","domain":"independent.co.uk","topic":"Sports","num_docs":"11","num_images":"1","num_videos":"0","time_since":"00:01:35","translate_title":null,"rep_image_url":"http://www.independent.co.uk/img/rO0ABXQAYWZ7aHR0cDovL3d3dy5pbmRlcGVuZGVudC5jby51ay9pbmNvbWluZy9hcnRpY2xlOTIxMzIxNS5lY2UvQUxURVJOQVRFUy93NjIwL2N5Y2xpbmcuanBnfWY3Nzc3ZjMyMHQ=.jpg","rep_image_caption":"The peleton during the Stage 1 of the Volta a Catalunya","url_id":"947236169","feed_name":"Independent"},{"title":"Moats signs with Steelers","cluster_id":"35612742","url":"http://wivb.com/2014/03/24/moats-signs-with-steelers/","description":"No description","domain":"wivb.com","topic":"Sports","num_docs":"14","num_images":"1","num_videos":"0","time_since":"00:13:19","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150aa19","rep_image_caption":"TORONTO, ON - DECEMBER 1: Patrick DiMarco #42 of the Atlanta Falcons is tackled during an NFL game by Arthur Moats #52 of the Buffalo Bills at Rogers Centre on December 1, 2013 in Toronto, Ontario. (Photo by Tom Szczerbowski/Getty Images)","url_id":"946219555","feed_name":"WIVB"},{"title":"Lawyer hired by NC in spill probe represented Duke","cluster_id":"35610913","url":"http://www.miamiherald.com/2014/03/24/4015594/lawyer-hired-by-nc-in-spill-probe.html","description":"The lawyer hired to represent North Carolina's environmental agency during a federal investigation into its regulation of Duke Energy's coal ash dumps previously represented the utility company in a different criminal probe.","domain":"miamiherald.com","topic":"General","num_docs":"18","num_images":"3","num_videos":"0","time_since":"00:19:19","translate_title":null,"rep_image_url":"http://media2.newsobserver.com/smedia/2014/03/24/17/55/133-zNzvz.AuSt.55.jpeg","rep_image_caption":"Coal Ash Spill Danville","url_id":"945721036","feed_name":null},{"title":"Cellino disqualified from buying Leeds","cluster_id":"35603170","url":"http://www.bbc.co.uk/sport/0/football/26717044","description":"The Football League disqualifies Italian businessman Massimo Cellino from buying a majority stake in Leeds United.","domain":"bbc.co.uk","topic":"Sports","num_docs":"36","num_images":"10","num_videos":"0","time_since":"01:01:29","translate_title":null,"rep_image_url":"http://www.independent.co.uk/img/rO0ABXQAamZ7aHR0cDovL3d3dy5pbmRlcGVuZGVudC5jby51ay9pbmNvbWluZy9hcnRpY2xlOTIxMzE4NC5lY2UvQUxURVJOQVRFUy93NjIwLzYwLmNlbGxpbm8uZ2V0dHkuanBnfWY3Nzc3ZjMwMHQ=.jpg","rep_image_caption":"Massimo Cellino has been bankrolling Leeds since a takeover was agreed last month","url_id":"945183071","feed_name":"BBC News"},{"title":"Stressed women ‘30% less likely to become pregnant’","cluster_id":"35580933","url":"http://www.independent.co.uk/life-style/health-and-families/health-news/stressed-women-30-less-likely-to-become-pregnant-9211227.html","description":"No description","domain":"independent.co.uk","topic":"Health","num_docs":"36","num_images":"6","num_videos":"0","time_since":"00:22:27","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150980e","rep_image_caption":"Women under stress find it harder to become pregnant compared with women who are more relaxed and have higher chances of becoming infertile, according to scientists who suggest that yoga or meditation could help would-be mothers","url_id":"945451546","feed_name":null},{"title":"Rover used to help find Colorado crash victims","cluster_id":"35580964","url":"http://feeds.boston.com/c/35022/f/646951/s/38883b21/sc/3/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Ccolorado0Eplane0Ecrash0Evictims0Enot0Eyet0Erecovered0C5igbJUTm0ACPIpFvqTxdDFK0Cstory0Bhtml/story01.htm","description":"MONTROSE, Colo. (AP) — Boats and dive teams are again working to try to recover five people feared dead after their plane crashed into a southwestern Colorado reservoir.","domain":"boston.com","topic":"General","num_docs":"65","num_images":"16","num_videos":"0","time_since":"00:21:23","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b930","rep_image_caption":"5 bodies found in Colorado plane crash wreckage, bodies, five people, Manila Bulletin, wreckage, plane, Colorado reservoir, 5 bodies found in Colorado plane crash wreckage, bodies, five people, Manila Bulletin, wreckage, plane, Colorado reservoir, 5 bodies found in Colorado plane crash wreckage, bodies, five people, Manila Bulletin, wreckage, plane, Colorado reservoir, 5 bodies found in Colorado plane crash wreckage, bodies, five people, Manila Bulletin, wreckage, plane, Colorado reservoir, ","url_id":"945545510","feed_name":null},{"title":"Eight killed, 108 unaccounted for in huge US landslide","cluster_id":"35609425","url":"http://timesofindia.feedsportal.com/c/33039/f/533991/s/388e220b/sc/42/l/0Ltimesofindia0Bindiatimes0N0Cworld0Cus0CEight0Ekilled0E10A80Eunaccounted0Efor0Ein0Ehuge0EUS0Elandslide0Carticleshow0C326168410Bcms/story01.htm","description":"More than 100 people are still unaccounted for after a devastating landslide in the northwestern US state of Washington, while eight people are so far confirmed dead, officials said on Monday.","domain":"m.timesofindia.com","topic":"General","num_docs":"13","num_images":"0","num_videos":"2","time_since":"00:18:37","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945780220","feed_name":"Times of India"},{"title":"Anti-genocide group sounds warning about Myanmar","cluster_id":"35611277","url":"http://feeds.boston.com/c/35022/f/646951/s/388ecdf4/sc/1/l/0L0Sboston0N0Cnews0Cnation0Cwashington0C20A140C0A30C240Canti0Egenocide0Egroup0Esounds0Ewarning0Eabout0Emyanmar0Crpb956S1wT682DIefjCJnK0Cstory0Bhtml/story01.htm","description":"WASHINGTON (AP) — A former U.S. congressman who visited camps housing tens of thousands of people displaced by communal violence in western Myanmar is warning that minority Rohingya Muslims face a life-threatening lack of medical care and live in fear of attack.","domain":"boston.com","topic":"General","num_docs":"12","num_images":"0","num_videos":"0","time_since":"00:18:35","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945783175","feed_name":null},{"title":"Indiana withdrawing from Common Core standards","cluster_id":"35609346","url":"http://feeds.boston.com/c/35022/f/646951/s/388ece09/sc/33/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Cindiana0Ewithdrawing0Efrom0Ecommon0Ecore0Estandards0C7HaHzXArpelQpo32ZeBBVO0Cstory0Bhtml/story01.htm","description":"INDIANAPOLIS (AP) — Indiana is the first state to withdraw from the Common Core reading and math standards that were adopted by most states around the country.","domain":"boston.com","topic":"Health","num_docs":"19","num_images":"0","num_videos":"0","time_since":"00:18:35","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945783195","feed_name":null},{"title":"Los Angeles police say gunman dead after shootout","cluster_id":"35613274","url":"http://feeds.boston.com/c/35022/f/646951/s/388f6a4b/sc/8/l/0L0Sboston0N0Cnews0Cnation0C20A140C0A30C240Clos0Eangeles0Epolice0Esay0Egunman0Edead0Eafter0Eshootout0CnlehchLslS2PgAXoBtoD0AO0Cstory0Bhtml/story01.htm","description":"LOS ANGELES (AP) — A man suspected of shooting at officers responding to a domestic dispute and injuring one was found dead Monday after a four-hour standoff in a Hollywood Hills home, police said.","domain":"boston.com","topic":"General","num_docs":"11","num_images":"0","num_videos":"0","time_since":"00:16:56","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945916791","feed_name":null},{"title":"Calif. teen killed saving girlfriend from train","cluster_id":"35581059","url":"http://rssfeeds.usatoday.com/~r/usatoday-NewsTopStories/~3/EXCfHROb6Gk/","description":"Mateus Moore pushed his girlfriend out of the path of an oncoming train.","domain":"usatoday.com","topic":"General","num_docs":"39","num_images":"13","num_videos":"0","time_since":"00:00:47","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150af78","rep_image_caption":"Train Accident","url_id":"947324285","feed_name":"USA Today"},{"title":"Virginia wins clinically against Memphis, moves on to face Michigan State in NYC","cluster_id":"35592039","url":"http://college-basketball.si.com/2014/03/23/virginia-cavaliers-beat-memphis-advance-to-sweet-16/","description":"No description","domain":"college-basketball.si.com","topic":"Sports","num_docs":"65","num_images":"20","num_videos":"2","time_since":"01:09:10","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/01508eb6","rep_image_caption":"Photo by:The Associated Press Memphis forward David Pellom (12) embraces Virginia head coach Tony Bennett during the second half of an NCAA college basketball third-round tournament game against Memphis, Sunday, March 23, 2014, in Raleigh, N.C. (AP Photo/Gerry Broome) ","url_id":"944477733","feed_name":"CNN"},{"title":"Russian and Ukrainian foreign ministers meet","cluster_id":"35584593","url":"http://feeds.boston.com/c/35022/f/646951/s/388ece13/sc/1/l/0L0Sboston0N0Cnews0Cworld0Ceurope0C20A140C0A30C240Crussian0Eand0Eukrainian0Eforeign0Eministers0Emeet0C52IYefBCTsn0AnTMLSpDyNL0Cstory0Bhtml/story01.htm","description":"THE HAGUE, Netherlands (AP) — Russian Foreign Minister Sergey Lavrov says he has met for the first time with his Ukrainian counterpart to discuss the Ukraine crisis.","domain":"boston.com","topic":"General","num_docs":"20","num_images":"5","num_videos":"0","time_since":"00:18:35","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150a7df","rep_image_caption":"Russia&#39;s Foreign Minister Sergey Lavrov addresses the media at the Nuclear Security Summit (NSS) in The Hague, Netherlands, on Monday, March 24, 2014. Nuclear terrorism is officially the main topic for world leaders at a two-day summit in the Netherlands, in practice, the Ukraine crisis overshadows those talks. (AP Photo/Yves Logghe)","url_id":"945783201","feed_name":null},{"title":"Problems on another Malaysia Airlines flight","cluster_id":"35597886","url":"http://rssfeeds.usatoday.com/~r/UsatodaycomWorld-TopStories/~3/56fcnRkz8EM/","description":"The plane made an emergency landing in Hong Kong after a generator failed.","domain":"usatoday.com","topic":"General","num_docs":"64","num_images":"8","num_videos":"1","time_since":"01:07:26","translate_title":null,"rep_image_url":"http://news.yahoo.com/malaysia-missing-flight-crashed-indian-ocean-143151129--finance.html","rep_image_caption":"Chinese, Australian Planes See Possible Debris","url_id":"944641124","feed_name":null},{"title":"Warnock rejects Forest manager's job","cluster_id":"35584799","url":"http://www.bbc.co.uk/sport/0/football/26726302","description":"Neil Warnock rejects the chance to succeed Billy Davies as manager of Championship side Nottingham Forest.","domain":"bbc.co.uk","topic":"Sports","num_docs":"25","num_images":"21","num_videos":"0","time_since":"00:16:10","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cdb0","rep_image_caption":"Billy Davies was sacked by Nottingham Forest yesterday","url_id":"945979594","feed_name":"BBC News"},{"title":"Study ties breast gene to high-risk uterine cancer","cluster_id":"35607288","url":"http://www.miamiherald.com/2014/03/24/4015329/study-ties-breast-gene-to-high.html","description":"Women with a faulty breast cancer gene might face a greater chance of rare but deadly uterine tumors despite having their ovaries removed to lower their main cancer risks, doctors are reporting.","domain":"miamiherald.com","topic":"Health","num_docs":"27","num_images":"1","num_videos":"0","time_since":"00:22:01","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/01509f21","rep_image_caption":"Study ties breast gene to high-risk uterine cancerAngelina Jolie, left, and Brad Pitt appear at the Oscars on Sunday, March 2, 2014, at the Dolby Theatre in Los Angeles. (Photo by Matt Sayles/Invision/AP) By Marilynn Marchione-Associated Press Monday, March 24, 2014 Women with a faulty breast cancer gene might face a greater chance of rare but deadly uterine tumors despite having their ovaries removed to lower their main cancer risks, doctors are reporting.A study of nearly 300 women with bad BRCA1 genes found four cases of aggressive uterine cancers years after they had preventive surgery to remove their ovaries. That rate is 26 times greater than expected.“One can happen. Two all of a sudden raises eyebrows,” and four is highly suspicious, said Dr. Noah Kauff of Memorial Sloan Kettering Cancer Center in New York.His study, reported Monday at a cancer conference in Florida, is the first to make this link. Although it’s not enough evidence to change practice now, doctors say women with these gene mu","url_id":"945490156","feed_name":null},{"title":"Dayton flying high to Sweet Sixteen","cluster_id":"35608986","url":"http://www.vindy.com/news/2014/mar/25/dayton-flying-high-to-sweet-sixteen/","description":"It’s been 30 years since Flyers advanced this far","domain":"vindy.com","topic":"Sports","num_docs":"11","num_images":"5","num_videos":"0","time_since":"00:07:53","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150aa0b","rep_image_caption":"NCAA Dayton Syracuse Basketball","url_id":"946648375","feed_name":"Youngstown Vindicator"},{"title":"West Virginia guard Eron Harris to transfer","cluster_id":"35612624","url":"http://tracking.si.com/2014/03/24/west-virginia-eron-harris-to-transfer/","description":"No description","domain":"tracking.si.com","topic":"Sports","num_docs":"11","num_images":"1","num_videos":"0","time_since":"00:17:22","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150ab1f","rep_image_caption":"Ex-Mountaineers guard Eron Harris averaged 17.2 points and 3.5 rebounds a game. (AP Photo/Andrew Ferguson) ","url_id":"945881495","feed_name":"CNN"},{"title":"Parts of New England brace for spring snow","cluster_id":"35612258","url":"http://feeds.boston.com/c/35022/f/646951/s/388e6239/sc/10/l/0L0Sboston0N0Cnews0Cweather0C20A140C0A30C240Cparts0Enew0Eengland0Ebrace0Efor0Espring0Esnow0CNQybXNJwWx4UuMM9lGWp2N0Cstory0Bhtml/story01.htm","description":"BOSTON (AP) — As the East Coast shivers through an unusually cold early spring, parts of New England are bracing for a storm that could bring additional snow.","domain":"boston.com","topic":"General","num_docs":"10","num_images":"1","num_videos":"0","time_since":"00:18:02","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b04b","rep_image_caption":"Belvedere Castle is seen in Central Park on March 20, 2014 in New York, United States. Today marks the first official day of Spring - the spring equinox occured at 12:57PM today. (Andrew Burton, Getty Images)","url_id":"945826327","feed_name":null},{"title":"Ukraine to face its 'graft culture' under aid plan","cluster_id":"35608667","url":"http://feeds.boston.com/c/35022/f/646951/s/388d7f7a/sc/1/l/0L0Sboston0N0Ctravel0Cdestinations0C20A140C0A30C240Cukraine0Eface0Eits0Egraft0Eculture0Eunder0Eaid0Eplan0CbLaIy9QR52Tp1bBVNSES5L0Cstory0Bhtml/story01.htm","description":"KIEV, Ukraine (AP) — A hairstyling business closes four salons rather than deal with crooked tax officials. An independent salesman hustling paint from the trunk of his car faces a $5 million tax penalty. A humble crafts stall gives up after taxes increase ten-fold overnight.","domain":"boston.com","topic":"General","num_docs":"15","num_images":"7","num_videos":"0","time_since":"00:21:03","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150a3c3","rep_image_caption":"Ukraine Corruption Culture","url_id":"945573972","feed_name":null},{"title":"Brett Eldredge, Justin Moore, Kip Moore Added to ACM Fan Jam Lineup","cluster_id":"35609622","url":"http://denver.cbslocal.com/2014/03/24/brett-eldredge-justin-moore-kip-moore-added-to-acm-fan-jam-lineup/","description":"No description","domain":"denver.cbslocal.com","topic":"Entertainment","num_docs":"14","num_images":"13","num_videos":"0","time_since":"00:17:59","translate_title":null,"rep_image_url":"http://cbsdenver.files.wordpress.com/2014/03/brett-justin-kip-acms.jpg?w=300&h=200&crop=1","rep_image_caption":"Brett Eldredge, Justin Moore, Kip Moore","url_id":"945830697","feed_name":null},{"title":"Ortiz says Boston is 'place I want to be'","cluster_id":"35582302","url":"http://feeds.boston.com/c/35022/f/646951/s/388db70e/sc/13/l/0L0Sboston0N0Csports0Cbaseball0C20A140C0A30C240Cortiz0Esays0Eboston0Eplace0Ewant0C1yzYtA5lt4uQyeAOktgUaI0Cstory0Bhtml/story01.htm","description":"SARASOTA, Fla. (AP) — David Ortiz wants to finish his career with the Boston Red Sox.","domain":"boston.com","topic":"Sports","num_docs":"53","num_images":"19","num_videos":"1","time_since":"00:19:03","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfdc","rep_image_caption":"Red Sox Ortiz Contract Baseball","url_id":"945744093","feed_name":null},{"title":"Cameron: No G-8 summit in Russia","cluster_id":"35608818","url":"http://feeds.boston.com/c/35022/f/646951/s/388d7f70/sc/6/l/0L0Sboston0N0Cnews0Cworld0Ceurope0C20A140C0A30C240Ccameron0Esummit0Erussia0CRA3our5bmEJq9CCXslcoPL0Cstory0Bhtml/story01.htm","description":"LONDON (AP) — British Prime Minister David Cameron says it is \"absolutely clear\" there will be no G-8 summit in Russia given Moscow's actions toward Ukraine.","domain":"boston.com","topic":"General","num_docs":"21","num_images":"4","num_videos":"0","time_since":"00:21:03","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/01509d09","rep_image_caption":"Netherlands Nuclear Summit","url_id":"945573969","feed_name":null},{"title":"CGI, body doubles to maintain Paul Walker's \"Fast & Furious 7\" presence next month in UAE","cluster_id":"35585207","url":"http://www.albawaba.com/entertainment/fast-furious-7-563921","description":"No description","domain":"m.albawaba.com","topic":"Entertainment","num_docs":"11","num_images":"0","num_videos":"0","time_since":"00:05:07","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"946886927","feed_name":"Al Bawaba"},{"title":"Rays Colome gets 50-game suspension","cluster_id":"35611280","url":"http://feeds.boston.com/c/35022/f/646891/s/388fd2ac/sc/13/l/0L0Sboston0N0Csports0Cbaseball0C20A140C0A30C240Crays0Erhp0Ecolome0Egets0Egame0Edrug0Epenalty0CNqDnOMiIw37aj0ANiBcmesO0Cstory0Bhtml0Drss0Iid0FTop0KStories/story01.htm","description":"NEW YORK (AP) — Tampa Bay Rays pitcher Alex Colome has been suspended for the first 50 games of the season for a positive steroids test.","domain":"boston.com","topic":"Sports","num_docs":"18","num_images":"1","num_videos":"0","time_since":"00:14:13","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150a657","rep_image_caption":"Rays pitcher Alex Colome. (Getty Images)","url_id":"946143816","feed_name":"Boston Globe"},{"title":"Heisman winner Winston gets 4th save of season","cluster_id":"35612172","url":"http://feeds.boston.com/c/35022/f/646951/s/388e6238/sc/35/l/0L0Sboston0N0Csports0Ccolleges0Cbaseball0C20A140C0A30C240Cheisman0Ewinner0Ewinston0Egets0Esave0Eseason0C3bvAHo6bI2VuQh14qDxk1O0Cstory0Bhtml/story01.htm","description":"TALLAHASSEE, Fla. (AP) — Florida State's Jameis Winston began double-duty last week as the football team started spring practices. The Heisman winner missed a football practice Saturday, but that's the only session he's scheduled to miss this spring.","domain":"boston.com","topic":"Sports","num_docs":"10","num_images":"7","num_videos":"0","time_since":"00:18:02","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150a9bd","rep_image_caption":"Florida St Clemson Baseball","url_id":"945826326","feed_name":null},{"title":"Esperan a la cigüeña","cluster_id":"35583266","url":"http://www.laprensa.com.ni/2014/03/25/vida/188188","description":"LA PRENSA/AGENCIAS Mila Kunis y Ashton Kutcher, quienes mantienen una relación desde 2012 y están comprometidos, esperan su primer hijo, según confirmó People . Kutcher y Kunis se conocieron en 1998 durante el rodaje de...","domain":"laprensa.com.ni","topic":"Entertainment","num_docs":"40","num_images":"12","num_videos":"1","time_since":"00:00:34","translate_title":null,"rep_image_url":"http://i1.wp.com/cdn.makeagif.com/media/3-24-2014/qIWN_S.gif?resize=320%2C180","rep_image_caption":"The 4 super-cute stages of Ashton and Mila's Kiss Cam moment","url_id":"947347728","feed_name":"La Prensa"},{"title":"Justin Faulk, 'Canes sign 6-year, $29M extension","cluster_id":"35607122","url":"http://abclocal.go.com/wtvd/story?section=news/sports&id=9478368&rss=rss-wtvd-article-9478368","description":"The Carolina Hurricanes have signed defenseman Justin Faulk to a six-year contract extension worth $29 million.","domain":"abclocal.go.com","topic":"Sports","num_docs":"26","num_images":"1","num_videos":"0","time_since":"00:14:40","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150a1cf","rep_image_caption":"Justin Faulk (Bill Wippert/Getty Images)","url_id":"946106633","feed_name":null},{"title":"VIDEO: Close-up: Taiwan's chair barricade","cluster_id":"35580775","url":"http://www.bbc.co.uk/news/world-asia-26722263#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"Students broke into the legislature late on Tuesday and have since defied police efforts to evict them, using barricades made of furniture.","domain":"bbc.co.uk","topic":"General","num_docs":"59","num_images":"8","num_videos":"0","time_since":"00:20:14","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/01507c2d","rep_image_caption":"Taiwan China Protest","url_id":"945646546","feed_name":"BBC News"},{"title":"Dissent over key climate report","cluster_id":"35581343","url":"http://www.bbc.co.uk/news/science-environment-26655779#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"Senior researchers and government officials gather in Japan to agree a critical report on the impacts of global warming.","domain":"bbc.co.uk","topic":"SciTech","num_docs":"48","num_images":"28","num_videos":"0","time_since":"00:10:47","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150bef8","rep_image_caption":"manila bulletin, Michel Jarraud, World Meteorological Organization ,UN: 2013 extreme events due to warming Earth, Manila Bulletin, head, United Nations, weather, Manila Bulletin, Climate Change, extreme weather, flloods, Philippines, Haiyan, ","url_id":"946424685","feed_name":"BBC News"},{"title":"FDA reviews DNA-based colon cancer screening kits","cluster_id":"35605976","url":"http://www.kentucky.com/2014/03/24/3158454/fda-reviews-dna-based-colon-cancer.html","description":"The Food and Drug Administration is weighing the benefits and risks of two experimental colon cancer screening tests which use DNA from a patient's stool to detect dangerous tumors and growths.","domain":"kentucky.com","topic":"Health","num_docs":"16","num_images":"0","num_videos":"0","time_since":"00:20:07","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945656360","feed_name":null},{"title":"Flight 'ended in southern Indian Ocean'","cluster_id":"35604805","url":"http://rss.cnn.com/~r/rss/cnn_world/~3/1WfT0IMXmlQ/nr-malaysia-prime-minister-razak-plane-presser.cnn.html","description":"Malaysian Prime Minister Najib Razak discusses developments in the search for missing Malaysia Airlines Flight 370.","domain":"cnn.com","topic":"General","num_docs":"33","num_images":"5","num_videos":"1","time_since":"00:22:41","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/015098e7","rep_image_caption":"APTOPIX Malaysia Plane","url_id":"945433657","feed_name":"CNN"},{"title":"Jimmy Carter: I oppose Israel boycott, but settlement goods must be labeled","cluster_id":"35608496","url":"http://haaretz.feedsportal.com/c/34191/f/620528/s/388de2fb/sc/19/l/0L0Shaaretz0N0Cnews0Cdiplomacy0Edefense0C0Bpremium0E10B581718/story01.htm","description":"But settlement goods must be labeled.","domain":"haaretz.com","topic":"General","num_docs":"10","num_images":"3","num_videos":"0","time_since":"00:20:19","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150a6a9","rep_image_caption":"Former U.S. President Jimmy Carter speaks during an interview on Monday March 24, 2014 in New York. Carter said Monday that he doesn&#8217;t support the","url_id":"945638202","feed_name":"Ha'aretz"},{"title":"Greek pharmacies to strike over deal with lenders","cluster_id":"35608844","url":"http://feeds.boston.com/c/35022/f/646951/s/388d825d/sc/25/l/0L0Sboston0N0Cnews0Cworld0Ceurope0C20A140C0A30C240Cgreek0Epharmacies0Estrike0Eover0Edeal0Ewith0Elenders0CbdzgQmjQoeIxnUUmcab6VK0Cstory0Bhtml/story01.htm","description":"ATHENS, Greece (AP) — A body representing Greece's pharmacies says drug dispensers' will close indefinitely in a strike starting Wednesday, in protest at a deal reached between the government and bailout lenders to deregulate store licenses.","domain":"boston.com","topic":"General","num_docs":"17","num_images":"0","num_videos":"0","time_since":"00:20:54","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945588918","feed_name":null},{"title":"Alarm at French National Front gains","cluster_id":"35580929","url":"http://www.bbc.co.uk/news/world-europe-26715061#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"France's political establishment is rocked by the far-right National Front party making significant gains in local elections.","domain":"bbc.co.uk","topic":"General","num_docs":"46","num_images":"17","num_videos":"0","time_since":"01:00:12","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150b897","rep_image_caption":"Marine Le Pen dilaga nelle amministrative. (foto Keystone)","url_id":"945300313","feed_name":"BBC News"},{"title":"Mujica: Guantanamo detainees could leave Uruguay","cluster_id":"35610719","url":"http://feeds.boston.com/c/35022/f/646951/s/388db70b/sc/1/l/0L0Sboston0N0Cnews0Cworld0Clatin0Eamerica0C20A140C0A30C240Cmujica0Eguantanamo0Edetainees0Ecould0Eleave0Euruguay0C7hzRhBKUw5EquxAlyNVrEO0Cstory0Bhtml/story01.htm","description":"MONTEVIDEO, Uruguay (AP) — Uruguay's president says any Guantanamo detainees his country takes will be treated as refugees and will be free to travel wherever they wish, even if they have promised the United States that they'll stay in the South American country for at least two years.","domain":"boston.com","topic":"General","num_docs":"13","num_images":"0","num_videos":"0","time_since":"00:19:03","translate_title":null,"rep_image_url":null,"rep_image_caption":null,"url_id":"945744099","feed_name":null},{"title":"Inmate 'bungles Obama threat letter'","cluster_id":"35606511","url":"http://www.bbc.co.uk/news/world-us-canada-26721604#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","description":"A US convicted child molester is charged with sending a threatening letter to President Barack Obama, albeit posted to the wrong address.","domain":"bbc.co.uk","topic":"General","num_docs":"18","num_images":"1","num_videos":"0","time_since":"00:19:34","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150a234","rep_image_caption":" The letter was sent to 1400 Pennsylvania Ave, but the White House is farther up the road","url_id":"945701684","feed_name":"BBC News"},{"title":"Stars Edge Jets In Power Play For 2-1 Win","cluster_id":"35583410","url":"http://dfw.cbslocal.com/2014/03/25/stars-edge-jets-in-power-play-for-2-1-win/","description":"No description","domain":"dfw.cbslocal.com","topic":"Sports","num_docs":"21","num_images":"5","num_videos":"0","time_since":"00:02:03","translate_title":null,"rep_image_url":"http://cbsdallas.files.wordpress.com/2014/03/479421547_8.jpg?w=300&h=200&crop=1","rep_image_caption":"Dallas Stars v Pittsburgh Penguins","url_id":"947187536","feed_name":null},{"title":"Plimpton comes to London in 'Other Desert Cities'","cluster_id":"35607917","url":"http://feeds.boston.com/c/35022/f/646951/s/388cea49/sc/10/l/0L0Sboston0N0Cnews0Cworld0Ceurope0C20A140C0A30C240Cplimpton0Ecomes0Elondon0Eother0Edesert0Ecities0CtStk1UcW1o6HnrTLMFBzQP0Cstory0Bhtml/story01.htm","description":"LONDON (AP) — Martha Plimpton is an American in London, grappling with all that ails the United States.","domain":"boston.com","topic":"Entertainment","num_docs":"12","num_images":"9","num_videos":"0","time_since":"00:21:38","translate_title":null,"rep_image_url":"http://media.mercedsunstar.com/smedia/2014/03/24/13/50/859-oBAyx.AuSt.55.jpeg","rep_image_caption":"Britain Martha Plimpton","url_id":"945524212","feed_name":null},{"title":"Geno OKs Vick signing","cluster_id":"35587832","url":"http://www.nationalfootballpost.com/Geno-Smith-Awesome-man-Vicks-my-guy.html?xid=si_topstories","description":"No description","domain":"nationalfootballpost.com","topic":"Sports","num_docs":"47","num_images":"7","num_videos":"0","time_since":"00:21:36","translate_title":null,"rep_image_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfcf","rep_image_caption":"FILE - In a Sept. 12, 2013 filel photo, New York Jets quarterback Mark Sanchez, who normally throws right-handed, throws a pass with his left hang before an NFL football between the New England Patriots and the Jets game, in Foxborough. The New York Jets released Sanchez signed quarterback Michael Vick on Friday, March 21, 2014. Sanchez spent this past season on injured reserve after injuring his right shoulder in a preseason game. (AP Photo/Charles Krupa, File)\n\n","url_id":"945527902","feed_name":"CNN"}],"markers":[{"title":"China seeks satellite data evidence on missing Malaysian plane","description":"Grief and anger was unleashed on Monday night after Malaysian Prime Minister Najib Razak announced that Malaysia Airlines Flight MH370, which vanished more than two weeks ago while flying to Beijing from Kuala Lumpur, had crashed in the southern Indian Ocean.","latitude":"54.7584","longitude":"-2.69531","gaz_id":"2635167","name":"United Kingdom","cluster_id":"35343528","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... crashed in the southern Indian Ocean.&#x2029; Citing satellite-data analysis by <span class='georef'>British</span> firm Inmarsat, he said there was now no doubt that the&#x2029; Boeing&#x2029; jet came ...","url_id":"947275341","domain":"baltimoresun.com","num_docs":"7997","num_images":"2880","num_videos":"128","url":"http://www.baltimoresun.com/news/nation-world/chi-malaysia-plane-search-20140325,0,2554868.story?track=rss","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d002","display_caption":"Time, uncertainty make plane hunt uniquely hard ","gaztag_id":"407039539","time_since":"00:01:13","translate_title":null,"grid_cell":"1"},{"title":"China seeks satellite data evidence on missing Malaysian plane","description":"Grief and anger was unleashed on Monday night after Malaysian Prime Minister Najib Razak announced that Malaysia Airlines Flight MH370, which vanished more than two weeks ago while flying to Beijing from Kuala Lumpur, had crashed in the southern Indian Ocean.","latitude":"39.9075","longitude":"116.397","gaz_id":"1816670","name":"Beijing","cluster_id":"35343528","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... Flight MH370, which vanished more than two weeks ago while flying to <span class='georef'>Beijing</span> from Kuala Lumpur, had crashed in the southern Indian Ocean. ...","url_id":"947275341","domain":"baltimoresun.com","num_docs":"7997","num_images":"2880","num_videos":"128","url":"http://www.baltimoresun.com/news/nation-world/chi-malaysia-plane-search-20140325,0,2554868.story?track=rss","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d002","display_caption":"Time, uncertainty make plane hunt uniquely hard ","gaztag_id":"407039537","time_since":"00:01:13","translate_title":null,"grid_cell":"1"},{"title":"Uncertainty frustrates Flight 370 relatives","description":"Malaysian officials say they can tell you how Flight 370 ended. It crashed into the Indian Ocean, they'll say, citing complicated math as proof. They can tell you when it probably happened -- on March 8, sometime between 8:11 and 9:15 a.m. (7:11 to 8:15 p.m. ET), handing you a sheet with extraordinarily technical details about satellite communications technology. What they still can't tell you is why, or precisely where, or show you a piece of the wreckage. All those uncertainties are too much...","latitude":"39.76","longitude":"-98.5","gaz_id":"6252001","name":"United States","cluster_id":"35343528","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... heading south at last contact, he said.&#x2029; Commercial satellite data from a <span class='georef'>U.S.</span> company, first analyzed by Australian officials, as well as satellite ...","url_id":"947353735","domain":"channel3000.com","num_docs":"7997","num_images":"2880","num_videos":"128","url":"http://www.channel3000.com/news/Uncertainty-frustrates-Flight-370-relatives/25148166","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d002","display_caption":"Time, uncertainty make plane hunt uniquely hard ","gaztag_id":"407048386","time_since":"00:00:30","translate_title":null,"grid_cell":"1"},{"title":"Malaysia Accused Of Hiding Truth Behind Missing Jet, Relatives Clash With Police","description":"BEIJING (dpa-AFX) - Angry relatives of passengers of the the missing Malaysian Airlines flight have accused that the Malaysian government is trying to delay, distort and hide the truth regarding t...","latitude":"-31.9522","longitude":"115.861","gaz_id":"2063523","name":"Perth","cluster_id":"35343528","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... and that its last position was in the middle of the Indian Ocean, west of <span class='georef'>Perth</span>. &#39;This is a remote location, far from any possible landing sites. It is ...","url_id":"947362513","domain":"finanznachrichten.de","num_docs":"7997","num_images":"2880","num_videos":"128","url":"http://www.finanznachrichten.de/nachrichten-2014-03/29788805-malaysia-accused-of-hiding-truth-behind-missing-jet-relatives-clash-with-police-020.htm","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d002","display_caption":"Time, uncertainty make plane hunt uniquely hard ","gaztag_id":"407049427","time_since":"00:00:24","translate_title":null,"grid_cell":"1"},{"title":"China seeks satellite data evidence on missing Malaysian plane","description":"Grief and anger was unleashed on Monday night after Malaysian Prime Minister Najib Razak announced that Malaysia Airlines Flight MH370, which vanished more than two weeks ago while flying to Beijing from Kuala Lumpur, had crashed in the southern Indian Ocean.","latitude":"3.1412","longitude":"101.687","gaz_id":"1735161","name":"Kuala Lumpur","cluster_id":"35343528","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... which vanished more than two weeks ago while flying to Beijing from <span class='georef'>Kuala Lumpur</span>, had crashed in the southern Indian Ocean.&#x2029; Citing satellite-data ...","url_id":"947275341","domain":"baltimoresun.com","num_docs":"7997","num_images":"2880","num_videos":"128","url":"http://www.baltimoresun.com/news/nation-world/chi-malaysia-plane-search-20140325,0,2554868.story?track=rss","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d002","display_caption":"Time, uncertainty make plane hunt uniquely hard ","gaztag_id":"407039538","time_since":"00:01:13","translate_title":null,"grid_cell":"1"},{"title":"With Ukraine on his mind, Obama meets close Putin ally","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","latitude":"43.5992","longitude":"39.7257","gaz_id":"491422","name":"Sochi","cluster_id":"34424929","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... and canceled a summer summit Russia was to host in its Olympic village of <span class='georef'>Sochi</span>. Obama also sought to win backing from other foreign leaders in hopes of ...","url_id":"947257384","domain":"haaretz.com","num_docs":"20592","num_images":"7918","num_videos":"275","url":"http://www.haaretz.com/news/world/1.581852","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","display_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","gaztag_id":"407037819","time_since":"00:01:23","translate_title":null,"grid_cell":"1"},{"title":"With Ukraine on his mind, Obama meets close Putin ally","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","latitude":"35.6854","longitude":"139.753","gaz_id":"1861060","name":"Japan","cluster_id":"34424929","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... statement, the United States, France, Canada, Britain, Germany, Italy and <span class='georef'>Japan</span> denounced a referendum in Crimea to secede from Ukraine and Russia&#39;s ensuing annexation. ...","url_id":"947257384","domain":"haaretz.com","num_docs":"20592","num_images":"7918","num_videos":"275","url":"http://www.haaretz.com/news/world/1.581852","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","display_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","gaztag_id":"407037788","time_since":"00:01:23","translate_title":null,"grid_cell":"1"},{"title":"With Ukraine on his mind, Obama meets close Putin ally","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","latitude":"51.5","longitude":"10.5","gaz_id":"2921044","name":"Germany","cluster_id":"34424929","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... In a strongly worded joint statement, the United States, France, Canada, Britain, <span class='georef'>Germany</span>, Italy and Japan denounced a referendum in Crimea to secede from Ukraine ...","url_id":"947257384","domain":"haaretz.com","num_docs":"20592","num_images":"7918","num_videos":"275","url":"http://www.haaretz.com/news/world/1.581852","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","display_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","gaztag_id":"407037786","time_since":"00:01:23","translate_title":null,"grid_cell":"1"},{"title":"With Ukraine on his mind, Obama meets close Putin ally","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","latitude":"60.1087","longitude":"-113.643","gaz_id":"6251999","name":"Canada","cluster_id":"34424929","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... In a strongly worded joint statement, the United States, France, <span class='georef'>Canada</span>, Britain, Germany, Italy and Japan denounced a referendum in Crimea to ...","url_id":"947257384","domain":"haaretz.com","num_docs":"20592","num_images":"7918","num_videos":"275","url":"http://www.haaretz.com/news/world/1.581852","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","display_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","gaztag_id":"407037784","time_since":"00:01:23","translate_title":null,"grid_cell":"1"},{"title":"With Ukraine on his mind, Obama meets close Putin ally","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","latitude":"39.76","longitude":"-98.5","gaz_id":"6252001","name":"United States","cluster_id":"34424929","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... that the people of Crimea had the opportunity to express their will.&#x2029; The <span class='georef'>United States</span> was redoubling efforts to pressure Russia out of its aggressive pose as ...","url_id":"947257384","domain":"haaretz.com","num_docs":"20592","num_images":"7918","num_videos":"275","url":"http://www.haaretz.com/news/world/1.581852","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","display_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","gaztag_id":"407037782","time_since":"00:01:23","translate_title":null,"grid_cell":"1"},{"title":"With Ukraine on his mind, Obama meets close Putin ally","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","latitude":"46","longitude":"2","gaz_id":"3017382","name":"France","cluster_id":"34424929","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... territory.&#x2029; In a strongly worded joint statement, the United States, <span class='georef'>France</span>, Canada, Britain, Germany, Italy and Japan denounced a referendum in ...","url_id":"947257384","domain":"haaretz.com","num_docs":"20592","num_images":"7918","num_videos":"275","url":"http://www.haaretz.com/news/world/1.581852","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","display_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","gaztag_id":"407037783","time_since":"00:01:23","translate_title":null,"grid_cell":"1"},{"title":"With Ukraine on his mind, Obama meets close Putin ally","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","latitude":"42.8333","longitude":"12.8333","gaz_id":"3175395","name":"Italy","cluster_id":"34424929","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... joint statement, the United States, France, Canada, Britain, Germany, <span class='georef'>Italy</span> and Japan denounced a referendum in Crimea to secede from Ukraine and ...","url_id":"947257384","domain":"haaretz.com","num_docs":"20592","num_images":"7918","num_videos":"275","url":"http://www.haaretz.com/news/world/1.581852","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","display_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","gaztag_id":"407037787","time_since":"00:01:23","translate_title":null,"grid_cell":"1"},{"title":"With Ukraine on his mind, Obama meets close Putin ally","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","latitude":"55.7522","longitude":"37.6156","gaz_id":"524901","name":"Moscow","cluster_id":"34424929","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... Russian President Vladimir Putin as he continued his efforts to isolate <span class='georef'>Moscow</span> over its incursion into Crimea.&#x2029; In a last minute addition to his ...","url_id":"947257384","domain":"haaretz.com","num_docs":"20592","num_images":"7918","num_videos":"275","url":"http://www.haaretz.com/news/world/1.581852","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","display_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","gaztag_id":"407037807","time_since":"00:01:23","translate_title":null,"grid_cell":"1"},{"title":"With Ukraine on his mind, Obama meets close Putin ally","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","latitude":"54.7584","longitude":"-2.69531","gaz_id":"2635167","name":"United Kingdom","cluster_id":"34424929","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... In a strongly worded joint statement, the United States, France, Canada, <span class='georef'>Britain</span>, Germany, Italy and Japan denounced a referendum in Crimea to secede from ...","url_id":"947257384","domain":"haaretz.com","num_docs":"20592","num_images":"7918","num_videos":"275","url":"http://www.haaretz.com/news/world/1.581852","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","display_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","gaztag_id":"407037785","time_since":"00:01:23","translate_title":null,"grid_cell":"1"},{"title":"With Ukraine on his mind, Obama meets close Putin ally","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","latitude":"50.4547","longitude":"30.5238","gaz_id":"703448","name":"Kyiv","cluster_id":"34424929","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... clear signal that at least for now the fledgling Ukrainian government in <span class='georef'>Kiev</span> was ceding to Russia&#39;s aggressive tactics.&#x2029; The showdown between Russia ...","url_id":"947257384","domain":"haaretz.com","num_docs":"20592","num_images":"7918","num_videos":"275","url":"http://www.haaretz.com/news/world/1.581852","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","display_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","gaztag_id":"407037823","time_since":"00:01:23","translate_title":null,"grid_cell":"1"},{"title":"With Ukraine on his mind, Obama meets close Putin ally","description":"U.S. president's meeting with Kazakhstan counterpart is part of ongoing effort to isolate Russia.","latitude":"52.5","longitude":"5.75","gaz_id":"2750405","name":"Netherlands","cluster_id":"34424929","topic":"General","rep_term":null,"score":"2.32637e+07","snippet":"... summit serving as the official purpose for Obama&#39;s visit to the <span class='georef'>Netherlands</span>.&#x2029; Kazakhstan is the second largest country by territory and economy to ...","url_id":"947257384","domain":"haaretz.com","num_docs":"20592","num_images":"7918","num_videos":"275","url":"http://www.haaretz.com/news/world/1.581852","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d12f","display_caption":"Ukraine Far-Right Defense Minister Resigns, Replacement Appointed","gaztag_id":"407037809","time_since":"00:01:23","translate_title":null,"grid_cell":"1"},{"title":"Oscar Pistorius: Shooting to kill","description":"No description","latitude":"54.7584","longitude":"-2.69531","gaz_id":"2635167","name":"United Kingdom","cluster_id":"35582456","topic":"General","rep_term":null,"score":"2.32636e+07","snippet":"... ones.&#x2029; Ch&eacute; Ramsden works for a national children&#39;s charity in the <span class='georef'>UK</span>. She has previously been a Research Assistant at the London School of ...","url_id":"946931450","domain":"opendemocracy.net","num_docs":"260","num_images":"109","num_videos":"7","url":"http://www.opendemocracy.net/5050/ch%C3%A9-ramsden/oscar-pistorius-shooting-to-kill","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa2","display_caption":"Text messages Oscar Pistorius murder trial","gaztag_id":"407007924","time_since":"00:04:38","translate_title":null,"grid_cell":"1"},{"title":"Texts from Oscar Pistorius' girlfriend reveal her fear before slaying","description":"No description","latitude":"33.749","longitude":"-84.388","gaz_id":"4180439","name":"Atlanta","cluster_id":"35582456","topic":"General","rep_term":null,"score":"2.32636e+07","snippet":"... Richard Allen Greene reported from Pretoria and Emily Smith reported from <span class='georef'>Atlanta</span>. CNN legal analyst Kelly Phelps contributed to this report.","url_id":"946532339","domain":"cnn.com","num_docs":"260","num_images":"109","num_videos":"7","url":"http://www.cnn.com/2014/03/25/world/africa/oscar-pistorius-trial/index.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+rss%2Fcnn_latest+%28RSS%3A+Most+Recent%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa2","display_caption":"Text messages Oscar Pistorius murder trial","gaztag_id":"406974353","time_since":"00:09:19","translate_title":null,"grid_cell":"1"},{"title":"Texts from Oscar Pistorius' girlfriend reveal her fear before slaying","description":"No description","latitude":"-33.9258","longitude":"18.4232","gaz_id":"3369157","name":"Cape Town","cluster_id":"35582456","topic":"General","rep_term":null,"score":"2.32636e+07","snippet":"... &quot;You have picked on me incessantly since you got back from CT (<span class='georef'>Cape Town</span>) and I understand that you are sick but it&#39;s nasty... I was not flirting ...","url_id":"946532339","domain":"cnn.com","num_docs":"260","num_images":"109","num_videos":"7","url":"http://www.cnn.com/2014/03/25/world/africa/oscar-pistorius-trial/index.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+rss%2Fcnn_latest+%28RSS%3A+Most+Recent%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa2","display_caption":"Text messages Oscar Pistorius murder trial","gaztag_id":"406974352","time_since":"00:09:19","translate_title":null,"grid_cell":"1"},{"title":"Only 4 messages show argument - Roux","description":"A police data analyst found four messages out of 1 709 between murder-accused Oscar Pistorius and Reeva Steenkamp which could show an argument, defence lawyer Barry Roux has pointed out.","latitude":"-26.2023","longitude":"28.0436","gaz_id":"993800","name":"Johannesburg","cluster_id":"35582456","topic":"General","rep_term":null,"score":"2.32636e+07","snippet":"... He allegedly fired a shot from a Glock pistol under a table at a <span class='georef'>Johannesburg</span> restaurant in January 2013. On 30 September 2012 he allegedly shot ...","url_id":"947041691","domain":"m.news24.com","num_docs":"260","num_images":"109","num_videos":"7","url":"http://m.news24.com/news24/SouthAfrica/Oscar_Pistorius/Only-4-messages-show-argument-Roux-20140325","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa2","display_caption":"Text messages Oscar Pistorius murder trial","gaztag_id":"407019499","time_since":"00:03:25","translate_title":null,"grid_cell":"1"},{"title":"Pistorius trial: Cell phone expert back on stand","description":"More than 1,000 messages between Oscar Pistorius and Reeva Steenkamp are being examined.","latitude":"-25.7449","longitude":"28.1878","gaz_id":"964137","name":"Pretoria","cluster_id":"35582456","topic":"General","rep_term":null,"score":"2.32636e+07","snippet":"<span class='georef'>PRETORIA</span>, South Africa (AP) &mdash; The police cell phone expert who accessed messages ...","url_id":"946923163","domain":"usatoday.com","num_docs":"260","num_images":"109","num_videos":"7","url":"http://www.usatoday.com/story/sports/olympics/2014/03/25/pistorius-trial/6858491/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+usatoday-NewsTopStories+%28USATODAY+-+News+Top+Stories%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa2","display_caption":"Text messages Oscar Pistorius murder trial","gaztag_id":"407007536","time_since":"00:04:43","translate_title":null,"grid_cell":"1"},{"title":"Hundreds of Morsi’s backers due in court","description":"No description","latitude":"38.8951","longitude":"-77.0364","gaz_id":"4140963","name":"Washington D.C.","cluster_id":"35600600","topic":"General","rep_term":null,"score":"2.32635e+07","snippet":"... court had rushed the trial without following the required procedures.&#x2029; <span class='georef'>Washington</span> and the EU expressed concern and questioned the fairness of proceedings ...","url_id":"946851062","domain":"iol.co.za","num_docs":"179","num_images":"60","num_videos":"2","url":"http://www.iol.co.za/news/africa/hundreds-of-morsi-s-backers-due-in-court-1.1665780","media_url":"http://news.yahoo.com/egypt-rule-islamists-mass-trial-april-28-131512048.html","display_caption":"Supporters of ousted President Mohammed Morsi chant slogans during a demonstration inside Ain Shams University in Cairo Egypt, Monday, March 24, 2014. A court in Egypt on Monday sentenced to death 529 supporters of Morsi on charges of murdering a policeman and attacking police, convicting them after only two sessions in one of the largest mass trials in the country in decades. (AP Photo/Roger Anis, El Shorouk) EGYPT OUT","gaztag_id":"407002528","time_since":"00:05:31","translate_title":null,"grid_cell":"1"},{"title":"Egypt adjourns second mass Brotherhood trial","description":"Trial of nearly 700 alleged Muslim Brotherhood supporters, on charges including murder, is adjourned until April 28.","latitude":"28.1099","longitude":"30.7503","gaz_id":"360686","name":"Minya","cluster_id":"35600600","topic":"General","rep_term":null,"score":"2.32635e+07","snippet":"... of murder, incitement of violence and sabotage.&#x2029; The proceedings in <span class='georef'>Minya</span>, south of Cairo, on Tuesday, which have been adjourned until April 28, ...","url_id":"947368316","domain":"aljazeera.com","num_docs":"179","num_images":"60","num_videos":"2","url":"http://www.aljazeera.com/news/middleeast/2014/03/egypt-adjourns-second-mass-brotherhood-trial-201432592426453446.html","media_url":"http://news.yahoo.com/egypt-rule-islamists-mass-trial-april-28-131512048.html","display_caption":"Supporters of ousted President Mohammed Morsi chant slogans during a demonstration inside Ain Shams University in Cairo Egypt, Monday, March 24, 2014. A court in Egypt on Monday sentenced to death 529 supporters of Morsi on charges of murdering a policeman and attacking police, convicting them after only two sessions in one of the largest mass trials in the country in decades. (AP Photo/Roger Anis, El Shorouk) EGYPT OUT","gaztag_id":"407049863","time_since":"00:00:20","translate_title":null,"grid_cell":"1"},{"title":"Egypt puts Muslim Brotherhood leader, 682 others on trial ","description":"The leader of Egypt's outlawed Muslim Brotherhood and 682 others went on trial on Tuesday on charges including murder, their lawyer said, a day after more than 500 supporters of deposed Islamist president Mohamed Mursi were sentenced to death.","latitude":"31.5","longitude":"34.75","gaz_id":"294640","name":"Israel","cluster_id":"35600600","topic":"General","rep_term":null,"score":"2.32635e+07","snippet":"... heart of the revolt against Mubarak.&#x2029; Islamist militants in Sinai near <span class='georef'>Israel</span>&amp;apos;s border have stepped up attacks against police and soldiers since ...","url_id":"947279290","domain":"zawya.com","num_docs":"179","num_images":"60","num_videos":"2","url":"http://www.zawya.com/mobile/default.cfm/actstory/sidTR20140325nL5N0MM1JL4","media_url":"http://news.yahoo.com/egypt-rule-islamists-mass-trial-april-28-131512048.html","display_caption":"Supporters of ousted President Mohammed Morsi chant slogans during a demonstration inside Ain Shams University in Cairo Egypt, Monday, March 24, 2014. A court in Egypt on Monday sentenced to death 529 supporters of Morsi on charges of murdering a policeman and attacking police, convicting them after only two sessions in one of the largest mass trials in the country in decades. (AP Photo/Roger Anis, El Shorouk) EGYPT OUT","gaztag_id":"407040065","time_since":"00:01:11","translate_title":null,"grid_cell":"1"},{"title":"Egypt: Shocking Death Sentences Follow Sham Trial","description":"No description","latitude":"30.0081","longitude":"31.2109","gaz_id":"360995","name":"Giza","cluster_id":"35600600","topic":"General","rep_term":null,"score":"2.32635e+07","snippet":"... Brotherhood sit-ins in Raba&rsquo;a Al-Adawiya and Nahda Squares in Cairo and <span class='georef'>Giza</span>. Police and army forces used&#x2029; Out of the 545 people charged, 291 are at ...","url_id":"946623918","domain":"hrw.org","num_docs":"179","num_images":"60","num_videos":"2","url":"http://www.hrw.org/news/2014/03/24/egypt-shocking-death-sentences-follow-sham-trial","media_url":"http://news.yahoo.com/egypt-rule-islamists-mass-trial-april-28-131512048.html","display_caption":"Supporters of ousted President Mohammed Morsi chant slogans during a demonstration inside Ain Shams University in Cairo Egypt, Monday, March 24, 2014. A court in Egypt on Monday sentenced to death 529 supporters of Morsi on charges of murdering a policeman and attacking police, convicting them after only two sessions in one of the largest mass trials in the country in decades. (AP Photo/Roger Anis, El Shorouk) EGYPT OUT","gaztag_id":"406981965","time_since":"00:08:11","translate_title":null,"grid_cell":"1"},{"title":"Egypt adjourns second mass Brotherhood trial","description":"Trial of nearly 700 alleged Muslim Brotherhood supporters, on charges including murder, is adjourned until April 28.","latitude":"30.0626","longitude":"31.2497","gaz_id":"360630","name":"Cairo","cluster_id":"35600600","topic":"General","rep_term":null,"score":"2.32635e+07","snippet":"... incitement of violence and sabotage.&#x2029; The proceedings in Minya, south of <span class='georef'>Cairo</span>, on Tuesday, which have been adjourned until April 28,&nbsp;came a day after ...","url_id":"947368316","domain":"aljazeera.com","num_docs":"179","num_images":"60","num_videos":"2","url":"http://www.aljazeera.com/news/middleeast/2014/03/egypt-adjourns-second-mass-brotherhood-trial-201432592426453446.html","media_url":"http://news.yahoo.com/egypt-rule-islamists-mass-trial-april-28-131512048.html","display_caption":"Supporters of ousted President Mohammed Morsi chant slogans during a demonstration inside Ain Shams University in Cairo Egypt, Monday, March 24, 2014. A court in Egypt on Monday sentenced to death 529 supporters of Morsi on charges of murdering a policeman and attacking police, convicting them after only two sessions in one of the largest mass trials in the country in decades. (AP Photo/Roger Anis, El Shorouk) EGYPT OUT","gaztag_id":"407049864","time_since":"00:00:20","translate_title":null,"grid_cell":"1"},{"title":"Navy: Sailor, civilian suspect killed in shooting in Virginia at world's largest naval base","description":"No description","latitude":"40.7143","longitude":"-74.006","gaz_id":"5128581","name":"New York","cluster_id":"35621183","topic":"General","rep_term":null,"score":"2.32634e+07","snippet":"... the USS Mahan, a guided-missile destroyer, moves up the Hudson River in <span class='georef'>New York</span> during Fleet Week. A sailor was fatally shot aboard the USS Mahan at ...","url_id":"947205087","domain":"ksl.com","num_docs":"82","num_images":"11","num_videos":"1","url":"http://www.ksl.com/?sid=29201029&sc=no-redirect","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2588665-6OKyqzLf8-HSK1-587_308x185.jpg","display_caption":"A male sailor was shot by another man, a civilian, who was able to gain access to the USS Mahan on Monday night and the suspect was shot dead by security forces later (pictured in 2004)","gaztag_id":"407032836","time_since":"00:01:53","translate_title":null,"grid_cell":"1"},{"title":"Navy: Sailor, civilian suspect killed in shooting in Virginia at world's largest naval base","description":"No description","latitude":"36.8468","longitude":"-76.2852","gaz_id":"4776222","name":"Norfolk","cluster_id":"35621183","topic":"General","rep_term":null,"score":"2.32634e+07","snippet":"<span class='georef'>NORFOLK</span>, Va. (AP) &mdash; The Navy says a sailor was shot and killed aboard a ...","url_id":"947205087","domain":"ksl.com","num_docs":"82","num_images":"11","num_videos":"1","url":"http://www.ksl.com/?sid=29201029&sc=no-redirect","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2588665-6OKyqzLf8-HSK1-587_308x185.jpg","display_caption":"A male sailor was shot by another man, a civilian, who was able to gain access to the USS Mahan on Monday night and the suspect was shot dead by security forces later (pictured in 2004)","gaztag_id":"407032829","time_since":"00:01:53","translate_title":null,"grid_cell":"1"},{"title":"US sailor shot dead at naval base","description":"A civilian is killed by security forces after he shot dead a US sailor on board a destroyer docked at a Virginia naval base.","latitude":"38.8951","longitude":"-77.0364","gaz_id":"4140963","name":"Washington D.C.","cluster_id":"35621183","topic":"General","rep_term":null,"score":"2.32634e+07","snippet":"... More bodies found after US landslide&#x2029; Authorities in the US state of <span class='georef'>Washington</span> confirm at least 14 people were killed in Saturday&#39;s landslide, as the ...","url_id":"947322146","domain":"bbc.co.uk","num_docs":"82","num_images":"11","num_videos":"1","url":"http://www.bbc.co.uk/news/world-us-canada-26733753#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2588665-6OKyqzLf8-HSK1-587_308x185.jpg","display_caption":"A male sailor was shot by another man, a civilian, who was able to gain access to the USS Mahan on Monday night and the suspect was shot dead by security forces later (pictured in 2004)","gaztag_id":"407043977","time_since":"00:00:48","translate_title":null,"grid_cell":"1"},{"title":"Two killed in US naval base shooting","description":"Civilian suspect killed after shooting at Virginia naval base leaves one sailor dead.","latitude":"36.9301","longitude":"-76.2912","gaz_id":"7910320","name":"Naval Station Norfolk","cluster_id":"35621183","topic":"General","rep_term":null,"score":"2.32634e+07","snippet":"A sailor was fatally shot and killed at <span class='georef'>Naval Station Norfolk</span> in Virginia and security forces have killed the male civilian suspect, a ...","url_id":"947280580","domain":"aljazeera.com","num_docs":"82","num_images":"11","num_videos":"1","url":"http://www.aljazeera.com/news/americas/2014/03/two-killed-us-naval-base-shooting-201432594934904476.html","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2588665-6OKyqzLf8-HSK1-587_308x185.jpg","display_caption":"A male sailor was shot by another man, a civilian, who was able to gain access to the USS Mahan on Monday night and the suspect was shot dead by security forces later (pictured in 2004)","gaztag_id":"407040145","time_since":"00:01:10","translate_title":null,"grid_cell":"1"},{"title":"Two killed in US naval base shooting","description":"Civilian suspect killed after shooting at Virginia naval base leaves one sailor dead.","latitude":"37.5481","longitude":"-77.4467","gaz_id":"6254928","name":"Virginia","cluster_id":"35621183","topic":"General","rep_term":null,"score":"2.32634e+07","snippet":"A sailor was fatally shot and killed at Naval Station Norfolk in <span class='georef'>Virginia</span> and security forces have killed the male civilian suspect, a base spokeswoman said. ...","url_id":"947280580","domain":"aljazeera.com","num_docs":"82","num_images":"11","num_videos":"1","url":"http://www.aljazeera.com/news/americas/2014/03/two-killed-us-naval-base-shooting-201432594934904476.html","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2588665-6OKyqzLf8-HSK1-587_308x185.jpg","display_caption":"A male sailor was shot by another man, a civilian, who was able to gain access to the USS Mahan on Monday night and the suspect was shot dead by security forces later (pictured in 2004)","gaztag_id":"407040146","time_since":"00:01:10","translate_title":null,"grid_cell":"1"},{"title":"Scientist who discovered Ebola frustrated by deadly Guinea outbreak - Reuters","description":"No description","latitude":"6.5","longitude":"-9.5","gaz_id":"2275384","name":"Liberia","cluster_id":"35581747","topic":"Health","rep_term":null,"score":"2.32634e+07","snippet":"... Six suspected Ebola cases, including five deaths, in neighbouring <span class='georef'>Liberia</span> were also under investigation, it said.&#x2029; Piot says he&#39;s saddened and ...","url_id":"947384215","domain":"mobile.reuters.com","num_docs":"139","num_images":"31","num_videos":"4","url":"http://mobile.reuters.com/article/idUSBREA2O0VP20140325?irpc=932","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa6","display_caption":"Ebola","gaztag_id":"407051330","time_since":"00:00:11","translate_title":null,"grid_cell":"1"},{"title":"Suspected Ebola cases in Liberia, Canada","description":"Liberia suspects numerous infections and five deaths are from the Ebola virus spreading from neighbouring Guinea, with one suspected case in Canada.","latitude":"8.5","longitude":"-11.5","gaz_id":"2403846","name":"Sierra Leone","cluster_id":"35581747","topic":"Health","rep_term":null,"score":"2.32634e+07","snippet":"... Guinea&#39;s southern districts of Macenta, Kissidougou and Gueckedou, which border <span class='georef'>Sierra Leone</span>, have been particularly affected by the outbreak.&#x2029; A man who recently ...","url_id":"947302603","domain":"mg.co.za","num_docs":"139","num_images":"31","num_videos":"4","url":"http://mg.co.za/article/2014-03-25-suspected-ebola-cases-in-liberia-canada/","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa6","display_caption":"Ebola","gaztag_id":"407042044","time_since":"00:00:59","translate_title":null,"grid_cell":"1"},{"title":"At least 61 have died in Guinea Ebola outbreak - euronews","description":"No description","latitude":"2","longitude":"33","gaz_id":"226074","name":"Uganda","cluster_id":"35581747","topic":"Health","rep_term":null,"score":"2.32634e+07","snippet":"... The disease is most commonly found in the Democratic Republic of Congo, <span class='georef'>Uganda</span> and South Sudan.&#x2029; This is the first time Ebola has been recorded in ...","url_id":"947291895","domain":"euronews.com","num_docs":"139","num_images":"31","num_videos":"4","url":"http://www.euronews.com/2014/03/25/at-least-61-have-died-in-guinea-ebola-outbreak/","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa6","display_caption":"Ebola","gaztag_id":"407041024","time_since":"00:01:04","translate_title":null,"grid_cell":"1"},{"title":"Guinea battles Ebola outbreak","description":"No description","latitude":"46","longitude":"2","gaz_id":"3017382","name":"France","cluster_id":"35581747","topic":"Health","rep_term":null,"score":"2.32634e+07","snippet":"... The first analyses of samples by the Pasteur Institute in the <span class='georef'>French</span> city of Lyon showed that cases in southern Guinea were due to the Ebola virus. ...","url_id":"946526142","domain":"iol.co.za","num_docs":"139","num_images":"31","num_videos":"4","url":"http://www.iol.co.za/news/africa/guinea-battles-ebola-outbreak-1.1665677","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa6","display_caption":"Ebola","gaztag_id":"406972843","time_since":"00:09:30","translate_title":null,"grid_cell":"1"},{"title":"Scientist who discovered Ebola frustrated by deadly Guinea outbreak - Reuters","description":"No description","latitude":"0","longitude":"25","gaz_id":"203312","name":"Congo - Kinshasa","cluster_id":"35581747","topic":"Health","rep_term":null,"score":"2.32634e+07","snippet":"... with a mysterious pathogen that had been killing people in the forests of <span class='georef'>Zaire</span>.&#x2029; If he&#39;d known then what he was to discover - that inside was Ebola, one ...","url_id":"947384215","domain":"mobile.reuters.com","num_docs":"139","num_images":"31","num_videos":"4","url":"http://mobile.reuters.com/article/idUSBREA2O0VP20140325?irpc=932","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa6","display_caption":"Ebola","gaztag_id":"407051319","time_since":"00:00:11","translate_title":null,"grid_cell":"1"},{"title":"Teams quarantine victims in Guinea Ebola outbreak","description":"CONAKRY, Guinea (AP) — Health workers in protective suits have set up isolation centers in a remote corner of West Africa where the deadly Ebola virus already has killed 59 people.","latitude":"9.53795","longitude":"-13.6773","gaz_id":"2422465","name":"Conakry","cluster_id":"35581747","topic":"Health","rep_term":null,"score":"2.32634e+07","snippet":"<span class='georef'>CONAKRY</span>, Guinea (AP) &mdash; Health workers in protective suits have set up isolation ...","url_id":"947291971","domain":"news.yahoo.com","num_docs":"139","num_images":"31","num_videos":"4","url":"http://news.yahoo.com/teams-quarantine-victims-guinea-ebola-outbreak-122532110.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cfa6","display_caption":"Ebola","gaztag_id":"407041031","time_since":"00:01:04","translate_title":null,"grid_cell":"1"},{"title":"Obama to Propose Ending NSA Phone Data Collection: Report","description":"The proposal would have phone companies, not the NSA, keep records of Americans' telephone metadata","latitude":"39.1082","longitude":"-76.7432","gaz_id":"7257909","name":"Fort George Meade","cluster_id":"35617839","topic":"Health","rep_term":null,"score":"2.32633e+07","snippet":"Surveillance&#x2029; The National Security Agency (NSA) headquarters building in <span class='georef'>Fort Meade</span>, Md.&#x2029; Reuters&#x2029; The proposal would have phone companies, not the NSA, keep ...","url_id":"946540367","domain":"time.com","num_docs":"94","num_images":"17","num_videos":"0","url":"http://time.com/36455/obama-nsa-proposal/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+time%2Ftopstories+%28TIME%3A+Top+Stories%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d234","display_caption":"US President Barack Obama waves as he arrives at the Royal Palace Huis ten Bosch in The Hague on March 24, 2014","gaztag_id":"406974891","time_since":"00:09:13","translate_title":null,"grid_cell":"1"},{"title":"Barack Obama seeks to end NSA phone sweep - Politico","description":"No description","latitude":"39.0004","longitude":"-76.75","gaz_id":"4361885","name":"Maryland","cluster_id":"35617839","topic":"Health","rep_term":null,"score":"2.32633e+07","snippet":"... Mike Rogers (R-Mich.) and ranking Democrat Dutch Ruppersberger of <span class='georef'>Maryland</span> &mdash; a proposal which seems largely in sync with Obama&rsquo;s anticipated reform proposals. ...","url_id":"947214919","domain":"politico.com","num_docs":"94","num_images":"17","num_videos":"0","url":"http://www.politico.com/story/2014/03/report-barack-obama-nsa-104974.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d234","display_caption":"US President Barack Obama waves as he arrives at the Royal Palace Huis ten Bosch in The Hague on March 24, 2014","gaztag_id":"407033438","time_since":"00:01:48","translate_title":null,"grid_cell":"1"},{"title":"Obama proposes to end NSA bulk data collection","description":"No description","latitude":"38.8951","longitude":"-77.0364","gaz_id":"4140963","name":"Washington D.C.","cluster_id":"35617839","topic":"Health","rep_term":null,"score":"2.32633e+07","snippet":"<span class='georef'>Washington</span> (AFP) - US President Barack Obama is proposing to end the National ...","url_id":"947380365","domain":"news.yahoo.com","num_docs":"94","num_images":"17","num_videos":"0","url":"http://news.yahoo.com/obama-proposes-end-nsa-bulk-data-collection-131109578.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d234","display_caption":"US President Barack Obama waves as he arrives at the Royal Palace Huis ten Bosch in The Hague on March 24, 2014","gaztag_id":"407051072","time_since":"00:00:13","translate_title":null,"grid_cell":"1"},{"title":"US eyes ending NSA's bulk data collection: reports","description":"No description","latitude":"38.9171","longitude":"-77.0003","gaz_id":"4138106","name":"District of Columbia","cluster_id":"35617839","topic":"Health","rep_term":null,"score":"2.32633e+07","snippet":"... on cyber security at Georgetown University March 4, 2014 in Washington, <span class='georef'>DC</span> (AFP Photo/Brendan Smialowski)&#x2029; Washington (AFP) - President Barack ...","url_id":"946424672","domain":"news.yahoo.com","num_docs":"94","num_images":"17","num_videos":"0","url":"http://news.yahoo.com/us-eyes-ending-nsas-bulk-data-collection-reports-023717099.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d234","display_caption":"US President Barack Obama waves as he arrives at the Royal Palace Huis ten Bosch in The Hague on March 24, 2014","gaztag_id":"406964005","time_since":"00:10:47","translate_title":null,"grid_cell":"1"},{"title":"Obama to propose ending NSA bulk collection of phone records","description":"Government could still access 'metadata' when needed in new arrangement, top official says.","latitude":"60","longitude":"100","gaz_id":"2017370","name":"Russia","cluster_id":"35617839","topic":"Health","rep_term":null,"score":"2.32633e+07","snippet":"... of data-gathering were first leaked by Snowden.&#x2029; Snowden is currently in <span class='georef'>Russia</span> under temporary asylum.&#x2029; Obama has defended use of the data to protect ...","url_id":"947011025","domain":"haaretz.com","num_docs":"94","num_images":"17","num_videos":"0","url":"http://www.haaretz.com/news/world/1.581796","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d234","display_caption":"US President Barack Obama waves as he arrives at the Royal Palace Huis ten Bosch in The Hague on March 24, 2014","gaztag_id":"407016955","time_since":"00:03:46","translate_title":null,"grid_cell":"1"},{"title":"Google partners with frame maker for Internet eyewear","description":"Google on Monday said it is joining forces with the frame giant behind Ray-Ban and other brands to create and sell Glass Internet-linked eyewear in the US.","latitude":"37.2502","longitude":"-119.751","gaz_id":"5332921","name":"California","cluster_id":"35581329","topic":"Entertainment","rep_term":null,"score":"2.32633e+07","snippet":"... brands to create and sell Glass Internet-linked eyewear in the US.&#x2029; The <span class='georef'>California</span>-based technology titan billed the partnership with Luxottica as its ...","url_id":"946175727","domain":"m.phys.org","num_docs":"85","num_images":"19","num_videos":"0","url":"http://m.phys.org/_news314908905.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d05a","display_caption":"A Google search page is seen through the spectacles of a computer user in Leicester, central England July 20, 2007. REUTERS/Darren Staples/Files","gaztag_id":"406941527","time_since":"00:13:51","translate_title":null,"grid_cell":"1"},{"title":"Luxottica shares rise sharply on Google Glass deal","description":"Shares in Italian eyewear maker Luxottica have risen sharply on the announcement that it will make frames for Google's new Internet-connected eyewear, the Google Glass.","latitude":"45.4643","longitude":"9.18951","gaz_id":"3173435","name":"Milan","cluster_id":"35581329","topic":"Entertainment","rep_term":null,"score":"2.32633e+07","snippet":"... Luxottica shares were up 4.7 percent to 40.77 euros ($55.80) in <span class='georef'>Milan</span> trading Tuesday. CEO Andrea Guerra told the daily La Repubblica that the ...","url_id":"947068637","domain":"miamiherald.com","num_docs":"85","num_images":"19","num_videos":"0","url":"http://www.miamiherald.com/2014/03/25/4017263/luxottica-shares-rise-sharply.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d05a","display_caption":"A Google search page is seen through the spectacles of a computer user in Leicester, central England July 20, 2007. REUTERS/Darren Staples/Files","gaztag_id":"407021697","time_since":"00:03:09","translate_title":null,"grid_cell":"1"},{"title":"Google Tries to Shoot Down ''Myths' About Glass","description":"No description","latitude":"40.7143","longitude":"-74.006","gaz_id":"5128581","name":"New York","cluster_id":"35581329","topic":"Entertainment","rep_term":null,"score":"2.32633e+07","snippet":"... rest on a table at the Google Glass Basecamp space at Chelsea Market, in <span class='georef'>New York</span>.&#x2029; By Devin Coldewey&#x2029; Google took to the official Google Glass blog&#x2029; about ...","url_id":"944337001","domain":"nbcnews.com","num_docs":"85","num_images":"19","num_videos":"0","url":"http://www.nbcnews.com/tech/gadgets/google-tries-shoot-down-myths-about-glass-n58996","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d05a","display_caption":"A Google search page is seen through the spectacles of a computer user in Leicester, central England July 20, 2007. REUTERS/Darren Staples/Files","gaztag_id":"406649566","time_since":"01:10:46","translate_title":null,"grid_cell":"1"},{"title":"Google Fights Back to Defend Google Glass Against 'Myths'","description":"Google tries to improve public perceptions of its Google Glass eyewear-mounted computers. Several analysts give their views on the company's defense strategy.","latitude":"37.7749","longitude":"-122.419","gaz_id":"5391959","name":"San Francisco","cluster_id":"35581329","topic":"Entertainment","rep_term":null,"score":"2.32633e+07","snippet":"... confines of Silicon Valley or the &#39;Silicon Alley&#39; startup community in <span class='georef'>San Francisco</span>.&quot;&#x2029; Dan Maycock, an analyst with OneAccord Digital, said that Google has ...","url_id":"944326655","domain":"mobile.eweek.com","num_docs":"85","num_images":"19","num_videos":"0","url":"http://mobile.eweek.com/cloud/google-fights-back-to-defend-google-glass-against-myths.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d05a","display_caption":"A Google search page is seen through the spectacles of a computer user in Leicester, central England July 20, 2007. REUTERS/Darren Staples/Files","gaztag_id":"406621359","time_since":"01:10:52","translate_title":null,"grid_cell":"1"},{"title":"Google Fights Back to Defend Google Glass Against 'Myths'","description":"Google tries to improve public perceptions of its Google Glass eyewear-mounted computers. Several analysts give their views on the company's defense strategy.","latitude":"33.4936","longitude":"-117.148","gaz_id":"5401395","name":"Temecula","cluster_id":"35581329","topic":"Entertainment","rep_term":null,"score":"2.32633e+07","snippet":"... Google Glass.&#x2029; In the case of the ticketed driver, Cecelia Abadie, 44, of <span class='georef'>Temecula</span>, Calif., was cited in October 2013 as she drove home from San Diego, but ...","url_id":"944326655","domain":"mobile.eweek.com","num_docs":"85","num_images":"19","num_videos":"0","url":"http://mobile.eweek.com/cloud/google-fights-back-to-defend-google-glass-against-myths.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d05a","display_caption":"A Google search page is seen through the spectacles of a computer user in Leicester, central England July 20, 2007. REUTERS/Darren Staples/Files","gaztag_id":"406621357","time_since":"01:10:52","translate_title":null,"grid_cell":"1"},{"title":"China says Japan nuclear stockpile move step in right direction","description":"China said on Tuesday that Japan's agreeing to turn over sensitive nuclear material of potential use in bombs to the United States was a step in the right direction, but that it had other material it still needed to hand over. The leaders of Japan and the United States, meeting at a nuclear security summit in the Netherlands, said that hundreds of kilograms (pounds) of material of potential use would be downgraded and disposed of. \"China welcomes the reaching of this deal,\" the Foreign Ministry...","latitude":"35","longitude":"105","gaz_id":"1814991","name":"China","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"BEIJING (Reuters) - <span class='georef'>China</span> said on Tuesday that Japan&#39;s agreeing to turn over sensitive nuclear ...","url_id":"947340331","domain":"news.yahoo.com","num_docs":"164","num_images":"67","num_videos":"1","url":"http://news.yahoo.com/china-says-japan-nuclear-stockpile-move-step-direction-124614464.html","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"407046027","time_since":"00:00:38","translate_title":null,"grid_cell":"1"},{"title":"China says Japan nuclear stockpile move step in right direction","description":"China said on Tuesday that Japan's agreeing to turn over sensitive nuclear material of potential use in bombs to the United States was a step in the right direction, but that it had other material it still needed to hand over. The leaders of Japan and the United States, meeting at a nuclear security summit in the Netherlands, said that hundreds of kilograms (pounds) of material of potential use would be downgraded and disposed of. \"China welcomes the reaching of this deal,\" the Foreign Ministry...","latitude":"38.8951","longitude":"-77.0364","gaz_id":"4140963","name":"Washington D.C.","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"... this year about regional rival Japan&#39;s holding of plutonium, though <span class='georef'>Washington</span> and the United Nations nuclear agency had made it clear they are not ...","url_id":"947340331","domain":"news.yahoo.com","num_docs":"164","num_images":"67","num_videos":"1","url":"http://news.yahoo.com/china-says-japan-nuclear-stockpile-move-step-direction-124614464.html","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"407046037","time_since":"00:00:38","translate_title":null,"grid_cell":"1"},{"title":"Obama meets Putin ally with Ukraine still in mind","description":"No description","latitude":"32","longitude":"53","gaz_id":"130758","name":"Iran","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"... Arab anxieties over the Syrian civil war and U.S. nuclear talks with <span class='georef'>Iran</span>, a Saudi Arabia rival in the region.&#x2029; The meeting with Park and Abe ...","url_id":"946962053","domain":"news.yahoo.com","num_docs":"164","num_images":"67","num_videos":"1","url":"http://news.yahoo.com/obama-meets-putin-ally-ukraine-still-mind-090759560--politics.html","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"407011320","time_since":"00:04:18","translate_title":null,"grid_cell":"1"},{"title":"World leaders take part in nuclear terrorism war games at G7 summit","description":"David Cameron and his fellow world leaders at a major international summit took part in a war game to test how they would react to an outbreak of nuclear terrorism","latitude":"49","longitude":"32","gaz_id":"690791","name":"Ukraine","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"... Western leaders meet to discuss Crimea after Russian forces storms last <span class='georef'>Ukrainian</span> base&#x2029; The NSS organisers said: &#39;This is the first time that an ...","url_id":"947347673","domain":"dailymail.co.uk","num_docs":"164","num_images":"67","num_videos":"1","url":"http://www.dailymail.co.uk/news/article-2578170/World-leaders-nuclear-terrorism-war-games-G7-summit-good-news-won.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"407046740","time_since":"00:00:34","translate_title":null,"grid_cell":"1"},{"title":"35 Countries Pledge to Boost Nuclear Security","description":"35 countries pledge to turn international nuclear security guidelines into national law","latitude":"37","longitude":"127.5","gaz_id":"1835841","name":"South Korea","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"... to thwart nuclear terrorism, the Netherlands, the United States and <span class='georef'>South Korea</span> said in a joint statement.&#x2029; The agreement, accepted by 35 of the 53 ...","url_id":"947339195","domain":"abcnews.go.com","num_docs":"164","num_images":"67","num_videos":"1","url":"http://abcnews.go.com/International/wireStory/35-countries-pledge-boost-nuclear-security-23048405","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"407045856","time_since":"00:00:39","translate_title":null,"grid_cell":"1"},{"title":"World leaders take part in nuclear terrorism war games at G7 summit","description":"David Cameron and his fellow world leaders at a major international summit took part in a war game to test how they would react to an outbreak of nuclear terrorism","latitude":"60","longitude":"100","gaz_id":"2017370","name":"Russia","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"... touch screen to record their answers.&#x2029; G8 becomes the G7 as leaders kick <span class='georef'>Russia</span> out: It&#39;s not a big problem, says Putin&#39;s foreign minister&#x2029; Obama to the rescue? ...","url_id":"947347673","domain":"dailymail.co.uk","num_docs":"164","num_images":"67","num_videos":"1","url":"http://www.dailymail.co.uk/news/article-2578170/World-leaders-nuclear-terrorism-war-games-G7-summit-good-news-won.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"407046738","time_since":"00:00:34","translate_title":null,"grid_cell":"1"},{"title":"PM Harper meets with Japan's leader at nuclear summit","description":"Stephen Harper is at the Nuclear Security Summit in The Hague today to meet with various officials at an event largely overshadowed by the crisis in eastern Europe.","latitude":"51.5","longitude":"10.5","gaz_id":"2921044","name":"Germany","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"... the conclusion of the nuclear summit.&#x2029; On Wednesday morning, he heads to <span class='georef'>Germany</span> for two days.&#x2029; His agenda there will include a meeting with German ...","url_id":"947104645","domain":"ctvnews.ca","num_docs":"164","num_images":"67","num_videos":"1","url":"http://www.ctvnews.ca/politics/pm-harper-meets-with-japan-s-leader-at-nuclear-summit-1.1744527","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"407024143","time_since":"00:02:49","translate_title":null,"grid_cell":"1"},{"title":"Japan-U.S. nuclear deal announced at Hague summit","description":"U.S. President Barack Obama scores a victory in his attempts to limit global nuclear proliferation.","latitude":"54.7584","longitude":"-2.69531","gaz_id":"2635167","name":"United Kingdom","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"... 10 years. Japan originally received the material from the U.S. and <span class='georef'>Britain</span> in the 1960s for use in research.&#x2029; Isozaki said Japan and U.S. also &quot;have ...","url_id":"945728850","domain":"haaretz.com","num_docs":"164","num_images":"67","num_videos":"1","url":"http://www.haaretz.com/news/world/1.581652","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"406884053","time_since":"00:19:14","translate_title":null,"grid_cell":"1"},{"title":"35 Countries Pledge to Boost Nuclear Security","description":"35 countries pledge to turn international nuclear security guidelines into national law","latitude":"42.8333","longitude":"12.8333","gaz_id":"3175395","name":"Italy","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"... 39 to 25.&#x2029; This summit featured new reduction commitments, with Japan, <span class='georef'>Italy</span> and Belgium pledging to reduce their stocks of highly enriched uranium and plutonium. ...","url_id":"947339195","domain":"abcnews.go.com","num_docs":"164","num_images":"67","num_videos":"1","url":"http://abcnews.go.com/International/wireStory/35-countries-pledge-boost-nuclear-security-23048405","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"407045858","time_since":"00:00:39","translate_title":null,"grid_cell":"1"},{"title":"Japan-U.S. nuclear deal announced at Hague summit","description":"U.S. President Barack Obama scores a victory in his attempts to limit global nuclear proliferation.","latitude":"35.6854","longitude":"139.753","gaz_id":"1861060","name":"Japan","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"U.S. Energy Secretary Ernest Moniz and <span class='georef'>Japan</span>&#39;s Special Advisor to the Prime Minister Yosuke Isozaki a two-day Nuclear ...","url_id":"945728850","domain":"haaretz.com","num_docs":"164","num_images":"67","num_videos":"1","url":"http://www.haaretz.com/news/world/1.581652","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"406884043","time_since":"00:19:14","translate_title":null,"grid_cell":"1"},{"title":"35 Countries Pledge to Boost Nuclear Security","description":"35 countries pledge to turn international nuclear security guidelines into national law","latitude":"60.1087","longitude":"-113.643","gaz_id":"6251999","name":"Canada","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"... Among countries agreeing to the initiative were France, Britain, <span class='georef'>Canada</span> and Israel. Notably absent are Russia, China, India and Pakistan.&#x2029; &quot;We&#39;ve ...","url_id":"947339195","domain":"abcnews.go.com","num_docs":"164","num_images":"67","num_videos":"1","url":"http://abcnews.go.com/International/wireStory/35-countries-pledge-boost-nuclear-security-23048405","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"407045862","time_since":"00:00:39","translate_title":null,"grid_cell":"1"},{"title":"World leaders take part in nuclear terrorism war games at G7 summit","description":"David Cameron and his fellow world leaders at a major international summit took part in a war game to test how they would react to an outbreak of nuclear terrorism","latitude":"52.5","longitude":"5.75","gaz_id":"2750405","name":"Netherlands","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"... for a plenary session of the 2014 Nuclear Security Summit in The Hague, <span class='georef'>Netherlands</span>. Leaders from around the world have come to discuss matters related to ...","url_id":"947347673","domain":"dailymail.co.uk","num_docs":"164","num_images":"67","num_videos":"1","url":"http://www.dailymail.co.uk/news/article-2578170/World-leaders-nuclear-terrorism-war-games-G7-summit-good-news-won.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"407046744","time_since":"00:00:34","translate_title":null,"grid_cell":"1"},{"title":"35 Countries Pledge to Boost Nuclear Security","description":"35 countries pledge to turn international nuclear security guidelines into national law","latitude":"46","longitude":"2","gaz_id":"3017382","name":"France","cluster_id":"35580948","topic":"General","rep_term":null,"score":"2.32633e+07","snippet":"... their nuclear material.&#x2029; Among countries agreeing to the initiative were <span class='georef'>France</span>, Britain, Canada and Israel. Notably absent are Russia, China, India and ...","url_id":"947339195","domain":"abcnews.go.com","num_docs":"164","num_images":"67","num_videos":"1","url":"http://abcnews.go.com/International/wireStory/35-countries-pledge-boost-nuclear-security-23048405","media_url":"http://i.dailymail.co.uk/i/pix/2014/03/25/article-2578170-1C8C70C200000578-515_634x451.jpg","display_caption":"David Cameron arrives for dinner at NSS summit","gaztag_id":"407045860","time_since":"00:00:39","translate_title":null,"grid_cell":"1"},{"title":"168,000 gallons of oil to corral","description":"The spill came at the start of the migrating and nesting season for many area shorebirds.","latitude":"31.2504","longitude":"-99.2506","gaz_id":"4736286","name":"Texas","cluster_id":"35580655","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... Suydam, a spokesman with the Texas General Land Office, which represents <span class='georef'>Texas</span> in the recovery effort.&#x2029; &quot;This particular type of fuel oil and the ...","url_id":"946476172","domain":"usatoday.com","num_docs":"287","num_images":"138","num_videos":"3","url":"http://www.usatoday.com/story/news/2014/03/24/texas-oil-spill/6848193/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+usatoday-NewsTopStories+%28USATODAY+-+News+Top+Stories%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cd08","display_caption":"Texas Bay Oil Spill","gaztag_id":"406968980","time_since":"00:10:08","translate_title":null,"grid_cell":"1"},{"title":"Coast Guard prepares Houston Channel for opening after oil spill","description":"The U.S. Coast Guard said it was preparing for the possible reopening on Tuesday of the Houston Ship Channel the waterway for tankers supplying more than onetenth of U.S. refining capacity that has","latitude":"29.7633","longitude":"-95.3633","gaz_id":"4699066","name":"Houston","cluster_id":"35580655","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... 54 deep-draft ships waited to enter the channel headed to the port of <span class='georef'>Houston</span> while 47 waited to leave, according to the Coast Guard. Another four ...","url_id":"947256999","domain":"oilvoice.com","num_docs":"287","num_images":"138","num_videos":"3","url":"http://www.oilvoice.com/n/Coast_Guard_prepares_Houston_Channel_for_opening_after_oil_spill/2e8a58bd992d.aspx","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cd08","display_caption":"Texas Bay Oil Spill","gaztag_id":"407037718","time_since":"00:01:24","translate_title":null,"grid_cell":"1"},{"title":"Why Oil Drilling Is Both Safer And Riskier Since Exxon Valdez","description":"The 1989 oil spill prompted changes in oil industry regulation and spill research. But oil companies today are working in more remote places than ever, from the Arctic to deep below the ocean floor.","latitude":"64.0003","longitude":"-150","gaz_id":"5879092","name":"Alaska","cluster_id":"35580655","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... since the Exxon Valdez hit a reef in 1989 and began spilling oil into <span class='georef'>Alaska</span>&#39;s Prince William Sound. The outcry over images of oil-soaked wildlife and ...","url_id":"946838322","domain":"npr.org","num_docs":"287","num_images":"138","num_videos":"3","url":"http://www.npr.org/2014/03/25/293876738/why-oil-drilling-is-both-safer-and-riskier-since-exxon-valdez?ft=1&f=1001","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cd08","display_caption":"Texas Bay Oil Spill","gaztag_id":"407001086","time_since":"00:05:39","translate_title":null,"grid_cell":"1"},{"title":"168,000 gallons of oil to corral","description":"The spill came at the start of the migrating and nesting season for many area shorebirds.","latitude":"29.3838","longitude":"-94.9027","gaz_id":"4736134","name":"Texas City","cluster_id":"35580655","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... while 200 more are working from a unified command center set up in nearby <span class='georef'>Texas City</span>, he said.&#x2029; The spill came at the start of the migrating and nesting ...","url_id":"946476172","domain":"usatoday.com","num_docs":"287","num_images":"138","num_videos":"3","url":"http://www.usatoday.com/story/news/2014/03/24/texas-oil-spill/6848193/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+usatoday-NewsTopStories+%28USATODAY+-+News+Top+Stories%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cd08","display_caption":"Texas Bay Oil Spill","gaztag_id":"406968983","time_since":"00:10:08","translate_title":null,"grid_cell":"1"},{"title":"Why Oil Drilling Is Both Safer And Riskier Since Exxon Valdez","description":"The 1989 oil spill prompted changes in oil industry regulation and spill research. But oil companies today are working in more remote places than ever, from the Arctic to deep below the ocean floor.","latitude":"25","longitude":"-90","gaz_id":"3523271","name":"Gulf of Mexico","cluster_id":"35580655","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... The biggest regulatory changes to the oil industry came after BP&#39;s 2010 oil spill in the <span class='georef'>Gulf of Mexico</span>. Old agencies were replaced by new ones with stronger mandates and more ...","url_id":"946838322","domain":"npr.org","num_docs":"287","num_images":"138","num_videos":"3","url":"http://www.npr.org/2014/03/25/293876738/why-oil-drilling-is-both-safer-and-riskier-since-exxon-valdez?ft=1&f=1001","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cd08","display_caption":"Texas Bay Oil Spill","gaztag_id":"407001079","time_since":"00:05:39","translate_title":null,"grid_cell":"1"},{"title":"14 dead in US mudslide, search continues","description":"US mudslide death toll has risen to 14 as search for scores of missing people continues.","latitude":"38.8951","longitude":"-77.0364","gaz_id":"4140963","name":"Washington D.C.","cluster_id":"35580770","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... for survivors of a destructive mudslide in the north-western US state of <span class='georef'>Washington</span> grew Monday to include scores of people who were still unaccounted for, ...","url_id":"947315720","domain":"m.news24.com","num_docs":"389","num_images":"192","num_videos":"3","url":"http://m.news24.com/news24/World/News/14-dead-in-US-mudslide-search-continues-20140325","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cf46","display_caption":"Washington slide death toll 14; search continues","gaztag_id":"407043264","time_since":"00:00:51","translate_title":null,"grid_cell":"1"},{"title":"Search for Wash. landslide victims to resume Tuesday","description":"About 176 people are still missing following a Saturday landslide in Oso.","latitude":"47.5001","longitude":"-120.501","gaz_id":"5815135","name":"Washington","cluster_id":"35580770","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... in the Oso landslide on Monday, March 24, 2014, outside the Arlington, <span class='georef'>Wash.</span>, police station.&#x2029; &quot;I&#39;d like to reiterate that it&#39;s not that there are 176 ...","url_id":"946704767","domain":"usatoday.com","num_docs":"389","num_images":"192","num_videos":"3","url":"http://www.usatoday.com/story/news/nation/2014/03/25/washington-state-mudslide-oso-arlington/6855733/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+usatoday-NewsTopStories+%28USATODAY+-+News+Top+Stories%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cf46","display_caption":"Washington slide death toll 14; search continues","gaztag_id":"406987036","time_since":"00:07:12","translate_title":null,"grid_cell":"1"},{"title":"Search for Wash. landslide victims to resume Tuesday","description":"About 176 people are still missing following a Saturday landslide in Oso.","latitude":"48.0498","longitude":"-121.718","gaz_id":"5810982","name":"Snohomish County","cluster_id":"35580770","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... wiped away by a massive landslide on Saturday.&#x2029; As of Monday night, <span class='georef'>Snohomish County</span> officials had collected 176 names of people who remain unaccounted for ...","url_id":"946704767","domain":"usatoday.com","num_docs":"389","num_images":"192","num_videos":"3","url":"http://www.usatoday.com/story/news/nation/2014/03/25/washington-state-mudslide-oso-arlington/6855733/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+usatoday-NewsTopStories+%28USATODAY+-+News+Top+Stories%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cf46","display_caption":"Washington slide death toll 14; search continues","gaztag_id":"406987039","time_since":"00:07:12","translate_title":null,"grid_cell":"1"},{"title":"Search for Wash. landslide victims to resume Tuesday","description":"About 176 people are still missing following a Saturday landslide in Oso.","latitude":"48.1987","longitude":"-122.125","gaz_id":"5785868","name":"Arlington","cluster_id":"35580770","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... efforts in the Oso landslide on Monday, March 24, 2014, outside the <span class='georef'>Arlington</span>, Wash., police station.&#x2029; &quot;I&#39;d like to reiterate that it&#39;s not that there ...","url_id":"946704767","domain":"usatoday.com","num_docs":"389","num_images":"192","num_videos":"3","url":"http://www.usatoday.com/story/news/nation/2014/03/25/washington-state-mudslide-oso-arlington/6855733/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+usatoday-NewsTopStories+%28USATODAY+-+News+Top+Stories%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cf46","display_caption":"Washington slide death toll 14; search continues","gaztag_id":"406987035","time_since":"00:07:12","translate_title":null,"grid_cell":"1"},{"title":"Search for Wash. landslide victims to resume Tuesday","description":"About 176 people are still missing following a Saturday landslide in Oso.","latitude":"47.6062","longitude":"-122.332","gaz_id":"5809844","name":"Seattle","cluster_id":"35580770","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... almost 50 homes, covers an 1-square mile area about 55 miles northeast of <span class='georef'>Seattle</span>.&#x2029; &quot;Our crews are up against an enormous challenge, it&#39;s like quicksand ...","url_id":"946704767","domain":"usatoday.com","num_docs":"389","num_images":"192","num_videos":"3","url":"http://www.usatoday.com/story/news/nation/2014/03/25/washington-state-mudslide-oso-arlington/6855733/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+usatoday-NewsTopStories+%28USATODAY+-+News+Top+Stories%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cf46","display_caption":"Washington slide death toll 14; search continues","gaztag_id":"406987042","time_since":"00:07:12","translate_title":null,"grid_cell":"1"},{"title":"Washington state mudslide death toll climbs to 14 with up to 176 missing","description":"THE death toll from a devastating weekend mudslide in Washington state has climbed to 14 people as six more bodies were found, while the number reported missing continued to swell two days after the tragedy, authorities said.","latitude":"48.2707","longitude":"-121.93","gaz_id":"5805870","name":"Oso","cluster_id":"35580770","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... the muck that engulfed dozens of homes when a rain-soaked hillside near <span class='georef'>Oso</span>, Washington, collapsed on Saturday morning.&#x2029; Meanwhile, concern lingered ...","url_id":"946865478","domain":"independent.ie","num_docs":"389","num_images":"192","num_videos":"3","url":"http://www.independent.ie/world-news/americas/washington-state-mudslide-death-toll-climbs-to-14-with-up-to-176-missing-30123350.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cf46","display_caption":"Washington slide death toll 14; search continues","gaztag_id":"407003645","time_since":"00:05:21","translate_title":null,"grid_cell":"1"},{"title":"Expert: ‘Miracle’ no deaths in O’Hare CTA train crash","description":"A Chicago train driven by an apparently sleepy operator, which jumped its tracks and screeched up an escalator at O’Hare, could have caused untold death and destruction had the crash occurred during the day when the station is usually packed with travelers, a transportation expert said. “It is a miracle that nobody died,” said Joseph Schwieterman, a transportation expert at DePaul University.","latitude":"40.7143","longitude":"-74.006","gaz_id":"5128581","name":"New York","cluster_id":"35601571","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... the tracks.&#x2029; In a December train derailment that killed four people in <span class='georef'>New York</span>, representatives of the operating engineer have said he may have lost ...","url_id":"947357198","domain":"dailyherald.com","num_docs":"211","num_images":"76","num_videos":"2","url":"http://www.dailyherald.com/article/20140325/news/140329103/","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d111","display_caption":"A Chicago Transit Authority train car rests on an escalator at the O’Hare Airport station after it derailed early Monday in Chicago. More than 30 people were injured after the train “climbed over the last stop, jumped up on the sidewalk and then went up the stairs and escalator,” according to Chicago Fire Commissioner Jose Santiago.","gaztag_id":"407047950","time_since":"00:00:28","translate_title":null,"grid_cell":"1"},{"title":"Blue Line Station At O’Hare Remains Closed As NTSB Probes Crash","description":"No description","latitude":"41.8795","longitude":"-87.8137","gaz_id":"4892775","name":"Forest Park","cluster_id":"35601571","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... Forrest Claypool.&#x2029; The rest of the Blue Line &ndash; between Rosemont and <span class='georef'>Forest Park</span> &ndash; was running roughly on schedule, Claypool said. Most passengers who ...","url_id":"947309168","domain":"chicago.cbslocal.com","num_docs":"211","num_images":"76","num_videos":"2","url":"http://chicago.cbslocal.com/2014/03/25/blue-line-station-at-ohare-remains-closed-as-ntsb-probes-crash/","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d111","display_caption":"A Chicago Transit Authority train car rests on an escalator at the O’Hare Airport station after it derailed early Monday in Chicago. More than 30 people were injured after the train “climbed over the last stop, jumped up on the sidewalk and then went up the stairs and escalator,” according to Chicago Fire Commissioner Jose Santiago.","gaztag_id":"407042478","time_since":"00:00:55","translate_title":null,"grid_cell":"1"},{"title":"Blue Line Station At O’Hare Remains Closed As NTSB Probes Crash","description":"No description","latitude":"41.9953","longitude":"-87.8845","gaz_id":"4908179","name":"Rosemont","cluster_id":"35601571","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... has been running bus shuttles in both directions between O&rsquo;Hare and the <span class='georef'>Rosemont</span> stop. Those buses were departing Rosemont and O&rsquo;Hare every 5 to 6 ...","url_id":"947309168","domain":"chicago.cbslocal.com","num_docs":"211","num_images":"76","num_videos":"2","url":"http://chicago.cbslocal.com/2014/03/25/blue-line-station-at-ohare-remains-closed-as-ntsb-probes-crash/","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d111","display_caption":"A Chicago Transit Authority train car rests on an escalator at the O’Hare Airport station after it derailed early Monday in Chicago. More than 30 people were injured after the train “climbed over the last stop, jumped up on the sidewalk and then went up the stairs and escalator,” according to Chicago Fire Commissioner Jose Santiago.","gaztag_id":"407042475","time_since":"00:00:55","translate_title":null,"grid_cell":"1"},{"title":"Did O'Hare train driver fall asleep at the wheel? President of transit union says 'indication is there' that she dozed off before derailing the train, injuring more than 30 people","description":"Authorities inspect the wreckage of two Chicago Transit Authority trains that crashed Monday, September 30, 2013, in Forest Park, Illinois","latitude":"40.0003","longitude":"-89.2504","gaz_id":"4896861","name":"Illinois","cluster_id":"35601571","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"... Authority trains that crashed Monday, September 30, 2013, in Forest Park, <span class='georef'>Illinois</span>&#x2029; This image from a video provided by NBC Chicago shows the aftermath of a ...","url_id":"946313469","domain":"dailymail.co.uk","num_docs":"211","num_images":"76","num_videos":"2","url":"http://www.dailymail.co.uk/news/article-2588541/Did-OHare-train-driver-fall-asleep-wheel-President-transit-union-says-indication-dozed-derailing-train-injuring-30-people.html?ITO=1490&ns_mchannel=rss&ns_campaign=1490","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d111","display_caption":"A Chicago Transit Authority train car rests on an escalator at the O’Hare Airport station after it derailed early Monday in Chicago. More than 30 people were injured after the train “climbed over the last stop, jumped up on the sidewalk and then went up the stairs and escalator,” according to Chicago Fire Commissioner Jose Santiago.","gaztag_id":"406955128","time_since":"00:12:10","translate_title":null,"grid_cell":"1"},{"title":"'Miracle' no deaths in Chicago airport train crash","description":"Federal officials are investigating what caused a Chicago commuter train to jump its track and crash up an escalator at one of the world's largest airports.","latitude":"41.85","longitude":"-87.65","gaz_id":"4887398","name":"Chicago","cluster_id":"35601571","topic":"General","rep_term":null,"score":"2.32632e+07","snippet":"Federal officials are investigating what caused a <span class='georef'>Chicago</span> commuter train to jump its track and crash up an escalator at one of the ...","url_id":"946647329","domain":"miamiherald.com","num_docs":"211","num_images":"76","num_videos":"2","url":"http://www.miamiherald.com/2014/03/25/4017079/miracle-no-deaths-in-chicago-airport.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d111","display_caption":"A Chicago Transit Authority train car rests on an escalator at the O’Hare Airport station after it derailed early Monday in Chicago. More than 30 people were injured after the train “climbed over the last stop, jumped up on the sidewalk and then went up the stairs and escalator,” according to Chicago Fire Commissioner Jose Santiago.","gaztag_id":"406983061","time_since":"00:07:54","translate_title":null,"grid_cell":"1"},{"title":"Jury finds Madoff Five guilty on all counts","description":"A Manhattan jury convicted five of the master scammer’s former office workers on all counts Monday afternoon, finding they helped to execute the fraudster’s $65 billion Ponzi scheme.","latitude":"40.7498","longitude":"-73.7976","gaz_id":"5133266","name":"Queens","cluster_id":"35611919","topic":"General","rep_term":null,"score":"2.3263e+07","snippet":"... also testifying pursuant to a plea deal.&#x2029; Bongiorno, a Howard Beach, <span class='georef'>Queens</span>, native hired straight out of high school as a firm secretary, became a ...","url_id":"945827156","domain":"m.nydailynews.com","num_docs":"89","num_images":"40","num_videos":"0","url":"http://m.nydailynews.com/1.1732198","media_url":"http://media.centredaily.com/smedia/2014/03/25/06/40/717-dIher.AuSt.55.jpeg","display_caption":"Madoff Fraud Trial","gaztag_id":"406900437","time_since":"00:18:01","translate_title":null,"grid_cell":"1"},{"title":"5 Madoff ex-workers convicted in case's 1st trial","description":"Five former employees of imprisoned financier Bernard Madoff (MAY'-dawf) have been convicted of conspiracy for helping him carry out his Ponzi scheme.","latitude":"44.5002","longitude":"-90.0004","gaz_id":"5279468","name":"Wisconsin","cluster_id":"35611919","topic":"General","rep_term":null,"score":"2.3263e+07","snippet":"... says she supports changes the Assembly made to the proposal.&#x2029; The <span class='georef'>Wisconsin</span> state Senate plans to vote next week on a bill designed to make ...","url_id":"945787560","domain":"wbay.com","num_docs":"89","num_images":"40","num_videos":"0","url":"http://www.wbay.com/story/25058362/5-madoff-ex-workers-convicted-in-cases-1st-trial","media_url":"http://media.centredaily.com/smedia/2014/03/25/06/40/717-dIher.AuSt.55.jpeg","display_caption":"Madoff Fraud Trial","gaztag_id":"406892369","time_since":"00:18:31","translate_title":null,"grid_cell":"1"},{"title":"Guilty Verdicts For 5 Former Madoff Employees","description":"No description","latitude":"35.5007","longitude":"-80.0003","gaz_id":"4482348","name":"North Carolina","cluster_id":"35611919","topic":"General","rep_term":null,"score":"2.3263e+07","snippet":"... He pleaded guilty to bilking investors of $20 billion and remains imprisoned in <span class='georef'>North Carolina</span>. ...","url_id":"945791555","domain":"newyork.cbslocal.com","num_docs":"89","num_images":"40","num_videos":"0","url":"http://newyork.cbslocal.com/2014/03/24/guilty-verdicts-for-5-former-madoff-employees/","media_url":"http://media.centredaily.com/smedia/2014/03/25/06/40/717-dIher.AuSt.55.jpeg","display_caption":"Madoff Fraud Trial","gaztag_id":"406892765","time_since":"00:18:27","translate_title":null,"grid_cell":"1"},{"title":"Jury finds Madoff Five guilty on all counts","description":"A Manhattan jury convicted five of the master scammer’s former office workers on all counts Monday afternoon, finding they helped to execute the fraudster’s $65 billion Ponzi scheme.","latitude":"40.7783","longitude":"-73.9519","gaz_id":"6615322","name":"Upper East Side","cluster_id":"35611919","topic":"General","rep_term":null,"score":"2.3263e+07","snippet":"... used Madoff&rsquo;s dirty money to send his son to The Dalton School on the <span class='georef'>Upper East Side</span>, pay his own country club dues and buy fancy cigars.&#x2029; Madoff&rsquo;s right-hand ...","url_id":"945827156","domain":"m.nydailynews.com","num_docs":"89","num_images":"40","num_videos":"0","url":"http://m.nydailynews.com/1.1732198","media_url":"http://media.centredaily.com/smedia/2014/03/25/06/40/717-dIher.AuSt.55.jpeg","display_caption":"Madoff Fraud Trial","gaztag_id":"406900440","time_since":"00:18:01","translate_title":null,"grid_cell":"1"},{"title":"Jury Convicts 5 Ex-Madoff Employees Of Securities Fraud","description":"A federal court jury in New York found 5 of Bernard Madoff's former employees guilty of fraud. They were accused of enriching themselves by helping the imprisoned financier carry out a Ponzi scheme.","latitude":"40.7143","longitude":"-74.006","gaz_id":"5128581","name":"New York","cluster_id":"35611919","topic":"General","rep_term":null,"score":"2.3263e+07","snippet":"A federal court jury in <span class='georef'>New York</span> found 5 of Bernard Madoff&#39;s former employees guilty of fraud. ...","url_id":"947266192","domain":"npr.org","num_docs":"89","num_images":"40","num_videos":"0","url":"http://www.npr.org/2014/03/25/294133850/jury-convicts-5-ex-madoff-employees-of-securities-fraud?ft=1&f=3","media_url":"http://media.centredaily.com/smedia/2014/03/25/06/40/717-dIher.AuSt.55.jpeg","display_caption":"Madoff Fraud Trial","gaztag_id":"407038702","time_since":"00:01:18","translate_title":null,"grid_cell":"1"},{"title":"Hotel blast that killed Vancouver doctor was work of foreign intelligence service, not militants, says Afghan president","description":"Afghanistan's presidency says its spy agency believes that a foreign intelligence service, and not the country's main militant groups, was behind the attack on a Kabul hotel last week that killed nine people.","latitude":"60.1087","longitude":"-113.643","gaz_id":"6251999","name":"Canada","cluster_id":"35555684","topic":"General","rep_term":null,"score":"2.3263e+07","snippet":"... critical condition in a Kabul hospital with several bullet wounds.&#x2029; Two <span class='georef'>Canadians</span>&#x2029; , an American, a national of Paraguay and a fifth Afghan were also among the dead. ...","url_id":"945780140","domain":"vancouverdesi.com","num_docs":"201","num_images":"59","num_videos":"3","url":"http://www.vancouverdesi.com/news/afghan-presidency-alleges-foreign-intelligence-service-may-be-behind-deadly-hotel-attack-2/734215/","media_url":"http://news.yahoo.com/taliban-hit-kabul-election-office-kill-least-4-115940838.html","display_caption":"Afghan security officers arrive to the scene after two suicide bombers have struck near the home of candidate running for president, Ashraf Ghani Ahmadzai in the country&#39;s April 5 elections, in Kabul, Afghanistan, Tuesday, March 25, 2014. An Afghan police official said two suicide bombers were dead but another four insurgents may still be inside the election commission office. Witnesses reported heavy gunfire and scores of heavily armed troops with Afghanistan’s rapid response force had surrounded the building, located near the home of Ahmadzai. (AP Photo/Rahmat Gul)","gaztag_id":"406891074","time_since":"00:18:37","translate_title":null,"grid_cell":"1"},{"title":"Taliban hit Kabul election office, kill at least 4","description":"No description","latitude":"30","longitude":"70","gaz_id":"1168579","name":"Pakistan","cluster_id":"35555684","topic":"General","rep_term":null,"score":"2.3263e+07","snippet":"... on an Afghan outpost in the eastern Khost province, on the border with <span class='georef'>Pakistan</span>.&#x2029; In Kunar, three insurgents with suicide vests stormed the ...","url_id":"947253479","domain":"news.yahoo.com","num_docs":"201","num_images":"59","num_videos":"3","url":"http://news.yahoo.com/taliban-hit-kabul-election-office-kill-least-4-115940838.html","media_url":"http://news.yahoo.com/taliban-hit-kabul-election-office-kill-least-4-115940838.html","display_caption":"Afghan security officers arrive to the scene after two suicide bombers have struck near the home of candidate running for president, Ashraf Ghani Ahmadzai in the country&#39;s April 5 elections, in Kabul, Afghanistan, Tuesday, March 25, 2014. An Afghan police official said two suicide bombers were dead but another four insurgents may still be inside the election commission office. Witnesses reported heavy gunfire and scores of heavily armed troops with Afghanistan’s rapid response force had surrounded the building, located near the home of Ahmadzai. (AP Photo/Rahmat Gul)","gaztag_id":"407037388","time_since":"00:01:26","translate_title":null,"grid_cell":"1"},{"title":"Militants attack Kabul election office","description":"Militants launched a gun and suicide attack on an Afghan election commission office in Kabul today, less than two weeks before the presidential poll.","latitude":"24.8967","longitude":"91.8717","gaz_id":"1185099","name":"Sylhet","cluster_id":"35555684","topic":"General","rep_term":null,"score":"2.3263e+07","snippet":"... Taliban suicide attackers invaded a police station in the eastern city of <span class='georef'>Jalalabad</span>, killing 10 policemen.&#x2029; And a week ago, a suicide bomber killed 16 people ...","url_id":"947104170","domain":"rte.ie","num_docs":"201","num_images":"59","num_videos":"3","url":"http://www.rte.ie/news/2014/0325/604425-kabul-attack-elections/","media_url":"http://news.yahoo.com/taliban-hit-kabul-election-office-kill-least-4-115940838.html","display_caption":"Afghan security officers arrive to the scene after two suicide bombers have struck near the home of candidate running for president, Ashraf Ghani Ahmadzai in the country&#39;s April 5 elections, in Kabul, Afghanistan, Tuesday, March 25, 2014. An Afghan police official said two suicide bombers were dead but another four insurgents may still be inside the election commission office. Witnesses reported heavy gunfire and scores of heavily armed troops with Afghanistan’s rapid response force had surrounded the building, located near the home of Ahmadzai. (AP Photo/Rahmat Gul)","gaztag_id":"407024092","time_since":"00:02:50","translate_title":null,"grid_cell":"1"},{"title":"Afghan police detain 9 in Kabul hotel attack","description":"KABUL, Afghanistan (AP) — Afghan police have detained nine senior employees of a private security company that provided guards to the Kabul hotel attacked by the Taliban last week.","latitude":"34.5281","longitude":"69.1723","gaz_id":"1138958","name":"Kabul","cluster_id":"35555684","topic":"General","rep_term":null,"score":"2.3263e+07","snippet":"... on the poster reads, &quot;Happy New Year.&quot; (AP Photo/Massoud Hossaini, File)&#x2029; <span class='georef'>KABUL</span>, Afghanistan (AP) &mdash; Afghan police have detained nine senior employees of ...","url_id":"946848036","domain":"boston.com","num_docs":"201","num_images":"59","num_videos":"3","url":"http://www.boston.com/news/world/asia/2014/03/25/afghan-police-detain-kabul-hotel-attack/DHSoLoEFq7KnsN03mpFYpI/story.html","media_url":"http://news.yahoo.com/taliban-hit-kabul-election-office-kill-least-4-115940838.html","display_caption":"Afghan security officers arrive to the scene after two suicide bombers have struck near the home of candidate running for president, Ashraf Ghani Ahmadzai in the country&#39;s April 5 elections, in Kabul, Afghanistan, Tuesday, March 25, 2014. An Afghan police official said two suicide bombers were dead but another four insurgents may still be inside the election commission office. Witnesses reported heavy gunfire and scores of heavily armed troops with Afghanistan’s rapid response force had surrounded the building, located near the home of Ahmadzai. (AP Photo/Rahmat Gul)","gaztag_id":"407002209","time_since":"00:05:34","translate_title":null,"grid_cell":"1"},{"title":"Hotel blast that killed Vancouver doctor was work of foreign intelligence service, not militants, says Afghan president","description":"Afghanistan's presidency says its spy agency believes that a foreign intelligence service, and not the country's main militant groups, was behind the attack on a Kabul hotel last week that killed nine people.","latitude":"39.76","longitude":"-98.5","gaz_id":"6252001","name":"United States","cluster_id":"35555684","topic":"General","rep_term":null,"score":"2.3263e+07","snippet":"... in a Kabul hospital with several bullet wounds.&#x2029; Two Canadians&#x2029; , an <span class='georef'>American</span>, a national of Paraguay and a fifth Afghan were also among the dead. ...","url_id":"945780140","domain":"vancouverdesi.com","num_docs":"201","num_images":"59","num_videos":"3","url":"http://www.vancouverdesi.com/news/afghan-presidency-alleges-foreign-intelligence-service-may-be-behind-deadly-hotel-attack-2/734215/","media_url":"http://news.yahoo.com/taliban-hit-kabul-election-office-kill-least-4-115940838.html","display_caption":"Afghan security officers arrive to the scene after two suicide bombers have struck near the home of candidate running for president, Ashraf Ghani Ahmadzai in the country&#39;s April 5 elections, in Kabul, Afghanistan, Tuesday, March 25, 2014. An Afghan police official said two suicide bombers were dead but another four insurgents may still be inside the election commission office. Witnesses reported heavy gunfire and scores of heavily armed troops with Afghanistan’s rapid response force had surrounded the building, located near the home of Ahmadzai. (AP Photo/Rahmat Gul)","gaztag_id":"406891075","time_since":"00:18:37","translate_title":null,"grid_cell":"1"},{"title":"Business Lobby Ignores Hobby Lobby","description":"Social conservatives have been up in arms over Obamacare's requirement that businesses provide employees no-cost contraceptives coverage, but the party's business wing has been largely quiet on the issue as it heads to the High Court","latitude":"40.2724","longitude":"-76.9057","gaz_id":"6254927","name":"Pennsylvania","cluster_id":"35580774","topic":"Health","rep_term":null,"score":"2.32629e+07","snippet":"... stores based in Oklahoma City, and Conestoga Wood, a cabinet-maker from <span class='georef'>Pennsylvania</span>, test the question of whether for-profit corporations can invoke the ...","url_id":"946991524","domain":"time.com","num_docs":"83","num_images":"30","num_videos":"0","url":"http://time.com/36007/hobby-lobby-supreme-court/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+time%2Ftopstories+%28TIME%3A+Top+Stories%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cbe3","display_caption":"Supreme Court Birth Control","gaztag_id":"407015694","time_since":"00:03:58","translate_title":null,"grid_cell":"1"},{"title":"Court Reviews Hobby Lobby Birth Control Case","description":"No description","latitude":"35.4921","longitude":"-97.5033","gaz_id":"4544379","name":"Oklahoma","cluster_id":"35580774","topic":"Health","rep_term":null,"score":"2.32629e+07","snippet":"... However, the owners of Hobby Lobby, which is a privately-owned comapny based in <span class='georef'>Oklahoma</span>, filed a lawsuit and said that this conflicts with their religious beliefs. ...","url_id":"947240237","domain":"dfw.cbslocal.com","num_docs":"83","num_images":"30","num_videos":"0","url":"http://dfw.cbslocal.com/2014/03/25/court-reviews-hobby-lobby-birth-control-case/","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cbe3","display_caption":"Supreme Court Birth Control","gaztag_id":"407035610","time_since":"00:01:33","translate_title":null,"grid_cell":"1"},{"title":"Religious case at Supreme Court could affect Obamacare and much more","description":"The Supreme Court will hear Hobby Lobby's religious liberty challenge to Obamacare on Tuesday. Its decision could have far-reaching consequences.","latitude":"38.8951","longitude":"-77.0364","gaz_id":"4140963","name":"Washington D.C.","cluster_id":"35580774","topic":"Health","rep_term":null,"score":"2.32629e+07","snippet":"<span class='georef'>WASHINGTON</span> &mdash; A challenge to part of President Obama&#39;s healthcare law that hits the ...","url_id":"945501826","domain":"chicagotribune.com","num_docs":"83","num_images":"30","num_videos":"0","url":"http://www.chicagotribune.com/news/nationworld/la-na-court-contraceptives-20140324,0,7958797.story?track=rss","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cbe3","display_caption":"Supreme Court Birth Control","gaztag_id":"406851988","time_since":"00:21:53","translate_title":null,"grid_cell":"1"},{"title":"Women Strongly Oppose Hobby Lobby's Birth Control Case: Poll","description":"More than two-thirds of U.S. women voters oppose allowing corporations to refuse to cover contraception in their health plans because of religious objections, according to a new poll released Monday by Hart Research Associates. The poll, commissioned by Planned Parenthood, the …","latitude":"34.5003","longitude":"-111.501","gaz_id":"5551752","name":"Arizona","cluster_id":"35580774","topic":"Health","rep_term":null,"score":"2.32629e+07","snippet":"... kinds of religious freedom laws, such as the one recently considered in <span class='georef'>Arizona</span> that would let businesses refuse to serve same sex couples because of ...","url_id":"947351214","domain":"watchdog4.newsvine.com","num_docs":"83","num_images":"30","num_videos":"0","url":"http://watchdog4.newsvine.com/_news/2014/03/25/23243869-women-strongly-oppose-hobby-lobbys-birth-control-case-poll","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cbe3","display_caption":"Supreme Court Birth Control","gaztag_id":"407048010","time_since":"00:00:32","translate_title":null,"grid_cell":"1"},{"title":"Religious case at Supreme Court could affect Obamacare and much more","description":"The Supreme Court will hear Hobby Lobby's religious liberty challenge to Obamacare on Tuesday. Its decision could have far-reaching consequences.","latitude":"39.7392","longitude":"-104.985","gaz_id":"5419384","name":"Denver","cluster_id":"35580774","topic":"Health","rep_term":null,"score":"2.32629e+07","snippet":"... expression, but not its religious expression,&quot; the judges on the <span class='georef'>Denver</span>-based appeals court wrote.&#x2029; The courtroom argument Tuesday will mark the ...","url_id":"945501826","domain":"chicagotribune.com","num_docs":"83","num_images":"30","num_videos":"0","url":"http://www.chicagotribune.com/news/nationworld/la-na-court-contraceptives-20140324,0,7958797.story?track=rss","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cbe3","display_caption":"Supreme Court Birth Control","gaztag_id":"406851990","time_since":"00:21:53","translate_title":null,"grid_cell":"1"},{"title":"Dow Drops As Comcast and Apple Rise (to Netflix's Dislike)","description":"Good evening, good lookin'. Here are the three things you need to know on March 25.","latitude":"35","longitude":"105","gaz_id":"1814991","name":"China","cluster_id":"35582815","topic":"Entertainment","rep_term":null,"score":"2.32629e+07","snippet":"... ahead with its usual business activities of anti-aging and beauty creams.&nbsp;<span class='georef'>China</span>&#39;s State Administration for Industry and Commerce had accused Nu Skin of ...","url_id":"946467118","domain":"fool.com","num_docs":"132","num_images":"17","num_videos":"0","url":"http://www.fool.com/investing/general/2014/03/24/dow-drops-as-comcast-and-apple-rise-to-netflixs-di.aspx","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c51c","display_caption":"Comcast, Apple reported to be in talks about a TV service ","gaztag_id":"406967482","time_since":"00:10:15","translate_title":null,"grid_cell":"1"},{"title":"Netflix falls most since October on Apple-Comcast speculation","description":"Netflix Inc., the largest online video-subscription service...","latitude":"37.2502","longitude":"-119.751","gaz_id":"5332921","name":"California","cluster_id":"35582815","topic":"Entertainment","rep_term":null,"score":"2.32629e+07","snippet":"... Cliff Edwards reports for Bloomberg.&#x2029; &ldquo;Netflix, based in Los Gatos, <span class='georef'>California</span>, fell 6.7 percent to $378.90 at the close in New York, the biggest ...","url_id":"946057926","domain":"macdailynews.com","num_docs":"132","num_images":"17","num_videos":"0","url":"http://macdailynews.com/2014/03/24/netflix-falls-most-since-october-on-apple-comcast-speculation/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+wordpress%2FxhfA+%28MacDailyNews%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c51c","display_caption":"Comcast, Apple reported to be in talks about a TV service ","gaztag_id":"406929812","time_since":"00:15:14","translate_title":null,"grid_cell":"1"},{"title":"Netflix falls most since October on Apple-Comcast speculation","description":"Netflix Inc., the largest online video-subscription service...","latitude":"37.2266","longitude":"-121.975","gaz_id":"5368518","name":"Los Gatos","cluster_id":"35582815","topic":"Entertainment","rep_term":null,"score":"2.32629e+07","snippet":"... Comcast Corp.,&rdquo; Cliff Edwards reports for Bloomberg.&#x2029; &ldquo;Netflix, based in <span class='georef'>Los Gatos</span>, California, fell 6.7 percent to $378.90 at the close in New York, the ...","url_id":"946057926","domain":"macdailynews.com","num_docs":"132","num_images":"17","num_videos":"0","url":"http://macdailynews.com/2014/03/24/netflix-falls-most-since-october-on-apple-comcast-speculation/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+wordpress%2FxhfA+%28MacDailyNews%29","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c51c","display_caption":"Comcast, Apple reported to be in talks about a TV service ","gaztag_id":"406929811","time_since":"00:15:14","translate_title":null,"grid_cell":"1"},{"title":"Apple, Comcast shares up on streaming TV talks - USA TODAY","description":"No description","latitude":"42.6987","longitude":"-71.1351","gaz_id":"4832272","name":"North Andover","cluster_id":"35582815","topic":"Entertainment","rep_term":null,"score":"2.32629e+07","snippet":"... Aug. 6, 2009 file photo, the Comcast logo is displayed on a TV set in <span class='georef'>North Andover</span>, Mass. (AP Photo/Elise Amendola, File) ORG XMIT: NYBZ106&#x2029; Shares of Apple ...","url_id":"945310216","domain":"usatoday.com","num_docs":"132","num_images":"17","num_videos":"0","url":"http://www.usatoday.com/story/money/2014/03/23/apple-comcast-talks/6806363/","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c51c","display_caption":"Comcast, Apple reported to be in talks about a TV service ","gaztag_id":"406821723","time_since":"01:00:05","translate_title":null,"grid_cell":"1"},{"title":"Tech Stocks: Apple gains on reports of Comcast talks","description":"Much of the tech sector was in the red Monday, with Apple Inc. a rare gainer following reports that the consumer-electronics gains has had talks about a new streaming TV service involving a partnership with Comcast Corp.","latitude":"37.7749","longitude":"-122.419","gaz_id":"5391959","name":"San Francisco","cluster_id":"35582815","topic":"Entertainment","rep_term":null,"score":"2.32629e+07","snippet":"<span class='georef'>SAN FRANCISCO</span> (MarketWatch) &mdash; Much of the tech sector was in the red Monday, with Apple ...","url_id":"945520864","domain":"marketwatch.com","num_docs":"132","num_images":"17","num_videos":"0","url":"http://www.marketwatch.com/story/apple-gains-on-reports-of-comcast-talks-2014-03-24?siteid=rss&rss=1","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150c51c","display_caption":"Comcast, Apple reported to be in talks about a TV service ","gaztag_id":"406854282","time_since":"00:21:41","translate_title":null,"grid_cell":"1"},{"title":"'It's gone.' Community copes with deadly mudslide","description":"OSO, Wash. (AP) — First there was a \"whoosh.\" Elaine Young said she thought it might be a chimney fire, a rush of air that lasted about 45 seconds. But when she stepped outside there was ominous silence. Something felt very, very wrong.","latitude":"48.0498","longitude":"-121.718","gaz_id":"5810982","name":"Snohomish County","cluster_id":"35621262","topic":"General","rep_term":null,"score":"2.32627e+07","snippet":"... known it would happen at some point,&rsquo;&rsquo; Daniel Miller told the newspaper.&#x2029; <span class='georef'>Snohomish County</span> Executive John Lovick and Public Works Director Steve Thomsen said Monday ...","url_id":"946848006","domain":"boston.com","num_docs":"25","num_images":"3","num_videos":"0","url":"http://www.boston.com/news/nation/2014/03/25/gone-community-copes-with-deadly-mudslide/7Z7TxWO3gUqQuPI3McnHyO/story.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d000","display_caption":" This March 23, 2014 photo, made available by the Washington State Dept of Transportation shows a view of the damage from Saturday's mudslide near Oso, Wash. At least eight people were killed in the 1-square-mile slide that hit in a rural area about 55 miles northeast of Seattle on Saturday. Several people also were critically injured, and about 30 homes were destroyed. (AP Photo/Washington State Dept of Transportation) ","gaztag_id":"407002069","time_since":"00:05:34","translate_title":null,"grid_cell":"1"},{"title":"'It's gone.' Community copes with deadly mudslide","description":"OSO, Wash. (AP) — First there was a \"whoosh.\" Elaine Young said she thought it might be a chimney fire, a rush of air that lasted about 45 seconds. But when she stepped outside there was ominous silence. Something felt very, very wrong.","latitude":"47.6062","longitude":"-122.332","gaz_id":"5809844","name":"Seattle","cluster_id":"35621262","topic":"General","rep_term":null,"score":"2.32627e+07","snippet":"... 1-square-mile slide that hit in a rural area about 55 miles northeast of <span class='georef'>Seattle</span> on Saturday. Several people also were critically injured, and about 30 ...","url_id":"946848006","domain":"boston.com","num_docs":"25","num_images":"3","num_videos":"0","url":"http://www.boston.com/news/nation/2014/03/25/gone-community-copes-with-deadly-mudslide/7Z7TxWO3gUqQuPI3McnHyO/story.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d000","display_caption":" This March 23, 2014 photo, made available by the Washington State Dept of Transportation shows a view of the damage from Saturday's mudslide near Oso, Wash. At least eight people were killed in the 1-square-mile slide that hit in a rural area about 55 miles northeast of Seattle on Saturday. Several people also were critically injured, and about 30 homes were destroyed. (AP Photo/Washington State Dept of Transportation) ","gaztag_id":"407002066","time_since":"00:05:34","translate_title":null,"grid_cell":"1"},{"title":"'It's gone.' Community copes with deadly mudslide","description":"No description","latitude":"37.2502","longitude":"-119.751","gaz_id":"5332921","name":"California","cluster_id":"35621262","topic":"General","rep_term":null,"score":"2.32627e+07","snippet":"... working in the area Saturday morning.&#x2029; Mendoza reported from San Jose, <span class='georef'>Calif.</span>. Associated Press writers Phuong Le and Donna Gordon Blankinship in ...","url_id":"946816684","domain":"kansas.com","num_docs":"25","num_images":"3","num_videos":"0","url":"http://www.kansas.com/2014/03/25/3366559/its-gone-community-copes-with.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d000","display_caption":" This March 23, 2014 photo, made available by the Washington State Dept of Transportation shows a view of the damage from Saturday's mudslide near Oso, Wash. At least eight people were killed in the 1-square-mile slide that hit in a rural area about 55 miles northeast of Seattle on Saturday. Several people also were critically injured, and about 30 homes were destroyed. (AP Photo/Washington State Dept of Transportation) ","gaztag_id":"406999100","time_since":"00:05:53","translate_title":null,"grid_cell":"1"},{"title":"'It's gone.' Community copes with deadly mudslide","description":"OSO, Wash. (AP) — First there was a \"whoosh.\" Elaine Young said she thought it might be a chimney fire, a rush of air that lasted about 45 seconds. But when she stepped outside there was ominous silence. Something felt very, very wrong.","latitude":"47.5001","longitude":"-120.501","gaz_id":"5815135","name":"Washington","cluster_id":"35621262","topic":"General","rep_term":null,"score":"2.32627e+07","snippet":"The Associated Press&#x2029; This March 23, 2014 photo, made available by the <span class='georef'>Washington</span> State Dept of Transportation shows a view of the damage from ...","url_id":"946848006","domain":"boston.com","num_docs":"25","num_images":"3","num_videos":"0","url":"http://www.boston.com/news/nation/2014/03/25/gone-community-copes-with-deadly-mudslide/7Z7TxWO3gUqQuPI3McnHyO/story.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d000","display_caption":" This March 23, 2014 photo, made available by the Washington State Dept of Transportation shows a view of the damage from Saturday's mudslide near Oso, Wash. At least eight people were killed in the 1-square-mile slide that hit in a rural area about 55 miles northeast of Seattle on Saturday. Several people also were critically injured, and about 30 homes were destroyed. (AP Photo/Washington State Dept of Transportation) ","gaztag_id":"407002063","time_since":"00:05:34","translate_title":null,"grid_cell":"1"},{"title":"'It's gone.' Community copes with deadly mudslide","description":"OSO, Wash. (AP) — First there was a \"whoosh.\" Elaine Young said she thought it might be a chimney fire, a rush of air that lasted about 45 seconds. But when she stepped outside there was ominous silence. Something felt very, very wrong.","latitude":"47.6561","longitude":"-122.311","gaz_id":"5814448","name":"University of Washington","cluster_id":"35621262","topic":"General","rep_term":null,"score":"2.32627e+07","snippet":"... said David Montgomery, an earth and space sciences professor at the <span class='georef'>University of Washington</span>, describing the deep-seated slide resulting from long-term, heavy rainfall. ...","url_id":"946848006","domain":"boston.com","num_docs":"25","num_images":"3","num_videos":"0","url":"http://www.boston.com/news/nation/2014/03/25/gone-community-copes-with-deadly-mudslide/7Z7TxWO3gUqQuPI3McnHyO/story.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d000","display_caption":" This March 23, 2014 photo, made available by the Washington State Dept of Transportation shows a view of the damage from Saturday's mudslide near Oso, Wash. At least eight people were killed in the 1-square-mile slide that hit in a rural area about 55 miles northeast of Seattle on Saturday. Several people also were critically injured, and about 30 homes were destroyed. (AP Photo/Washington State Dept of Transportation) ","gaztag_id":"407002060","time_since":"00:05:34","translate_title":null,"grid_cell":"1"},{"title":"'It's gone.' Community copes with deadly mudslide","description":"No description","latitude":"32.7357","longitude":"-97.1081","gaz_id":"4671240","name":"Arlington","cluster_id":"35621262","topic":"General","rep_term":null,"score":"2.32627e+07","snippet":"... Gail Moffett, a retired firefighter who lives in Oso and works at the hardware store in <span class='georef'>Arlington</span>, said she knows about 25 people who are missing. Among them, Moffett ...","url_id":"946816684","domain":"kansas.com","num_docs":"25","num_images":"3","num_videos":"0","url":"http://www.kansas.com/2014/03/25/3366559/its-gone-community-copes-with.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d000","display_caption":" This March 23, 2014 photo, made available by the Washington State Dept of Transportation shows a view of the damage from Saturday's mudslide near Oso, Wash. At least eight people were killed in the 1-square-mile slide that hit in a rural area about 55 miles northeast of Seattle on Saturday. Several people also were critically injured, and about 30 homes were destroyed. (AP Photo/Washington State Dept of Transportation) ","gaztag_id":"406999104","time_since":"00:05:53","translate_title":null,"grid_cell":"1"},{"title":"'It's gone.' Community copes with deadly mudslide","description":"No description","latitude":"37.3394","longitude":"-121.895","gaz_id":"5392171","name":"San Jose","cluster_id":"35621262","topic":"General","rep_term":null,"score":"2.32627e+07","snippet":"... missing were working in the area Saturday morning.&#x2029; Mendoza reported from <span class='georef'>San Jose</span>, Calif. Associated Press writers Phuong Le and Donna Gordon Blankinship ...","url_id":"946816684","domain":"kansas.com","num_docs":"25","num_images":"3","num_videos":"0","url":"http://www.kansas.com/2014/03/25/3366559/its-gone-community-copes-with.html","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150d000","display_caption":" This March 23, 2014 photo, made available by the Washington State Dept of Transportation shows a view of the damage from Saturday's mudslide near Oso, Wash. At least eight people were killed in the 1-square-mile slide that hit in a rural area about 55 miles northeast of Seattle on Saturday. Several people also were critically injured, and about 30 homes were destroyed. (AP Photo/Washington State Dept of Transportation) ","gaztag_id":"406999099","time_since":"00:05:53","translate_title":null,"grid_cell":"1"},{"title":"Gwar frontman found dead at age 50","description":"Dave Brockie, lead singer with the heavy metal band, has been found dead at his home in the US.","latitude":"35.6854","longitude":"139.753","gaz_id":"1861060","name":"Japan","cluster_id":"35600182","topic":"Entertainment","rep_term":null,"score":"2.32627e+07","snippet":"... The band released their last album in 2013 and had recently completed tours in <span class='georef'>Japan</span> and Australia.&#x2029; In 2011, lead guitarist 34-year-old Cory Smoot was found ...","url_id":"945568690","domain":"bbc.co.uk","num_docs":"91","num_images":"37","num_videos":"11","url":"http://www.bbc.co.uk/newsbeat/26722260#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cf09","display_caption":"R.I.P. Oderus Urungus: David Brockie's Death Confirmed","gaztag_id":"406861834","time_since":"00:21:07","translate_title":null,"grid_cell":"1"},{"title":"Gwar frontman found dead at age 50","description":"Dave Brockie, lead singer with the heavy metal band, has been found dead at his home in the US.","latitude":"37.5538","longitude":"-77.4603","gaz_id":"4781708","name":"Richmond","cluster_id":"35600182","topic":"Entertainment","rep_term":null,"score":"2.32627e+07","snippet":"... his home in the US at the age of 50.&#x2029; Officers were called to a home in <span class='georef'>Richmond</span>, Virginia, on Sunday evening to a report of a dead person, said Dionne ...","url_id":"945568690","domain":"bbc.co.uk","num_docs":"91","num_images":"37","num_videos":"11","url":"http://www.bbc.co.uk/newsbeat/26722260#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","media_url":"http://sametsrv01.umiacs.umd.edu/mediacache/hybrid2/0150/0150cf09","display_caption":"R.I.P. Oderus Urungus: David Brockie's Death Confirmed","gaztag_id":"406861827","time_since":"00:21:07","translate_title":null,"grid_cell":"1"}]}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment