Merge pull request #252 from gijsk/fix-delayed-closing-tags

Fix issue #251 by making JSDOMParser deal with non-self-closed-things
pull/239/merge
Gijs 8 years ago
commit b1d360168b

@ -26,10 +26,6 @@
*/
(function (global) {
function error(m) {
dump("JSDOMParser error: " + m + "\n");
}
// XML only defines these and the numeric ones:
var entityTable = {
@ -669,9 +665,9 @@
arr.push(" " + attr.name + '=' + quote + val + quote);
}
if (child.localName in voidElems) {
if (child.localName in voidElems && !child.childNodes.length) {
// if this is a self-closing element, end it here
arr.push(">");
arr.push("/>");
} else {
// otherwise, add its children
arr.push(">");
@ -842,9 +838,16 @@
// makeElementNode(), which saves us from having to allocate a new array
// every time.
this.retPair = [];
this.errorState = "";
};
JSDOMParser.prototype = {
error: function(m) {
dump("JSDOMParser error: " + m + "\n");
this.errorState += m + "\n";
},
/**
* Look at the next character without advancing the index.
*/
@ -899,7 +902,7 @@
// After a '=', we should see a '"' for the attribute value
var c = this.nextChar();
if (c !== '"' && c !== "'") {
error("Error reading attribute " + name + ", expecting '\"'");
this.error("Error reading attribute " + name + ", expecting '\"'");
return;
}
@ -952,12 +955,12 @@
}
// If this is a self-closing tag, read '/>'
var closed = tag in voidElems;
var closed = false;
if (c === "/") {
closed = true;
c = this.nextChar();
if (c !== ">") {
error("expected '>' to close " + tag);
this.error("expected '>' to close " + tag);
return false;
}
}
@ -1127,7 +1130,7 @@
}
var closingTag = "</" + localName + ">";
if (!this.match(closingTag)) {
error("expected '" + closingTag + "'");
this.error("expected '" + closingTag + "' and got " + this.html.substr(this.currentChar, closingTag.length));
return null;
}
}

@ -282,3 +282,15 @@ describe("Tag local name case handling", function() {
expect(doc.firstChild.firstChild.firstChild.localName).eql("clippath");
});
});
describe("Recovery from self-closing tags that have close tags", function() {
it("should handle delayed closing of a tag", function() {
var html = "<div><input><p>I'm in an input</p></input></div>";
var doc = new JSDOMParser().parse(html);
expect(doc.firstChild.localName).eql("div");
expect(doc.firstChild.childNodes.length).eql(1);
expect(doc.firstChild.firstChild.localName).eql("input");
expect(doc.firstChild.firstChild.childNodes.length).eql(1);
expect(doc.firstChild.firstChild.firstChild.localName).eql("p");
});
});

@ -9,9 +9,9 @@ help.</strong> </p>
<p>Actually I've only found one which provides an adapter for <a href="http://visionmedia.github.io/mocha/">Mocha</a> and actually works…</p>
<blockquote class="twitter-tweet tw-align-center">
<p>Drinking game for web devs:
<br>(1) Think of a noun
<br>(2) Google "&lt;noun&gt;.js"
<br>(3) If a library with that name exists - drink</p>— Shay Friedman (@ironshay) <a href="https://twitter.com/ironshay/statuses/370525864523743232">August 22, 2013</a> </blockquote>
<br/>(1) Think of a noun
<br/>(2) Google "&lt;noun&gt;.js"
<br/>(3) If a library with that name exists - drink</p>— Shay Friedman (@ironshay) <a href="https://twitter.com/ironshay/statuses/370525864523743232">August 22, 2013</a> </blockquote>
<p><strong><a href="http://blanketjs.org/">Blanket.js</a></strong> is an <em>easy to install, easy to configure,
and easy to use JavaScript code coverage library that works both in-browser and
with nodejs.</em> </p>
@ -88,9 +88,9 @@ describe("Cow", function() {
<li>The HTML test file <em>must</em> be served over HTTP for the adapter to be loaded.</li>
</ul>
<p>Running the tests now gives us something like this:</p>
<p> <img alt="screenshot" src="http://fakehost/static/code/2013/blanket-coverage.png"> </p>
<p> <img alt="screenshot" src="http://fakehost/static/code/2013/blanket-coverage.png"/> </p>
<p>As you can see, the report at the bottom highlights that we haven't actually tested the case where an error is raised in case a target name is missing. We've been informed of that, nothing more, nothing less. We simply know we're missing a test here. Isn't this cool? I think so!</p>
<p>Just remember that code coverage will only <a href="http://codebetter.com/karlseguin/2008/12/09/code-coverage-use-it-wisely/">bring you numbers</a> and raw information, not actual proofs that the whole of your <em>code logic</em> has been actually covered. If you ask me, the best inputs you can get about your code logic and implementation ever are the ones issued out of <a href="http://www.extremeprogramming.org/rules/pair.html">pair programming</a> sessions and <a href="http://alexgaynor.net/2013/sep/26/effective-code-review/">code reviews</a> — but that's another story.</p>
<p><strong>So is code coverage silver bullet? No. Is it useful? Definitely. Happy testing!</strong> </p>
</section>
</div>
</div>

@ -2,22 +2,22 @@
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Get your Frontend JavaScript Code Covered | Code | Nicolas Perriault</title>
<meta
name="description" content="Nicolas Perriault's homepage.">
<meta name="viewport" content="width=device-width">
name="description" content="Nicolas Perriault's homepage."/>
<meta name="viewport" content="width=device-width"/>
<link href="//fonts.googleapis.com/css?family=Asap:400,400italic,700,700italic&amp;subset=latin,latin-ext"
rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="/static/packed.css?1412806084">
<link rel="alternate" type="application/rss+xml" href="/code/feed/" title="Code (RSS)">
rel="stylesheet" type="text/css"/>
<link rel="stylesheet" type="text/css" href="/static/packed.css?1412806084"/>
<link rel="alternate" type="application/rss+xml" href="/code/feed/" title="Code (RSS)"/>
<link rel="alternate" type="application/rss+xml" href="/photography/feed/"
title="Photography (RSS)">
<link rel="alternate" type="application/rss+xml" href="/talks/feed/" title="Talks (RSS)">
title="Photography (RSS)"/>
<link rel="alternate" type="application/rss+xml" href="/talks/feed/" title="Talks (RSS)"/>
<link rel="alternate" type="application/rss+xml" href="/carnet/feed/"
title="Carnet (RSS)">
<link rel="alternate" type="application/rss+xml" href="/feed/" title="Everything (RSS)">
title="Carnet (RSS)"/>
<link rel="alternate" type="application/rss+xml" href="/feed/" title="Everything (RSS)"/>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
@ -35,7 +35,7 @@
</header>
<main class="contents" role="main">
<article lang="en" class="code" itemscope="" itemtype="http://schema.org/BlogPosting">
<link itemprop="url" href="/code/2013/get-your-frontend-javascript-code-covered/">
<link itemprop="url" href="/code/2013/get-your-frontend-javascript-code-covered/"/>
<header>
<h2><a itemprop="name" href="/code/2013/get-your-frontend-javascript-code-covered/">Get your Frontend JavaScript Code Covered</a></h2>
</header>
@ -57,9 +57,9 @@ help.</strong>
actually works…</p>
<blockquote class="twitter-tweet tw-align-center">
<p>Drinking game for web devs:
<br>(1) Think of a noun
<br>(2) Google "&lt;noun&gt;.js"
<br>(3) If a library with that name exists - drink</p>— Shay Friedman (@ironshay)
<br />(1) Think of a noun
<br />(2) Google "&lt;noun&gt;.js"
<br />(3) If a library with that name exists - drink</p>— Shay Friedman (@ironshay)
<a
href="https://twitter.com/ironshay/statuses/370525864523743232">August 22, 2013</a>
</blockquote>
@ -158,7 +158,7 @@ describe("Cow", function() {
</ul>
<p>Running the tests now gives us something like this:</p>
<p>
<img alt="screenshot" src="/static/code/2013/blanket-coverage.png">
<img alt="screenshot" src="/static/code/2013/blanket-coverage.png"/>
</p>
<p>As you can see, the report at the bottom highlights that we haven't actually
tested the case where an error is raised in case a target name is missing.
@ -186,7 +186,7 @@ sessions
</p>
</aside>
<hr>
<hr/>
<nav> <a class="prev" href="/code/2013/functional-javascript-for-crawling-the-web/">Functional JavaScript for crawling the Web</a>
|
<a
@ -230,4 +230,4 @@ sessions
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</body>
</html>
</html>

@ -57,12 +57,12 @@
</table>
</div>
<p>The <code>fetch()</code> functions arguments are the same as those passed to the
<br> <code>Request()</code> constructor, so you may directly pass arbitrarily complex requests to <code>fetch()</code> as discussed below.</p>
<br/> <code>Request()</code> constructor, so you may directly pass arbitrarily complex requests to <code>fetch()</code> as discussed below.</p>
<h2>Headers</h2>
<p>Fetch introduces 3 interfaces. These are <code>Headers</code>, <code>Request</code> and
<br> <code>Response</code>. They map directly to the underlying HTTP concepts, but have
<br>certain visibility filters in place for privacy and security reasons, such as
<br>supporting CORS rules and ensuring cookies arent readable by third parties.</p>
<br/> <code>Response</code>. They map directly to the underlying HTTP concepts, but have
<br/>certain visibility filters in place for privacy and security reasons, such as
<br/>supporting CORS rules and ensuring cookies arent readable by third parties.</p>
<p>The <a href="https://fetch.spec.whatwg.org/#headers-class">Headers interface</a> is a simple multi-map of names to values:</p>
<div class="wp_syntax">
<table>
@ -78,7 +78,7 @@ reqHeaders.<span>append</span><span>(</span><span>"X-Custom-Header"</span><span>
</table>
</div>
<p>The same can be achieved by passing an array of arrays or a JS object literal
<br>to the constructor:</p>
<br/>to the constructor:</p>
<div class="wp_syntax">
<table>
<tbody>
@ -112,20 +112,20 @@ console.<span>log</span><span>(</span>reqHeaders.<span>getAll</span><span>(</spa
</table>
</div>
<p>Some of these operations are only useful in ServiceWorkers, but they provide
<br>a much nicer API to Headers.</p>
<br/>a much nicer API to Headers.</p>
<p>Since Headers can be sent in requests, or received in responses, and have various limitations about what information can and should be mutable, <code>Headers</code> objects have a <strong>guard</strong> property. This is not exposed to the Web, but it affects which mutation operations are allowed on the Headers object.
<br>Possible values are:</p>
<br/>Possible values are:</p>
<ul>
<li>“none”: default.</li>
<li>“request”: guard for a Headers object obtained from a Request (<code>Request.headers</code>).</li>
<li>“request-no-cors”: guard for a Headers object obtained from a Request created
<br>with mode “no-cors”.</li>
<br/>with mode “no-cors”.</li>
<li>“response”: naturally, for Headers obtained from Response (<code>Response.headers</code>).</li>
<li>“immutable”: Mostly used for ServiceWorkers, renders a Headers object
<br>read-only.</li>
<br/>read-only.</li>
</ul>
<p>The details of how each guard affects the behaviors of the Headers object are
<br>in the <a href="https://fetch.spec.whatwg.org">specification</a>. For example, you may not append or set a “request” guarded Headers “Content-Length” header. Similarly, inserting “Set-Cookie” into a Response header is not allowed so that ServiceWorkers may not set cookies via synthesized Responses.</p>
<br/>in the <a href="https://fetch.spec.whatwg.org">specification</a>. For example, you may not append or set a “request” guarded Headers “Content-Length” header. Similarly, inserting “Set-Cookie” into a Response header is not allowed so that ServiceWorkers may not set cookies via synthesized Responses.</p>
<p>All of the Headers methods throw TypeError if <code>name</code> is not a <a href="https://fetch.spec.whatwg.org/#concept-header-name">valid HTTP Header name</a>. The mutation operations will throw TypeError if there is an immutable guard. Otherwise they fail silently. For example:</p>
<div class="wp_syntax">
<table>
@ -156,8 +156,8 @@ console.<span>log</span><span>(</span>req.<span>url</span><span>)</span><span>;<
</table>
</div>
<p>You may also pass a Request to the <code>Request()</code> constructor to create a copy.
<br>(This is not the same as calling the <code>clone()</code> method, which is covered in
<br>the “Reading bodies” section.).</p>
<br/>(This is not the same as calling the <code>clone()</code> method, which is covered in
<br/>the “Reading bodies” section.).</p>
<div class="wp_syntax">
<table>
<tbody>
@ -171,7 +171,7 @@ console.<span>log</span><span>(</span>copy.<span>url</span><span>)</span><span>;
</div>
<p>Again, this form is probably only useful in ServiceWorkers.</p>
<p>The non-URL attributes of the <code>Request</code> can only be set by passing initial
<br>values as a second argument to the constructor. This argument is a dictionary.</p>
<br/>values as a second argument to the constructor. This argument is a dictionary.</p>
<div class="wp_syntax">
<table>
<tbody>
@ -189,7 +189,7 @@ console.<span>log</span><span>(</span>copy.<span>url</span><span>)</span><span>;
</div>
<p>The Requests mode is used to determine if cross-origin requests lead to valid responses, and which properties on the response are readable. Legal mode values are <code>"same-origin"</code>, <code>"no-cors"</code> (default) and <code>"cors"</code>.</p>
<p>The <code>"same-origin"</code> mode is simple, if a request is made to another origin with this mode set, the result is simply an error. You could use this to ensure that
<br>a request is always being made to your origin.</p>
<br/>a request is always being made to your origin.</p>
<div class="wp_syntax">
<table>
<tbody>
@ -206,7 +206,7 @@ fetch<span>(</span>arbitraryUrl<span>,</span> <span>{</span> mode<span>:</span>
</div>
<p>The <code>"no-cors"</code> mode captures what the web platform does by default for scripts you import from CDNs, images hosted on other domains, and so on. First, it prevents the method from being anything other than “HEAD”, “GET” or “POST”. Second, if any ServiceWorkers intercept these requests, they may not add or override any headers except for <a href="https://fetch.spec.whatwg.org/#simple-header">these</a>. Third, JavaScript may not access any properties of the resulting Response. This ensures that ServiceWorkers do not affect the semantics of the Web and prevents security and privacy issues that could arise from leaking data across domains.</p>
<p><code>"cors"</code> mode is what youll usually use to make known cross-origin requests to access various APIs offered by other vendors. These are expected to adhere to
<br>the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS">CORS protocol</a>. Only a <a href="https://fetch.spec.whatwg.org/#concept-filtered-response-cors">limited set</a> of headers is exposed in the Response, but the body is readable. For example, you could get a list of Flickrs <a href="https://www.flickr.com/services/api/flickr.interestingness.getList.html">most interesting</a> photos today like this:</p>
<br/>the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS">CORS protocol</a>. Only a <a href="https://fetch.spec.whatwg.org/#concept-filtered-response-cors">limited set</a> of headers is exposed in the Response, but the body is readable. For example, you could get a list of Flickrs <a href="https://www.flickr.com/services/api/flickr.interestingness.getList.html">most interesting</a> photos today like this:</p>
<div class="wp_syntax">
<table>
<tbody>
@ -234,7 +234,7 @@ apiCall.<span>then</span><span>(</span><span>function</span><span>(</span>respon
</table>
</div>
<p>You may not read out the “Date” header since Flickr does not allow it via
<br> <code>Access-Control-Expose-Headers</code>.</p>
<br/> <code>Access-Control-Expose-Headers</code>.</p>
<div class="wp_syntax">
<table>
<tbody>
@ -245,30 +245,30 @@ apiCall.<span>then</span><span>(</span><span>function</span><span>(</span>respon
</table>
</div>
<p>The <code>credentials</code> enumeration determines if cookies for the other domain are
<br>sent to cross-origin requests. This is similar to XHRs <code>withCredentials</code>
<br>flag, but tri-valued as <code>"omit"</code> (default), <code>"same-origin"</code> and <code>"include"</code>.</p>
<br/>sent to cross-origin requests. This is similar to XHRs <code>withCredentials</code>
<br/>flag, but tri-valued as <code>"omit"</code> (default), <code>"same-origin"</code> and <code>"include"</code>.</p>
<p>The Request object will also give the ability to offer caching hints to the user-agent. This is currently undergoing some <a href="https://github.com/slightlyoff/ServiceWorker/issues/585">security review</a>. Firefox exposes the attribute, but it has no effect.</p>
<p>Requests have two read-only attributes that are relevant to ServiceWorkers
<br>intercepting them. There is the string <code>referrer</code>, which is set by the UA to be
<br>the referrer of the Request. This may be an empty string. The other is
<br> <code>context</code> which is a rather <a href="https://fetch.spec.whatwg.org/#requestcredentials">large enumeration</a> defining what sort of resource is being fetched. This could be “image” if the request is from an <img>tag in the controlled document, “worker” if it is an attempt to load a worker script, and so on. When used with the <code>fetch()</code> function, it is “fetch”.</p>
<br/>intercepting them. There is the string <code>referrer</code>, which is set by the UA to be
<br/>the referrer of the Request. This may be an empty string. The other is
<br/> <code>context</code> which is a rather <a href="https://fetch.spec.whatwg.org/#requestcredentials">large enumeration</a> defining what sort of resource is being fetched. This could be “image” if the request is from an &lt;img&gt;tag in the controlled document, “worker” if it is an attempt to load a worker script, and so on. When used with the <code>fetch()</code> function, it is “fetch”.</p>
<h2>Response</h2>
<p><code>Response</code> instances are returned by calls to <code>fetch()</code>. They can also be created by JS, but this is only useful in ServiceWorkers.</p>
<p>We have already seen some attributes of Response when we looked at <code>fetch()</code>. The most obvious candidates are <code>status</code>, an integer (default value 200) and <code>statusText</code> (default value “OK”), which correspond to the HTTP status code and reason. The <code>ok</code> attribute is just a shorthand for checking that <code>status</code> is in the range 200-299 inclusive.</p>
<p><code>headers</code> is the Responses Headers object, with guard “response”. The <code>url</code> attribute reflects the URL of the corresponding request.</p>
<p>Response also has a <code>type</code>, which is “basic”, “cors”, “default”, “error” or
<br>“opaque”.</p>
<br/>“opaque”.</p>
<ul>
<li><code>"basic"</code>: normal, same origin response, with all headers exposed except
<br>“Set-Cookie” and “Set-Cookie2″.</li>
<br/>“Set-Cookie” and “Set-Cookie2″.</li>
<li><code>"cors"</code>: response was received from a valid cross-origin request. <a href="https://fetch.spec.whatwg.org/#concept-filtered-response-cors">Certain headers and the body</a>may be accessed.</li>
<li><code>"error"</code>: network error. No useful information describing the error is available. The Responses status is 0, headers are empty and immutable. This is the type for a Response obtained from <code>Response.error()</code>.</li>
<li><code>"opaque"</code>: response for “no-cors” request to cross-origin resource. <a href="https://fetch.spec.whatwg.org/#concept-filtered-response-opaque">Severely<br>
<li><code>"opaque"</code>: response for “no-cors” request to cross-origin resource. <a href="https://fetch.spec.whatwg.org/#concept-filtered-response-opaque">Severely<br/>
restricted</a> </li>
</ul>
<p>The “error” type results in the <code>fetch()</code> Promise rejecting with TypeError.</p>
<p>There are certain attributes that are useful only in a ServiceWorker scope. The
<br>idiomatic way to return a Response to an intercepted request in ServiceWorkers is:</p>
<br/>idiomatic way to return a Response to an intercepted request in ServiceWorkers is:</p>
<div class="wp_syntax">
<table>
<tbody>
@ -284,7 +284,7 @@ apiCall.<span>then</span><span>(</span><span>function</span><span>(</span>respon
</div>
<p>As you can see, Response has a two argument constructor, where both arguments are optional. The first argument is a body initializer, and the second is a dictionary to set the <code>status</code>, <code>statusText</code> and <code>headers</code>.</p>
<p>The static method <code>Response.error()</code> simply returns an error response. Similarly, <code>Response.redirect(url, status)</code> returns a Response resulting in
<br>a redirect to <code>url</code>.</p>
<br/>a redirect to <code>url</code>.</p>
<h2>Dealing with bodies</h2>
<p>Both Requests and Responses may contain body data. Weve been glossing over it because of the various data types body may contain, but we will cover it in detail now.</p>
<p>A body is an instance of any of the following types.</p>
@ -380,7 +380,7 @@ res.<span>text</span><span>(</span><span>)</span>.<span>catch</span><span>(</spa
<p>Along with the transition to streams, Fetch will eventually have the ability to abort running <code>fetch()</code>es and some way to report the progress of a fetch. These are provided by XHR, but are a little tricky to fit in the Promise-based nature of the Fetch API.</p>
<p>You can contribute to the evolution of this API by participating in discussions on the <a href="https://whatwg.org/mailing-list">WHATWG mailing list</a> and in the issues in the <a href="https://www.w3.org/Bugs/Public/buglist.cgi?product=WHATWG&amp;component=Fetch&amp;resolution=---">Fetch</a> and <a href="https://github.com/slightlyoff/ServiceWorker/issues">ServiceWorker</a>specifications.</p>
<p>For a better web!</p>
<p><em>The author would like to thank Andrea Marchesini, Anne van Kesteren and Ben<br>
<p><em>The author would like to thank Andrea Marchesini, Anne van Kesteren and Ben<br/>
Kelly for helping with the specification and implementation.</em> </p>
</article>
</div>
</div>

@ -2,30 +2,30 @@
<html lang="en-US" id="hacks-mozilla-org">
<head>
<meta name="viewport" content="width=device-width">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width"/>
<meta charset="UTF-8"/>
<!-- OpenGraph metadata -->
<meta property="og:site_name" content="Mozilla Hacks the Web developer blog">
<meta property="og:title" content="This API is so Fetching!">
<meta property="og:url" content="https://hacks.mozilla.org/2015/03/this-api-is-so-fetching/">
<meta property="og:description" content="For more than a decade the Web has used XMLHttpRequest (XHR) to achieve asynchronous requests in JavaScript. While very useful, XHR is not a very ...">
<meta property="og:site_name" content="Mozilla Hacks the Web developer blog"/>
<meta property="og:title" content="This API is so Fetching!"/>
<meta property="og:url" content="https://hacks.mozilla.org/2015/03/this-api-is-so-fetching/"/>
<meta property="og:description" content="For more than a decade the Web has used XMLHttpRequest (XHR) to achieve asynchronous requests in JavaScript. While very useful, XHR is not a very ..."/>
<!--[if IE]>
<meta name="MSSmartTagsPreventParsing" content="true">
<meta http-equiv="imagetoolbar" content="no">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="MSSmartTagsPreventParsing" content="true"/>
<meta http-equiv="imagetoolbar" content="no"/>
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="shortcut icon" type="image/ico" href="https://hacks.mozilla.org/wp-content/themes/Hacks2013/favicon.ico">
<link rel="home" href="/">
<link rel="copyright" href="#copyright">
<link rel="stylesheet" type="text/css" media="screen,projection" href="https://hacks.mozilla.org/wp-content/themes/Hacks2013/style.css">
<link rel="stylesheet" type="text/css" media="print,handheld" href="https://hacks.mozilla.org/wp-content/themes/Hacks2013/css/print.css">
<link rel="stylesheet" type="text/css" media="all" href="https://www.mozilla.org/tabzilla/media/css/tabzilla.css">
<link rel="stylesheet" type="text/css" media="all" href="https://hacks.mozilla.org/wp-content/themes/Hacks2013/css/socialshare.css">
<link rel="shortcut icon" type="image/ico" href="https://hacks.mozilla.org/wp-content/themes/Hacks2013/favicon.ico"/>
<link rel="home" href="/"/>
<link rel="copyright" href="#copyright"/>
<link rel="stylesheet" type="text/css" media="screen,projection" href="https://hacks.mozilla.org/wp-content/themes/Hacks2013/style.css"/>
<link rel="stylesheet" type="text/css" media="print,handheld" href="https://hacks.mozilla.org/wp-content/themes/Hacks2013/css/print.css"/>
<link rel="stylesheet" type="text/css" media="all" href="https://www.mozilla.org/tabzilla/media/css/tabzilla.css"/>
<link rel="stylesheet" type="text/css" media="all" href="https://hacks.mozilla.org/wp-content/themes/Hacks2013/css/socialshare.css"/>
<link rel="alternate" type="application/rss+xml" title="Mozilla Hacks the Web developer blog RSS Feed"
href="https://hacks.mozilla.org/feed/">
<link rel="pingback" href="https://hacks.mozilla.org/xmlrpc.php">
<link rel="canonical" href="https://hacks.mozilla.org/2015/03/this-api-is-so-fetching/">
href="https://hacks.mozilla.org/feed/"/>
<link rel="pingback" href="https://hacks.mozilla.org/xmlrpc.php"/>
<link rel="canonical" href="https://hacks.mozilla.org/2015/03/this-api-is-so-fetching/"/>
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" media="all" href="https://hacks.mozilla.org/wp-content/themes/Hacks2013/css/ie7.css"
/>
@ -49,21 +49,21 @@
})(document, 'script');</script>
<link rel="alternate" type="application/rss+xml"
title="Mozilla Hacks - the Web developer blog » This API is so Fetching! Comments Feed"
href="https://hacks.mozilla.org/2015/03/this-api-is-so-fetching/feed/">
href="https://hacks.mozilla.org/2015/03/this-api-is-so-fetching/feed/"/>
<link rel="stylesheet" id="wp-syntax-css-css" href="https://hacks.mozilla.org/wp-content/plugins/wp-syntax/css/wp-syntax.css?ver=1.0"
type="text/css" media="all">
type="text/css" media="all"/>
<script type="text/javascript" src="https://hacks.mozilla.org/wp-includes/js/jquery/jquery.js?ver=1.11.1"></script>
<script type="text/javascript" src="https://hacks.mozilla.org/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1"></script>
<script type="text/javascript" src="https://hacks.mozilla.org/wp-content/themes/Hacks2013/js/fc-checkcomment.js?ver=4.1"></script>
<script type="text/javascript" src="https://hacks.mozilla.org/wp-content/themes/Hacks2013/js/analytics.js?ver=4.1"></script>
<script type="text/javascript" src="https://hacks.mozilla.org/wp-content/themes/Hacks2013/js/socialshare.min.js?ver=4.1"></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://hacks.mozilla.org/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://hacks.mozilla.org/wp-includes/wlwmanifest.xml">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://hacks.mozilla.org/xmlrpc.php?rsd"/>
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://hacks.mozilla.org/wp-includes/wlwmanifest.xml"/>
<link rel="prev" title="Ruby support in Firefox Developer Edition 38"
href="https://hacks.mozilla.org/2015/03/ruby-support-in-firefox-developer-edition-38/">
<link rel="next" title="Optimising SVG images" href="https://hacks.mozilla.org/2015/03/optimising-svg-images/">
<link rel="canonical" href="https://hacks.mozilla.org/2015/03/this-api-is-so-fetching/">
<link rel="shortlink" href="https://hacks.mozilla.org/?p=28260">
href="https://hacks.mozilla.org/2015/03/ruby-support-in-firefox-developer-edition-38/"/>
<link rel="next" title="Optimising SVG images" href="https://hacks.mozilla.org/2015/03/optimising-svg-images/"/>
<link rel="canonical" href="https://hacks.mozilla.org/2015/03/this-api-is-so-fetching/"/>
<link rel="shortlink" href="https://hacks.mozilla.org/?p=28260"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36116321-4']);
@ -90,7 +90,7 @@
role="search">
<p>
<input type="search" placeholder="Search hacks.mozilla.org" value="" name="s"
id="s">
id="s"/>
<button type="submit">Go</button>
</p>
</form>
@ -237,19 +237,19 @@ by
</div>
<p>The <code>fetch()</code> functions arguments are the same as those passed
to the
<br>
<br/>
<code>Request()</code> constructor, so you may directly pass arbitrarily
complex requests to <code>fetch()</code> as discussed below.</p>
<h2>Headers</h2>
<p>Fetch introduces 3 interfaces. These are <code>Headers</code>, <code>Request</code> and
<br>
<br/>
<code>Response</code>. They map directly to the underlying HTTP concepts,
but have
<br>certain visibility filters in place for privacy and security reasons,
<br/>certain visibility filters in place for privacy and security reasons,
such as
<br>supporting CORS rules and ensuring cookies arent readable by third parties.</p>
<br/>supporting CORS rules and ensuring cookies arent readable by third parties.</p>
<p>The <a href="https://fetch.spec.whatwg.org/#headers-class">Headers interface</a> is
a simple multi-map of names to values:</p>
<div class="wp_syntax">
@ -268,7 +268,7 @@ reqHeaders.<span style="color: #660066;">append</span><span style="color: #00990
</div>
<p>The same can be achieved by passing an array of arrays or a JS object
literal
<br>to the constructor:</p>
<br/>to the constructor:</p>
<div class="wp_syntax">
<table>
<tbody>
@ -304,25 +304,25 @@ console.<span style="color: #660066;">log</span><span style="color: #009900;">(<
</table>
</div>
<p>Some of these operations are only useful in ServiceWorkers, but they provide
<br>a much nicer API to Headers.</p>
<br/>a much nicer API to Headers.</p>
<p>Since Headers can be sent in requests, or received in responses, and have
various limitations about what information can and should be mutable, <code>Headers</code> objects
have a <strong>guard</strong> property. This is not exposed to the Web, but
it affects which mutation operations are allowed on the Headers object.
<br>Possible values are:</p>
<br/>Possible values are:</p>
<ul>
<li>“none”: default.</li>
<li>“request”: guard for a Headers object obtained from a Request (<code>Request.headers</code>).</li>
<li>“request-no-cors”: guard for a Headers object obtained from a Request
created
<br>with mode “no-cors”.</li>
<br/>with mode “no-cors”.</li>
<li>“response”: naturally, for Headers obtained from Response (<code>Response.headers</code>).</li>
<li>“immutable”: Mostly used for ServiceWorkers, renders a Headers object
<br>read-only.</li>
<br/>read-only.</li>
</ul>
<p>The details of how each guard affects the behaviors of the Headers object
are
<br>in the <a href="https://fetch.spec.whatwg.org">specification</a>. For example,
<br/>in the <a href="https://fetch.spec.whatwg.org">specification</a>. For example,
you may not append or set a “request” guarded Headers “Content-Length”
header. Similarly, inserting “Set-Cookie” into a Response header is not
allowed so that ServiceWorkers may not set cookies via synthesized Responses.</p>
@ -368,9 +368,9 @@ console.<span style="color: #660066;">log</span><span style="color: #009900;">(<
</div>
<p>You may also pass a Request to the <code>Request()</code> constructor to
create a copy.
<br>(This is not the same as calling the <code>clone()</code> method, which
<br/>(This is not the same as calling the <code>clone()</code> method, which
is covered in
<br>the “Reading bodies” section.).</p>
<br/>the “Reading bodies” section.).</p>
<div class="wp_syntax">
<table>
<tbody>
@ -386,7 +386,7 @@ console.<span style="color: #660066;">log</span><span style="color: #009900;">(<
<p>Again, this form is probably only useful in ServiceWorkers.</p>
<p>The non-URL attributes of the <code>Request</code> can only be set by passing
initial
<br>values as a second argument to the constructor. This argument is a dictionary.</p>
<br/>values as a second argument to the constructor. This argument is a dictionary.</p>
<div
class="wp_syntax">
<table>
@ -411,7 +411,7 @@ console.<span style="color: #660066;">log</span><span style="color: #009900;">(<
<p>The <code>"same-origin"</code> mode is simple, if a request is made to another
origin with this mode set, the result is simply an error. You could use
this to ensure that
<br>a request is always being made to your origin.</p>
<br/>a request is always being made to your origin.</p>
<div class="wp_syntax">
<table>
<tbody>
@ -439,7 +439,7 @@ fetch<span style="color: #009900;">(</span>arbitraryUrl<span style="color: #3399
<p><code>"cors"</code> mode is what youll usually use to make known cross-origin
requests to access various APIs offered by other vendors. These are expected
to adhere to
<br>the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS">CORS protocol</a>.
<br/>the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS">CORS protocol</a>.
Only a <a href="https://fetch.spec.whatwg.org/#concept-filtered-response-cors">limited set</a> of
headers is exposed in the Response, but the body is readable. For example,
you could get a list of Flickrs <a href="https://www.flickr.com/services/api/flickr.interestingness.getList.html">most interesting</a> photos
@ -473,7 +473,7 @@ apiCall.<span style="color: #660066;">then</span><span style="color: #009900;">(
</div>
<p>You may not read out the “Date” header since Flickr does not allow it
via
<br>
<br/>
<code>Access-Control-Expose-Headers</code>.</p>
<div class="wp_syntax">
<table>
@ -487,20 +487,20 @@ apiCall.<span style="color: #660066;">then</span><span style="color: #009900;">(
</div>
<p>The <code>credentials</code> enumeration determines if cookies for the other
domain are
<br>sent to cross-origin requests. This is similar to XHRs <code>withCredentials</code>
<br>flag, but tri-valued as <code>"omit"</code> (default), <code>"same-origin"</code> and <code>"include"</code>.</p>
<br/>sent to cross-origin requests. This is similar to XHRs <code>withCredentials</code>
<br/>flag, but tri-valued as <code>"omit"</code> (default), <code>"same-origin"</code> and <code>"include"</code>.</p>
<p>The Request object will also give the ability to offer caching hints to
the user-agent. This is currently undergoing some <a href="https://github.com/slightlyoff/ServiceWorker/issues/585">security review</a>.
Firefox exposes the attribute, but it has no effect.</p>
<p>Requests have two read-only attributes that are relevant to ServiceWorkers
<br>intercepting them. There is the string <code>referrer</code>, which is
<br/>intercepting them. There is the string <code>referrer</code>, which is
set by the UA to be
<br>the referrer of the Request. This may be an empty string. The other is
<br>
<br/>the referrer of the Request. This may be an empty string. The other is
<br/>
<code>context</code> which is a rather <a href="https://fetch.spec.whatwg.org/#requestcredentials">large enumeration</a> defining
what sort of resource is being fetched. This could be “image” if the request
is from an
<img>tag in the controlled document, “worker” if it is an attempt to load a
&lt;img&gt;tag in the controlled document, “worker” if it is an attempt to load a
worker script, and so on. When used with the <code>fetch()</code> function,
it is “fetch”.</p>
@ -518,11 +518,11 @@ apiCall.<span style="color: #660066;">then</span><span style="color: #009900;">(
The <code>url</code> attribute reflects the URL of the corresponding request.</p>
<p>Response also has a <code>type</code>, which is “basic”, “cors”, “default”,
“error” or
<br>“opaque”.</p>
<br/>“opaque”.</p>
<ul>
<li><code>"basic"</code>: normal, same origin response, with all headers exposed
except
<br>“Set-Cookie” and “Set-Cookie2″.</li>
<br/>“Set-Cookie” and “Set-Cookie2″.</li>
<li><code>"cors"</code>: response was received from a valid cross-origin request.
<a
href="https://fetch.spec.whatwg.org/#concept-filtered-response-cors">Certain headers and the body</a>may be accessed.</li>
@ -530,7 +530,7 @@ apiCall.<span style="color: #660066;">then</span><span style="color: #009900;">(
the error is available. The Responses status is 0, headers are empty and
immutable. This is the type for a Response obtained from <code>Response.error()</code>.</li>
<li><code>"opaque"</code>: response for “no-cors” request to cross-origin
resource. <a href="https://fetch.spec.whatwg.org/#concept-filtered-response-opaque">Severely<br>
resource. <a href="https://fetch.spec.whatwg.org/#concept-filtered-response-opaque">Severely<br/>
restricted</a>
</li>
</ul>
@ -538,7 +538,7 @@ apiCall.<span style="color: #660066;">then</span><span style="color: #009900;">(
TypeError.</p>
<p>There are certain attributes that are useful only in a ServiceWorker scope.
The
<br>idiomatic way to return a Response to an intercepted request in ServiceWorkers
<br/>idiomatic way to return a Response to an intercepted request in ServiceWorkers
is:</p>
<div class="wp_syntax">
<table>
@ -560,7 +560,7 @@ apiCall.<span style="color: #660066;">then</span><span style="color: #009900;">(
<p>The static method <code>Response.error()</code> simply returns an error
response. Similarly, <code>Response.redirect(url, status)</code> returns
a Response resulting in
<br>a redirect to <code>url</code>.</p>
<br/>a redirect to <code>url</code>.</p>
<h2>Dealing with bodies</h2>
@ -707,7 +707,7 @@ res.<span style="color: #660066;">text</span><span style="color: #009900;">(</sp
<a
href="https://github.com/slightlyoff/ServiceWorker/issues">ServiceWorker</a>specifications.</p>
<p>For a better web!</p>
<p><em>The author would like to thank Andrea Marchesini, Anne van Kesteren and Ben<br>
<p><em>The author would like to thank Andrea Marchesini, Anne van Kesteren and Ben<br/>
Kelly for helping with the specification and implementation.</em>
</p>
<footer class="entry-meta">
@ -733,7 +733,7 @@ on
</header>
<ol id="comment-list" class="hfeed av">
<li id="comment-17303" class="comment even thread-even depth-1 hentry">
<p class="entry-title vcard"> <span class="photo"><img alt="" src="https://secure.gravatar.com/avatar/cc6f7a60f71adaa81b7bc798ebc71be1?s=48&amp;d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D48&amp;r=G" class="avatar avatar-48 photo" height="48" width="48"></span>
<p class="entry-title vcard"> <span class="photo"><img alt="" src="https://secure.gravatar.com/avatar/cc6f7a60f71adaa81b7bc798ebc71be1?s=48&amp;d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D48&amp;r=G" class="avatar avatar-48 photo" height="48" width="48"/></span>
<cite
class="author fn">Alexander Petrov</cite> <span class="comment-meta">wrote on <a href="https://hacks.mozilla.org/2015/03/this-api-is-so-fetching/comment-page-1/#comment-17303" rel="bookmark" title="Permanent link to this comment by Alexander Petrov"><abbr class="published" title="2015-03-11">March 11th, 2015</abbr> at 02:57</a>:</span>
@ -749,7 +749,7 @@ on
<li id="comment-17305" class="comment byuser comment-author-nmarathemozilla-com bypostauthor odd alt depth-2 hentry">
<p class="entry-title vcard"> <a href="http://blog.nikhilism.com" class="url" rel="nofollow external"
title="http://blog.nikhilism.com">
<span class="photo"><img alt="" src="https://secure.gravatar.com/avatar/098bc26c1d2d2b425b258cff67044ac1?s=48&amp;d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D48&amp;r=G" class="avatar avatar-48 photo" height="48" width="48"></span> <cite class="author fn">Nikhil Marathe</cite>
<span class="photo"><img alt="" src="https://secure.gravatar.com/avatar/098bc26c1d2d2b425b258cff67044ac1?s=48&amp;d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D48&amp;r=G" class="avatar avatar-48 photo" height="48" width="48"/></span> <cite class="author fn">Nikhil Marathe</cite>
</a>
<span class="comment-meta">wrote on <a href="https://hacks.mozilla.org/2015/03/this-api-is-so-fetching/comment-page-1/#comment-17305" rel="bookmark" title="Permanent link to this comment by Nikhil Marathe"><abbr class="published" title="2015-03-11">March 11th, 2015</abbr> at 08:00</a>:</span>
@ -784,21 +784,21 @@ on
<li id="cmt-name">
<label for="author">Your name <abbr title="(required)">*</abbr>
</label>
<input type="text" name="author" id="author" size="25" required="" aria-required="true">
<input type="text" name="author" id="author" size="25" required="" aria-required="true"/>
</li>
<li id="cmt-email">
<label for="email">Your e-mail <abbr title="(required)">*</abbr>
</label>
<input type="email" name="email" id="email" size="25" required="" aria-required="true">
<input type="email" name="email" id="email" size="25" required="" aria-required="true"/>
</li>
<li id="cmt-web">
<label for="url">Your website</label>
<input type="url" name="url" id="url" size="25">
<input type="url" name="url" id="url" size="25"/>
</li>
<li id="cmt-ackbar">
<label for="age">Spam robots, please fill in this field. Humans should leave it blank.</label>
<input
type="text" name="age" id="age" size="4" tabindex="-1">
type="text" name="age" id="age" size="4" tabindex="-1"/>
</li>
<li id="cmt-cmt">
<label for="comment">Your comment</label>
@ -808,22 +808,22 @@ on
<li id="comment-submit">
<button name="submit" type="submit">Submit Comment</button>
<input type="hidden" name="comment_post_ID" value="28260"
id="comment_post_ID">
<input type="hidden" name="comment_parent" id="comment_parent" value="0">
id="comment_post_ID"/>
<input type="hidden" name="comment_parent" id="comment_parent" value="0"/>
<p style="display: none;">
<input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce"
value="b601694886">
value="b601694886"/>
</p>
<!-- BEGIN: subscribe to comments reloaded -->
<p class="comment-form-subscriptions">
<label for="subscribe-reloaded">
<input style="width:30px" type="checkbox" name="subscribe-reloaded" id="subscribe-reloaded"
value="yes">Notify me of followup comments via e-mail. You can also <a href="https://hacks.mozilla.org/comment-subscriptions/?srp=28260&amp;sra=s">subscribe</a> without
value="yes"/>Notify me of followup comments via e-mail. You can also <a href="https://hacks.mozilla.org/comment-subscriptions/?srp=28260&amp;sra=s">subscribe</a> without
commenting.</label>
</p>
<!-- END: subscribe to comments reloaded -->
<p style="display: none;">
<input type="hidden" id="ak_js" name="ak_js" value="212">
<input type="hidden" id="ak_js" name="ak_js" value="212"/>
</p>
</li>
</ol>
@ -843,7 +843,7 @@ on
<div class="vcard">
<h4 class="fn">
<a class="url" href="http://blog.nikhilism.com" rel="external me">Nikhil Marathe <span class="photo"><img alt="" src="https://secure.gravatar.com/avatar/098bc26c1d2d2b425b258cff67044ac1?s=48&amp;d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D48&amp;r=G" class="avatar avatar-48 photo" height="48" width="48"></span> </a></h4>
<a class="url" href="http://blog.nikhilism.com" rel="external me">Nikhil Marathe <span class="photo"><img alt="" src="https://secure.gravatar.com/avatar/098bc26c1d2d2b425b258cff67044ac1?s=48&amp;d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D48&amp;r=G" class="avatar avatar-48 photo" height="48" width="48"/></span> </a></h4>
<p>Nikhil works on implementing Web APIs in Gecko. He is currently hacking
on ServiceWorkers, Fetch and parts of the Notification and Push APIs.</p>
@ -1095,7 +1095,7 @@ on
</ul>
</nav>
<p id="copyright">Except where otherwise noted, content on this site is licensed under the
<br><a href="https://creativecommons.org/licenses/by-sa/3.0/" rel="license external">Creative Commons Attribution Share-Alike License v3.0</a> or
<br/><a href="https://creativecommons.org/licenses/by-sa/3.0/" rel="license external">Creative Commons Attribution Share-Alike License v3.0</a> or
any later version.</p>
<nav id="nav-footer">
<h5>hacks.mozilla.org:</h5>
@ -1128,4 +1128,4 @@ on
</html>
<!-- Dynamic page generated in 0.592 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2015-03-13 03:27:44 -->
<!-- super cache -->
<!-- super cache -->

@ -1,6 +1,6 @@
<div id="readability-page-1" class="page">
<div itemprop="articleBody" class="article-content clearfix">
<figure class="intro-image image center full-width"> <img src="http://cdn.arstechnica.net/wp-content/uploads/2015/04/server-crash-640x426.jpg" width="640" height="331">
<figure class="intro-image image center full-width"> <img src="http://cdn.arstechnica.net/wp-content/uploads/2015/04/server-crash-640x426.jpg" width="640" height="331"/>
<figcaption class="caption"> </figcaption>
</figure>
<p>A flaw in the wildly popular online game <em>Minecraft</em> makes it easy for just about anyone to crash the server hosting the game, according to a computer programmer who has released proof-of-concept code that exploits the vulnerability.</p>
@ -45,4 +45,4 @@
</blockquote>
<p>Ars is asking Mojang for comment and will update this post if company officials respond.</p>
</div>
</div>
</div>

@ -43,47 +43,47 @@
};
</script>
<!--[if lte IE 8]><script type="text/javascript" src="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/js/modernizr/modernizr.js"></script><![endif]-->
<link rel="stylesheet" type="text/css" media="all" href="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/css/ars.min.55e632421d8225142fe8df15cdfe2a20.css">
<link rel="alternate" type="application/rss+xml" href="http://feeds.arstechnica.com/arstechnica/index/">
<link rel="shortcut icon" href="https://cdn.arstechnica.net/favicon.ico">
<link rel="icon" type="image/x-icon" href="https://cdn.arstechnica.net/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/images/ars-ios-icon.png">
<link rel="icon" sizes="192x192" href="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/images/material-ars.png">
<meta name="application-name" content="Ars Technica">
<meta name="msapplication-starturl" content="http://arstechnica.com/">
<meta name="msapplication-tooltip" content="Ars Technica: Serving the technologist for 1.2 decades">
<meta name="msapplication-task" content="name=News;action-uri=http://arstechnica.com/;icon-uri=https://cdn.arstechnica.net/favicon.ico">
<meta name="msapplication-task" content="name=Features;action-uri=http://arstechnica.com/features/;icon-uri=https://cdn.arstechnica.net/ie-jump-menu/jump-features.ico">
<meta name="msapplication-task" content="name=OpenForum;action-uri=http://arstechnica.com/civis/;icon-uri=https://cdn.arstechnica.net/ie-jump-menu/jump-forum.ico">
<meta name="msapplication-task" content="name=Subscribe;action-uri=http://arstechnica.com/subscriptions/;icon-uri=https://cdn.arstechnica.net/ie-jump-menu/jump-subscribe.ico">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="advertising" content="ask">
<meta property="fb:admins" content="592156917">
<meta name="format-detection" content="telephone=no">
<meta name="theme-color" content="#000000">
<meta name="viewport" content="width=1020">
<link rel="stylesheet" type="text/css" media="all" href="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/css/ars.min.55e632421d8225142fe8df15cdfe2a20.css"/>
<link rel="alternate" type="application/rss+xml" href="http://feeds.arstechnica.com/arstechnica/index/"/>
<link rel="shortcut icon" href="https://cdn.arstechnica.net/favicon.ico"/>
<link rel="icon" type="image/x-icon" href="https://cdn.arstechnica.net/favicon.ico"/>
<link rel="apple-touch-icon" sizes="180x180" href="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/images/ars-ios-icon.png"/>
<link rel="icon" sizes="192x192" href="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/images/material-ars.png"/>
<meta name="application-name" content="Ars Technica"/>
<meta name="msapplication-starturl" content="http://arstechnica.com/"/>
<meta name="msapplication-tooltip" content="Ars Technica: Serving the technologist for 1.2 decades"/>
<meta name="msapplication-task" content="name=News;action-uri=http://arstechnica.com/;icon-uri=https://cdn.arstechnica.net/favicon.ico"/>
<meta name="msapplication-task" content="name=Features;action-uri=http://arstechnica.com/features/;icon-uri=https://cdn.arstechnica.net/ie-jump-menu/jump-features.ico"/>
<meta name="msapplication-task" content="name=OpenForum;action-uri=http://arstechnica.com/civis/;icon-uri=https://cdn.arstechnica.net/ie-jump-menu/jump-forum.ico"/>
<meta name="msapplication-task" content="name=Subscribe;action-uri=http://arstechnica.com/subscriptions/;icon-uri=https://cdn.arstechnica.net/ie-jump-menu/jump-subscribe.ico"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="advertising" content="ask"/>
<meta property="fb:admins" content="592156917"/>
<meta name="format-detection" content="telephone=no"/>
<meta name="theme-color" content="#000000"/>
<meta name="viewport" content="width=1020"/>
<!-- cache hit 459:single/meta:b3538aec37c1a165d2b4b62bd58e56e3 -->
<meta name="parsely-page" content="{&quot;title&quot;:&quot;Just-released Minecraft exploit makes it easy to crash game servers&quot;,&quot;link&quot;:&quot;http:\/\/arstechnica.com\/security\/2015\/04\/16\/just-released-minecraft-exploit-makes-it-easy-to-crash-game-servers\/&quot;,&quot;type&quot;:&quot;post&quot;,&quot;author&quot;:&quot;Dan Goodin&quot;,&quot;post_id&quot;:648287,&quot;pub_date&quot;:&quot;2015-04-16T20:02:01Z&quot;,&quot;section&quot;:&quot;Risk Assessment&quot;,&quot;tags&quot;:[&quot;denial-of-service-attack&quot;,&quot;exploits&quot;,&quot;minecraft&quot;,&quot;vulnerabilities&quot;,&quot;type: report&quot;],&quot;image_url&quot;:&quot;http:\/\/cdn.arstechnica.net\/wp-content\/uploads\/2015\/04\/server-crash-150x150.jpg&quot;}">
<meta name="parsely-metadata" content="{&quot;type&quot;:&quot;report&quot;,&quot;title&quot;:&quot;Just-released Minecraft exploit makes it easy to crash game servers&quot;,&quot;post_id&quot;:648287,&quot;lower_deck&quot;:&quot;Two-year-old bug exposes thousands of servers to crippling attack.&quot;,&quot;image_url&quot;:&quot;http:\/\/cdn.arstechnica.net\/wp-content\/uploads\/2015\/04\/server-crash-150x150.jpg&quot;,&quot;listing_image_url&quot;:&quot;http:\/\/cdn.arstechnica.net\/wp-content\/uploads\/2015\/04\/server-crash-300x150.jpg&quot;}">
<link rel="canonical" href="http://arstechnica.com/security/2015/04/16/just-released-minecraft-exploit-makes-it-easy-to-crash-game-servers/">
<link rel="shorturl" href="http://ars.to/1CSWnf5">
<meta name="description" content="Two-year-old bug exposes thousands of servers to crippling attack.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="http://arstechnica.com/security/2015/04/16/just-released-minecraft-exploit-makes-it-easy-to-crash-game-servers/">
<meta name="twitter:title" content="Just-released Minecraft exploit makes it easy to crash game servers">
<meta name="twitter:description" content="Two-year-old bug exposes thousands of servers to crippling attack.">
<meta name="twitter:site" content="@arstechnica">
<meta name="twitter:domain" content="arstechnica.com">
<meta property="og:site_name" content="Ars Technica">
<meta name="twitter:image:src" content="http://cdn.arstechnica.net/wp-content/uploads/2015/04/server-crash-640x426.jpg">
<meta name="twitter:image:width" content="640">
<meta name="twitter:image:height" content="426">
<meta name="twitter:creator" content="@dangoodin001">
<meta property="og:url" content="http://arstechnica.com/security/2015/04/16/just-released-minecraft-exploit-makes-it-easy-to-crash-game-servers/">
<meta property="og:title" content="Just-released Minecraft exploit makes it easy to crash game servers">
<meta property="og:image" content="http://cdn.arstechnica.net/wp-content/uploads/2015/04/server-crash-640x426.jpg">
<meta property="og:description" content="Two-year-old bug exposes thousands of servers to crippling attack.">
<meta property="og:type" content="article">
<meta name="parsely-page" content="{&quot;title&quot;:&quot;Just-released Minecraft exploit makes it easy to crash game servers&quot;,&quot;link&quot;:&quot;http:\/\/arstechnica.com\/security\/2015\/04\/16\/just-released-minecraft-exploit-makes-it-easy-to-crash-game-servers\/&quot;,&quot;type&quot;:&quot;post&quot;,&quot;author&quot;:&quot;Dan Goodin&quot;,&quot;post_id&quot;:648287,&quot;pub_date&quot;:&quot;2015-04-16T20:02:01Z&quot;,&quot;section&quot;:&quot;Risk Assessment&quot;,&quot;tags&quot;:[&quot;denial-of-service-attack&quot;,&quot;exploits&quot;,&quot;minecraft&quot;,&quot;vulnerabilities&quot;,&quot;type: report&quot;],&quot;image_url&quot;:&quot;http:\/\/cdn.arstechnica.net\/wp-content\/uploads\/2015\/04\/server-crash-150x150.jpg&quot;}"/>
<meta name="parsely-metadata" content="{&quot;type&quot;:&quot;report&quot;,&quot;title&quot;:&quot;Just-released Minecraft exploit makes it easy to crash game servers&quot;,&quot;post_id&quot;:648287,&quot;lower_deck&quot;:&quot;Two-year-old bug exposes thousands of servers to crippling attack.&quot;,&quot;image_url&quot;:&quot;http:\/\/cdn.arstechnica.net\/wp-content\/uploads\/2015\/04\/server-crash-150x150.jpg&quot;,&quot;listing_image_url&quot;:&quot;http:\/\/cdn.arstechnica.net\/wp-content\/uploads\/2015\/04\/server-crash-300x150.jpg&quot;}"/>
<link rel="canonical" href="http://arstechnica.com/security/2015/04/16/just-released-minecraft-exploit-makes-it-easy-to-crash-game-servers/"/>
<link rel="shorturl" href="http://ars.to/1CSWnf5"/>
<meta name="description" content="Two-year-old bug exposes thousands of servers to crippling attack."/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:url" content="http://arstechnica.com/security/2015/04/16/just-released-minecraft-exploit-makes-it-easy-to-crash-game-servers/"/>
<meta name="twitter:title" content="Just-released Minecraft exploit makes it easy to crash game servers"/>
<meta name="twitter:description" content="Two-year-old bug exposes thousands of servers to crippling attack."/>
<meta name="twitter:site" content="@arstechnica"/>
<meta name="twitter:domain" content="arstechnica.com"/>
<meta property="og:site_name" content="Ars Technica"/>
<meta name="twitter:image:src" content="http://cdn.arstechnica.net/wp-content/uploads/2015/04/server-crash-640x426.jpg"/>
<meta name="twitter:image:width" content="640"/>
<meta name="twitter:image:height" content="426"/>
<meta name="twitter:creator" content="@dangoodin001"/>
<meta property="og:url" content="http://arstechnica.com/security/2015/04/16/just-released-minecraft-exploit-makes-it-easy-to-crash-game-servers/"/>
<meta property="og:title" content="Just-released Minecraft exploit makes it easy to crash game servers"/>
<meta property="og:image" content="http://cdn.arstechnica.net/wp-content/uploads/2015/04/server-crash-640x426.jpg"/>
<meta property="og:description" content="Two-year-old bug exposes thousands of servers to crippling attack."/>
<meta property="og:type" content="article"/>
<!-- cache hit 459:single/header:b3538aec37c1a165d2b4b62bd58e56e3 -->
<script type="text/javascript" src="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/js/omniture/mbox.js"></script>
</head>
@ -210,9 +210,9 @@
<li id="search-container" class="right inactive">
<a id="search-switch" href="/search/"></a>
<form action="/search/" method="GET" id="search_form">
<input type="hidden" name="ie" value="UTF-8">
<input type="text" name="q" id="hdr_search_input" value="">
<input type="submit" value=""> </form>
<input type="hidden" name="ie" value="UTF-8"/>
<input type="text" name="q" id="hdr_search_input" value=""/>
<input type="submit" value=""/> </form>
<style type="text/css">
table.gstl_50.gssb_c {
top: 30px !important;
@ -273,7 +273,7 @@
</header>
<section id="article-guts">
<div itemprop="articleBody" class="article-content clearfix">
<figure class="intro-image image center full-width" style="width:640px"> <img src="http://cdn.arstechnica.net/wp-content/uploads/2015/04/server-crash-640x426.jpg" width="640" height="331">
<figure class="intro-image image center full-width" style="width:640px"> <img src="http://cdn.arstechnica.net/wp-content/uploads/2015/04/server-crash-640x426.jpg" width="640" height="331"/>
<figcaption class="caption">
<div class="caption-credit"> <a rel="nofollow" href="https://en.wikipedia.org/wiki/Kernel_panic#/media/File:Kernel-panic.jpg">Kevin</a> </div>
</figcaption>
@ -369,7 +369,7 @@
</aside>
<!-- cache hit 459:single/author:ec67ae7d8397f22698e2822e36453902 -->
<section class="article-author clearfix-redux">
<a href="/author/dan-goodin"><img width="47" height="47" src="http://cdn.arstechnica.net/wp-content/uploads/authors/Dan-Goodin-sq.jpg"></a>
<a href="/author/dan-goodin"><img width="47" height="47" src="http://cdn.arstechnica.net/wp-content/uploads/authors/Dan-Goodin-sq.jpg"/></a>
<p><a href="/author/dan-goodin" class="author-name">Dan Goodin</a> / Dan is the Security Editor at Ars Technica, which he joined in 2012 after working for The Register, the Associated Press, Bloomberg News, and other publications.</p>
</section>
<table class="post-links thick-divide-top thin-divide-bottom clearfix-redux" cellspacing="0" cellpadding="0" border="0" width="100%">
@ -412,7 +412,7 @@
<ul class="column">
<li class="post" id="post-658367">
<article class="in-column" data-post-id="658367">
<a href="http://arstechnica.com/apple/2015/05/03/review-the-absolutely-optional-apple-watch-and-watch-os-1-0/" class="headline-image"> <img src="http://cdn.arstechnica.net/wp-content/uploads/2015/05/DSC00588-300x100.jpg" width="300" height="100">
<a href="http://arstechnica.com/apple/2015/05/03/review-the-absolutely-optional-apple-watch-and-watch-os-1-0/" class="headline-image"> <img src="http://cdn.arstechnica.net/wp-content/uploads/2015/05/DSC00588-300x100.jpg" width="300" height="100"/>
<h2 class="page-count subheading">Feature Story (7 pages)</h2>
<h1 class="heading">Review: The absolutely optional Apple Watch and Watch OS 1.0</h1> </a>
<p class="excerpt">A pragmatist's guide to a nice but not quite necessary gadget.</p>
@ -421,7 +421,7 @@
<aside class="thick-divide-top">
<h2 class="subheading notched">Watch Ars Video</h2>
<article class="in-column">
<div class="column-video" data-player="2196096102001" data-video="4202322531001" data-key="AQ~~,AAAAlDCBGhk~,VcmqiTAuekrwPweJ20LLt7jwm8LxmhCE"> <img src="https://cdn.arstechnica.net/i/http://brightcove.vo.llnwd.net/v1/unsecured/media/636468927001/201504/641/636468927001_4202397654001_LG-G4.jpg?pubId=636468927001" width="300" height="169">
<div class="column-video" data-player="2196096102001" data-video="4202322531001" data-key="AQ~~,AAAAlDCBGhk~,VcmqiTAuekrwPweJ20LLt7jwm8LxmhCE"> <img src="https://cdn.arstechnica.net/i/http://brightcove.vo.llnwd.net/v1/unsecured/media/636468927001/201504/641/636468927001_4202397654001_LG-G4.jpg?pubId=636468927001" width="300" height="169"/>
<div class="column-video-overlay"></div>
</div> <a href="http://arstechnica.com/gadgets/2015/04/28/hands-on-with-the-leather-backed-lg-g4/"><h1 class="heading videohead">Hands-on with the New LG G4</h1></a>
<p class="excerpt">LG goes with a wild rear design and a Snapdragon 808.</p>
@ -465,7 +465,7 @@
<h1 class="heading">Super secretive malware wipes hard drive to prevent analysis</h1> </a>
</li>
<li>
<a href="http://arstechnica.com/gaming/2015/05/04/failed-christian-shoe-promoter-makes-anti-gay-first-person-shooter/"> <img src="http://cdn.arstechnica.net/wp-content/uploads/2015/05/Screen-Shot-2015-05-04-at-2.45.22-PM-150x150.png" width="50" height="50">
<a href="http://arstechnica.com/gaming/2015/05/04/failed-christian-shoe-promoter-makes-anti-gay-first-person-shooter/"> <img src="http://cdn.arstechnica.net/wp-content/uploads/2015/05/Screen-Shot-2015-05-04-at-2.45.22-PM-150x150.png" width="50" height="50"/>
<h1 class="heading">Failed Christian shoe promoter makes anti-gay first-person shooter</h1> </a>
</li>
<li>
@ -474,7 +474,7 @@
<h1 class="heading">Prime Minister of Singapore shares his C++ code for Sudoku solver</h1> </a>
</li>
<li>
<a href="http://arstechnica.com/tech-policy/2015/05/04/9th-circuit-judges-rip-into-prenda-law-copyright-trolling-scheme/"> <img src="http://cdn.arstechnica.net/wp-content/uploads/2015/05/Screen-Shot-2015-05-04-at-11.09.05-AM-150x150.png" width="50" height="50">
<a href="http://arstechnica.com/tech-policy/2015/05/04/9th-circuit-judges-rip-into-prenda-law-copyright-trolling-scheme/"> <img src="http://cdn.arstechnica.net/wp-content/uploads/2015/05/Screen-Shot-2015-05-04-at-11.09.05-AM-150x150.png" width="50" height="50"/>
<h1 class="heading">9th Circuit judges rip into Prenda law copyright trolling scheme</h1> </a>
</li>
<div style="display:none">
@ -615,14 +615,14 @@
<h2 class="subheading"><a href="http://arstechnica.com/security/2015/04/16/just-released-minecraft-exploit-makes-it-easy-to-crash-game-servers/?view=mobile">View Mobile Site</a></h2> </div>
</nav>
<p style="text-align:center;margin-top:30px;margin-bottom:0">
<a href="http://condenast.com"><img src="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/images/condenast-logo.png" width="131" height="19"></a>
<a href="http://condenast.com"><img src="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/images/condenast-logo.png" width="131" height="19"/></a>
</p>
<div id="copyright-terms"> © 2015 Condé Nast. All rights reserved
<br> Use of this Site constitutes acceptance of our <a href="http://www.condenast.com/privacy-policy" target="_blank">User Agreement</a> (effective 1/2/14) and <a href="http://www.condenast.com/privacy-policy#privacypolicy" target="_blank">Privacy Policy</a> (effective 1/2/14), and <a href="/amendment-to-conde-nast-user-agreement-privacy-policy/">Ars Technica Addendum (effective 5/17/2012)</a>
<br> <a href="http://www.condenast.com/privacy-policy#privacypolicy-california" target="_blank">Your California Privacy Rights</a>
<br> The material on this site may not be reproduced, distributed, transmitted, cached or otherwise used, except with the prior written permission of Condé Nast.
<br>
<br> <a href="http://www.condenast.com/privacy-policy#privacypolicy-optout" target="_blank">Ad Choices</a><img width="10" height="10" border="0" src="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/images/ad_choices_arrow.png"> </div>
<br/> Use of this Site constitutes acceptance of our <a href="http://www.condenast.com/privacy-policy" target="_blank">User Agreement</a> (effective 1/2/14) and <a href="http://www.condenast.com/privacy-policy#privacypolicy" target="_blank">Privacy Policy</a> (effective 1/2/14), and <a href="/amendment-to-conde-nast-user-agreement-privacy-policy/">Ars Technica Addendum (effective 5/17/2012)</a>
<br/> <a href="http://www.condenast.com/privacy-policy#privacypolicy-california" target="_blank">Your California Privacy Rights</a>
<br/> The material on this site may not be reproduced, distributed, transmitted, cached or otherwise used, except with the prior written permission of Condé Nast.
<br/>
<br/> <a href="http://www.condenast.com/privacy-policy#privacypolicy-optout" target="_blank">Ad Choices</a><img width="10" height="10" border="0" src="http://cdn.arstechnica.net/wp-content/themes/arstechnica/assets/images/ad_choices_arrow.png"/> </div>
</footer>
</div>
<script type="text/javascript" src="//www.google.com/jsapi?autoload={'modules':[{'name':'search','version':'1','packages':[],'language':'en'}]}"></script>
@ -762,4 +762,4 @@
<!-- Parse.ly end -->
</body>
</html>
</html>

@ -8,11 +8,11 @@
<p><a href="http://test/foo/bar/baz.html">link</a></p>
<p><a href="https://test/foo/bar/baz.html">link</a></p>
<p>Images</p>
<p><img src="http://fakehost/test/foo/bar/baz.png"></p>
<p><img src="http://fakehost/test/foo/bar/baz.png"></p>
<p><img src="http://fakehost/foo/bar/baz.png"></p>
<p><img src="http://test/foo/bar/baz.png"></p>
<p><img src="https://test/foo/bar/baz.png"></p>
<p><img src="http://fakehost/test/foo/bar/baz.png"/></p>
<p><img src="http://fakehost/test/foo/bar/baz.png"/></p>
<p><img src="http://fakehost/foo/bar/baz.png"/></p>
<p><img src="http://test/foo/bar/baz.png"/></p>
<p><img src="https://test/foo/bar/baz.png"/></p>
<p> Tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p>
</article>
</div>
</div>

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Base URL test</title>
</head>
<body>

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Basic tag cleaning test</title>
</head>
<body>
@ -26,7 +26,7 @@
<object data="foo.swf" type="application/x-shockwave-flash" width="88" height="31">
<param movie="foo.swf" />
</object>
<embed src="foo.swf">
<embed src="foo.swf"/>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>

@ -14,11 +14,11 @@
<div class="buzz_superlist_item buzz_superlist_item_grid_row buzz_superlist_item_wide no_caption " id="superlist_3758406_5547140" rel:buzz_num="3">
<div class="grid_row two_pl grid_height_l">
<div class="grid_cell cell_1">
<div class="grid_cell_image_wrapper"><img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" height="412" width="203"></div>
<div class="grid_cell_image_wrapper"><img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" height="412" width="203"/></div>
<p class="sub_buzz_grid_source_via">Facebook</p>
</div>
<div class="grid_cell cell_2">
<div class="grid_cell_image_wrapper"><img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" height="412" width="412"></div>
<div class="grid_cell_image_wrapper"><img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" height="412" width="412"/></div>
<p class="sub_buzz_grid_source_via">Facebook</p>
</div>
</div>

@ -40,122 +40,122 @@
window.document.documentElement.className += " fonts-loaded";
</script>
<title>Student Dies After Diet Pills She Bought Online "Burned Her Up From Within" - BuzzFeed News</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="copyright" content="Copyright 2015 BuzzFeed, Inc. All rights reserved.">
<meta name="description" content="An inquest into Eloise Parry's death has been adjourned until July...">
<meta property="bf:buzzid" content="3758406">
<meta property="bf:userid" content="1687686">
<meta property="author" content="Mark Di Stefano">
<meta name="news_keywords" content="diet pills, inquests, online shopping, uk">
<meta name="sailthru.tags" content="diet pills, inquests, online shopping, uk">
<meta name="apple-itunes-app" content="app-id=352969997, affiliate-data=at=10l3HP&amp;ct=Buzz/SmartBanner">
<meta name="google-signin-clientid" content="895639880237-tcoheof19odpd88p676rjc70v0iqit0o.apps.googleusercontent.com">
<meta name="google-signin-cookiepolicy" content="single_host_origin">
<meta name="google-signin-requestvisibleactions" content="https://schemas.google.com/AddActivity">
<meta name="google-signin-scope" content="https://www.googleapis.com/auth/plus.login https://www.googleapis.com/auth/plus.profile.emails.read">
<meta property="fb:app_id" content="45075597673">
<meta property="og:site_name" content="BuzzFeed">
<meta property="fb:admins" content="707356852">
<meta property="fb:admins" content="689300683">
<meta property="fb:admins" content="1065534095">
<meta property="fb:admins" content="583832663">
<meta property="fb:admins" content="749455540">
<meta property="fb:admins" content="560468108">
<meta property="fb:admins" content="731012743">
<meta property="fb:admins" content="616026830">
<meta property="fb:admins" content="509245189">
<meta property="fb:admins" content="10903550">
<meta property="fb:admins" content="14231094">
<meta property="fb:admins" content="1806923">
<meta property="fb:admins" content="1554635003">
<meta property="fb:admins" content="835967">
<meta property="fb:admins" content="1234380730">
<meta property="fb:admins" content="743137474">
<meta property="fb:admins" content="2208604">
<meta property="fb:admins" content="28518">
<meta property="fb:admins" content="15920947">
<meta property="fb:admins" content="100003945960605">
<meta property="fb:admins" content="578226154">
<meta property="fb:admins" content="502418534">
<meta property="fb:admins" content="5515474">
<meta property="fb:admins" content="5525520">
<meta property="fb:admins" content="5205449">
<meta property="fb:admins" content="648659743">
<meta property="fb:admins" content="705370117">
<meta property="fb:admins" content="1351920148">
<meta property="fb:admins" content="8370474">
<meta property="fb:admins" content="1387300103">
<meta property="fb:admins" content="1572780204">
<meta property="fb:admins" content="100003824101586">
<meta property="fb:admins" content="1026583096">
<meta property="fb:admins" content="626540352">
<meta property="fb:admins" content="1338210367">
<meta property="fb:admins" content="43102791">
<meta property="fb:admins" content="100005241975163">
<meta property="fb:admins" content="1617218809">
<meta property="fb:admins" content="1215772645">
<meta property="fb:admins" content="100009270720042">
<meta property="fb:admins" content="502277904">
<meta property="fb:admins" content="544697162">
<meta name="title" content="Student Dies After Diet Pills She Bought Online &quot;Burned Her Up From Within&quot;">
<meta property="og:title" content="Student Dies After Diet Pills She Bought Online &quot;Burned Her Up From Within&quot;">
<meta property="og:description" content="An inquest into Eloise Parry's death has been adjourned until July.">
<meta property="og:url" content="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up">
<meta name="twitter:creator" content="@MarkDiStef">
<meta property="article:tag" content="inquests">
<meta property="article:tag" content="online shopping">
<meta property="article:tag" content="uk">
<meta property="article:section" content="UKNews">
<meta property="article:publisher" content="https://www.facebook.com/BuzzFeed">
<meta property="og:image" content="http://s3-static-ak.buzzfed.com/static/2015-04/22/5/campaign_images/webdr03/student-dies-after-diet-pills-she-bought-online-b-2-28712-1429696299-24_dblbig.jpg">
<meta property="og:image:width" content="625">
<meta property="og:image:height" content="415">
<meta property="og:image:url" content="http://s3-ak.buzzfeed.com/static/2015-04/21/4/enhanced/webdr10/enhanced-6418-1429605460-16.jpg">
<meta property="og:image:width" content="625">
<meta property="og:image:height" content="422">
<meta property="og:image:url" content="http://s3-ak.buzzfeed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg">
<meta property="og:image:width" content="203">
<meta property="og:image:height" content="412">
<meta property="og:image:url" content="http://s3-ak.buzzfeed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg">
<meta property="og:image:width" content="412">
<meta property="og:image:height" content="412">
<link rel="image_src" href="http://s3-static-ak.buzzfed.com/static/2015-04/22/5/campaign_images/webdr03/student-dies-after-diet-pills-she-bought-online-b-2-28712-1429696299-24_big.jpg">
<meta property="og:type" content="article">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Student Dies After Diet Pills She Bought Online &quot;Burned Her Up From Within&quot;">
<meta name="twitter:description" content="An inquest into Eloise Parry's death has been adjourned until July.">
<meta name="twitter:image" content="http://s3-static-ak.buzzfed.com/static/2015-04/22/5/campaign_images/webdr03/student-dies-after-diet-pills-she-bought-online-b-2-28712-1429696299-24_big.jpg">
<meta name="twitter:site" content="@buzzfeednews">
<meta name="twitter:url" content="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up">
<meta name="twitter:title" content="Student Dies After Diet Pills She Bought Online &quot;Burned Her Up From Within&quot;">
<meta name="twitter:description" content="An inquest into Eloise Parry's death has been adjourned until July.">
<meta name="twitter:app:id:iphone" content="352969997">
<meta name="twitter:app:url:iphone" content="buzzfeed://buzz/markdistefano/diet-pills-burns-up">
<meta name="twitter:app:id:ipad" content="352969997">
<meta name="twitter:app:url:ipad" content="buzzfeed://buzz/markdistefano/diet-pills-burns-up">
<meta name="twitter:app:id:googleplay" content="com.buzzfeed.android">
<meta name="twitter:app:url:googleplay" content="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up">
<link rel="apple-touch-startup-image" href="http://s3-ak.buzzfed.com/static/images/mobile/startup.png">
<link rel="apple-touch-icon" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-ios_60.png">
<link rel="apple-touch-icon" sizes="76x76" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-ios_76.png">
<link rel="apple-touch-icon" sizes="120x120" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-ios_120.png">
<link rel="apple-touch-icon" sizes="152x152" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-ios_152.png">
<link rel="apple-touch-icon" sizes="180x180" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-ios_180.png">
<link rel="shortcut icon" sizes="196x196" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-android.png">
<link rel="shortcut icon" crossorigin="" href="http://s3-ak.buzzfed.com/static/favicon.ico?v=201504241415" type="image/x-icon">
<link rel="canonical" href="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up">
<link rel="alternate" href="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up?s=mobile">
<link rel="alternate" href="android-app://com.buzzfeed.android/http/www.buzzfeed.com/markdistefano/diet-pills-burns-up?utm_source=google&amp;utm_medium=appindex&amp;utm_campaign=appindex">
<link rel="alternate" type="application/rss+xml" title="Mark Di Stefano's Buzz" href="/markdistefano.xml">
<link rel="alternate" type="application/rss+xml" title=" Buzz" href="/tag/.xml">
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/ccss/front.desktop.css?v=201504241415" type="text/css">
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/header.css?v=201504241415" type="text/css">
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/legacy/core1.css?v=201504241415" type="text/css">
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/legacy/core2.css?v=201504241415" type="text/css">
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/bf_ui.css?v=201504241415" type="text/css">
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/legacy/sponsorships.css?v=201504241415" type="text/css">
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/permalink.css?v=201504241415" type="text/css">
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/ccss/bpage.desktop.css?v=201504241415" type="text/css">
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<meta name="copyright" content="Copyright 2015 BuzzFeed, Inc. All rights reserved."/>
<meta name="description" content="An inquest into Eloise Parry's death has been adjourned until July..."/>
<meta property="bf:buzzid" content="3758406"/>
<meta property="bf:userid" content="1687686"/>
<meta property="author" content="Mark Di Stefano"/>
<meta name="news_keywords" content="diet pills, inquests, online shopping, uk"/>
<meta name="sailthru.tags" content="diet pills, inquests, online shopping, uk"/>
<meta name="apple-itunes-app" content="app-id=352969997, affiliate-data=at=10l3HP&amp;ct=Buzz/SmartBanner"/>
<meta name="google-signin-clientid" content="895639880237-tcoheof19odpd88p676rjc70v0iqit0o.apps.googleusercontent.com"/>
<meta name="google-signin-cookiepolicy" content="single_host_origin"/>
<meta name="google-signin-requestvisibleactions" content="https://schemas.google.com/AddActivity"/>
<meta name="google-signin-scope" content="https://www.googleapis.com/auth/plus.login https://www.googleapis.com/auth/plus.profile.emails.read"/>
<meta property="fb:app_id" content="45075597673"/>
<meta property="og:site_name" content="BuzzFeed"/>
<meta property="fb:admins" content="707356852"/>
<meta property="fb:admins" content="689300683"/>
<meta property="fb:admins" content="1065534095"/>
<meta property="fb:admins" content="583832663"/>
<meta property="fb:admins" content="749455540"/>
<meta property="fb:admins" content="560468108"/>
<meta property="fb:admins" content="731012743"/>
<meta property="fb:admins" content="616026830"/>
<meta property="fb:admins" content="509245189"/>
<meta property="fb:admins" content="10903550"/>
<meta property="fb:admins" content="14231094"/>
<meta property="fb:admins" content="1806923"/>
<meta property="fb:admins" content="1554635003"/>
<meta property="fb:admins" content="835967"/>
<meta property="fb:admins" content="1234380730"/>
<meta property="fb:admins" content="743137474"/>
<meta property="fb:admins" content="2208604"/>
<meta property="fb:admins" content="28518"/>
<meta property="fb:admins" content="15920947"/>
<meta property="fb:admins" content="100003945960605"/>
<meta property="fb:admins" content="578226154"/>
<meta property="fb:admins" content="502418534"/>
<meta property="fb:admins" content="5515474"/>
<meta property="fb:admins" content="5525520"/>
<meta property="fb:admins" content="5205449"/>
<meta property="fb:admins" content="648659743"/>
<meta property="fb:admins" content="705370117"/>
<meta property="fb:admins" content="1351920148"/>
<meta property="fb:admins" content="8370474"/>
<meta property="fb:admins" content="1387300103"/>
<meta property="fb:admins" content="1572780204"/>
<meta property="fb:admins" content="100003824101586"/>
<meta property="fb:admins" content="1026583096"/>
<meta property="fb:admins" content="626540352"/>
<meta property="fb:admins" content="1338210367"/>
<meta property="fb:admins" content="43102791"/>
<meta property="fb:admins" content="100005241975163"/>
<meta property="fb:admins" content="1617218809"/>
<meta property="fb:admins" content="1215772645"/>
<meta property="fb:admins" content="100009270720042"/>
<meta property="fb:admins" content="502277904"/>
<meta property="fb:admins" content="544697162"/>
<meta name="title" content="Student Dies After Diet Pills She Bought Online &quot;Burned Her Up From Within&quot;"/>
<meta property="og:title" content="Student Dies After Diet Pills She Bought Online &quot;Burned Her Up From Within&quot;"/>
<meta property="og:description" content="An inquest into Eloise Parry's death has been adjourned until July."/>
<meta property="og:url" content="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up"/>
<meta name="twitter:creator" content="@MarkDiStef"/>
<meta property="article:tag" content="inquests"/>
<meta property="article:tag" content="online shopping"/>
<meta property="article:tag" content="uk"/>
<meta property="article:section" content="UKNews"/>
<meta property="article:publisher" content="https://www.facebook.com/BuzzFeed"/>
<meta property="og:image" content="http://s3-static-ak.buzzfed.com/static/2015-04/22/5/campaign_images/webdr03/student-dies-after-diet-pills-she-bought-online-b-2-28712-1429696299-24_dblbig.jpg"/>
<meta property="og:image:width" content="625"/>
<meta property="og:image:height" content="415"/>
<meta property="og:image:url" content="http://s3-ak.buzzfeed.com/static/2015-04/21/4/enhanced/webdr10/enhanced-6418-1429605460-16.jpg"/>
<meta property="og:image:width" content="625"/>
<meta property="og:image:height" content="422"/>
<meta property="og:image:url" content="http://s3-ak.buzzfeed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg"/>
<meta property="og:image:width" content="203"/>
<meta property="og:image:height" content="412"/>
<meta property="og:image:url" content="http://s3-ak.buzzfeed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg"/>
<meta property="og:image:width" content="412"/>
<meta property="og:image:height" content="412"/>
<link rel="image_src" href="http://s3-static-ak.buzzfed.com/static/2015-04/22/5/campaign_images/webdr03/student-dies-after-diet-pills-she-bought-online-b-2-28712-1429696299-24_big.jpg"/>
<meta property="og:type" content="article"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="Student Dies After Diet Pills She Bought Online &quot;Burned Her Up From Within&quot;"/>
<meta name="twitter:description" content="An inquest into Eloise Parry's death has been adjourned until July."/>
<meta name="twitter:image" content="http://s3-static-ak.buzzfed.com/static/2015-04/22/5/campaign_images/webdr03/student-dies-after-diet-pills-she-bought-online-b-2-28712-1429696299-24_big.jpg"/>
<meta name="twitter:site" content="@buzzfeednews"/>
<meta name="twitter:url" content="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up"/>
<meta name="twitter:title" content="Student Dies After Diet Pills She Bought Online &quot;Burned Her Up From Within&quot;"/>
<meta name="twitter:description" content="An inquest into Eloise Parry's death has been adjourned until July."/>
<meta name="twitter:app:id:iphone" content="352969997"/>
<meta name="twitter:app:url:iphone" content="buzzfeed://buzz/markdistefano/diet-pills-burns-up"/>
<meta name="twitter:app:id:ipad" content="352969997"/>
<meta name="twitter:app:url:ipad" content="buzzfeed://buzz/markdistefano/diet-pills-burns-up"/>
<meta name="twitter:app:id:googleplay" content="com.buzzfeed.android"/>
<meta name="twitter:app:url:googleplay" content="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up"/>
<link rel="apple-touch-startup-image" href="http://s3-ak.buzzfed.com/static/images/mobile/startup.png"/>
<link rel="apple-touch-icon" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-ios_60.png"/>
<link rel="apple-touch-icon" sizes="76x76" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-ios_76.png"/>
<link rel="apple-touch-icon" sizes="120x120" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-ios_120.png"/>
<link rel="apple-touch-icon" sizes="152x152" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-ios_152.png"/>
<link rel="apple-touch-icon" sizes="180x180" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-ios_180.png"/>
<link rel="shortcut icon" sizes="196x196" href="http://s3-ak.buzzfed.com/static/images/mobile/touch-icons/touch-icon-android.png"/>
<link rel="shortcut icon" crossorigin="" href="http://s3-ak.buzzfed.com/static/favicon.ico?v=201504241415" type="image/x-icon"/>
<link rel="canonical" href="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up"/>
<link rel="alternate" href="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up?s=mobile"/>
<link rel="alternate" href="android-app://com.buzzfeed.android/http/www.buzzfeed.com/markdistefano/diet-pills-burns-up?utm_source=google&amp;utm_medium=appindex&amp;utm_campaign=appindex"/>
<link rel="alternate" type="application/rss+xml" title="Mark Di Stefano's Buzz" href="/markdistefano.xml"/>
<link rel="alternate" type="application/rss+xml" title=" Buzz" href="/tag/.xml"/>
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/ccss/front.desktop.css?v=201504241415" type="text/css"/>
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/header.css?v=201504241415" type="text/css"/>
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/legacy/core1.css?v=201504241415" type="text/css"/>
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/legacy/core2.css?v=201504241415" type="text/css"/>
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/bf_ui.css?v=201504241415" type="text/css"/>
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/legacy/sponsorships.css?v=201504241415" type="text/css"/>
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/permalink.css?v=201504241415" type="text/css"/>
<link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/ccss/bpage.desktop.css?v=201504241415" type="text/css"/>
<!--[if IE 9]> <link rel="stylesheet" href="http://s3-ak.buzzfed.com/static/css/buzzfeed-ie9.css?v=201504241415" type="text/css" charset="utf-8" /> <![endif]-->
<!-- TO DO - This should be done by adding the class with Javascript -->
<script>
@ -3127,7 +3127,7 @@
<div id="nav-right">
<div class="page-search inactive">
<form class="page-search__form" action="/search" method="get">
<input placeholder="Search" class="page-search__input" autocomplete="off" rel:gt_act="ignore" value="" name="q" type="text">
<input placeholder="Search" class="page-search__input" autocomplete="off" rel:gt_act="ignore" value="" name="q" type="text"/>
<button class="page-search__search-button" rel:gt_act="search">
<svg viewBox="0 0 517 517" class="page-search__search-icon">
<use xlink:href="#icon-search"></use>
@ -3142,7 +3142,7 @@
<div id="usernav-profile" style="display: none;" class="header_dropdown">
<a rel:gt_act="user" href="javascript:;" id="usernav-profile-link" rel:bf_bucket="usernav-profile-link" class="bf_dom dropdown_heading">
<span class="image" id="usernav-image" style="display:none;">
<img nopin="nopin" src="" alt="" height="24" width="24">
<img nopin="nopin" src="" alt="" height="24" width="24"/>
</span>
<span class="image fa fa-user default-user-image" id="default-user-image" style="display:none;">
</span>
@ -3151,7 +3151,7 @@
<li id="usernav-new-post" class="SL_hide"><a rel:gt_act="new-post" href="/post">NEW POST</a></li>
<li id="usernav-my-feed"><a rel:gt_act="myfeed" id="usernav-profile-link2" rel:bf_bucket="usernav-profile-link" class="bf_dom" href="javascript:;">MY FEED</a></li>
<li id="usernav-dashboard" class="hidden SL_hide"><a rel:gt_act="dashboard" href="/dashboard">DASHBOARD</a></li>
<li id="usernav-switch" style="display:none;" class="switch_user_menu_option"><a rel:gt_act="feeds/users" href="javascript:;" onclick="return false;" id="usernav-switch-link">FEEDS/USERS<img id="switch-list-spinner" src="http://s3-ak.buzzfed.com/static/images/public/spinners/small_on_f6f6f6.gif" style="display:none;" height="16" width="16"></a></li>
<li id="usernav-switch" style="display:none;" class="switch_user_menu_option"><a rel:gt_act="feeds/users" href="javascript:;" onclick="return false;" id="usernav-switch-link">FEEDS/USERS<img id="switch-list-spinner" src="http://s3-ak.buzzfed.com/static/images/public/spinners/small_on_f6f6f6.gif" style="display:none;" height="16" width="16"/></a></li>
<li id="usernav-settings" style="display:none;"><a rel:gt_act="settings" href="/settings" id="usernav-settings-link">SETTINGS</a></li>
<li id="usernav-signout" style="display:none;" class="last"><a rel:gt_act="sign-out" href="javascript:;">SIGN OUT</a></li>
</ul>
@ -3202,7 +3202,7 @@
<div class="unit abtrack bf_dom thumb1" onmouseover="header &amp;&amp; header.fix_length(event);" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FO2FZ7&quot;,&quot;u&quot;:&quot;759SBH7&quot;,&quot;buzz&quot;:&quot;choses-que-les-filles-des-annees-2000-faisaient-19dho&quot;,&quot;user&quot;:&quot;jemimaskelley&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" track_load="{&quot;PROMO_IMPRESSION&quot;:&quot;8&quot;}" track_mousedown="{&quot;PROMO_CLICK&quot;:&quot;8&quot;}">
<a rel:gt_act="post/thumb:1" rel:gt_label="editor/jemimaskelley" rel:buzz_id="3759586" class="thumbbb bf_dom" rel:bf_bucket="abtrack" href="/jemimaskelley/choses-que-les-filles-des-annees-2000-faisaient-19dho">
<span class="title">23 choses que toutes les filles des années 2000…</span>
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/23/7/campaign_images/webdr13/23-choses-que-toutes-les-filles-des-annees-2000-f-2-22479-1429786805-12.jpg" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/23/7/campaign_images/webdr13/23-choses-que-toutes-les-filles-des-annees-2000-f-2-22479-1429786805-12.jpg" alt=""/>
</a>
</div>
<!-- first slot end -->
@ -3229,7 +3229,7 @@
<span></span> <span class="bf-display_name" rel:bf_truncate="15"></span>
</small>
</span>
<img nopin="nopin" class="bf-image partner" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==">
<img nopin="nopin" class="bf-image partner" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
</a>
</div>
</div>
@ -3288,43 +3288,43 @@
<div class="unit abtrack bf_dom thumb3" onmouseover="header &amp;&amp; header.fix_length(event);" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FMZZJ7&quot;,&quot;u&quot;:&quot;764NN7&quot;,&quot;buzz&quot;:&quot;21-tatouages-qui-ont-recouvert-des-cicatrices&quot;,&quot;user&quot;:&quot;juliegerstein&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" track_load="{&quot;PROMO_IMPRESSION&quot;:&quot;8&quot;}" track_mousedown="{&quot;PROMO_CLICK&quot;:&quot;8&quot;}">
<a rel:gt_act="post/thumb:3" rel:gt_label="editor/juliegerstein" rel:buzz_id="3752466" class="thumbbb bf_dom" rel:bf_bucket="abtrack" href="/juliegerstein/21-tatouages-qui-ont-recouvert-des-cicatrices">
<span class="title">21 tatouages qui ont merveilleusement bien…</span>
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/16/9/campaign_images/webdr09/21-tatouages-qui-ont-merveilleusement-bien-recouv-2-4152-1429189266-0.jpg" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/16/9/campaign_images/webdr09/21-tatouages-qui-ont-merveilleusement-bien-recouv-2-4152-1429189266-0.jpg" alt=""/>
</a>
</div>
<div class="unit abtrack bf_dom thumb4" onmouseover="header &amp;&amp; header.fix_length(event);" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FO6UG7&quot;,&quot;u&quot;:&quot;7386MV7&quot;,&quot;buzz&quot;:&quot;mannequins-mensongers&quot;,&quot;user&quot;:&quot;kristinchirico&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" track_load="{&quot;PROMO_IMPRESSION&quot;:&quot;8&quot;}" track_mousedown="{&quot;PROMO_CLICK&quot;:&quot;8&quot;}">
<a rel:gt_act="post/thumb:4" rel:gt_label="editor/kristinchirico" rel:buzz_id="3760401" class="thumbbb bf_dom" rel:bf_bucket="abtrack" href="/kristinchirico/mannequins-mensongers">
<span class="title">Voici à quoi ressemblent des vêtements «grande…</span>
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/23/9/campaign_images/webdr09/voici-a-quoi-ressemblent-des-vetements-grande-tai-2-2167-1429795022-0.jpg" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/23/9/campaign_images/webdr09/voici-a-quoi-ressemblent-des-vetements-grande-tai-2-2167-1429795022-0.jpg" alt=""/>
</a>
</div>
<div class="unit abtrack bf_dom thumb5" onmouseover="header &amp;&amp; header.fix_length(event);" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FNBSZ7&quot;,&quot;u&quot;:&quot;73FEXC7&quot;,&quot;buzz&quot;:&quot;34-raisons-de-ne-jamais-aller-au-pays-basque&quot;,&quot;user&quot;:&quot;marietelling&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" track_load="{&quot;PROMO_IMPRESSION&quot;:&quot;8&quot;}" track_mousedown="{&quot;PROMO_CLICK&quot;:&quot;8&quot;}">
<a rel:gt_act="post/thumb:5" rel:gt_label="editor/marietelling" rel:buzz_id="3754654" class="thumbbb bf_dom" rel:bf_bucket="abtrack" href="/marietelling/34-raisons-de-ne-jamais-aller-au-pays-basque">
<span class="title">34 raisons de ne jamais aller au Pays basque</span>
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/18/10/campaign_images/webdr06/34-raisons-de-ne-jamais-aller-au-pays-basque-2-5868-1429368600-5.jpg" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/18/10/campaign_images/webdr06/34-raisons-de-ne-jamais-aller-au-pays-basque-2-5868-1429368600-5.jpg" alt=""/>
</a>
</div>
<div class="unit abtrack bf_dom thumb6" onmouseover="header &amp;&amp; header.fix_length(event);" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOFKH7&quot;,&quot;u&quot;:&quot;7CEIDY7&quot;,&quot;buzz&quot;:&quot;pourquoi-tu-fais-ca-shonda&quot;,&quot;user&quot;:&quot;jenniferpadjemi&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" track_load="{&quot;PROMO_IMPRESSION&quot;:&quot;8&quot;}" track_mousedown="{&quot;PROMO_CLICK&quot;:&quot;8&quot;}">
<a rel:gt_act="post/thumb:6" rel:gt_label="editor/jenniferpadjemi" rel:buzz_id="3762016" class="thumbbb bf_dom" rel:bf_bucket="abtrack" href="/jenniferpadjemi/pourquoi-tu-fais-ca-shonda">
<span class="title">Les 43 fois où Greys Anatomy a fait couler toutes…</span>
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/24/16/campaign_images/webdr01/les-43-fois-ou-greys-anatomy-a-fait-couler-toutes-2-4861-1429906011-15.jpg" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/24/16/campaign_images/webdr01/les-43-fois-ou-greys-anatomy-a-fait-couler-toutes-2-4861-1429906011-15.jpg" alt=""/>
</a>
</div>
<div class="unit abtrack bf_dom thumb7" onmouseover="header &amp;&amp; header.fix_length(event);" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FO7PY7&quot;,&quot;u&quot;:&quot;74N9GW7&quot;,&quot;buzz&quot;:&quot;oui-ceci-est-mon-metier&quot;,&quot;user&quot;:&quot;floperry&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" track_load="{&quot;PROMO_IMPRESSION&quot;:&quot;8&quot;}" track_mousedown="{&quot;PROMO_CLICK&quot;:&quot;8&quot;}">
<a rel:gt_act="post/thumb:7" rel:gt_label="editor/floperry" rel:buzz_id="3760563" class="thumbbb bf_dom" rel:bf_bucket="abtrack" href="/floperry/oui-ceci-est-mon-metier">
<span class="title">23 réactions que toute personne ayant travaillé…</span>
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/23/8/campaign_images/webdr08/23-reactions-que-toute-personne-ayant-travaille-d-2-11535-1429792966-16.jpg" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/23/8/campaign_images/webdr08/23-reactions-que-toute-personne-ayant-travaille-d-2-11535-1429792966-16.jpg" alt=""/>
</a>
</div>
<div class="unit abtrack bf_dom thumb8" onmouseover="header &amp;&amp; header.fix_length(event);" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOF7U7&quot;,&quot;u&quot;:&quot;762Y617&quot;,&quot;buzz&quot;:&quot;pas-dans-les-yeux&quot;,&quot;user&quot;:&quot;christianzamora&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" track_load="{&quot;PROMO_IMPRESSION&quot;:&quot;8&quot;}" track_mousedown="{&quot;PROMO_CLICK&quot;:&quot;8&quot;}">
<a rel:gt_act="post/thumb:8" rel:gt_label="editor/christianzamora" rel:buzz_id="3761951" class="thumbbb bf_dom" rel:bf_bucket="abtrack" href="/christianzamora/pas-dans-les-yeux">
<span class="title">19 réactions que tous les gens ayant déjà eu…</span>
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/5/campaign_images/webdr05/19-reactions-que-tous-les-gens-ayant-deja-eu-affa-2-13034-1430125613-16.jpg" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/5/campaign_images/webdr05/19-reactions-que-tous-les-gens-ayant-deja-eu-affa-2-13034-1430125613-16.jpg" alt=""/>
</a>
</div>
<div class="unit abtrack bf_dom thumb9" onmouseover="header &amp;&amp; header.fix_length(event);" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FN7OM7&quot;,&quot;u&quot;:&quot;764NN7&quot;,&quot;buzz&quot;:&quot;ces-femmes-postent-fierement-des-photos-de-leurs-vergetures&quot;,&quot;user&quot;:&quot;juliegerstein&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" track_load="{&quot;PROMO_IMPRESSION&quot;:&quot;8&quot;}" track_mousedown="{&quot;PROMO_CLICK&quot;:&quot;8&quot;}">
<a rel:gt_act="post/thumb:9" rel:gt_label="editor/juliegerstein" rel:buzz_id="3753891" class="thumbbb bf_dom" rel:bf_bucket="abtrack" href="/juliegerstein/ces-femmes-postent-fierement-des-photos-de-leurs-vergetures">
<span class="title">Ces femmes postent fièrement des photos de leurs…</span>
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/16/3/campaign_images/webdr09/ces-femmes-postent-fierement-des-photos-de-leurs--2-30384-1429168480-26.jpg" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/16/3/campaign_images/webdr09/ces-femmes-postent-fierement-des-photos-de-leurs--2-30384-1429168480-26.jpg" alt=""/>
</a>
</div>
</div>
@ -3364,7 +3364,7 @@
</div>
<div class="trending-badge">
<div class="badge viral">
<a rel:gt_act="post/badge:viral" href="/trending"><img nopin="nopin" src="http://s3-ak.buzzfeed.com/static/badge_images/viral.png?v=201504241415" alt="viral" title="Click for More..." height="42" width="42"></a>
<a rel:gt_act="post/badge:viral" href="/trending"><img nopin="nopin" src="http://s3-ak.buzzfeed.com/static/badge_images/viral.png?v=201504241415" alt="viral" title="Click for More..." height="42" width="42"/></a>
</div>
</div>
<div class="badges">
@ -3404,7 +3404,7 @@
">
<a href="/markdistefano" rel:gt_act="user/avatar" rel:gt_label="editor/markdistefano">
<img nopin="nopin" src="http://s3-ak.buzzfeed.com/static/2014-06/30/20/user_images/webdr09/markdistefano-30063-1404175854-8_large.jpg" class="byline__avatar" alt="Mark Di Stefano">
<img nopin="nopin" src="http://s3-ak.buzzfeed.com/static/2014-06/30/20/user_images/webdr09/markdistefano-30063-1404175854-8_large.jpg" class="byline__avatar" alt="Mark Di Stefano"/>
</a>
<div class="byline__body">
<a href="/markdistefano" class="byline__author" rel:gt_act="user/username" rel:gt_label="editor/markdistefano">Mark Di Stefano</a>
@ -3502,7 +3502,7 @@
<div class="buzz_superlist_item buzz_superlist_item_image buzz_superlist_item_wide image_hit no_caption " id="superlist_3758406_5547137" rel:buzz_num="1">
<h2>The mother of a woman who took suspected diet pills bought online has described how her daughter was “literally burning up from within” moments before her death.</h2>
<div class="sub_buzz_content">
<img src="http://ak-hdl.buzzfed.com/static/2015-04/21/4/enhanced/webdr10/enhanced-6418-1429605460-16.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/4/enhanced/webdr10/enhanced-6418-1429605460-16.jpg" class="bf_dom" rel:bf_bucket="progload" alt="The mother of a woman who took suspected diet pills bought online has described how her daughter was &quot;literally burning up from within&quot; moments before her death." height="422" width="625">
<img src="http://ak-hdl.buzzfed.com/static/2015-04/21/4/enhanced/webdr10/enhanced-6418-1429605460-16.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/4/enhanced/webdr10/enhanced-6418-1429605460-16.jpg" class="bf_dom" rel:bf_bucket="progload" alt="The mother of a woman who took suspected diet pills bought online has described how her daughter was &quot;literally burning up from within&quot; moments before her death." height="422" width="625"/>
<div class="pinit" style="left: 542px; top: 374px;">
<a class="pin sub-buzz-pinterest-share bf_dom" href="javascript:;" rel:gt_act="share/pinterest/pin/list-item:1" rel:bf_bucket_data="{'pin-share':{'id':'3758406_5547137','not_a_sub':true}}" rel:sub_title="">
<span class="icon"></span>
@ -3523,7 +3523,7 @@
<div class="grid_row two_pl grid_height_l">
<div class="grid_cell cell_1">
<div class="grid_cell_image_wrapper">
<img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" height="412" width="203">
<img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608056-15.jpg" height="412" width="203"/>
<div class="pinit">
<a class="pin sub-buzz-pinterest-share bf_dom" href="javascript:;" rel:gt_act="share/pinterest/pin/list-item:1" rel:bf_bucket_data="{'pin-share':{'id':'3758406_5547140','not_a_sub':true}}" rel:sub_title="">
<span class="icon"></span>
@ -3536,7 +3536,7 @@
</div>
<div class="grid_cell cell_2">
<div class="grid_cell_image_wrapper">
<img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" height="412" width="412">
<img src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" rel:bf_image_src="http://ak-hdl.buzzfed.com/static/2015-04/21/5/enhanced/webdr12/grid-cell-2501-1429608057-18.jpg" height="412" width="412"/>
<div class="pinit">
<a class="pin sub-buzz-pinterest-share bf_dom" href="javascript:;" rel:gt_act="share/pinterest/pin/list-item:2" rel:bf_bucket_data="{'pin-share':{'id':'3758406_5547140','not_a_sub':true}}" rel:sub_title="">
<span class="icon"></span>
@ -3559,7 +3559,7 @@
</div>
<div class="buzz_superlist_item buzz_superlist_item_text buzz_superlist_item_wide " id="superlist_3758406_5547219" rel:buzz_num="5">
<h2>Fiona Parry issued a plea for people to stay away from pills containing the chemical.</h2>
<br>
<br/>
<p class="sub_buzz_desc">“[Eloise] just never really understood how dangerous the tablets that she took were,” she said. “Most of us dont believe that a slimming tablet could possibly kill us.</p>
<p>“DNP is not a miracle slimming pill. It is a deadly toxin.”</p>
</div>
@ -3645,7 +3645,7 @@
<div class="headline-1">Facebook Conversations</div>
</header>
<div class="fb_comments_wrapper">
<img nopin="nopin" class="load-spinner" src="http://s3-ak.buzzfeed.com/static/images/public/spinners/big_on_white.gif?v=201504241415">
<img nopin="nopin" class="load-spinner" src="http://s3-ak.buzzfeed.com/static/images/public/spinners/big_on_white.gif?v=201504241415"/>
</div>
</section>
<!-- X---NEXT-ON-UNIT---X -@- /plugin/nexton/v:1.0/vt:news -->
@ -3655,7 +3655,7 @@
<li id="next_on_ab_1" rel:buzz_id="3749467">
<div class="leftPage">
<a href="/jayasaxena/the-bride-paradox" rel:gt_act="post/thumb" rel:gt_label="user/jayasaxena">
<img nopin="nopin" class="bf_dom" rel:bf_bucket="progload" src="http://s3-static-ak.buzzfed.com/static/2015-04/12/10/campaign_images/webdr15/the-bride-paradox-2-24817-1428850014-4_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/12/10/campaign_images/webdr15/the-bride-paradox-2-24817-1428850014-4_wide.jpg" alt="">
<img nopin="nopin" class="bf_dom" rel:bf_bucket="progload" src="http://s3-static-ak.buzzfed.com/static/2015-04/12/10/campaign_images/webdr15/the-bride-paradox-2-24817-1428850014-4_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/12/10/campaign_images/webdr15/the-bride-paradox-2-24817-1428850014-4_wide.jpg" alt=""/>
</a>
</div>
<div class="bf_dom rightPage" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FMJSE7&quot;,&quot;u&quot;:&quot;74ASTR7&quot;,&quot;buzz&quot;:&quot;the-bride-paradox&quot;,&quot;user&quot;:&quot;jayasaxena&quot;,&quot;types&quot;:[],&quot;queries&quot;:[]}">
@ -3670,7 +3670,7 @@
<li id="next_on_ab_2" style="display:none;" rel:buzz_id="3746270">
<div class="leftPage">
<a href="/hgiorgis/rihanna-da-gawd" rel:gt_act="post/thumb" rel:gt_label="user/hgiorgis">
<img nopin="nopin" class="bf_dom" rel:bf_bucket="progload" src="http://s3-static-ak.buzzfed.com/static/2015-04/7/15/campaign_images/webdr03/rihanna-da-gawd-2-17340-1428435377-8_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/7/15/campaign_images/webdr03/rihanna-da-gawd-2-17340-1428435377-8_wide.jpg" alt="">
<img nopin="nopin" class="bf_dom" rel:bf_bucket="progload" src="http://s3-static-ak.buzzfed.com/static/2015-04/7/15/campaign_images/webdr03/rihanna-da-gawd-2-17340-1428435377-8_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/7/15/campaign_images/webdr03/rihanna-da-gawd-2-17340-1428435377-8_wide.jpg" alt=""/>
</a>
</div>
<div class="bf_dom rightPage" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FM2IR7&quot;,&quot;u&quot;:&quot;7B8LV67&quot;,&quot;buzz&quot;:&quot;rihanna-da-gawd&quot;,&quot;user&quot;:&quot;hgiorgis&quot;,&quot;types&quot;:[],&quot;queries&quot;:[]}">
@ -3687,7 +3687,7 @@
<li id="next_on_1" rel:buzz_id="3763833">
<div class="leftPage">
<a href="/richardhjames/this-is-why-streaking-during-a-rugby-match-is-never-a-good-i" rel:gt_act="post/thumb" rel:gt_label="user/richardhjames">
<img nopin="nopin" class="bf_dom" rel:bf_bucket="progload" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/7/campaign_images/webdr15/this-is-why-streaking-during-a-rugby-match-is-nev-2-21907-1430135173-1_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/7/campaign_images/webdr15/this-is-why-streaking-during-a-rugby-match-is-nev-2-21907-1430135173-1_wide.jpg" alt="">
<img nopin="nopin" class="bf_dom" rel:bf_bucket="progload" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/7/campaign_images/webdr15/this-is-why-streaking-during-a-rugby-match-is-nev-2-21907-1430135173-1_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/7/campaign_images/webdr15/this-is-why-streaking-during-a-rugby-match-is-nev-2-21907-1430135173-1_wide.jpg" alt=""/>
</a>
</div>
<div class="bf_dom rightPage" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOPDS7&quot;,&quot;u&quot;:&quot;75GYN67&quot;,&quot;use&quot;:&quot;richardhjames&quot;,&quot;buzz&quot;:&quot;this-is-why-streaking-during-a-rugby-match-is-never-a-good-i&quot;,&quot;types&quot;:[],&quot;queries&quot;:[]}">
@ -3702,7 +3702,7 @@
<li id="next_on_2" style="display:none;" rel:buzz_id="3762896">
<div class="leftPage">
<a href="/stephaniemcneal/people-in-nepal-are-letting-their-loved-ones-know-they-are-s" rel:gt_act="post/thumb" rel:gt_label="user/stephaniemcneal">
<img nopin="nopin" class="bf_dom" rel:bf_bucket="progload" src="http://s3-static-ak.buzzfed.com/static/2015-04/25/15/campaign_images/webdr07/people-in-nepal-are-letting-their-loved-ones-know-2-22144-1429990512-0_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/25/15/campaign_images/webdr07/people-in-nepal-are-letting-their-loved-ones-know-2-22144-1429990512-0_wide.jpg" alt="">
<img nopin="nopin" class="bf_dom" rel:bf_bucket="progload" src="http://s3-static-ak.buzzfed.com/static/2015-04/25/15/campaign_images/webdr07/people-in-nepal-are-letting-their-loved-ones-know-2-22144-1429990512-0_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/25/15/campaign_images/webdr07/people-in-nepal-are-letting-their-loved-ones-know-2-22144-1429990512-0_wide.jpg" alt=""/>
</a>
</div>
<div class="bf_dom rightPage" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOKBL7&quot;,&quot;u&quot;:&quot;7A6AR37&quot;,&quot;use&quot;:&quot;stephaniemcneal&quot;,&quot;buzz&quot;:&quot;people-in-nepal-are-letting-their-loved-ones-know-they-are-s&quot;,&quot;types&quot;:[],&quot;queries&quot;:[]}">
@ -3750,7 +3750,7 @@
<textarea id="reaction-sharing-message"></textarea>
</div>
<div id="sharing-link-preview">
<img nopin="nopin" src="http://s3-ak.buzzfeed.com/static/2015-04/22/5/campaign_images/webdr03/student-dies-after-diet-pills-she-bought-online-b-2-28712-1429696299-24_small.jpg">
<img nopin="nopin" src="http://s3-ak.buzzfeed.com/static/2015-04/22/5/campaign_images/webdr03/student-dies-after-diet-pills-she-bought-online-b-2-28712-1429696299-24_small.jpg"/>
<div id="share-link-details">
<div class="headline-1">Student Dies After Diet Pills She Bought Online "Burned Her Up From Within"</div>
<span class="link">http://www.buzzfeed.com/markdistefano/diet-pill...</span>
@ -3758,7 +3758,7 @@
</div>
</div>
<div id="social-share-box-buttons">
<input id="reaction-share-submit" value="Share Link" rel:gt_act="share/facebook/share" class="submit button2" type="button">
<input id="reaction-share-submit" value="Share Link" rel:gt_act="share/facebook/share" class="submit button2" type="button"/>
</div>
</div>
<div id="share-reaction-success-wrapper" style="display:none;">
@ -3780,7 +3780,7 @@
}
</script>
<div class="thumb-unit">
<a rel:gt_act="dfp/thumb" data-label="9" href="" class="bf-url"><img nopin="nopin" class="bf-image-big" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" height="195" width="293"></a>
<a rel:gt_act="dfp/thumb" data-label="9" href="" class="bf-url"><img nopin="nopin" class="bf-image-big" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" height="195" width="293"/></a>
</div>
<div class="pull-left">
<h2 class="bf-item-title"><a rel:gt_act="dfp/title" href="" class="bf-url bf-name"></a></h2>
@ -3788,7 +3788,7 @@
<div class="media media-cleared">
<div class="pull-left">
<a rel:gt_act="dfp/avatar" href="" class="bf-user-url media__object">
<img nopin="nopin" class="bf-user_image_large" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" height="36" width="36">
<img nopin="nopin" class="bf-user_image_large" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" height="36" width="36"/>
</a>
</div>
<div class="media__body">
@ -3871,7 +3871,7 @@
<ul>
<li class="related-big js_opt_unit_more_buzz hidden">
<a rel:gt_act="related-link/thumb" rel:gt_label="editor/sirajdatoo" href="/sirajdatoo/police-arrest-3-students-and-use-cs-spray-during-anti-fees-p" class="related-thumb" track_load="imp_attr_" track_mousedown="click_attr_" rel:buzz_id="3758406" rel:opt_variation="control" rel:fallback="true">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2014-12/4/5/campaign_images/webdr06/police-arrest-three-students-and-use-cs-spray-dur-2-19155-1417690696-19_big.jpg" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2014-12/4/5/campaign_images/webdr06/police-arrest-three-students-and-use-cs-spray-dur-2-19155-1417690696-19_big.jpg" alt=""/>
</a>
<span>
<a rel:gt_act="related-link/name" rel:gt_label="editor/sirajdatoo" class="related-title" href="/sirajdatoo/police-arrest-3-students-and-use-cs-spray-during-anti-fees-p" track_load="imp_attr_" track_mousedown="click_attr_" rel:buzz_id="3758406" rel:opt_variation="control" rel:fallback="true">Police Arrest Three Students And Use CS Spray During Anti-Fees Protest At Warwick</a>
@ -3903,18 +3903,18 @@
<div class="form_body">
<div class="headline-2">Note: once you save these links, they will no longer update automatically.</div>
<div class="related_input">1. <input id="related1" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/sirajdatoo/police-arrest-3-students-and-use-cs-spray-during-anti-fees-p" name="related1" size="75" type="text"></div>
<div class="related_input">1. <input id="related1" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/sirajdatoo/police-arrest-3-students-and-use-cs-spray-during-anti-fees-p" name="related1" size="75" type="text"/></div>
<div class="related_input">2. <input id="related2" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/richardhjames/durham-student-newspaper-publishes-powerful-front-page-calli" name="related2" size="75" type="text"></div>
<div class="related_input">2. <input id="related2" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/richardhjames/durham-student-newspaper-publishes-powerful-front-page-calli" name="related2" size="75" type="text"/></div>
<div class="related_input">3. <input id="related3" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/floperry/university-college-london-closed-an-exhibition-that-displaye" name="related3" size="75" type="text"></div>
<div class="related_input">3. <input id="related3" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/floperry/university-college-london-closed-an-exhibition-that-displaye" name="related3" size="75" type="text"/></div>
<div class="related_input">4. <input id="related4" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/richardhjames/durham-student-lucky-to-be-alive-after-being-rescued-from-ri" name="related4" size="75" type="text"></div>
<div class="related_input">4. <input id="related4" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/richardhjames/durham-student-lucky-to-be-alive-after-being-rescued-from-ri" name="related4" size="75" type="text"/></div>
</div>
<div class="form_btns">
<span id="save_spinner" style="display: none;">
<img nopin="nopin" src="http://s3-ak.buzzfed.com/static/images/public/spinners/big_on_white.gif">
<img nopin="nopin" src="http://s3-ak.buzzfed.com/static/images/public/spinners/big_on_white.gif"/>
</span>
<a class="button2 smaller bf_dom" rel:bf_bucket_data="{'related-save':{'buzz_id':'3758406'}}" onclick="return false" href="javascript:;">Save Changes</a>
<a class="button2 smaller grey bf_dom" rel:bf_bucket="related-cancel" onclick="return false" href="javascript:;">Cancel</a>
@ -3934,7 +3934,7 @@
<ul>
<li class="related-big ">
<a rel:gt_act="related-link/thumb" rel:gt_label="editor/sirajdatoo" href="/sirajdatoo/police-arrest-3-students-and-use-cs-spray-during-anti-fees-p" class="related-thumb" track_load="imp_attr_" track_mousedown="click_attr_" rel:buzz_id="3758406" rel:opt_variation="control">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2014-12/4/5/campaign_images/webdr06/police-arrest-three-students-and-use-cs-spray-dur-2-19155-1417690696-19_big.jpg" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2014-12/4/5/campaign_images/webdr06/police-arrest-three-students-and-use-cs-spray-dur-2-19155-1417690696-19_big.jpg" alt=""/>
</a>
<span>
<a rel:gt_act="related-link/name" rel:gt_label="editor/sirajdatoo" class="related-title" href="/sirajdatoo/police-arrest-3-students-and-use-cs-spray-during-anti-fees-p" track_load="imp_attr_" track_mousedown="click_attr_" rel:buzz_id="3758406" rel:opt_variation="control">Police Arrest Three Students And Use CS Spray During Anti-Fees Protest At Warwick</a>
@ -3966,18 +3966,18 @@
<div class="form_body">
<div class="headline-2">Note: once you save these links, they will no longer update automatically.</div>
<div class="related_input">1. <input id="related1" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/sirajdatoo/police-arrest-3-students-and-use-cs-spray-during-anti-fees-p" name="related1" size="75" type="text"></div>
<div class="related_input">1. <input id="related1" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/sirajdatoo/police-arrest-3-students-and-use-cs-spray-during-anti-fees-p" name="related1" size="75" type="text"/></div>
<div class="related_input">2. <input id="related2" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/richardhjames/durham-student-newspaper-publishes-powerful-front-page-calli" name="related2" size="75" type="text"></div>
<div class="related_input">2. <input id="related2" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/richardhjames/durham-student-newspaper-publishes-powerful-front-page-calli" name="related2" size="75" type="text"/></div>
<div class="related_input">3. <input id="related3" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/floperry/university-college-london-closed-an-exhibition-that-displaye" name="related3" size="75" type="text"></div>
<div class="related_input">3. <input id="related3" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/floperry/university-college-london-closed-an-exhibition-that-displaye" name="related3" size="75" type="text"/></div>
<div class="related_input">4. <input id="related4" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/richardhjames/durham-student-lucky-to-be-alive-after-being-rescued-from-ri" name="related4" size="75" type="text"></div>
<div class="related_input">4. <input id="related4" class="bf_dom" placeholder="http://www.buzzfeed.com/username/uri" value="http://www.buzzfeed.com/richardhjames/durham-student-lucky-to-be-alive-after-being-rescued-from-ri" name="related4" size="75" type="text"/></div>
</div>
<div class="form_btns">
<span id="save_spinner" style="display: none;">
<img nopin="nopin" src="http://s3-ak.buzzfed.com/static/images/public/spinners/big_on_white.gif">
<img nopin="nopin" src="http://s3-ak.buzzfed.com/static/images/public/spinners/big_on_white.gif"/>
</span>
<a class="button2 smaller bf_dom" rel:bf_bucket_data="{'related-save':{'buzz_id':'3758406'}}" onclick="return false" href="javascript:;">Save Changes</a>
<a class="button2 smaller grey bf_dom" rel:bf_bucket="related-cancel" onclick="return false" href="javascript:;">Cancel</a>
@ -3999,7 +3999,7 @@
<div class="headline-1">Facebook Conversations</div>
</header>
<div class="fb_comments_wrapper">
<img nopin="nopin" class="load-spinner" src="http://s3-ak.buzzfeed.com/static/images/public/spinners/big_on_white.gif?v=201504241415">
<img nopin="nopin" class="load-spinner" src="http://s3-ak.buzzfeed.com/static/images/public/spinners/big_on_white.gif?v=201504241415"/>
</div>
</section>
</article>
@ -4019,7 +4019,7 @@
</script>
<a rel:gt_act="dfp/thumb" href="" class="bf-url lede__link">
<div class="lede__media">
<img nopin="nopin" class="flex-wide-thumb bf-image-bigstory media__object" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" width="300">
<img nopin="nopin" class="flex-wide-thumb bf-image-bigstory media__object" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" width="300"/>
</div>
</a>
<h2 class="bf-item-title lede__title">
@ -4029,7 +4029,7 @@
<div class="media">
<div class="pull-left">
<a rel:gt_act="dfp/avatar" href="" class="bf-user-url media__object pull-left">
<img nopin="nopin" class="bf-user_image_large media__object" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" height="35" width="35">
<img nopin="nopin" class="bf-user_image_large media__object" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" height="35" width="35"/>
</a>
</div>
<div class="media__body">
@ -4100,7 +4100,7 @@
<div class="indepth-module__logo-wrap">
<a href="/news" class="indepth-module__logo-wrap__logo-image" rel:gt_act="indepth-module:buzzfeed-news-logo"></a>
</div>
<a class="indepth-module__thumbnail" href="/ellievhall/gone-girl-an-interview-with-an-american-in-isis" rel:gt_label="3755831" rel:gt_act="indepth-module:image"><img nopin="nopin" src="http://s3-ak.buzzfeed.com/static/2015-04/22/14/campaign_images/webdr15/gone-girl-an-interview-with-an-american-in-isis-2-4632-1429727152-8_wide.jpg" height="118" width="336"></a>
<a class="indepth-module__thumbnail" href="/ellievhall/gone-girl-an-interview-with-an-american-in-isis" rel:gt_label="3755831" rel:gt_act="indepth-module:image"><img nopin="nopin" src="http://s3-ak.buzzfeed.com/static/2015-04/22/14/campaign_images/webdr15/gone-girl-an-interview-with-an-american-in-isis-2-4632-1429727152-8_wide.jpg" height="118" width="336"/></a>
<div class="indepth-module__text">
<a class="indepth-module__title" href="/ellievhall/gone-girl-an-interview-with-an-american-in-isis" rel:gt_label="3755831" rel:gt_act="indepth-module:title">Gone Girl: An Interview With An American In ISIS</a>
<p class="indepth-module__subtitle">
@ -4160,7 +4160,7 @@
<li class="post sidebar-post top bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FONSF7&quot;,&quot;u&quot;:&quot;71GVND7&quot;,&quot;buzz&quot;:&quot;family-friends-mourn-freddie-gray-at-wake-one-night-after-ch&quot;,&quot;user&quot;:&quot;mbvd&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-family-friends-mourn-freddie-gray-at-wake-one-night-after-ch">
<a href="/mbvd/family-friends-mourn-freddie-gray-at-wake-one-night-after-ch" rel:gt_act="buzzing/thumb" rel:buzz_id="3763538">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/5/campaign_images/webdr01/family-friends-mourn-freddie-gray-at-wake-one-nig-2-15357-1430127651-1_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/5/campaign_images/webdr01/family-friends-mourn-freddie-gray-at-wake-one-nig-2-15357-1430127651-1_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/5/campaign_images/webdr01/family-friends-mourn-freddie-gray-at-wake-one-nig-2-15357-1430127651-1_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/5/campaign_images/webdr01/family-friends-mourn-freddie-gray-at-wake-one-nig-2-15357-1430127651-1_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3763538&quot;}"></a>
@ -4177,7 +4177,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOJCZ7&quot;,&quot;u&quot;:&quot;7BEY927&quot;,&quot;buzz&quot;:&quot;nepal-shaken-up-by-major-earthquake&quot;,&quot;user&quot;:&quot;felipearaujo&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-nepal-shaken-up-by-major-earthquake">
<a href="/felipearaujo/nepal-shaken-up-by-major-earthquake" rel:gt_act="buzzing/thumb" rel:buzz_id="3762718">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr02/death-toll-in-nepal-rises-to-3600-2-8835-1430139002-18_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr02/death-toll-in-nepal-rises-to-3600-2-8835-1430139002-18_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr02/death-toll-in-nepal-rises-to-3600-2-8835-1430139002-18_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr02/death-toll-in-nepal-rises-to-3600-2-8835-1430139002-18_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3762718&quot;}"></a>
@ -4194,7 +4194,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOPHO7&quot;,&quot;u&quot;:&quot;71V1G7&quot;,&quot;buzz&quot;:&quot;tsarnaev-to-launch-defense-against-death-penalty&quot;,&quot;user&quot;:&quot;mikehayes&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-tsarnaev-to-launch-defense-against-death-penalty">
<a href="/mikehayes/tsarnaev-to-launch-defense-against-death-penalty" rel:gt_act="buzzing/thumb" rel:buzz_id="3763853">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/9/campaign_images/webdr04/tsarnaev-to-launch-defense-against-death-penalty-2-8928-1430139758-25_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/9/campaign_images/webdr04/tsarnaev-to-launch-defense-against-death-penalty-2-8928-1430139758-25_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/9/campaign_images/webdr04/tsarnaev-to-launch-defense-against-death-penalty-2-8928-1430139758-25_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/9/campaign_images/webdr04/tsarnaev-to-launch-defense-against-death-penalty-2-8928-1430139758-25_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3763853&quot;}"></a>
@ -4211,7 +4211,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOPPN7&quot;,&quot;u&quot;:&quot;7793T17&quot;,&quot;buzz&quot;:&quot;ultra-patriotic-russian-biker-gang-refused-entry-to-poland&quot;,&quot;user&quot;:&quot;franciswhittaker&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-ultra-patriotic-russian-biker-gang-refused-entry-to-poland">
<a href="/franciswhittaker/ultra-patriotic-russian-biker-gang-refused-entry-to-poland" rel:gt_act="buzzing/thumb" rel:buzz_id="3763894">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/9/campaign_images/webdr05/ultra-patriotic-russian-biker-gang-refused-entry--2-17023-1430140685-30_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/9/campaign_images/webdr05/ultra-patriotic-russian-biker-gang-refused-entry--2-17023-1430140685-30_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/9/campaign_images/webdr05/ultra-patriotic-russian-biker-gang-refused-entry--2-17023-1430140685-30_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/9/campaign_images/webdr05/ultra-patriotic-russian-biker-gang-refused-entry--2-17023-1430140685-30_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3763894&quot;}"></a>
@ -4228,7 +4228,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOPNI7&quot;,&quot;u&quot;:&quot;7843DL7&quot;,&quot;buzz&quot;:&quot;swastikas-painted-on-sae-fraternity-house-at-stanford-univer&quot;,&quot;user&quot;:&quot;maryanngeorgantopoulos&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-swastikas-painted-on-sae-fraternity-house-at-stanford-univer">
<a href="/maryanngeorgantopoulos/swastikas-painted-on-sae-fraternity-house-at-stanford-univer" rel:gt_act="buzzing/thumb" rel:buzz_id="3763883">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr06/swastikas-painted-on-sae-fraternity-house-at-stan-2-29351-1430137347-1_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr06/swastikas-painted-on-sae-fraternity-house-at-stan-2-29351-1430137347-1_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr06/swastikas-painted-on-sae-fraternity-house-at-stan-2-29351-1430137347-1_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr06/swastikas-painted-on-sae-fraternity-house-at-stan-2-29351-1430137347-1_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3763883&quot;}"></a>
@ -4245,7 +4245,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOPLK7&quot;,&quot;u&quot;:&quot;7C3FH97&quot;,&quot;buzz&quot;:&quot;andrew-chan-marries-partner-a-day-before-execution&quot;,&quot;user&quot;:&quot;robstott&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-andrew-chan-marries-partner-a-day-before-execution">
<a href="/robstott/andrew-chan-marries-partner-a-day-before-execution" rel:gt_act="buzzing/thumb" rel:buzz_id="3763873">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr07/andrew-chan-marries-partner-a-day-before-execution-2-26101-1430136567-7_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr07/andrew-chan-marries-partner-a-day-before-execution-2-26101-1430136567-7_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr07/andrew-chan-marries-partner-a-day-before-execution-2-26101-1430136567-7_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/8/campaign_images/webdr07/andrew-chan-marries-partner-a-day-before-execution-2-26101-1430136567-7_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3763873&quot;}"></a>
@ -4262,7 +4262,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FON2R7&quot;,&quot;u&quot;:&quot;71BDXX7&quot;,&quot;buzz&quot;:&quot;supreme-courts-simple-marriage-case-questions-lead-to-comple&quot;,&quot;user&quot;:&quot;chrisgeidner&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-supreme-courts-simple-marriage-case-questions-lead-to-comple">
<a href="/chrisgeidner/supreme-courts-simple-marriage-case-questions-lead-to-comple" rel:gt_act="buzzing/thumb" rel:buzz_id="3763406">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/1/campaign_images/webdr08/supreme-courts-simple-marriage-case-questions-lea-2-3565-1430112279-6_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/1/campaign_images/webdr08/supreme-courts-simple-marriage-case-questions-lea-2-3565-1430112279-6_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/1/campaign_images/webdr08/supreme-courts-simple-marriage-case-questions-lea-2-3565-1430112279-6_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/1/campaign_images/webdr08/supreme-courts-simple-marriage-case-questions-lea-2-3565-1430112279-6_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3763406&quot;}"></a>
@ -4279,7 +4279,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FL3PD7&quot;,&quot;u&quot;:&quot;7YLFS7&quot;,&quot;buzz&quot;:&quot;the-south-carolina-audition-to-be-hillary-clintons-most-seri&quot;,&quot;user&quot;:&quot;rubycramer&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-the-south-carolina-audition-to-be-hillary-clintons-most-seri">
<a href="/rubycramer/the-south-carolina-audition-to-be-hillary-clintons-most-seri" rel:gt_act="buzzing/thumb" rel:buzz_id="3739824">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/26/22/campaign_images/webdr06/the-south-carolina-audition-to-be-hillary-clinton-2-11926-1430100389-5_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/26/22/campaign_images/webdr06/the-south-carolina-audition-to-be-hillary-clinton-2-11926-1430100389-5_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/26/22/campaign_images/webdr06/the-south-carolina-audition-to-be-hillary-clinton-2-11926-1430100389-5_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/26/22/campaign_images/webdr06/the-south-carolina-audition-to-be-hillary-clinton-2-11926-1430100389-5_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3739824&quot;}"></a>
@ -4521,7 +4521,7 @@
');
</script>
<a href="/jenniferpurdie/mormon-childless-and-constantly-condescended-to" rel:gt_act="buzzing/thumb" rel:buzz_id="3762507">
<div style="float:left; position:relative;"> <img nopin="nopin" src="http://s3-ak.buzzfeed.com/static/2015-04/27/9/campaign_images/webdr02/mormon-childless-and-constantly-condescended-to-2-8804-1430140118-12_wide.jpg" rel:bf_image_src="http://s3-ak.buzzfeed.com/static/2015-04/27/9/campaign_images/webdr02/mormon-childless-and-constantly-condescended-to-2-8804-1430140118-12_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""> </div>
<div style="float:left; position:relative;"> <img nopin="nopin" src="http://s3-ak.buzzfeed.com/static/2015-04/27/9/campaign_images/webdr02/mormon-childless-and-constantly-condescended-to-2-8804-1430140118-12_wide.jpg" rel:bf_image_src="http://s3-ak.buzzfeed.com/static/2015-04/27/9/campaign_images/webdr02/mormon-childless-and-constantly-condescended-to-2-8804-1430140118-12_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/> </div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3762507&quot;}"></a>
<h2> <a href="/jenniferpurdie/mormon-childless-and-constantly-condescended-to" rel:gt_act="buzzing/title">Rejecting Motherhood As A Mormon Woman</a> </h2>
@ -4537,7 +4537,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOKX67&quot;,&quot;u&quot;:&quot;766OVA7&quot;,&quot;buzz&quot;:&quot;windows-broken-scuffles-break-out-at-baltimore-protests&quot;,&quot;user&quot;:&quot;jimdalrympleii&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-windows-broken-scuffles-break-out-at-baltimore-protests">
<a href="/jimdalrympleii/windows-broken-scuffles-break-out-at-baltimore-protests" rel:gt_act="buzzing/thumb" rel:buzz_id="3763007">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/26/20/campaign_images/webdr11/35-arrested-after-windows-are-broken-and-clashes--2-10900-1430094476-14_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/26/20/campaign_images/webdr11/35-arrested-after-windows-are-broken-and-clashes--2-10900-1430094476-14_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/26/20/campaign_images/webdr11/35-arrested-after-windows-are-broken-and-clashes--2-10900-1430094476-14_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/26/20/campaign_images/webdr11/35-arrested-after-windows-are-broken-and-clashes--2-10900-1430094476-14_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3763007&quot;}"></a>
@ -4580,7 +4580,7 @@
<li class="post sidebar-post top bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOPAA7&quot;,&quot;u&quot;:&quot;7CBJA47&quot;,&quot;buzz&quot;:&quot;le-nepal-avant-et-apres-le-dramatique-seisme-de-ce-week-end&quot;,&quot;user&quot;:&quot;adriensenecat&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-le-nepal-avant-et-apres-le-dramatique-seisme-de-ce-week-end">
<a href="/adriensenecat/le-nepal-avant-et-apres-le-dramatique-seisme-de-ce-week-end" rel:gt_act="buzzing/thumb" rel:buzz_id="3763815">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/6/campaign_images/webdr12/le-nepal-avant-et-apres-le-dramatique-seisme-de-c-2-18873-1430131833-3_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/6/campaign_images/webdr12/le-nepal-avant-et-apres-le-dramatique-seisme-de-c-2-18873-1430131833-3_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/27/6/campaign_images/webdr12/le-nepal-avant-et-apres-le-dramatique-seisme-de-c-2-18873-1430131833-3_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/27/6/campaign_images/webdr12/le-nepal-avant-et-apres-le-dramatique-seisme-de-c-2-18873-1430131833-3_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3763815&quot;}"></a>
@ -4597,7 +4597,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FNABP7&quot;,&quot;u&quot;:&quot;7AQFKR7&quot;,&quot;buzz&quot;:&quot;les-relations-au-debut-et-apres-deux-ans&quot;,&quot;user&quot;:&quot;remeepatel&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-les-relations-au-debut-et-apres-deux-ans">
<a href="/remeepatel/les-relations-au-debut-et-apres-deux-ans" rel:gt_act="buzzing/thumb" rel:buzz_id="3754380">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/16/10/campaign_images/webdr03/les-relations-au-debut-vs-apres-deux-ans-2-12797-1429193278-36_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/16/10/campaign_images/webdr03/les-relations-au-debut-vs-apres-deux-ans-2-12797-1429193278-36_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/16/10/campaign_images/webdr03/les-relations-au-debut-vs-apres-deux-ans-2-12797-1429193278-36_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/16/10/campaign_images/webdr03/les-relations-au-debut-vs-apres-deux-ans-2-12797-1429193278-36_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3754380&quot;}"></a>
@ -4614,7 +4614,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FN0X67&quot;,&quot;u&quot;:&quot;79OCLI7&quot;,&quot;buzz&quot;:&quot;13-photos-impressionnantes-de-femmes-qui-accouchent-a-la-mai&quot;,&quot;user&quot;:&quot;agustinacaferri&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-13-photos-impressionnantes-de-femmes-qui-accouchent-a-la-mai">
<a href="/agustinacaferri/13-photos-impressionnantes-de-femmes-qui-accouchent-a-la-mai" rel:gt_act="buzzing/thumb" rel:buzz_id="3752639">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/15/6/campaign_images/webdr14/13-photos-impressionnantes-de-femmes-qui-accouche-2-2246-1429095089-16_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/15/6/campaign_images/webdr14/13-photos-impressionnantes-de-femmes-qui-accouche-2-2246-1429095089-16_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/15/6/campaign_images/webdr14/13-photos-impressionnantes-de-femmes-qui-accouche-2-2246-1429095089-16_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/15/6/campaign_images/webdr14/13-photos-impressionnantes-de-femmes-qui-accouche-2-2246-1429095089-16_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3752639&quot;}"></a>
@ -4632,7 +4632,7 @@
});
}
</script>
<a rel:gt_act="dfp/thumb" rel:gt_label="partner" href="" class="bf-url lede__media" rel:gtrack_id="dfp_ad"><img nopin="nopin" class="bf-image-widestory" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" height="119" width="338"></a>
<a rel:gt_act="dfp/thumb" rel:gt_label="partner" href="" class="bf-url lede__media" rel:gtrack_id="dfp_ad"><img nopin="nopin" class="bf-image-widestory" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" height="119" width="338"/></a>
<h2 class="bf-item-title lede__title"><a href="" class="bf-url bf-name lede__link" rel:gtrack_id="dfp_ad" rel:bf_truncate="100" rel:gt_act="dfp/title" rel:gt_label="partner"></a></h2>
</div>
</li>
@ -4696,7 +4696,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FMKV37&quot;,&quot;u&quot;:&quot;76NMVN7&quot;,&quot;buzz&quot;:&quot;14-choses-les-plus-sadiques-imposees-aux-sims&quot;,&quot;user&quot;:&quot;jamiejones&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-14-choses-les-plus-sadiques-imposees-aux-sims">
<a href="/jamiejones/14-choses-les-plus-sadiques-imposees-aux-sims" rel:gt_act="buzzing/thumb" rel:buzz_id="3749666">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/14/10/campaign_images/webdr13/les-14-choses-les-plus-sadiques-quon-ait-pu-infli-2-14077-1429021136-14_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/14/10/campaign_images/webdr13/les-14-choses-les-plus-sadiques-quon-ait-pu-infli-2-14077-1429021136-14_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/14/10/campaign_images/webdr13/les-14-choses-les-plus-sadiques-quon-ait-pu-infli-2-14077-1429021136-14_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/14/10/campaign_images/webdr13/les-14-choses-les-plus-sadiques-quon-ait-pu-infli-2-14077-1429021136-14_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3749666&quot;}"></a>
@ -4714,7 +4714,7 @@
});
}
</script>
<a rel:gt_act="dfp/thumb" rel:gt_label="partner" href="" class="bf-url lede__media" rel:gtrack_id="dfp_ad"><img nopin="nopin" class="bf-image-widestory" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" height="119" width="338"></a>
<a rel:gt_act="dfp/thumb" rel:gt_label="partner" href="" class="bf-url lede__media" rel:gtrack_id="dfp_ad"><img nopin="nopin" class="bf-image-widestory" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" height="119" width="338"/></a>
<h2 class="bf-item-title lede__title"><a href="" class="bf-url bf-name lede__link" rel:gtrack_id="dfp_ad" rel:bf_truncate="100" rel:gt_act="dfp/title" rel:gt_label="partner"></a></h2>
</div>
</li>
@ -4778,7 +4778,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FO9U67&quot;,&quot;u&quot;:&quot;7CEIDY7&quot;,&quot;buzz&quot;:&quot;49-choses-que-ceux-qui-ont-grandi-avec-kd2a-noublieront-jama&quot;,&quot;user&quot;:&quot;jenniferpadjemi&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-49-choses-que-ceux-qui-ont-grandi-avec-kd2a-noublieront-jama">
<a href="/jenniferpadjemi/49-choses-que-ceux-qui-ont-grandi-avec-kd2a-noublieront-jama" rel:gt_act="buzzing/thumb" rel:buzz_id="3760955">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/25/4/campaign_images/webdr11/49-choses-que-ceux-qui-ont-grandi-avec-kd2a-noubl-2-19465-1429948902-10_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/25/4/campaign_images/webdr11/49-choses-que-ceux-qui-ont-grandi-avec-kd2a-noubl-2-19465-1429948902-10_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/25/4/campaign_images/webdr11/49-choses-que-ceux-qui-ont-grandi-avec-kd2a-noubl-2-19465-1429948902-10_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/25/4/campaign_images/webdr11/49-choses-que-ceux-qui-ont-grandi-avec-kd2a-noubl-2-19465-1429948902-10_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3760955&quot;}"></a>
@ -4795,7 +4795,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FOFKH7&quot;,&quot;u&quot;:&quot;7CEIDY7&quot;,&quot;buzz&quot;:&quot;pourquoi-tu-fais-ca-shonda&quot;,&quot;user&quot;:&quot;jenniferpadjemi&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-pourquoi-tu-fais-ca-shonda">
<a href="/jenniferpadjemi/pourquoi-tu-fais-ca-shonda" rel:gt_act="buzzing/thumb" rel:buzz_id="3762016">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/24/16/campaign_images/webdr01/les-43-fois-ou-greys-anatomy-a-fait-couler-toutes-2-4861-1429906011-15_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/24/16/campaign_images/webdr01/les-43-fois-ou-greys-anatomy-a-fait-couler-toutes-2-4861-1429906011-15_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/24/16/campaign_images/webdr01/les-43-fois-ou-greys-anatomy-a-fait-couler-toutes-2-4861-1429906011-15_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/24/16/campaign_images/webdr01/les-43-fois-ou-greys-anatomy-a-fait-couler-toutes-2-4861-1429906011-15_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3762016&quot;}"></a>
@ -4812,7 +4812,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FO2EM7&quot;,&quot;u&quot;:&quot;7CBJA47&quot;,&quot;buzz&quot;:&quot;photos-marine-le-pen-contre-le-systeme&quot;,&quot;user&quot;:&quot;adriensenecat&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-photos-marine-le-pen-contre-le-systeme">
<a href="/adriensenecat/photos-marine-le-pen-contre-le-systeme" rel:gt_act="buzzing/thumb" rel:buzz_id="3759579">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/22/4/campaign_images/webdr08/8-photos-de-marine-le-pen-luttant-contre-le-syste-2-15395-1429693174-4_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/22/4/campaign_images/webdr08/8-photos-de-marine-le-pen-luttant-contre-le-syste-2-15395-1429693174-4_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/22/4/campaign_images/webdr08/8-photos-de-marine-le-pen-luttant-contre-le-syste-2-15395-1429693174-4_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/22/4/campaign_images/webdr08/8-photos-de-marine-le-pen-luttant-contre-le-syste-2-15395-1429693174-4_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3759579&quot;}"></a>
@ -4829,7 +4829,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FO7PY7&quot;,&quot;u&quot;:&quot;74N9GW7&quot;,&quot;buzz&quot;:&quot;oui-ceci-est-mon-metier&quot;,&quot;user&quot;:&quot;floperry&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-oui-ceci-est-mon-metier">
<a href="/floperry/oui-ceci-est-mon-metier" rel:gt_act="buzzing/thumb" rel:buzz_id="3760563">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/23/8/campaign_images/webdr08/23-reactions-que-toute-personne-ayant-travaille-d-2-11535-1429792966-16_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/23/8/campaign_images/webdr08/23-reactions-que-toute-personne-ayant-travaille-d-2-11535-1429792966-16_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/23/8/campaign_images/webdr08/23-reactions-que-toute-personne-ayant-travaille-d-2-11535-1429792966-16_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/23/8/campaign_images/webdr08/23-reactions-que-toute-personne-ayant-travaille-d-2-11535-1429792966-16_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3760563&quot;}"></a>
@ -4846,7 +4846,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FO2CA7&quot;,&quot;u&quot;:&quot;7AEY4T7&quot;,&quot;buzz&quot;:&quot;15-emojis-qui-manquent-e-toutes-les-meilleures-ami&quot;,&quot;user&quot;:&quot;crystalro&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-15-emojis-qui-manquent-e-toutes-les-meilleures-ami">
<a href="/crystalro/15-emojis-qui-manquent-e-toutes-les-meilleures-ami" rel:gt_act="buzzing/thumb" rel:buzz_id="3759567">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/22/4/campaign_images/webdr03/15-emojis-qui-manquent-a-toutes-les-meilleures-am-2-404-1429691042-15_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/22/4/campaign_images/webdr03/15-emojis-qui-manquent-a-toutes-les-meilleures-am-2-404-1429691042-15_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/22/4/campaign_images/webdr03/15-emojis-qui-manquent-a-toutes-les-meilleures-am-2-404-1429691042-15_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/22/4/campaign_images/webdr03/15-emojis-qui-manquent-a-toutes-les-meilleures-am-2-404-1429691042-15_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3759567&quot;}"></a>
@ -4863,7 +4863,7 @@
<li class="post sidebar-post bf_dom sidebar-post-wide" rel:bf_bucket="track" track="{&quot;c&quot;:&quot;7FO2FZ7&quot;,&quot;u&quot;:&quot;759SBH7&quot;,&quot;buzz&quot;:&quot;choses-que-les-filles-des-annees-2000-faisaient-19dho&quot;,&quot;user&quot;:&quot;jemimaskelley&quot;,&quot;types&quot;:[100],&quot;queries&quot;:[]}" id="promoted-choses-que-les-filles-des-annees-2000-faisaient-19dho">
<a href="/jemimaskelley/choses-que-les-filles-des-annees-2000-faisaient-19dho" rel:gt_act="buzzing/thumb" rel:buzz_id="3759586">
<div style="float:left; position:relative;">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/23/7/campaign_images/webdr13/23-choses-que-toutes-les-filles-des-annees-2000-f-2-22479-1429786805-12_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/23/7/campaign_images/webdr13/23-choses-que-toutes-les-filles-des-annees-2000-f-2-22479-1429786805-12_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt="">
<img nopin="nopin" src="http://s3-static-ak.buzzfed.com/static/2015-04/23/7/campaign_images/webdr13/23-choses-que-toutes-les-filles-des-annees-2000-f-2-22479-1429786805-12_wide.jpg" rel:bf_image_src="http://s3-static-ak.buzzfed.com/static/2015-04/23/7/campaign_images/webdr13/23-choses-que-toutes-les-filles-des-annees-2000-f-2-22479-1429786805-12_wide.jpg" class="bf_dom thumb" rel:bf_bucket="progload" alt=""/>
</div>
</a>
<a class="qe editor-admin" style="display:none" rel:data="{&quot;buzz_id&quot;:&quot;3759586&quot;}"></a>
@ -5009,7 +5009,7 @@
<ul id="post-lock-audit">
</ul>
<button class="bf_dom btn confirm-ok" rel:bf_bucket="reload">Reload the page</button>
<br>
<br/>
</div>
<div class="post-view-draft">
<button id="quickpost-view-draft-dialog" type="button" class="bf_dom btn confirm-ok quickpost-view-draft" style="display: none;">View Draft</button>
@ -5068,7 +5068,7 @@
</div>
<textarea id="sharing-message"></textarea>
<a href="javascript:;" class="grey button2" onclick="javascript:$('social-sharing-box').hide();" rel:gt_act="facebook-box/close" id="social-close-btn" style="line-height:1;font-weight:normal;font-size:14px;">Close</a>
<input value="Post to Facebook" rel:gt_act="share/facebook" rel:gt_label="post/wall" class="submit button2" id="sharing-box-submit" style="float:right;margin-right:5px;font-size: 14px;padding: 3px 8px;" type="button">
<input value="Post to Facebook" rel:gt_act="share/facebook" rel:gt_label="post/wall" class="submit button2" id="sharing-box-submit" style="float:right;margin-right:5px;font-size: 14px;padding: 3px 8px;" type="button"/>
</div>
<div id="arrowBorder" class="arrow"></div>
<div id="arrowFill" class="arrow"></div>
@ -5083,7 +5083,7 @@
<span id="pin_img_container"></span>
<noembed id="pin_img_template">
<span class="pin_img">
<img style="#{img_style}" src="#{img_src}" width="#{img_width}px" height="#{img_height}px">
<img style="#{img_style}" src="#{img_src}" width="#{img_width}px" height="#{img_height}px"/>
</span>
<cite>
<span class="pin_mask"></span>
@ -5103,27 +5103,27 @@
<div class="share_box_header headline-1">Email this to a friend</div>
<div id="share_email_message" class="message" style="display:none"></div>
<fieldset>
<input name="bid" value="3758406" id="bid" type="hidden">
<input name="sub_buzz_id" value="" id="sub_buzz_id" type="hidden">
<input name="bid" value="3758406" id="bid" type="hidden"/>
<input name="sub_buzz_id" value="" id="sub_buzz_id" type="hidden"/>
<div class="field">
<input placeholder="Friend's email (separate multiple with comma)" rel:gt_act="ignore" class="text" name="b2" value="" id="b2" type="text">
<input placeholder="Friend's email (separate multiple with comma)" rel:gt_act="ignore" class="text" name="b2" value="" id="b2" type="text"/>
</div>
<div class="field">
<input placeholder="Your email" rel:gt_act="ignore" class="text" name="bf" value="" id="bf" type="text">
<input placeholder="Your email" rel:gt_act="ignore" class="text" name="bf" value="" id="bf" type="text"/>
</div>
<div class="field">
<textarea id="note" rel:gt_act="email/note" name="note" cols="10" rows="5">Hey, I saw this on BuzzFeed and thought of you.</textarea>
</div>
<div class="bf_dom catcha_service" style="display:none" rel:bf_bucket="catcha-email_a_friend">
<div class="share_box_header headline-1">Please enter the CAT-CHA</div>
<img nopin="nopin" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==">
<img nopin="nopin" src="data:image/gif;base64,R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="/>
<span class="catcha_question share_box_header headline-1">Catcha question...</span>
<div class="field">
<input class="text" style="width:320px;height:22px" name="catcha_answer" value="" onblur="bf_catcha.catcha_answer=this.value" type="text">
<input class="text" style="width:320px;height:22px" name="catcha_answer" value="" onblur="bf_catcha.catcha_answer=this.value" type="text"/>
</div>
</div>
<div class="field">
<input id="share_email_submit" rel:gt_act="ignore" name="submit" value="Send It!" class="button2 grey submit action bf_dom" rel:bf_bucket_data="{'share-email-submit':{'vertical':'UKNews'}}" type="button">
<input id="share_email_submit" rel:gt_act="ignore" name="submit" value="Send It!" class="button2 grey submit action bf_dom" rel:bf_bucket_data="{'share-email-submit':{'vertical':'UKNews'}}" type="button"/>
</div>
</fieldset>
</form>
@ -5148,7 +5148,7 @@
</div>
<fieldset>
<div class="field form-controls pull-right">
<input id="email_signup" value="Sign me up!" class="button2 grey submit action bf_dom" rel:bf_bucket="email-signup" rel:gt_act="newsletters/signup" type="button">
<input id="email_signup" value="Sign me up!" class="button2 grey submit action bf_dom" rel:bf_bucket="email-signup" rel:gt_act="newsletters/signup" type="button"/>
<div class="plain_cancel">
<a id="email_cancel" href="" onclick="return false" class="bf_dom" rel:bf_bucket="share-email-cancel">No thanks</a>
</div>
@ -5168,7 +5168,7 @@
<div class="arrow arrowBorder"></div>
<div class="arrow arrowFill"></div>
<div class="share_box_header headline-1">Share This Link</div>
<input class="email_copy_link_text" value="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up" type="text">
<input class="email_copy_link_text" value="http://www.buzzfeed.com/markdistefano/diet-pills-burns-up" type="text"/>
</div>
<script src="http://s3-ak.buzzfed.com/static/js/User_and_Buzz_concat_footer.js?v=201504241415" type="text/javascript" ref:jsconf="true"></script>
<script src="http://s3-ak.buzzfed.com/static/js/General_concat_footer.js?v=201504241415" type="text/javascript" ref:jsconf="true"></script>

@ -3,11 +3,11 @@
<td>
<h3 align="center ">Study Webtext</h3>
<h2 align="center "><span face="Lucida Handwriting " color="Maroon
">"Bartleby the Scrivener: A Story of Wall-Street " </span>(1853)&nbsp;<br>
">"Bartleby the Scrivener: A Story of Wall-Street " </span>(1853)&nbsp;<br/>
Herman Melville</h2>
<h2 align="center "><a href="http://www.vcu.edu/engweb/webtexts/bartleby.html
" target="_blank "><img src="http://fakehost/test/hmhome.gif " alt="To the story text without notes
" height="38 " width="38 " align="absmiddle "></a>
" height="38 " width="38 " align="absmiddle "/></a>
</h2>
<h3 align="center ">Prepared by <a href="http://www.vcu.edu/engweb ">Ann
Woodlief,</a> Virginia Commonwealth University</h3>
@ -261,4 +261,4 @@
<p> Ah Bartleby! Ah humanity!</p>
</td>
</div>
</div>
</div>

@ -4,10 +4,10 @@
<head>
<title>Bartleby the Scrivener Web Study Text</title>
<meta http-equiv="resource-type"
content="document">
<meta http-equiv="copyright" content="Copyright Ann Woodlief">
<meta name="generator" content="Me :)>
<LINK REL=" stylesheet "=" " type="text/css " href="http://www.vcu.edu/engweb/webtexts/myweb.css ">
content="document"/>
<meta http-equiv="copyright" content="Copyright Ann Woodlief"/>
<meta name="generator" content="Me :)"/>
<LINK REL=" stylesheet "=" " type="text/css " href="http://www.vcu.edu/engweb/webtexts/myweb.css "/>
<style type="text/css ">
<!--
body { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12pt;}
@ -29,11 +29,11 @@ body { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12pt;}
<td>
<h3 align="center ">Study Webtext</h3>
<h2 align="center "><font face="Lucida Handwriting " color="Maroon
">"Bartleby the Scrivener: A Story of Wall-Street " </font>(1853)&nbsp;<br>
">"Bartleby the Scrivener: A Story of Wall-Street " </font>(1853)&nbsp;<br/>
Herman Melville</h2>
<h2 align="center "><a href="http://www.vcu.edu/engweb/webtexts/bartleby.html
" target="_blank "><img src="hmhome.gif " alt="To the story text without notes
" height="38 " width="38 " align="absmiddle "></a>
" height="38 " width="38 " align="absmiddle "/></a>
</h2>
<h3 align="center ">Prepared by <a href="http://www.vcu.edu/engweb ">Ann
Woodlief,</a> Virginia Commonwealth University</h3>
@ -1847,15 +1847,15 @@ body { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12pt;}
</center>
<p></p>
<center>
<img src="../bar.gif" width="535" height="15" border="0" align="middle">
<img src="../bar.gif" width="535" height="15" border="0" align="middle"/>
<p>
<a href="http://www.vcu.edu/engweb/webtexts/bartleby/bartleby.html">Text Without Notes</a>
<br> <a href="http://www.vcu.edu/engweb/webtexts/bartleby/web-hm.htm">Melville Web Links</a>
<br/> <a href="http://www.vcu.edu/engweb/webtexts/bartleby/web-hm.htm">Melville Web Links</a>
</p>
<p>
<img src="../bar.gif" width="535" height="15" border="0" align="middle">
<img src="../bar.gif" width="535" height="15" border="0" align="middle"/>
</p>
<p> <a href="http://www.vcu.edu/engweb"><img src="../myhome.jpg" width="50" height="21" border="0" align="middle"></a>
<p> <a href="http://www.vcu.edu/engweb"><img src="../myhome.jpg" width="50" height="21" border="0" align="middle"/></a>
</p>
</center>
</body>

@ -2,8 +2,8 @@
<div class="article">
<p>Daring Fireball is written and produced by John Gruber.</p>
<p>
<a href="http://fakehost/graphics/author/addison-bw.jpg"> <img src="http://fakehost/graphics/author/addison-bw-425.jpg" alt="Photograph of the author."></a>
<br><em>Portrait by <a href="http://superbiate.com/inquiries/">George Del Barrio</a></em> </p>
<a href="http://fakehost/graphics/author/addison-bw.jpg"> <img src="http://fakehost/graphics/author/addison-bw-425.jpg" alt="Photograph of the author."/></a>
<br/><em>Portrait by <a href="http://superbiate.com/inquiries/">George Del Barrio</a></em> </p>
<h2>Mac Apps</h2>
<ul>
<li><a href="http://www.barebones.com/products/bbedit/">BBEdit</a></li>

@ -2,23 +2,23 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Daring Fireball: Colophon</title>
<meta name="viewport" content="width=600, initial-scale=0.5, minimum-scale=0.45">
<link rel="apple-touch-icon-precomposed" href="/graphics/apple-touch-icon.png">
<link rel="shortcut icon" href="/graphics/favicon.ico?v=005">
<link rel="stylesheet" type="text/css" media="screen" href="/css/fireball_screen.css?v1.6">
<link rel="stylesheet" type="text/css" media="screen" href="/css/ie_sucks.php">
<link rel="stylesheet" type="text/css" media="print" href="/css/fireball_print.css?v01">
<link rel="alternate" type="application/atom+xml" href="/feeds/main">
<meta name="viewport" content="width=600, initial-scale=0.5, minimum-scale=0.45"/>
<link rel="apple-touch-icon-precomposed" href="/graphics/apple-touch-icon.png"/>
<link rel="shortcut icon" href="/graphics/favicon.ico?v=005"/>
<link rel="stylesheet" type="text/css" media="screen" href="/css/fireball_screen.css?v1.6"/>
<link rel="stylesheet" type="text/css" media="screen" href="/css/ie_sucks.php"/>
<link rel="stylesheet" type="text/css" media="print" href="/css/fireball_print.css?v01"/>
<link rel="alternate" type="application/atom+xml" href="/feeds/main"/>
<script src="/js/js-global/FancyZoom.js" type="text/javascript"></script>
<script src="/js/js-global/FancyZoomHTML.js" type="text/javascript"></script>
<link rel="shortcut icon" href="/favicon.ico"> </head>
<link rel="shortcut icon" href="/favicon.ico"/> </head>
<body onload="setupZoom()">
<div id="Box">
<div id="Banner">
<a href="/" title="Daring Fireball: Home"><img src="/graphics/logos/" alt="Daring Fireball" height="56"></a>
<a href="/" title="Daring Fireball: Home"><img src="/graphics/logos/" alt="Daring Fireball" height="56"/></a>
</div>
<div id="Sidebar">
<p>By <strong>John&nbsp;Gruber</strong></p>
@ -65,8 +65,8 @@
<h1>About This Site</h1>
<p>Daring Fireball is written and produced by John Gruber.</p>
<p>
<a href="/graphics/author/addison-bw.jpg"> <img src="/graphics/author/addison-bw-425.jpg" alt="Photograph of the author." style="border: 0;"></a>
<br><em>Portrait by <a href="http://superbiate.com/inquiries/">George Del Barrio</a></em> </p>
<a href="/graphics/author/addison-bw.jpg"> <img src="/graphics/author/addison-bw-425.jpg" alt="Photograph of the author." style="border: 0;"/></a>
<br/><em>Portrait by <a href="http://superbiate.com/inquiries/">George Del Barrio</a></em> </p>
<h2>Mac Apps</h2>
<ul>
<li><a href="http://www.barebones.com/products/bbedit/">BBEdit</a></li>
@ -95,12 +95,12 @@
<div id="Footer">
<form id="SiteSearch" action="https://daringfireball.net/search" method="get" style="margin-bottom: 2.5em;">
<div>
<input name="q" type="text" value="" style="margin-right: 8px; width: 66%;">
<input type="submit" value="Search"> </div>
<input name="q" type="text" value="" style="margin-right: 8px; width: 66%;"/>
<input type="submit" value="Search"/> </div>
</form>
<p class="smallprint"> <a href="/preferences/" title="Customize the font size and presentation options for this web site.">Display Preferences</a>
<br>
<br> Copyright © 20022015 The Daring Fireball Company LLC. </p>
<br/>
<br/> Copyright © 20022015 The Daring Fireball Company LLC. </p>
</div>
<div id="SidebarTheDeck">
<script type="text/javascript">
@ -114,7 +114,7 @@
// ]]>
</script>
<p id="ViaTheDeck">
<a href="http://decknetwork.net/"> <img src="//daringfireball.net/graphics/madison/via_the_deck.png" alt="Ads via The Deck" class="the_deck_promo" width="70"> <span>Ads via The Deck</span> </a>
<a href="http://decknetwork.net/"> <img src="//daringfireball.net/graphics/madison/via_the_deck.png" alt="Ads via The Deck" class="the_deck_promo" width="70"/> <span>Ads via The Deck</span> </a>
</p>
</div>
<!-- Google Analytics -->
@ -148,4 +148,4 @@
<!-- box -->
</body>
</html>
</html>

@ -4,7 +4,7 @@
<div class="mod step">
<div class="stepContent mod">
<p>Glass cloche terrariums are not only appealing to the eye, but they also preserve a bit of nature in your home and serve as a simple, yet beautiful, piece of art. Closed terrariums are easy to care for, as they retain much of their own moisture and provide a warm environment with a consistent level of humidity. You wont have to water the terrariums unless you see that the walls are not misting up. Small growing plants that dont require a lot of light work best such as succulents, ferns, moss, even orchids.</p>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg" alt="Glass cloche terrariums" title="Glass cloche terrariums" class="photo" data-credit="Lucy Akins " longdesc="http://s3.amazonaws.com/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg" alt="Glass cloche terrariums" title="Glass cloche terrariums" class="photo" data-credit="Lucy Akins " longdesc="http://s3.amazonaws.com/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg"/> </figure>
<figcaption class="small caption"> Glass cloche terrariums (Lucy Akins) </figcaption>
</div>
</div>
@ -31,7 +31,7 @@
<div class="content"><span class="headline2 head mg-1 block">Step 1</span>
<p>Measure the circumference of your cloche and cut the foam oasis about 3/4 inch (2 cm) smaller. Place the foam oasis into a container full of water and allow to soak until it sinks to the bottom. Dig out a hole on the oasis large enough to fit your plant, being careful not to pierce all the way through to the bottom.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/fc249ef6-4d27-41b4-8c21-15f7a8512b50.jpg" alt="Dig a hole in the oasis." class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/fc249ef6-4d27-41b4-8c21-15f7a8512b50.jpg" alt="Dig a hole in the oasis." class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Dig a hole in the oasis. (Lucy Akins) </figcaption>
</div>
</div>
@ -40,7 +40,7 @@
<div class="content"><span class="headline2 head mg-1 block">Step 2</span>
<p>Insert your plant into the hole.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/aae11d4d-a4aa-4251-a4d9-41023ebf6d84.jpg" alt="Orchid in foam oasis" class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/aae11d4d-a4aa-4251-a4d9-41023ebf6d84.jpg" alt="Orchid in foam oasis" class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Orchid in foam oasis (Lucy Akins) </figcaption>
</div>
</div>
@ -49,7 +49,7 @@
<div class="content"><span class="headline2 head mg-1 block">Step 3</span>
<p>You can add various plants if you wish.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/7afdfa1e-da74-44b5-b89c-ca8123516272.jpg" alt="Various foliage" class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/7afdfa1e-da74-44b5-b89c-ca8123516272.jpg" alt="Various foliage" class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Various foliage (Lucy Akins) </figcaption>
</div>
</div>
@ -58,7 +58,7 @@
<div class="content"><span class="headline2 head mg-1 block">Step 4</span>
<p>Using floral pins, attach enough moss around the oasis to cover it.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/4f6612c0-316a-4c74-bb03-cb4e778f6d72.jpg" alt="Attach moss." class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/4f6612c0-316a-4c74-bb03-cb4e778f6d72.jpg" alt="Attach moss." class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Attach moss. (Lucy Akins) </figcaption>
</div>
</div>
@ -67,7 +67,7 @@
<div class="content"><span class="headline2 head mg-1 block">Step 5</span>
<p>Gently place the cloche over the oasis. The glass may push some of the moss upward, exposing some of the foam.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/eeb1e0b4-e573-40a3-8db1-2c76f0b13b84.jpg" alt="Place cloche over oasis." class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/eeb1e0b4-e573-40a3-8db1-2c76f0b13b84.jpg" alt="Place cloche over oasis." class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Place cloche over oasis. (Lucy Akins) </figcaption>
</div>
</div>
@ -76,7 +76,7 @@
<div class="content"><span class="headline2 head mg-1 block">Step 6</span>
<p>Simply pull down the moss with tweezers or insert more moss to fill in the empty spaces.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/812d4649-4152-4363-97c0-f181d02e709a.jpg" alt="Rearrange moss." class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/812d4649-4152-4363-97c0-f181d02e709a.jpg" alt="Rearrange moss." class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Rearrange moss. (Lucy Akins) </figcaption>
</div>
</div>
@ -85,7 +85,7 @@
<div class="content"><span class="headline2 head mg-1 block">Step 7</span>
<p>You can use any platform you wish. In this case, a small saucer was used.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/0cb3988c-9318-47d6-bc9c-c798da1ede72.jpg" alt="Place cloche on a platform to sit on." class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/0cb3988c-9318-47d6-bc9c-c798da1ede72.jpg" alt="Place cloche on a platform to sit on." class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Place cloche on a platform to sit on. (Lucy Akins) </figcaption>
</div>
</div>
@ -94,7 +94,7 @@
<div class="content"><span class="headline2 head mg-1 block">Step 8</span>
<p>This particular terrarium rests on a planter saucer and features a small white pumpkin.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/e3e18f0b-ab2c-4ffb-9988-a1ea63faef8b.jpg" alt="Cloche placed on a terracotta saucer" class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/e3e18f0b-ab2c-4ffb-9988-a1ea63faef8b.jpg" alt="Cloche placed on a terracotta saucer" class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Cloche placed on a terracotta saucer (Lucy Akins) </figcaption>
</div>
</div>
@ -103,7 +103,7 @@
<div class="content"><span class="headline2 head mg-1 block">Step 9</span>
<p>This particular terrarium was placed on a wood slice and a little toy squirrel was placed inside to add a little whimsy.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/2cd79f8d-0d16-4573-8861-e47fb74b0638.jpg" alt="Placed on a wooden slice" class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/2cd79f8d-0d16-4573-8861-e47fb74b0638.jpg" alt="Placed on a wooden slice" class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Placed on a wooden slice (Lucy Akins) </figcaption>
</div>
</div>
@ -112,7 +112,7 @@
<div class="content"><span class="headline2 head mg-1 block">Finished Terrarium</span>
<p>Displayed alone or in a group, these pretty arrangements allow you to add a little nature to your decor or tablescape.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/78670312-8636-4c42-a75c-3029f7aa6c73.jpg" alt="Cloche terrarium" class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/78670312-8636-4c42-a75c-3029f7aa6c73.jpg" alt="Cloche terrarium" class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Cloche terrarium (Lucy Akins) </figcaption>
</div>
</div>
@ -120,17 +120,17 @@
<h3 class="head headline2 mg-2">More Like This</h3>
<ul class="unstyled">
<li class="item fl ">
<a href="http://www.ehow.com/how_4431062_convert-aquarium-terrarium.html"> <img src="http://img-aws.ehowcdn.com/200x133/cme/photography.prod.demandstudios.com/90f9f3d7-6e4f-4be8-b379-3d994ccbf69c.jpg" class="img" alt="">
<a href="http://www.ehow.com/how_4431062_convert-aquarium-terrarium.html"> <img src="http://img-aws.ehowcdn.com/200x133/cme/photography.prod.demandstudios.com/90f9f3d7-6e4f-4be8-b379-3d994ccbf69c.jpg" class="img" alt=""/>
<p class="headline6 mg-0">How to Convert an Aquarium to a Terrarium</p>
</a>
</li>
<li class="item fl even">
<a href="http://www.ehow.com/video_12263138_plant-terrarium-ideas.html"> <img src="http://img-aws.ehowcdn.com/200x133/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/a7edbb0f-86a7-4c73-9c2d-f85f87b49efa_0.jpg" class="img" alt="">
<a href="http://www.ehow.com/video_12263138_plant-terrarium-ideas.html"> <img src="http://img-aws.ehowcdn.com/200x133/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/a7edbb0f-86a7-4c73-9c2d-f85f87b49efa_0.jpg" class="img" alt=""/>
<p class="headline6 mg-0">Plant Terrarium Ideas</p>
</a>
</li>
<li class="item fl ">
<a href="http://www.ehow.com/video_9374_make-terrarium.html"> <img src="http://img-aws.ehowcdn.com/200x133/ehow/images/a00/09/4u/make-terrarium-800x800.jpg" class="img" alt="">
<a href="http://www.ehow.com/video_9374_make-terrarium.html"> <img src="http://img-aws.ehowcdn.com/200x133/ehow/images/a00/09/4u/make-terrarium-800x800.jpg" class="img" alt=""/>
<p class="headline6 mg-0">How to Make a Terrarium</p>
</a>
</li>

@ -3,51 +3,51 @@
<html class="Crafts en-US" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#" data-channel="crafts" itemscope="" itemtype="http://schema.org/Article">
<head>
<meta charset="utf-8">
<meta name="description" content="How to Build a Terrarium. Glass cloche terrariums are not only appealing to the eye, but they also preserve a bit of nature in your home and serve as a simple, yet beautiful, piece of art. Closed terrariums are easy to care for, as they retain much of their own moisture and provide a warm environment with a consistent level of humidity. You...">
<meta name="format-detection" content="telephone=no">
<meta name="y_key" content="4d4cb4ef1ad334cb">
<meta name="alexaVerifyID" content="xlJch1oUHrXNtOQBpiuUCV0-rlc">
<meta name="cachetime" content="201504281431">
<meta name="p:domain_verify" content="4d1387210be25228f0c4692cc47db05b">
<meta name="cme_last_updated" content="2015-04-28T11:54:11.401000">
<meta name="publishdate" content="05/29/2007 09:49:00">
<meta name="last_rcp_import" content="2015-04-27T19:34:40.179876">
<meta name="articleimage" content="http://s3.amazonaws.com/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg">
<link href="http://www.ehow.com/how_2042752_build-terrarium.html" rel="canonical">
<link type="application/rss+xml" href="http://www.ehow.com/feed/ehow-crafts.rss" rel="alternate" title="Subscribe to our RSS Feed">
<meta name="studioid" scheme="DMINSTR2" content="f941e4cd-a49e-4948-b244-677c15ff8b7f">
<meta name="contentid" scheme="DMINSTR2" content="2042752">
<meta name="category" scheme="DMINSTR2" content="Crafts">
<meta name="subcategory" scheme="DMINSTR2" content="Other DIY Crafts">
<meta name="subsubcat" scheme="DMINSTR2" content="Other DIY Projects">
<meta name="subpagetype" scheme="DMINSTR2" content="topic_view">
<meta name="exp_page" scheme="DMINSTR2" content="">
<meta name="wa_pchn" scheme="DMINSTR2" content="Crafts">
<meta name="pagetype" scheme="DMINSTR2" content="inline">
<meta name="wa_lr" scheme="DMINSTR2" content="en-US">
<meta name="siteid" scheme="DMINSTR2" content="EHWC">
<meta name="exp_name" scheme="DMINSTR2" content="desktop:default">
<meta name="wa_un" scheme="DMINSTR2" content="">
<meta name="wa_isreg" scheme="DMINSTR2" content="">
<meta name="wa_lgdin" scheme="DMINSTR2" content="">
<meta name="wa_clvl" scheme="DMINSTR2" content="1">
<meta name="wa_lgsrc" scheme="DMINSTR2" content="1">
<meta name="author" scheme="DMINSTR2" content="Lucy Akins">
<meta name="author_image" content="">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@ehow">
<meta property="og:image" content="http://img-aws.ehowcdn.com/200x200/cme/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg">
<meta property="og:url" content="http://www.ehow.com/how_2042752_build-terrarium.html">
<meta property="og:type" content="article">
<meta property="og:title" content="How to Build a Terrarium | eHow">
<meta property="og:description" content="Glass cloche terrariums are not only appealing to the eye, but they also preserve a bit of nature in your home and serve as a simple, yet beautiful, piece of art. Closed terrariums are easy to care for, as they retain much of their own moisture and provide a warm environment with a consistent level of humidity. You wont have to water the...">
<meta property="fb:app_id" content="63203377906">
<meta property="fb:ttl" content="604800">
<meta property="og:site_name" content="eHow">
<meta charset="utf-8"/>
<meta name="description" content="How to Build a Terrarium. Glass cloche terrariums are not only appealing to the eye, but they also preserve a bit of nature in your home and serve as a simple, yet beautiful, piece of art. Closed terrariums are easy to care for, as they retain much of their own moisture and provide a warm environment with a consistent level of humidity. You..."/>
<meta name="format-detection" content="telephone=no"/>
<meta name="y_key" content="4d4cb4ef1ad334cb"/>
<meta name="alexaVerifyID" content="xlJch1oUHrXNtOQBpiuUCV0-rlc"/>
<meta name="cachetime" content="201504281431"/>
<meta name="p:domain_verify" content="4d1387210be25228f0c4692cc47db05b"/>
<meta name="cme_last_updated" content="2015-04-28T11:54:11.401000"/>
<meta name="publishdate" content="05/29/2007 09:49:00"/>
<meta name="last_rcp_import" content="2015-04-27T19:34:40.179876"/>
<meta name="articleimage" content="http://s3.amazonaws.com/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg"/>
<link href="http://www.ehow.com/how_2042752_build-terrarium.html" rel="canonical"/>
<link type="application/rss+xml" href="http://www.ehow.com/feed/ehow-crafts.rss" rel="alternate" title="Subscribe to our RSS Feed"/>
<meta name="studioid" scheme="DMINSTR2" content="f941e4cd-a49e-4948-b244-677c15ff8b7f"/>
<meta name="contentid" scheme="DMINSTR2" content="2042752"/>
<meta name="category" scheme="DMINSTR2" content="Crafts"/>
<meta name="subcategory" scheme="DMINSTR2" content="Other DIY Crafts"/>
<meta name="subsubcat" scheme="DMINSTR2" content="Other DIY Projects"/>
<meta name="subpagetype" scheme="DMINSTR2" content="topic_view"/>
<meta name="exp_page" scheme="DMINSTR2" content=""/>
<meta name="wa_pchn" scheme="DMINSTR2" content="Crafts"/>
<meta name="pagetype" scheme="DMINSTR2" content="inline"/>
<meta name="wa_lr" scheme="DMINSTR2" content="en-US"/>
<meta name="siteid" scheme="DMINSTR2" content="EHWC"/>
<meta name="exp_name" scheme="DMINSTR2" content="desktop:default"/>
<meta name="wa_un" scheme="DMINSTR2" content=""/>
<meta name="wa_isreg" scheme="DMINSTR2" content=""/>
<meta name="wa_lgdin" scheme="DMINSTR2" content=""/>
<meta name="wa_clvl" scheme="DMINSTR2" content="1"/>
<meta name="wa_lgsrc" scheme="DMINSTR2" content="1"/>
<meta name="author" scheme="DMINSTR2" content="Lucy Akins"/>
<meta name="author_image" content=""/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:site" content="@ehow"/>
<meta property="og:image" content="http://img-aws.ehowcdn.com/200x200/cme/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg"/>
<meta property="og:url" content="http://www.ehow.com/how_2042752_build-terrarium.html"/>
<meta property="og:type" content="article"/>
<meta property="og:title" content="How to Build a Terrarium | eHow"/>
<meta property="og:description" content="Glass cloche terrariums are not only appealing to the eye, but they also preserve a bit of nature in your home and serve as a simple, yet beautiful, piece of art. Closed terrariums are easy to care for, as they retain much of their own moisture and provide a warm environment with a consistent level of humidity. You wont have to water the..."/>
<meta property="fb:app_id" content="63203377906"/>
<meta property="fb:ttl" content="604800"/>
<meta property="og:site_name" content="eHow"/>
<title>How to Build a Terrarium (with Pictures) | eHow</title>
<link type="image/x-icon" href="http://v5-static.ehowcdn.com/favicon.ico" rel="shortcut icon apple-touch-icon">
<link rel="stylesheet" type="text/css" href="http://dynamic02.ehowcdn.com/services/modules/css/common_header,corporate-skin,inline/fa923205/">
<link type="image/x-icon" href="http://v5-static.ehowcdn.com/favicon.ico" rel="shortcut icon apple-touch-icon"/>
<link rel="stylesheet" type="text/css" href="http://dynamic02.ehowcdn.com/services/modules/css/common_header,corporate-skin,inline/fa923205/"/>
<!--[if lt IE 9]><link href="http://v5-static.ehowcdn.com/ui/stylesheets/layout/ie.css" rel="stylesheet" /><script src="http://v5-static.ehowcdn.com/ui/scripts/ie_hacks/header.js"></script><![endif]-->
<!--[if IE 9]><link href="http://v5-static.ehowcdn.com/ui/stylesheets/layout/ie9.css" rel="stylesheet" /><![endif]-->
<script>
@ -250,12 +250,12 @@
</script>
<header id="Header" data-section="header">
<section class="topContainer inner-container page-header clearfix">
<a href="http://www.ehow.com/" class="image corp-logo fl"><img src="http://v5-static.ehowcdn.com/media/images/logos/logo-stamp.png" width="134" height="38" alt="eHow Logo"></a>
<a href="http://www.ehow.com/" class="image corp-logo fl"><img src="http://v5-static.ehowcdn.com/media/images/logos/logo-stamp.png" width="134" height="38" alt="eHow Logo"/></a>
<form method="get" action="http://www.ehow.com/search.html" id="searchHeader" class="Search ">
<input type="text" name="s" data-type="searchinput" class="input fl headline4">
<input name="skin" type="hidden" value="corporate">
<input name="t" type="hidden" value="all">
<input type="submit" value="Search" class="bttn submit headline5 head"> </form>
<input type="text" name="s" data-type="searchinput" class="input fl headline4"/>
<input name="skin" type="hidden" value="corporate"/>
<input name="t" type="hidden" value="all"/>
<input type="submit" value="Search" class="bttn submit headline5 head"/> </form>
</section>
<nav id="primaryNav" role="navigation">
<ul class="inner-container channelListing clearfix skin-crafts">
@ -406,7 +406,7 @@ How to Build a Terrarium </h1>
<div class="content lead">
<p>Glass cloche terrariums are not only appealing to the eye, but they also preserve a bit of nature in your home and serve as a simple, yet beautiful, piece of art. Closed terrariums are easy to care for, as they retain much of their own moisture and provide a warm environment with a consistent level of humidity. You wont have to water the terrariums unless you see that the walls are not misting up. Small growing plants that dont require a lot of light work best such as succulents, ferns, moss, even orchids.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg" alt="Glass cloche terrariums" title="Glass cloche terrariums" class="photo" data-credit="Lucy Akins " longdesc="http://s3.amazonaws.com/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg" alt="Glass cloche terrariums" title="Glass cloche terrariums" class="photo" data-credit="Lucy Akins " longdesc="http://s3.amazonaws.com/photography.prod.demandstudios.com/16149374-814f-40bc-baf3-ca20f149f0ba.jpg"/> </figure>
<figcaption class="small caption"> Glass cloche terrariums (Lucy Akins) </figcaption>
</div>
</div>
@ -415,9 +415,9 @@ How to Build a Terrarium </h1>
<h3 class="head headline2 mg-2">Other People Are Reading</h3> </header>
<ul class="unstyled inline box box-inner people-reading mod FLC" data-type="more-relatedArticles">
<li class="fl item headline5 first">
<a class="gtm_otherPeopleReading" href="http://www.ehow.com/video_12263138_plant-terrarium-ideas.html"> <img src="http://img-aws.ehowcdn.com/105x70/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/a7edbb0f-86a7-4c73-9c2d-f85f87b49efa_0.jpg" class="thumb fl"> </a> <a class="title gtm_otherPeopleReading headline5" href="http://www.ehow.com/video_12263138_plant-terrarium-ideas.html">Plant Terrarium Ideas</a> </li>
<a class="gtm_otherPeopleReading" href="http://www.ehow.com/video_12263138_plant-terrarium-ideas.html"> <img src="http://img-aws.ehowcdn.com/105x70/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/a7edbb0f-86a7-4c73-9c2d-f85f87b49efa_0.jpg" class="thumb fl"/> </a> <a class="title gtm_otherPeopleReading headline5" href="http://www.ehow.com/video_12263138_plant-terrarium-ideas.html">Plant Terrarium Ideas</a> </li>
<li class="fl item headline5 mid">
<a class="gtm_otherPeopleReading" href="http://www.ehow.com/how_4885344_build-terrarium-succulent-plants.html"> <img src="http://img-aws.ehowcdn.com/105x70/cme/photography.prod.demandstudios.com/619daaaa-7991-4fc6-9b62-dfeab8a285b4.jpg" class="thumb fl"> </a> <a class="title gtm_otherPeopleReading headline5" href="http://www.ehow.com/how_4885344_build-terrarium-succulent-plants.html">How to Build a Terrarium With Succulent Plants</a> </li>
<a class="gtm_otherPeopleReading" href="http://www.ehow.com/how_4885344_build-terrarium-succulent-plants.html"> <img src="http://img-aws.ehowcdn.com/105x70/cme/photography.prod.demandstudios.com/619daaaa-7991-4fc6-9b62-dfeab8a285b4.jpg" class="thumb fl"/> </a> <a class="title gtm_otherPeopleReading headline5" href="http://www.ehow.com/how_4885344_build-terrarium-succulent-plants.html">How to Build a Terrarium With Succulent Plants</a> </li>
</ul>
</div>
<div class="mod step">
@ -443,7 +443,7 @@ How to Build a Terrarium </h1>
<div class="content"> <span class="headline2 head mg-1 block">Step 1</span>
<p>Measure the circumference of your cloche and cut the foam oasis about 3/4 inch (2 cm) smaller. Place the foam oasis into a container full of water and allow to soak until it sinks to the bottom. Dig out a hole on the oasis large enough to fit your plant, being careful not to pierce all the way through to the bottom.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/fc249ef6-4d27-41b4-8c21-15f7a8512b50.jpg" alt="Dig a hole in the oasis." class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/fc249ef6-4d27-41b4-8c21-15f7a8512b50.jpg" alt="Dig a hole in the oasis." class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Dig a hole in the oasis. (Lucy Akins) </figcaption>
</div>
</div>
@ -501,7 +501,7 @@ How to Build a Terrarium </h1>
<div class="content"> <span class="headline2 head mg-1 block">Step 2</span>
<p>Insert your plant into the hole.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/aae11d4d-a4aa-4251-a4d9-41023ebf6d84.jpg" alt="Orchid in foam oasis" class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/aae11d4d-a4aa-4251-a4d9-41023ebf6d84.jpg" alt="Orchid in foam oasis" class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Orchid in foam oasis (Lucy Akins) </figcaption>
</div>
</div>
@ -510,7 +510,7 @@ How to Build a Terrarium </h1>
<div class="content"> <span class="headline2 head mg-1 block">Step 3</span>
<p>You can add various plants if you wish.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/7afdfa1e-da74-44b5-b89c-ca8123516272.jpg" alt="Various foliage" class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/7afdfa1e-da74-44b5-b89c-ca8123516272.jpg" alt="Various foliage" class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Various foliage (Lucy Akins) </figcaption>
</div>
</div>
@ -519,7 +519,7 @@ How to Build a Terrarium </h1>
<div class="content"> <span class="headline2 head mg-1 block">Step 4</span>
<p>Using floral pins, attach enough moss around the oasis to cover it.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/4f6612c0-316a-4c74-bb03-cb4e778f6d72.jpg" alt="Attach moss." class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/4f6612c0-316a-4c74-bb03-cb4e778f6d72.jpg" alt="Attach moss." class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Attach moss. (Lucy Akins) </figcaption>
</div>
</div>
@ -528,7 +528,7 @@ How to Build a Terrarium </h1>
<div class="content"> <span class="headline2 head mg-1 block">Step 5</span>
<p>Gently place the cloche over the oasis. The glass may push some of the moss upward, exposing some of the foam.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/eeb1e0b4-e573-40a3-8db1-2c76f0b13b84.jpg" alt="Place cloche over oasis." class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/eeb1e0b4-e573-40a3-8db1-2c76f0b13b84.jpg" alt="Place cloche over oasis." class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Place cloche over oasis. (Lucy Akins) </figcaption>
</div>
</div>
@ -537,7 +537,7 @@ How to Build a Terrarium </h1>
<div class="content"> <span class="headline2 head mg-1 block">Step 6</span>
<p>Simply pull down the moss with tweezers or insert more moss to fill in the empty spaces.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/812d4649-4152-4363-97c0-f181d02e709a.jpg" alt="Rearrange moss." class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/812d4649-4152-4363-97c0-f181d02e709a.jpg" alt="Rearrange moss." class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Rearrange moss. (Lucy Akins) </figcaption>
</div>
</div>
@ -546,7 +546,7 @@ How to Build a Terrarium </h1>
<div class="content"> <span class="headline2 head mg-1 block">Step 7</span>
<p>You can use any platform you wish. In this case, a small saucer was used.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/0cb3988c-9318-47d6-bc9c-c798da1ede72.jpg" alt="Place cloche on a platform to sit on." class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/default/cme/photography.prod.demandstudios.com/0cb3988c-9318-47d6-bc9c-c798da1ede72.jpg" alt="Place cloche on a platform to sit on." class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Place cloche on a platform to sit on. (Lucy Akins) </figcaption>
</div>
</div>
@ -555,7 +555,7 @@ How to Build a Terrarium </h1>
<div class="content"> <span class="headline2 head mg-1 block">Step 8</span>
<p>This particular terrarium rests on a planter saucer and features a small white pumpkin.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/e3e18f0b-ab2c-4ffb-9988-a1ea63faef8b.jpg" alt="Cloche placed on a terracotta saucer" class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/e3e18f0b-ab2c-4ffb-9988-a1ea63faef8b.jpg" alt="Cloche placed on a terracotta saucer" class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Cloche placed on a terracotta saucer (Lucy Akins) </figcaption>
</div>
</div>
@ -564,7 +564,7 @@ How to Build a Terrarium </h1>
<div class="content"> <span class="headline2 head mg-1 block">Step 9</span>
<p>This particular terrarium was placed on a wood slice and a little toy squirrel was placed inside to add a little whimsy.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/2cd79f8d-0d16-4573-8861-e47fb74b0638.jpg" alt="Placed on a wooden slice" class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/2cd79f8d-0d16-4573-8861-e47fb74b0638.jpg" alt="Placed on a wooden slice" class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Placed on a wooden slice (Lucy Akins) </figcaption>
</div>
</div>
@ -573,7 +573,7 @@ How to Build a Terrarium </h1>
<div class="content"> <span class="headline2 head mg-1 block">Finished Terrarium</span>
<p>Displayed alone or in a group, these pretty arrangements allow you to add a little nature to your decor or tablescape.</p>
</div>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/78670312-8636-4c42-a75c-3029f7aa6c73.jpg" alt="Cloche terrarium" class="photo" data-credit="Lucy Akins"> </figure>
<figure class="stepThumb"> <img src="http://img-aws.ehowcdn.com/640/cme/photography.prod.demandstudios.com/78670312-8636-4c42-a75c-3029f7aa6c73.jpg" alt="Cloche terrarium" class="photo" data-credit="Lucy Akins"/> </figure>
<figcaption class="small caption"> Cloche terrarium (Lucy Akins) </figcaption>
</div>
</div>
@ -659,17 +659,17 @@ How to Build a Terrarium </h1>
<h3 class="head headline2 mg-2">More Like This</h3>
<ul class="unstyled">
<li class="item fl ">
<a href="http://www.ehow.com/how_4431062_convert-aquarium-terrarium.html"> <img src="http://img-aws.ehowcdn.com/200x133/cme/photography.prod.demandstudios.com/90f9f3d7-6e4f-4be8-b379-3d994ccbf69c.jpg" class="img" alt="">
<a href="http://www.ehow.com/how_4431062_convert-aquarium-terrarium.html"> <img src="http://img-aws.ehowcdn.com/200x133/cme/photography.prod.demandstudios.com/90f9f3d7-6e4f-4be8-b379-3d994ccbf69c.jpg" class="img" alt=""/>
<p class="headline6 mg-0">How to Convert an Aquarium to a Terrarium</p>
</a>
</li>
<li class="item fl even">
<a href="http://www.ehow.com/video_12263138_plant-terrarium-ideas.html"> <img src="http://img-aws.ehowcdn.com/200x133/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/a7edbb0f-86a7-4c73-9c2d-f85f87b49efa_0.jpg" class="img" alt="">
<a href="http://www.ehow.com/video_12263138_plant-terrarium-ideas.html"> <img src="http://img-aws.ehowcdn.com/200x133/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/a7edbb0f-86a7-4c73-9c2d-f85f87b49efa_0.jpg" class="img" alt=""/>
<p class="headline6 mg-0">Plant Terrarium Ideas</p>
</a>
</li>
<li class="item fl ">
<a href="http://www.ehow.com/video_9374_make-terrarium.html"> <img src="http://img-aws.ehowcdn.com/200x133/ehow/images/a00/09/4u/make-terrarium-800x800.jpg" class="img" alt="">
<a href="http://www.ehow.com/video_9374_make-terrarium.html"> <img src="http://img-aws.ehowcdn.com/200x133/ehow/images/a00/09/4u/make-terrarium-800x800.jpg" class="img" alt=""/>
<p class="headline6 mg-0">How to Make a Terrarium</p>
</a>
</li>
@ -682,17 +682,17 @@ How to Build a Terrarium </h1>
<h2 class="headline2 head mg-2">Featured</h2>
<div class="featured FLC">
<section class="Alpha item" data-cme-module="0">
<a class="target link-accent gtm_featuredArticles" href="http://www.ehow.com/how_2056495_make-ballet-tutu.html"> <img src="http://img-aws.ehowcdn.com/200x133/cme/photography.prod.demandstudios.com/7f06be69-3650-4e94-88d4-2289c1a5c6a2.jpg" class="photo" alt=""> <span class="subtitle">Read Article</span>
<a class="target link-accent gtm_featuredArticles" href="http://www.ehow.com/how_2056495_make-ballet-tutu.html"> <img src="http://img-aws.ehowcdn.com/200x133/cme/photography.prod.demandstudios.com/7f06be69-3650-4e94-88d4-2289c1a5c6a2.jpg" class="photo" alt=""/> <span class="subtitle">Read Article</span>
<div class="title headline6">How to Make a Ballet Tutu</div>
</a>
</section>
<section class=" item" data-cme-module="1">
<a class="target link-accent gtm_featuredArticles" href="http://www.ehow.com/how_7687715_paint-tulip-watercolor.html"> <img src="http://img-aws.ehowcdn.com/200x133/cme/uploadedimages.demandmedia/tulips-1.jpg" class="photo" alt=""> <span class="subtitle">Read Article</span>
<a class="target link-accent gtm_featuredArticles" href="http://www.ehow.com/how_7687715_paint-tulip-watercolor.html"> <img src="http://img-aws.ehowcdn.com/200x133/cme/uploadedimages.demandmedia/tulips-1.jpg" class="photo" alt=""/> <span class="subtitle">Read Article</span>
<div class="title headline6">How to Paint a Tulip in Watercolor</div>
</a>
</section>
<section class="Omega item" data-cme-module="2">
<a class="target link-accent gtm_featuredArticles" href="http://www.ehow.com/info_12340422_kids-kitchen-slipcover.html"> <img src="http://img-aws.ehowcdn.com/200x133/cme/uploadedimages.demandmedia/kitchen-1.jpg" class="photo" alt=""> <span class="subtitle">Read Article</span>
<a class="target link-accent gtm_featuredArticles" href="http://www.ehow.com/info_12340422_kids-kitchen-slipcover.html"> <img src="http://img-aws.ehowcdn.com/200x133/cme/uploadedimages.demandmedia/kitchen-1.jpg" class="photo" alt=""/> <span class="subtitle">Read Article</span>
<div class="title headline6">Kids Kitchen Slipcover</div>
</a>
</section>
@ -739,7 +739,7 @@ How to Build a Terrarium </h1>
<div class="headline3 head mg-2">Related Searches</div>
</div>
<section class="mod box slideshow" data-module="rcp_slideshow_module">
<a href="http://www.ehow.com/how_16357_make-paper-sunflowers.html"> <img src="http://img-aws.ehowcdn.com/300x200/cme/uploadedimages.demandmedia/sunflowers-1.jpg" alt="" title="" class="photo" longdesc="http://s3.amazonaws.com/uploadedimages.demandmedia/sunflowers-1.jpg"> <span class="arrow arrow-left" data-icon="4"></span> <span class="arrow arrow-right" data-icon="5"></span> <span class="subtitle">
<a href="http://www.ehow.com/how_16357_make-paper-sunflowers.html"> <img src="http://img-aws.ehowcdn.com/300x200/cme/uploadedimages.demandmedia/sunflowers-1.jpg" alt="" title="" class="photo" longdesc="http://s3.amazonaws.com/uploadedimages.demandmedia/sunflowers-1.jpg"/> <span class="arrow arrow-left" data-icon="4"></span> <span class="arrow arrow-right" data-icon="5"></span> <span class="subtitle">
Read Article </span> </a>
<a href="http://www.ehow.com/how_16357_make-paper-sunflowers.html">
<h3 class="headline4 title">
@ -748,49 +748,49 @@ How to Make Paper Sunflowers </h3> </a>
<ul class="media-list mod unstyled " data-module="rcp_right_rail">
<h2 class="headline3 head mg-2 title">You May Like</h2>
<li class="media headline6">
<a href="http://www.ehow.com/how_4431062_convert-aquarium-terrarium.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/cme/photography.prod.demandstudios.com/90f9f3d7-6e4f-4be8-b379-3d994ccbf69c.jpg" alt="" class="media-object">
<a href="http://www.ehow.com/how_4431062_convert-aquarium-terrarium.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/cme/photography.prod.demandstudios.com/90f9f3d7-6e4f-4be8-b379-3d994ccbf69c.jpg" alt="" class="media-object"/>
<div class="pagescore js-pagescore small" data-score="true" data-url="http://www.ehow.com/how_4431062_convert-aquarium-terrarium.html"> <span class=" num js-num"></span> <span class="icon"></span> </div>
</a>
<div class="media-body"> <a href="http://www.ehow.com/how_4431062_convert-aquarium-terrarium.html" class="gtm_youMayLike">How to Convert an Aquarium to a Terrarium</a> </div>
</li>
<li class="media headline6">
<a href="http://www.ehow.com/video_12263137_build-orchid-terrarium.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/47b02568-2cde-44f4-a39c-494294e50ccd_1.jpg" alt="" class="media-object">
<a href="http://www.ehow.com/video_12263137_build-orchid-terrarium.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/47b02568-2cde-44f4-a39c-494294e50ccd_1.jpg" alt="" class="media-object"/>
<div class="pagescore js-pagescore small" data-score="true" data-url="http://www.ehow.com/video_12263137_build-orchid-terrarium.html"> <span class=" num js-num"></span> <span class="icon"></span> </div>
</a>
<div class="media-body"> <a href="http://www.ehow.com/video_12263137_build-orchid-terrarium.html" class="gtm_youMayLike">How to Build an Orchid Terrarium</a> </div>
</li>
<li class="media headline6">
<a href="http://www.ehow.com/video_9374_make-terrarium.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/ehow/images/a00/09/4u/make-terrarium-800x800.jpg" alt="" class="media-object">
<a href="http://www.ehow.com/video_9374_make-terrarium.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/ehow/images/a00/09/4u/make-terrarium-800x800.jpg" alt="" class="media-object"/>
<div class="pagescore js-pagescore small" data-score="true" data-url="http://www.ehow.com/video_9374_make-terrarium.html"> <span class=" num js-num"></span> <span class="icon"></span> </div>
</a>
<div class="media-body"> <a href="http://www.ehow.com/video_9374_make-terrarium.html" class="gtm_youMayLike">How to Make a Terrarium</a> </div>
</li>
<li class="media headline6">
<a href="http://www.ehow.com/video_12263133_group-plants-together-terrarium.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/dc66dd37-78b6-4494-a8db-7bbe697cedda_0.jpg" alt="" class="media-object">
<a href="http://www.ehow.com/video_12263133_group-plants-together-terrarium.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/dc66dd37-78b6-4494-a8db-7bbe697cedda_0.jpg" alt="" class="media-object"/>
<div class="pagescore js-pagescore small" data-score="true" data-url="http://www.ehow.com/video_12263133_group-plants-together-terrarium.html"> <span class=" num js-num"></span> <span class="icon"></span> </div>
</a>
<div class="media-body"> <a href="http://www.ehow.com/video_12263133_group-plants-together-terrarium.html" class="gtm_youMayLike">How to Group Plants Together in a Terrarium</a> </div>
</li>
<li class="media headline6">
<a href="http://www.ehow.com/video_12263135_build-tropical-terrarium.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/70ebb809-634d-41df-9fff-9b183f81e9e0_1.jpg" alt="" class="media-object">
<a href="http://www.ehow.com/video_12263135_build-tropical-terrarium.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/viper/media/2b3830ca-4eb6-4bfd-a1cd-d430b3e28d59/jpeg/70ebb809-634d-41df-9fff-9b183f81e9e0_1.jpg" alt="" class="media-object"/>
<div class="pagescore js-pagescore small" data-score="true" data-url="http://www.ehow.com/video_12263135_build-tropical-terrarium.html"> <span class=" num js-num"></span> <span class="icon"></span> </div>
</a>
<div class="media-body"> <a href="http://www.ehow.com/video_12263135_build-tropical-terrarium.html" class="gtm_youMayLike">How to Build a Tropical Terrarium</a> </div>
</li>
<li class="media headline6">
<a href="http://www.ehow.com/how_7853040_diy-own-living-room-furniture.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/cme/photography.prod.demandstudios.com/2ecfca5a-1c35-4fbe-9ff5-8f5bd8129d97.jpg" alt="" class="media-object">
<a href="http://www.ehow.com/how_7853040_diy-own-living-room-furniture.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/cme/photography.prod.demandstudios.com/2ecfca5a-1c35-4fbe-9ff5-8f5bd8129d97.jpg" alt="" class="media-object"/>
<div class="pagescore js-pagescore small" data-score="true" data-url="http://www.ehow.com/how_7853040_diy-own-living-room-furniture.html"> <span class=" num js-num"></span> <span class="icon"></span> </div>
</a>
<div class="media-body"> <a href="http://www.ehow.com/how_7853040_diy-own-living-room-furniture.html" class="gtm_youMayLike">DIY Build Your Own Living Room Furniture</a> </div>
</li>
<li class="media headline6">
<a href="http://www.ehow.com/slideshow_12333243_edible-arrangements-make-own-easter-candy-terrariums.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/ds-cdn-write/upload/image/39/4D/34B73D38-EC9F-4415-A740-23DCF2F94D39/34B73D38-EC9F-4415-A740-23DCF2F94D39.jpg" alt="" class="media-object">
<a href="http://www.ehow.com/slideshow_12333243_edible-arrangements-make-own-easter-candy-terrariums.html" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/ds-cdn-write/upload/image/39/4D/34B73D38-EC9F-4415-A740-23DCF2F94D39/34B73D38-EC9F-4415-A740-23DCF2F94D39.jpg" alt="" class="media-object"/>
<div class="pagescore js-pagescore small" data-score="true" data-url="http://www.ehow.com/slideshow_12333243_edible-arrangements-make-own-easter-candy-terrariums.html"> <span class=" num js-num"></span> <span class="icon"></span> </div>
</a>
<div class="media-body"> <a href="http://www.ehow.com/slideshow_12333243_edible-arrangements-make-own-easter-candy-terrariums.html" class="gtm_youMayLike">Edible Arrangements: Make Your Own Easter Candy Terrariums</a> </div>
</li>
<li class="media headline6">
<a href="http://www.ehow.com/ehow-mom/blog/3-ingredient-easter-bark/" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/ehow-mom-blog-us/files/2015/03/easterbark0.jpg" alt="" class="media-object">
<a href="http://www.ehow.com/ehow-mom/blog/3-ingredient-easter-bark/" class="fl gtm_youMayLike"> <img src="http://img-aws.ehowcdn.com/150X100/ehow-mom-blog-us/files/2015/03/easterbark0.jpg" alt="" class="media-object"/>
<div class="pagescore js-pagescore small" data-score="true" data-url="http://www.ehow.com/ehow-mom/blog/3-ingredient-easter-bark/"> <span class=" num js-num"></span> <span class="icon"></span> </div>
</a>
<div class="media-body"> <a href="http://www.ehow.com/ehow-mom/blog/3-ingredient-easter-bark/" class="gtm_youMayLike">3-Ingredient Easter Bark</a> </div>
@ -830,7 +830,7 @@ How to Make Paper Sunflowers </h3> </a>
<li class="item row3"> <a href="http://www.ehow.com/privacy.html" class="title">Privacy Policy</a> </li>
<li class="item row3"> <a href="http://www.ehow.com/terms-of-use.html#copyright/" class="title">Report Copyright</a> </li>
<li class="item row3">
<a id="_bapw-link" class="ad-choice" style="cursor:pointer !important"><img id="_bapw-icon" style="display:inline !important;vertical-align:middle !important"> <span style="vertical-align:middle !important">Ad Choices</span></a> <abbr>en-US</abbr> </li>
<a id="_bapw-link" class="ad-choice" style="cursor:pointer !important"><img id="_bapw-icon" style="display:inline !important;vertical-align:middle !important"/> <span style="vertical-align:middle !important">Ad Choices</span></a> <abbr>en-US</abbr> </li>
</ul>
</li>
</ul>
@ -931,4 +931,4 @@ How to Make Paper Sunflowers </h3> </a>
<div class="view-mobile"></div>
</body>
</html>
</html>

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Embedded videos test</title>
</head>
<body>

@ -1,6 +1,6 @@
<div id="readability-page-1" class="page">
<div class="meldung_wrapper">
<figure class="aufmacherbild"> <img src="http://3.f.ix.de/scale/geometry/600/q75/imgs/18/1/4/6/2/3/5/1/Barcode-Scanner-With-Border-fc08c913da5cea5d.jpeg">
<figure class="aufmacherbild"> <img src="http://3.f.ix.de/scale/geometry/600/q75/imgs/18/1/4/6/2/3/5/1/Barcode-Scanner-With-Border-fc08c913da5cea5d.jpeg"/>
<figcaption>
<p class="caption">1Password scannt auch QR-Codes.</p>
<p class="source">(Bild: Hersteller)</p>
@ -11,6 +11,6 @@
<p>Zur TOTP-Nutzung muss zunächst ein Startwert an 1Password übergeben werden. Das geht unter anderem per QR-Code, den die App über ein neues Scanfenster selbst einlesen kann etwa aus dem Webbrowser. Eine Einführung in die Technik gibt <a rel="external" target="_blank" href="http://1pw.ca/TOTPvideoMac">ein kurzes Video</a>. Die TOTP-Unterstützung in 1Password erlaubt es, auf ein zusätzliches Gerät (z.B. ein iPhone) neben dem Mac zu verzichten, das den Code liefert was allerdings auch die Sicherheit verringert, weil es keinen "echten" zweiten Faktor mehr gibt.</p>
<p>Update 5.3 des Passwortmanagers liefert auch noch weitere Verbesserungen. So gibt es die Möglichkeit, FaceTime-Audio- oder Skype-Anrufe aus 1Password zu starten, die Zahl der Zusatzfelder in der Datenbank wurde erweitert und der Umgang mit unterschiedlichen Zeitzonen klappt besser. Die Engine zur Passworteingabe im Browser soll beschleunigt worden sein.</p>
<p>1Password kostet aktuell knapp 50 Euro im Mac App Store und setzt in seiner aktuellen Version mindestens OS X 10.10 voraus. <span class="ISI_IGNORE">(<a title="Ben Schwan" href="mailto:bsc@heise.de">bsc</a>)</span>
<br class="clear"> </p>
<br class="clear"/> </p>
</div>
</div>

@ -2,7 +2,7 @@
<div class="story-body ">
<div class="article-media article-media-main">
<div class="image">
<div class="image-frame"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium" alt="A new Bill would require telecommunications service providers to store so-called metadat"></div>
<div class="image-frame"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium" alt="A new Bill would require telecommunications service providers to store so-called metadat"/></div>
<p class="caption"> <span id="imgCaption" class="caption-text">A new Bill would require telecommunications service providers to store so-called metadata for two years.</span> <span class="image-source"><em>Source:</em>
Supplied</span> </p>
</div>

@ -30,13 +30,13 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="HandheldFriendly" content="true">
<meta name="MobileOptimized" content="320">
<meta http-equiv="cleartype" content="on">
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="address=no">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="HandheldFriendly" content="true"/>
<meta name="MobileOptimized" content="320"/>
<meta http-equiv="cleartype" content="on"/>
<meta name="format-detection" content="telephone=no"/>
<meta name="format-detection" content="address=no"/>
<!--thisPage::>1226616041343 thisMobilePage::>1226586877147 -->
<script>bruce_rtget={"sno": "1", "snol": "h,e,g", "tmstamp": "2015-03-21 11:30:02.973988"};</script>
@ -53,26 +53,26 @@
<title>Angry media wont buckle over new surveillance laws
| Herald Sun</title>
<meta name="description" content="A HIGH-powered federal government team has been doing the rounds of media organisations in the past few days in an attempt to allay concerns about the impact of new surveillance legislation on press freedom. It failed.">
<meta name="keywords" content=" mandatory data retention, legitimate concerns, investigative journalism, journalistic sources, freedom concerns, federal Government team, Inspector General, News Corporation, House of Representatives, RSPCA, Tony Abbott, Bill Shorten, media organisations, national security, media union, press freedom, Government team, Angry media, telecommunications service providers, national security legislation, immediate action, media regulation, national security adviser, journalism foundation, surveillance legislation, media bosses, political editor, exempt journalists, law enforcement agencies, ,,,United Kingdom, Malcolm Bligh Turnbull, George Brandis, Justin Bassi, Andrew Colvin, Stephen Conroy, Laurie Oakes">
<meta name="description" content="A HIGH-powered federal government team has been doing the rounds of media organisations in the past few days in an attempt to allay concerns about the impact of new surveillance legislation on press freedom. It failed."/>
<meta name="keywords" content=" mandatory data retention, legitimate concerns, investigative journalism, journalistic sources, freedom concerns, federal Government team, Inspector General, News Corporation, House of Representatives, RSPCA, Tony Abbott, Bill Shorten, media organisations, national security, media union, press freedom, Government team, Angry media, telecommunications service providers, national security legislation, immediate action, media regulation, national security adviser, journalism foundation, surveillance legislation, media bosses, political editor, exempt journalists, law enforcement agencies, ,,,United Kingdom, Malcolm Bligh Turnbull, George Brandis, Justin Bassi, Andrew Colvin, Stephen Conroy, Laurie Oakes"/>
<!-- primary is not empty-->
<meta property="og:image" content="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image:src" content="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium">
<meta property="og:title" content="Angry media wont buckle over new surveillance laws">
<meta property="og:type" content="article">
<meta property="og:url" content="http://www.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014">
<meta property="og:site_name" content="HeraldSun">
<meta property="fb:app_id" content="135469303148773">
<meta property="og:description" content="A HIGH-powered federal government team has been doing the rounds of media organisations in the past few days in an attempt to allay concerns about the impact of new surveillance legislation on press freedom. It failed.">
<meta property="og:country-name" content="Australia">
<meta name="article:publisher" content="News Limited">
<meta name="article:author" content="Laurie Oakes">
<meta name="article:publicationdate" content="Fri Mar 13 21:30:09 EST 2015">
<meta property="fb:admins" content=",100000875899514">
<link rel="canonical" href="http://www.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014">
<meta name="twitter:site" content="@theheraldsun">
<meta name="twitter:site:id" content="@theheraldsun">
<meta property="og:image" content="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image:src" content="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium"/>
<meta property="og:title" content="Angry media wont buckle over new surveillance laws"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="http://www.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014"/>
<meta property="og:site_name" content="HeraldSun"/>
<meta property="fb:app_id" content="135469303148773"/>
<meta property="og:description" content="A HIGH-powered federal government team has been doing the rounds of media organisations in the past few days in an attempt to allay concerns about the impact of new surveillance legislation on press freedom. It failed."/>
<meta property="og:country-name" content="Australia"/>
<meta name="article:publisher" content="News Limited"/>
<meta name="article:author" content="Laurie Oakes"/>
<meta name="article:publicationdate" content="Fri Mar 13 21:30:09 EST 2015"/>
<meta property="fb:admins" content=",100000875899514"/>
<link rel="canonical" href="http://www.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014"/>
<meta name="twitter:site" content="@theheraldsun"/>
<meta name="twitter:site:id" content="@theheraldsun"/>
<script type="text/javascript">
//<![CDATA[
window.ndm = window.ndm || {};
@ -119,12 +119,12 @@
<!-- Resource Included [{id=1227125511995, type=News_Javascript}]-->
<!-- Resource Included [{id=1226641837720, type=News_Javascript}, {id=1226641840116, type=News_Stylesheet}]-->
<!-- Resource Included [{id=1226866557087, type=News_Stylesheet}, {id=1226766829330, type=News_Javascript}, {id=1226858257711, type=News_Javascript}, {id=1226766829929, type=News_Javascript}]-->
<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/css/site/m.heraldsun/v3/base.css">
<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/css/site/m.heraldsun/v3/story.css">
<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/video/stable/build/player.css">
<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/social/latest/css/base-mobile.css">
<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/metered/current/deployBucketA/themes/default/css/mobile/metered.css">
<link rel="stylesheet" media="screen" type="text/css" href="http://media.news.com.au/nnd/mobile-fixes/hideformobile-module-rule-hotfix.css">
<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/css/site/m.heraldsun/v3/base.css"/>
<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/css/site/m.heraldsun/v3/story.css"/>
<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/video/stable/build/player.css"/>
<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/social/latest/css/base-mobile.css"/>
<link rel="stylesheet" media="screen" type="text/css" href="http://resources.newscdn.com.au/cs/metered/current/deployBucketA/themes/default/css/mobile/metered.css"/>
<link rel="stylesheet" media="screen" type="text/css" href="http://media.news.com.au/nnd/mobile-fixes/hideformobile-module-rule-hotfix.css"/>
<script type="text/javascript" src="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/lib/mobile-vendors-concat-min.js"></script>
<script type="text/javascript" src="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/js/channel/mobile/brandify-concat-min.js"></script>
<script type="text/javascript" async="true" src="http://resources.newscdn.com.au/cs/social/latest/js/main.r.min.js"></script>
@ -133,17 +133,17 @@
//<![CDATA[
//]]>
</script>
<link rel="shortcut icon" href="http://resources.news.com.au/cs/heraldsun/images/favicon.ico" type="image/x-icon">
<link rel="icon" href="http://resources.news.com.au/cs/heraldsun/images/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="http://resources.news.com.au/cs/heraldsun/images/favicon.ico" type="image/x-icon"/>
<link rel="icon" href="http://resources.news.com.au/cs/heraldsun/images/favicon.ico" type="image/x-icon"/>
<!-- Icons for Mobile Devices -->
<!-- For third-generation iPad with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-144x144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-144x144-precomposed.png"/>
<!-- For iPhone with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-144x144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-144x144-precomposed.png"/>
<!-- For first- and second-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-72x72-precomposed.png"/>
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="http://resources.newscdn.com.au/cs/frameworks/prefab/latest/public/img/metros/heraldsun/icons/apple-touch-icon-precomposed.png"/>
<script type="text/javascript">
//<![CDATA[
//]]>
@ -261,8 +261,8 @@ window.envoy_config.identity = {
</script>
<script src="http://tags.news.com.au/prod/trending/hs_m.js?id=1227261886014"></script>
<meta http-equiv="X-UA-Compatible" content="IE=8">
<meta name="robots" content="noarchive">
<meta http-equiv="X-UA-Compatible" content="IE=8"/>
<meta name="robots" content="noarchive"/>
<script type="text/javascript">
//<![CDATA[
ndm.cam.contentTypeRule = 'NON_PREMIUM' === 'PREMIUM' ? 'restricted' : 'free';
@ -509,25 +509,25 @@ window.envoy_config.identity = {
</span>
</legend>
<div class="form-radio-item signin signin-facebook">
<input type="radio" id="service-facebook" value="facebook.com" name="service" class="radio required-field">
<input type="radio" id="service-facebook" value="facebook.com" name="service" class="radio required-field"/>
<label for="service-facebook" class="radio">
<span class="label-text">Login with Facebook</span>
</label>
</div>
<div class="form-radio-item signin signin-twitter">
<input type="radio" id="service-twitter" value="twitter.com" name="service" class="radio required-field">
<input type="radio" id="service-twitter" value="twitter.com" name="service" class="radio required-field"/>
<label for="service-twitter" class="radio">
<span class="label-text">Login with Twitter</span>
</label>
</div>
<div class="form-radio-item signin signin-linkedin">
<input type="radio" id="service-linkedin" value="linkedin.com" name="service" class="radio required-field">
<input type="radio" id="service-linkedin" value="linkedin.com" name="service" class="radio required-field"/>
<label for="service-linkedin" class="radio">
<span class="label-text">Login with LinkedIn</span>
</label>
</div>
<div class="form-radio-item signin signin-google">
<input type="radio" id="service-google" value="google.com" name="service" class="radio required-field">
<input type="radio" id="service-google" value="google.com" name="service" class="radio required-field"/>
<label for="service-google" class="radio">
<span class="label-text">Login with Google</span>
</label>
@ -535,12 +535,12 @@ window.envoy_config.identity = {
</fieldset>
</div>
<div class="form-item fipos-3 frpos-1 form-item-submit">
<input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html">
<input type="hidden" name="channel" value="msite">
<input type="hidden" name="authMethod" value="social">
<input type="hidden" name="site" value="HeraldSun">
<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061">
<input type="hidden" name="location" value="http://saml.cam.idmndm.com">
<input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html"/>
<input type="hidden" name="channel" value="msite"/>
<input type="hidden" name="authMethod" value="social"/>
<input type="hidden" name="site" value="HeraldSun"/>
<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061"/>
<input type="hidden" name="location" value="http://saml.cam.idmndm.com"/>
<button type="submit" class="button-submit"><span>Login</span></button>
</div><!-- // .form-item -->
</fieldset>
@ -555,24 +555,24 @@ window.envoy_config.identity = {
<legend><span class="legend">User Login</span></legend>
<div class="form-item fipos-1">
<label for="cam_username">Username <span class="required"><abbr title="required">*</abbr></span></label>
<input type="text" id="cam_username" name="username" class="required-field email">
<input type="text" id="cam_username" name="username" class="required-field email"/>
</div>
<div class="form-item fipos-2">
<label for="cam_password">Password <span class="required"><abbr title="required">*</abbr></span></label>
<input type="password" id="cam_password" name="password" class="required-field password">
<input type="password" id="cam_password" name="password" class="required-field password"/>
</div>
<div class="form-item fipos-3">
<div class="form-checkbox-item">
<input type="checkbox" id="cam_remember_me" name="remember_me" checked="">
<input type="checkbox" id="cam_remember_me" name="remember_me" checked=""/>
<label for="cam_remember_me">Remember me</label>
</div>
</div>
<div class="form-item fipos-4 form-item-submit">
<input type="hidden" name="channel" value="msite">
<input type="hidden" name="site" value="HeraldSun">
<input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html">
<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061">
<input type="hidden" name="location" value="http://saml.cam.idmndm.com">
<input type="hidden" name="channel" value="msite"/>
<input type="hidden" name="site" value="HeraldSun"/>
<input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html"/>
<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061"/>
<input type="hidden" name="location" value="http://saml.cam.idmndm.com"/>
<button type="submit" class="button-submit"><span>Login</span></button>
</div>
</fieldset>
@ -643,7 +643,7 @@ window.envoy_config.identity = {
<div class="article-media article-media-main">
<div class="image">
<div class="image-frame">
<img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium" alt="A new Bill would require telecommunications service providers to store so-called metadat">
<img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227261885862?format=jpg&amp;group=iphone&amp;size=medium" alt="A new Bill would require telecommunications service providers to store so-called metadat"/>
</div>
<p class="caption">
<span id="imgCaption" class="caption-text">A new Bill would require telecommunications service providers to store so-called metadata for two years.</span>
@ -735,7 +735,7 @@ window.envoy_config.identity = {
<strong class="kicker">Editorial</strong>
<a href="/news/opinion/malcolm-frasers-lasting-legacy/story-fni0ffsx-1227272078989">Frasers lasting legacy</a>
</h4>
<a href="/news/opinion/malcolm-frasers-lasting-legacy/story-fni0ffsx-1227272078989" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272077962?format=jpg&amp;group=iphone&amp;size=small" alt="Frasers lasting legacy" class="thumbnail"></a>
<a href="/news/opinion/malcolm-frasers-lasting-legacy/story-fni0ffsx-1227272078989" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272077962?format=jpg&amp;group=iphone&amp;size=small" alt="Frasers lasting legacy" class="thumbnail"/></a>
<!-- Locale from Config : . Locale from Request : en. Locale from Response : en_US -->
<p class="standfirst">
<span class="article-info">
@ -761,7 +761,7 @@ window.envoy_config.identity = {
<strong class="kicker">Wave of stupidity</strong>
<a href="/news/opinion/doctor-knows-best-not-starbeam-fantapants/story-fni0ffsx-1227272060915">Doctor knows best, not Starbeam Fantapants</a>
</h4>
<a href="/news/opinion/doctor-knows-best-not-starbeam-fantapants/story-fni0ffsx-1227272060915" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272071432?format=jpg&amp;group=iphone&amp;size=small" alt="Doctor knows best, not Starbeam Fantapants" class="thumbnail"></a>
<a href="/news/opinion/doctor-knows-best-not-starbeam-fantapants/story-fni0ffsx-1227272060915" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272071432?format=jpg&amp;group=iphone&amp;size=small" alt="Doctor knows best, not Starbeam Fantapants" class="thumbnail"/></a>
<!-- Locale from Config : . Locale from Request : en. Locale from Response : en_US -->
<p class="standfirst">
<span class="article-info">
@ -792,7 +792,7 @@ window.envoy_config.identity = {
<strong class="kicker">Ikea challenge</strong>
<a href="/news/opinion/ikea-is-good-for-some-but-im-not-buying-it/story-fni0fhie-1227272050794">Good for some, but Im not buying it</a>
</h4>
<a href="/news/opinion/ikea-is-good-for-some-but-im-not-buying-it/story-fni0fhie-1227272050794" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272050710?format=jpg&amp;group=iphone&amp;size=small" alt="Good for some, but Im not buying it" class="thumbnail"></a>
<a href="/news/opinion/ikea-is-good-for-some-but-im-not-buying-it/story-fni0fhie-1227272050794" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272050710?format=jpg&amp;group=iphone&amp;size=small" alt="Good for some, but Im not buying it" class="thumbnail"/></a>
<!-- Locale from Config : . Locale from Request : en. Locale from Response : en_US -->
<p class="standfirst">
<span class="article-info">
@ -823,7 +823,7 @@ window.envoy_config.identity = {
<strong class="kicker">True liberal</strong>
<a href="/news/opinion/malcolm-fraser-was-a-man-of-contrasts/story-fni0fha6-1227272039501">Ex-PM a man of contrasts</a>
</h4>
<a href="/news/opinion/malcolm-fraser-was-a-man-of-contrasts/story-fni0fha6-1227272039501" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272037318?format=jpg&amp;group=iphone&amp;size=small" alt="Ex-PM a man of contrasts" class="thumbnail"></a>
<a href="/news/opinion/malcolm-fraser-was-a-man-of-contrasts/story-fni0fha6-1227272039501" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272037318?format=jpg&amp;group=iphone&amp;size=small" alt="Ex-PM a man of contrasts" class="thumbnail"/></a>
<!-- Locale from Config : . Locale from Request : en. Locale from Response : en_US -->
<p class="standfirst">
<span class="article-info">
@ -854,7 +854,7 @@ window.envoy_config.identity = {
<strong class="kicker">Own backyard</strong>
<a href="/news/opinion/lets-make-local-issues-a-priority/story-fni0ffsx-1227272010784">Lets make local issues a priority</a>
</h4>
<a href="/news/opinion/lets-make-local-issues-a-priority/story-fni0ffsx-1227272010784" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272009394?format=jpg&amp;group=iphone&amp;size=small" alt="Lets make local issues a priority" class="thumbnail"></a>
<a href="/news/opinion/lets-make-local-issues-a-priority/story-fni0ffsx-1227272010784" class="thumb-link"><img data-src="http://api.news.com.au/content/1.0/heraldsun/images/1227272009394?format=jpg&amp;group=iphone&amp;size=small" alt="Lets make local issues a priority" class="thumbnail"/></a>
<!-- Locale from Config : . Locale from Request : en. Locale from Response : en_US -->
<p class="standfirst">
<span class="article-info">
@ -890,7 +890,7 @@ window.envoy_config.identity = {
<div class="item ipos-1 irpos-1">
<div class="esi_fragment">
<div class="most-popular"><div class="module-header"><h3 class="heading">Most Popular Stories</h3></div> <div class="module most-popular "><div class="module-content"><ol><li class="lipos-1 lirpos-5"><a href="http://www.heraldsun.com.au/entertainment/confidential/wifes-fury-at-hawthorn-husbands-million-dollar-gamble/story-fnn7ma1h-1227271771330?sv=df95c2a03e18b583f7f54541951f2017">Wifes fury at hubbys million dollar gamble</a></li><li class="lipos-2 lirpos-4"><a href="http://www.heraldsun.com.au/sport/cricket/australia-v-pakistan-live-coverage-of-cricket-world-cup-2015-quarter-final-at-adelaide-oval/story-fnq1ugvn-1227271183293?sv=95140b10c5a6b3327f331184667b7101">Australia passes fierce Pakistan test</a></li><li class="lipos-3 lirpos-3"><a href="http://www.heraldsun.com.au/news/law-order/masa-vukotics-brave-dad-comes-face-to-face-with-accused-killer-sean-christian-price/story-fni0fee2-1227272036011?sv=abb755bd4ae48d7229b821ba9bd37c4b">Masas brave dad faces accused killer</a></li><li class="lipos-4 lirpos-2"><a href="http://www.heraldsun.com.au/news/law-order/police-allege-masa-vukotics-accused-killer-sean-christian-price-went-on-orgy-of-violence-before-surrender/story-fni0fee2-1227271332272?sv=19cd7b2abf1a89d6eb84d5b52580aa8">Police allege Price went on 90-minute rampage</a></li><li class="lipos-5 lirpos-1"><a href="http://www.heraldsun.com.au/news/law-order/fallen-afl-star-ben-cousins-dodges-bullet-with-latest-drug-relapse/story-fni0fee2-1227271552942?sv=5053c480d78ab9737e526145e7efff47">This time Cousins really dodged a bullet</a></li></ol></div></div>
<img src="http://tcog.news.com.au/track/news/content/v1/?category=/section/heraldsun.com.au/collection/popular-content/all/24hours/&amp;format=module&amp;t_product=most-popular-mobile&amp;maxRelated=5&amp;t_template=popular-plain&amp;origin=omniture&amp;domain=heraldsun.com.au" style="opacity:0; height:0px; width:0px; position:absolute;" width="0" height="0">
<img src="http://tcog.news.com.au/track/news/content/v1/?category=/section/heraldsun.com.au/collection/popular-content/all/24hours/&amp;format=module&amp;t_product=most-popular-mobile&amp;maxRelated=5&amp;t_template=popular-plain&amp;origin=omniture&amp;domain=heraldsun.com.au" style="opacity:0; height:0px; width:0px; position:absolute;" width="0" height="0"/>
</div>
</div>
</div><!-- // .item ipos-1 irpos-1 -->
@ -933,25 +933,25 @@ window.envoy_config.identity = {
</span>
</legend>
<div class="form-radio-item signin signin-facebook">
<input type="radio" id="service-facebook" value="facebook.com" name="service" class="radio required-field">
<input type="radio" id="service-facebook" value="facebook.com" name="service" class="radio required-field"/>
<label for="service-facebook" class="radio">
<span class="label-text">Login with Facebook</span>
</label>
</div>
<div class="form-radio-item signin signin-twitter">
<input type="radio" id="service-twitter" value="twitter.com" name="service" class="radio required-field">
<input type="radio" id="service-twitter" value="twitter.com" name="service" class="radio required-field"/>
<label for="service-twitter" class="radio">
<span class="label-text">Login with Twitter</span>
</label>
</div>
<div class="form-radio-item signin signin-linkedin">
<input type="radio" id="service-linkedin" value="linkedin.com" name="service" class="radio required-field">
<input type="radio" id="service-linkedin" value="linkedin.com" name="service" class="radio required-field"/>
<label for="service-linkedin" class="radio">
<span class="label-text">Login with LinkedIn</span>
</label>
</div>
<div class="form-radio-item signin signin-google">
<input type="radio" id="service-google" value="google.com" name="service" class="radio required-field">
<input type="radio" id="service-google" value="google.com" name="service" class="radio required-field"/>
<label for="service-google" class="radio">
<span class="label-text">Login with Google</span>
</label>
@ -959,12 +959,12 @@ window.envoy_config.identity = {
</fieldset>
</div>
<div class="form-item fipos-3 frpos-1 form-item-submit">
<input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html">
<input type="hidden" name="channel" value="msite">
<input type="hidden" name="authMethod" value="social">
<input type="hidden" name="site" value="HeraldSun">
<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061">
<input type="hidden" name="location" value="http://saml.cam.idmndm.com">
<input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html"/>
<input type="hidden" name="channel" value="msite"/>
<input type="hidden" name="authMethod" value="social"/>
<input type="hidden" name="site" value="HeraldSun"/>
<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061"/>
<input type="hidden" name="location" value="http://saml.cam.idmndm.com"/>
<button type="submit" class="button-submit"><span>Login</span></button>
</div><!-- // .form-item -->
</fieldset>
@ -979,24 +979,24 @@ window.envoy_config.identity = {
<legend><span class="legend">User Login</span></legend>
<div class="form-item fipos-1">
<label for="cam_username">Username <span class="required"><abbr title="required">*</abbr></span></label>
<input type="text" id="cam_username" name="username" class="required-field email">
<input type="text" id="cam_username" name="username" class="required-field email"/>
</div>
<div class="form-item fipos-2">
<label for="cam_password">Password <span class="required"><abbr title="required">*</abbr></span></label>
<input type="password" id="cam_password" name="password" class="required-field password">
<input type="password" id="cam_password" name="password" class="required-field password"/>
</div>
<div class="form-item fipos-3">
<div class="form-checkbox-item">
<input type="checkbox" id="cam_remember_me" name="remember_me" checked="">
<input type="checkbox" id="cam_remember_me" name="remember_me" checked=""/>
<label for="cam_remember_me">Remember me</label>
</div>
</div>
<div class="form-item fipos-4 form-item-submit">
<input type="hidden" name="channel" value="msite">
<input type="hidden" name="site" value="HeraldSun">
<input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html">
<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061">
<input type="hidden" name="location" value="http://saml.cam.idmndm.com">
<input type="hidden" name="channel" value="msite"/>
<input type="hidden" name="site" value="HeraldSun"/>
<input type="hidden" name="cancelUrl" value="http://m.heraldsun.com.au/remote/talogin-error.html"/>
<input type="hidden" name="relayState" value="http://m.heraldsun.com.au/news/opinion/angry-media-wont-buckle-over-new-surveillance-laws/story-fni0fha6-1227261886014?nk=e65db50ff7e443a778cb38df8e9ad061"/>
<input type="hidden" name="location" value="http://saml.cam.idmndm.com"/>
<button type="submit" class="button-submit"><span>Login</span></button>
</div>
</fieldset>
@ -1189,4 +1189,4 @@ window.envoy_config.identity = {
</div><!-- // #page -->
</body></html>
</body></html>

@ -0,0 +1,6 @@
{
"title": "Getting LEAN with Digital Ad UX | IAB",
"byline": "By\n\t\t\tScott Cunningham",
"excerpt": "We messed up. As technologists, tasked with delivering content and services to users, we lost track of the user experience. Twenty years ago we saw an explosion of websites, built by developers around the world, providing all forms of content. This was the beginning of an age of enlightenment, the intersection of content and technology. … Continued",
"readerable": true
}

@ -0,0 +1,30 @@
<div id="readability-page-1" class="page">
<div class="article__content">
<p>We messed up. As technologists, tasked with delivering content and services to users, we lost track of the user experience.</p>
<p>Twenty years ago we saw an explosion of websites, built by developers around the world, providing all forms of content. This was the beginning of an age of enlightenment, the intersection of content and technology. Many of us in the technical field felt compelled, and even empowered, to produce information as the distribution means for mass communication were no longer restricted by a high barrier to entry.</p>
<p>In 2000, the dark ages came when the dot-com bubble burst. We were told that our startups were gone or that our divisions sustained by corporate parent companies needed to be in the black. It was a wakeup call that led to a renaissance age. Digital advertising became the foundation of an economic engine that, still now, sustains the free and democratic World Wide Web. In digital publishing, we strived to balance content, commerce, and technology. The content management systems and communication gateways we built to inform and entertain populations around the world disrupted markets and in some cases governments, informed communities of imminent danger, and liberated new forms of art and entertainment—all while creating a digital middle class of small businesses.</p>
<p>We engineered not just the technical, but also the social and economic foundation that users around the world came to lean on for access to real time information. And users came to expect this information whenever and wherever they needed it. And more often than not, for anybody with a connected device, it was free.</p>
<p>This was choice—powered by digital advertising—and premised on user experience.</p>
<p>But we messed up.</p>
<p>Through our pursuit of further automation and maximization of margins during the industrial age of media technology, we built advertising technology to optimize publishers yield of marketing budgets that had eroded after the last recession. Looking back now, our scraping of dimes may have cost us dollars in consumer loyalty. The fast, scalable systems of targeting users with ever-heftier advertisements have slowed down the public internet and drained more than a few batteries. We were so clever and so good at it that we over-engineered the capabilities of the plumbing laid down by, well, ourselves. This steamrolled the users, depleted their devices, and tried their patience.</p>
<p>The rise of ad blocking poses a threat to the internet and could potentially drive users to an enclosed platform world dominated by a few companies. We have let the fine equilibrium of content, commerce, and technology get out of balance in the open web. We had, and still do have, a responsibility to educate the business side, and in some cases to push back. We lost sight of our social and ethical responsibility to provide a safe, usable experience for anyone and everyone wanting to consume the content of their choice.</p>
<p>We need to bring that back into alignment, starting right now.</p>
<p>
<a href="http://www.iab.com/wp-content/uploads/2015/10/getting-lean-with-digital-ad-ux.jpg"><img width="300" height="250" alt="Getting LEAN with Digital Ad UX" src="http://www.iab.com/wp-content/uploads/2015/10/getting-lean-with-digital-ad-ux-300x250.jpg" class="alignnone size-medium wp-image-15403"/></a>Today, the IAB Tech Lab is launching the L.E.A.N. Ads program. Supported by the Executive Committee of the IAB Tech Lab Board, IABs around the world, and hundreds of member companies, L.E.A.N. stands for Light, Encrypted, Ad choice supported, Non-invasive ads. These are principles that will help guide the next phases of advertising technical standards for the global digital advertising supply chain.</p>
<p>As with any other industry, standards should be created by non-profit standards-setting bodies, with many diverse voices providing input. We will invite all parties for public comment, and make sure consumer interest groups have the opportunity to provide input.</p>
<p>L.E.A.N. Ads do not replace the current advertising standards many consumers still enjoy and engage with while consuming content on our sites across all IP enabled devices. Rather, these principles will guide an alternative set of standards that provide choice for marketers, content providers, and consumers.</p>
<p>Among the many areas of concentration, we must also address frequency capping on retargeting in Ad Tech and make sure a user is targeted appropriately before, but never AFTER they make a purchase. If we are so good at reach and scale, we can be just as good, if not better, at moderation. Additionally, we must address volume of ads per page as well as continue on the path to viewability. The dependencies here are critical to an optimized user experience.</p>
<p>The consumer is demanding these actions, challenging us to do better, and we must respond.</p>
<p>The IAB Tech Lab will continue to provide the tools for publishers in the digital supply chain to have a dialogue with users about their choices so that content providers can generate revenue while creating value. Publishers should have the opportunity to provide rich advertising experiences, L.E.A.N. advertising experiences, and subscription services. Or publishers can simply deny their service to users who choose to keep on blocking ads. That is all part of elasticity of consumer tolerance and choice.</p>
<p>Finally, we must do this in an increasingly fragmented market, across screens. We must do this in environments where entire sites are blocked, purposefully or not. Yes, it is disappointing that our development efforts will have to manage with multiple frameworks while we work to supply the economic engine to sustain an open internet. However, our goal is still to provide diverse content and voices to as many connected users as possible around the world.</p>
<p>That is user experience.</p>
<table>
<tbody>
<tr>
<td>IAB Tech Lab Members can join the IAB Tech Lab Ad Blocking Working Group, please email <a href="mailto:adblocking@iab.com">adblocking@iab.com</a> for more information.</td>
</tr>
</tbody>
</table>
<p>Read <a target="_blank" href="http://www.iab.com/insights/ad-blocking/">more about ad blocking here</a>.</p>
</div>
</div>

File diff suppressed because one or more lines are too long

@ -1,8 +1,8 @@
<div id="readability-page-1" class="page"> <span class="pre noprint docinfo top">[<a href="http://fakehost/test/../html/" title="Document search and retrieval page">Docs</a>] [<a href="https://tools.ietf.org/id/draft-dejong-remotestorage-04.txt" title="Plaintext version of this document">txt</a>|<a href="http://fakehost/pdf/draft-dejong-remotestorage-04.txt" title="PDF version of this document">pdf</a>] [<a href="https://datatracker.ietf.org/doc/draft-dejong-remotestorage" title="IESG Datatracker information for this document">Tracker</a>] [<a href="mailto:draft-dejong-remotestorage@tools.ietf.org?subject=draft-dejong-remotestorage%20" title="Send email to the document authors">Email</a>] [<a href="http://fakehost/rfcdiff?difftype=--hwdiff&amp;url2=draft-dejong-remotestorage-04.txt" title="Inline diff (wdiff)">Diff1</a>] [<a href="http://fakehost/rfcdiff?url2=draft-dejong-remotestorage-04.txt" title="Side-by-side diff">Diff2</a>] [<a href="http://fakehost/idnits?url=https://tools.ietf.org/id/draft-dejong-remotestorage-04.txt" title="Run an idnits check of this document">Nits</a>] </span>
<br> <span class="pre noprint docinfo"> </span>
<br> <span class="pre noprint docinfo">Versions: <a href="http://fakehost/test/draft-dejong-remotestorage-00">00</a> <a href="http://fakehost/test/draft-dejong-remotestorage-01">01</a> <a href="http://fakehost/test/draft-dejong-remotestorage-02">02</a> <a href="http://fakehost/test/draft-dejong-remotestorage-03">03</a> <a href="http://fakehost/test/draft-dejong-remotestorage-04">04</a> </span>
<br> <span class="pre noprint docinfo"> </span>
<br> <pre>INTERNET DRAFT Michiel B. de Jong
<br/> <span class="pre noprint docinfo"> </span>
<br/> <span class="pre noprint docinfo">Versions: <a href="http://fakehost/test/draft-dejong-remotestorage-00">00</a> <a href="http://fakehost/test/draft-dejong-remotestorage-01">01</a> <a href="http://fakehost/test/draft-dejong-remotestorage-02">02</a> <a href="http://fakehost/test/draft-dejong-remotestorage-03">03</a> <a href="http://fakehost/test/draft-dejong-remotestorage-04">04</a> </span>
<br/> <span class="pre noprint docinfo"> </span>
<br/> <pre>INTERNET DRAFT Michiel B. de Jong
Document: <a href="http://fakehost/test/draft-dejong-remotestorage-04">draft-dejong-remotestorage-04</a> IndieHosters
F. Kooman
Intended Status: Proposed Standard (independent)
@ -1107,6 +1107,6 @@ charset=UTF-8","Content-Length":106}}}
de Jong [Page 22]
</pre>
<br> <span class="noprint"><small><small>Html markup produced by rfcmarkup 1.111, available from
<br/> <span class="noprint"><small><small>Html markup produced by rfcmarkup 1.111, available from
<a href="https://tools.ietf.org/tools/rfcmarkup/">https://tools.ietf.org/tools/rfcmarkup/</a>
</small></small></span> </div>

@ -4,13 +4,13 @@
<div class="section-content">
<div class="section-inner u-sizeFullWidth">
<figure name="b9ad" id="b9ad" class="graf--figure postField--fillWidthImage graf--first">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*sLDnS1UWEFIS33uLMxq3cw.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*sLDnS1UWEFIS33uLMxq3cw.jpeg"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*sLDnS1UWEFIS33uLMxq3cw.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*sLDnS1UWEFIS33uLMxq3cw.jpeg"/></div>
</figure>
</div>
<div class="section-inner layoutSingleColumn">
<h4 name="9736" id="9736" data-align="center" class="graf--h4">Welcome to DoctorXs Barcelona lab, where the drugs you bought online are tested for safety and purity. No questions asked.</h4>
<figure name="7417" id="7417" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*3vIhkoHIzcxvUdijoCVx6w.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*3vIhkoHIzcxvUdijoCVx6w.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*3vIhkoHIzcxvUdijoCVx6w.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*3vIhkoHIzcxvUdijoCVx6w.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*3vIhkoHIzcxvUdijoCVx6w.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*3vIhkoHIzcxvUdijoCVx6w.png"/></div>
</figure>
<p name="8a83" id="8a83" class="graf--p">Standing at a table in a chemistry lab in Barcelona, Cristina Gil Lladanosa tears open a silver, smell-proof protective envelope. She slides out a transparent bag full of crystals. Around her, machines whir and hum, and other researchers mill around in long, white coats.</p>
<p name="b675" id="b675" class="graf--p">She is holding the labs latest delivery of a drug bought from the “deep web,” the clandestine corner of the internet that isnt reachable by normal search engines, and is home to some sites that require special software to access. Labeled as <a href="http://en.wikipedia.org/wiki/MDMA" data-href="http://en.wikipedia.org/wiki/MDMA" class="markup--anchor markup--p-anchor" rel="nofollow">MDMA</a> (the street term is ecstasy), this sample has been shipped from Canada. Lladanosa and her colleague Iván Fornís Espinosa have also received drugs, anonymously, from people in China, Australia, Europe and the United States.</p>
@ -18,7 +18,7 @@
</div>
<div class="section-inner u-sizeFullWidth">
<figure name="c4e6" id="c4e6" class="graf--figure postField--fillWidthImage">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*4gN1-fzOwCniw-DbqQjDeQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*4gN1-fzOwCniw-DbqQjDeQ.jpeg"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*4gN1-fzOwCniw-DbqQjDeQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*4gN1-fzOwCniw-DbqQjDeQ.jpeg"/></div>
<figcaption class="imageCaption">Cristina Gil Lladanosa, at the Barcelona testing lab | photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -29,7 +29,7 @@
</div>
<div class="section-inner u-sizeFullWidth">
<figure name="559c" id="559c" class="graf--figure postField--fillWidthImage">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*2KPmZkIBUrhps-2uwDvYFQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*2KPmZkIBUrhps-2uwDvYFQ.jpeg"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*2KPmZkIBUrhps-2uwDvYFQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*2KPmZkIBUrhps-2uwDvYFQ.jpeg"/></div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -39,7 +39,7 @@
</div>
<div class="section-inner u-sizeFullWidth">
<figure name="d6aa" id="d6aa" class="graf--figure postField--fillWidthImage">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*PU40bbbox2Ompc5I3RE99A.jpeg" data-width="2013" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*PU40bbbox2Ompc5I3RE99A.jpeg"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*PU40bbbox2Ompc5I3RE99A.jpeg" data-width="2013" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*PU40bbbox2Ompc5I3RE99A.jpeg"/></div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -49,13 +49,13 @@
<p name="2644" id="2644" class="graf--p">About a week after testing, those results are sent in a PDF to an email address provided by the anonymous client.</p>
<p name="9f91" id="9f91" class="graf--p graf--startsWithDoubleQuote">“The process is quite boring, because you are in a routine,” Lladanosa says. But one part of the process is consistently surprising: that moment when the results pop up on the screen. “Every time its something different.” For instance, one cocaine sample she had tested also contained phenacetin, a painkiller added to increase the products weight; lidocaine, an anesthetic that numbs the gums, giving the impression that the user is taking higher quality cocaine; and common caffeine.</p>
<figure name="b821" id="b821" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"/></div>
</figure>
<p name="39a6" id="39a6" class="graf--p">The deep web drug lab is the brainchild of Fernando Caudevilla, a Spanish physician who is better known as “DoctorX” on the deep web, a nickname given to him by his Energy Control co-workers because of his earlier writing about the history, risks and recreational culture of MDMA. In the physical world, Caudevilla has worked for over a decade with Energy Control on various harm reduction focused projects, most of which have involved giving Spanish illegal drug users medical guidance, and often writing leaflets about the harms of certain substances.</p>
</div>
<div class="section-inner u-sizeFullWidth">
<figure name="eebc" id="eebc" class="graf--figure postField--fillWidthImage">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*mKvUNOAVQxl6atCbxbCZsg.jpeg" data-width="2100" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*mKvUNOAVQxl6atCbxbCZsg.jpeg"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*mKvUNOAVQxl6atCbxbCZsg.jpeg" data-width="2100" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*mKvUNOAVQxl6atCbxbCZsg.jpeg"/></div>
<figcaption class="imageCaption">Fernando Caudevilla, AKA DoctorX. Photo: Joseph Cox</figcaption>
</figure>
</div>
@ -68,13 +68,13 @@
</div>
<div class="section-inner u-sizeFullWidth">
<figure name="4058" id="4058" class="graf--figure postField--fillWidthImage">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*knT10_FNVUmqQIBLnutmzQ.jpeg" data-width="4400" data-height="3141" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*knT10_FNVUmqQIBLnutmzQ.jpeg"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*knT10_FNVUmqQIBLnutmzQ.jpeg" data-width="4400" data-height="3141" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*knT10_FNVUmqQIBLnutmzQ.jpeg"/></div>
<figcaption class="imageCaption">Photo: Joseph Cox</figcaption>
</figure>
</div>
<div class="section-inner layoutSingleColumn">
<figure name="818c" id="818c" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"/></div>
</figure>
<p name="7b5e" id="7b5e" class="graf--p">While the Energy Control lab in Madrid lab only tests Spanish drugs from various sources, it is the Barcelona location which vets the substances bought in the shadowy recesses of of the deep web. Caudevilla no longer runs it, having handed it over to his colleague Ana Muñoz. She maintains a presence on the deep web forums, answers questions from potential users, and sends back reports when they are ready.</p>
<p name="0f0e" id="0f0e" class="graf--p">The testing program exists in a legal grey area. The people who own the Barcelona lab are accredited to experiment with and handle drugs, but Energy Control doesnt have this permission itself, at least not in writing.</p>
@ -83,7 +83,7 @@
</div>
<div class="section-inner u-sizeFullWidth">
<figure name="b885" id="b885" class="graf--figure postField--fillWidthImage">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*Vr61dyCTRwk6CemmVF8YAQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*Vr61dyCTRwk6CemmVF8YAQ.jpeg"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*Vr61dyCTRwk6CemmVF8YAQ.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*Vr61dyCTRwk6CemmVF8YAQ.jpeg"/></div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -97,13 +97,13 @@
</div>
<div class="section-inner u-sizeFullWidth">
<figure name="8544" id="8544" class="graf--figure postField--fillWidthImage">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*a-1_13xE6_ErQ-QSlz6myw.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*a-1_13xE6_ErQ-QSlz6myw.jpeg"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*a-1_13xE6_ErQ-QSlz6myw.jpeg" data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*a-1_13xE6_ErQ-QSlz6myw.jpeg"/></div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
</div>
<div class="section-inner layoutSingleColumn">
<figure name="d521" id="d521" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*ohyycinH18fz98TCyUzVgQ.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"/></div>
</figure>
<p name="126b" id="126b" class="graf--p">Despite the prevalence of people using the service to gauge the quality of what goes up their nose, many users send samples to Energy Control in the spirit of its original mission: keeping themselves alive and healthy. The worst case scenario from drugs purchased on the deep web is, well the worst case. That was the outcome when <a href="http://www.independent.co.uk/news/uk/crime/teenager-patrick-mcmullen-who-died-while-on-skype-had-bought-drugs-from-silk-road-8942329.html" data-href="http://www.independent.co.uk/news/uk/crime/teenager-patrick-mcmullen-who-died-while-on-skype-had-bought-drugs-from-silk-road-8942329.html" class="markup--anchor markup--p-anchor" rel="nofollow">Patrick McMullen,</a> a 17-year-old Scottish student, ingested half a gram of MDMA and three tabs of LSD, reportedly purchased from the Silk Road. While talking to his friends on Skype, his words became slurred and he passed out. Paramedics could not revive him. The coroner for that case, Sherrif Payne, who deemed the cause of death ecstasy toxicity, told <em class="markup--em markup--p-em">The Independent</em> “You never know the purity of what you are taking and you can easily come unstuck.”</p>
<p name="5e9e" id="5e9e" class="graf--p">ScreamMyName, a deep web user who has been active since the original Silk Road, wants to alert users to the dangerous chemicals that are often mixed with drugs, and is using Energy Control as a means to do so.</p>
@ -114,7 +114,7 @@
</div>
<div class="section-inner u-sizeFullWidth">
<figure name="552a" id="552a" class="graf--figure postField--fillWidthImage">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*IWXhtSsVv0gNnCwnDEXk-Q.jpeg" data-width="2100" data-height="1192" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*IWXhtSsVv0gNnCwnDEXk-Q.jpeg"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*IWXhtSsVv0gNnCwnDEXk-Q.jpeg" data-width="2100" data-height="1192" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*IWXhtSsVv0gNnCwnDEXk-Q.jpeg"/></div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -125,7 +125,7 @@
</div>
<div class="section-inner u-sizeFullWidth">
<figure name="9d32" id="9d32" class="graf--figure postField--fillWidthImage">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*NGcrjfkV0l37iQH2uyYjEw.jpeg" data-width="1368" data-height="913" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*NGcrjfkV0l37iQH2uyYjEw.jpeg"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*NGcrjfkV0l37iQH2uyYjEw.jpeg" data-width="1368" data-height="913" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*NGcrjfkV0l37iQH2uyYjEw.jpeg"/></div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -141,7 +141,7 @@
</div>
<div class="section-inner u-sizeFullWidth">
<figure name="890b" id="890b" class="graf--figure postField--fillWidthImage">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*WRlKt3q3mt7utmwxcbl3sQ.jpeg" data-width="2100" data-height="1373" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*WRlKt3q3mt7utmwxcbl3sQ.jpeg"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*WRlKt3q3mt7utmwxcbl3sQ.jpeg" data-width="2100" data-height="1373" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*WRlKt3q3mt7utmwxcbl3sQ.jpeg"/></div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
</div>
@ -149,7 +149,7 @@
<p name="b109" id="b109" class="graf--p graf--startsWithDoubleQuote">“In the white market, they have quality control. In the dark market, it should be the same,” Cristina Gil Lladanosa says to me before I leave the Barcelona lab.</p>
<p name="e3a4" id="e3a4" class="graf--p">A week after I visit the lab, the results of the MDMA arrive in my inbox: it is 85 percent pure, with no indications of other active ingredients. Whoever ordered that sample from the digital shelves of the deep web, and had it shipped to their doorstep in Canada, got hold of some seriously good, and relatively safe drugs. And now they know it.</p>
<figure name="31cf" id="31cf" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*320_4I0lxbn5x3bx4XPI5Q.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*320_4I0lxbn5x3bx4XPI5Q.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*320_4I0lxbn5x3bx4XPI5Q.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*320_4I0lxbn5x3bx4XPI5Q.png" data-width="1200" data-height="24" data-action="zoom" data-action-value="1*320_4I0lxbn5x3bx4XPI5Q.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*320_4I0lxbn5x3bx4XPI5Q.png"/></div>
</figure>
<p name="9b87" id="9b87" data-align="center" class="graf--p"><em class="markup--em markup--p-em">Top photo by Joan Bardeletti</em> </p>
<p name="c30a" id="c30a" data-align="center" class="graf--p graf--last">Follow Backchannel: <a href="https://twitter.com/backchnnl" data-href="https://twitter.com/backchnnl" class="markup--anchor markup--p-anchor" rel="nofollow"><em class="markup--em markup--p-em">Twitter</em></a> <em class="markup--em markup--p-em">|</em><a href="https://www.facebook.com/pages/Backchannel/1488568504730671" data-href="https://www.facebook.com/pages/Backchannel/1488568504730671" class="markup--anchor markup--p-anchor" rel="nofollow"><em class="markup--em markup--p-em">Facebook</em></a> </p>

@ -2,41 +2,41 @@
<html>
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# medium-com: http://ogp.me/ns/fb/medium-com#">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"
user-scalable="no">
user-scalable="no"/>
<title>Inside the Deep Web Drug Lab — Backchannel — Medium</title>
<link rel="canonical"
href="https://medium.com/backchannel/inside-the-deep-web-drug-lab-9718cd0fe504">
<meta name="title" content="Inside the Deep Web Drug Lab">
<meta name="referrer" content="always">
<meta name="description" content="Welcome to DoctorXs Barcelona lab, where the drugs you bought online are tested for safety and purity. No questions ask…">
<meta property="og:site_name" content="Medium">
<meta property="og:title" content="Inside the Deep Web Drug Lab">
<meta property="og:url" content="https://medium.com/backchannel/inside-the-deep-web-drug-lab-9718cd0fe504">
<meta property="og:image" content="https://d262ilb51hltx0.cloudfront.net/max/800/1*sLDnS1UWEFIS33uLMxq3cw.jpeg">
<meta property="fb:app_id" content="542599432471018">
<meta property="og:description" content="Welcome to DoctorXs Barcelona lab, where the drugs you bought online are tested for safety and purity. No questions ask…">
<meta name="twitter:site" content="@Medium">
<meta name="twitter:image:src" content="https://d262ilb51hltx0.cloudfront.net/max/800/1*sLDnS1UWEFIS33uLMxq3cw.jpeg">
<link rel="publisher" href="https://plus.google.com/103654360130207659246">
<link rel="author" href="https://medium.com/@josephfcox">
<meta name="author" content="Joseph Cox">
<meta property="og:type" content="article">
<meta name="twitter:card" content="summary_large_image">
<meta property="article:publisher" content="https://www.facebook.com/medium">
<meta property="article:author" content="https://medium.com/@josephfcox">
<meta property="article:published_time" content="2015-03-27T13:07:55.096Z">
<meta name="twitter:creator" content="@josephfcox">
<meta name="apple-itunes-app" content="app-id=828256236, app-argument=medium:/p/9718cd0fe504">
<meta name="twitter:app:name:iphone" content="Medium">
<meta name="twitter:app:id:iphone" content="828256236">
<meta name="twitter:app:url:iphone" content="medium:/p/9718cd0fe504">
<meta property="al:ios:app_name" content="Medium">
<meta property="al:ios:app_store_id" content="828256236">
<meta property="al:ios:url" content="medium:/p/9718cd0fe504">
<meta property="al:web:url" content="https://medium.com/backchannel/inside-the-deep-web-drug-lab-9718cd0fe504">
<meta name="theme-color" content="#000000">
href="https://medium.com/backchannel/inside-the-deep-web-drug-lab-9718cd0fe504"/>
<meta name="title" content="Inside the Deep Web Drug Lab"/>
<meta name="referrer" content="always"/>
<meta name="description" content="Welcome to DoctorXs Barcelona lab, where the drugs you bought online are tested for safety and purity. No questions ask…"/>
<meta property="og:site_name" content="Medium"/>
<meta property="og:title" content="Inside the Deep Web Drug Lab"/>
<meta property="og:url" content="https://medium.com/backchannel/inside-the-deep-web-drug-lab-9718cd0fe504"/>
<meta property="og:image" content="https://d262ilb51hltx0.cloudfront.net/max/800/1*sLDnS1UWEFIS33uLMxq3cw.jpeg"/>
<meta property="fb:app_id" content="542599432471018"/>
<meta property="og:description" content="Welcome to DoctorXs Barcelona lab, where the drugs you bought online are tested for safety and purity. No questions ask…"/>
<meta name="twitter:site" content="@Medium"/>
<meta name="twitter:image:src" content="https://d262ilb51hltx0.cloudfront.net/max/800/1*sLDnS1UWEFIS33uLMxq3cw.jpeg"/>
<link rel="publisher" href="https://plus.google.com/103654360130207659246"/>
<link rel="author" href="https://medium.com/@josephfcox"/>
<meta name="author" content="Joseph Cox"/>
<meta property="og:type" content="article"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta property="article:publisher" content="https://www.facebook.com/medium"/>
<meta property="article:author" content="https://medium.com/@josephfcox"/>
<meta property="article:published_time" content="2015-03-27T13:07:55.096Z"/>
<meta name="twitter:creator" content="@josephfcox"/>
<meta name="apple-itunes-app" content="app-id=828256236, app-argument=medium:/p/9718cd0fe504"/>
<meta name="twitter:app:name:iphone" content="Medium"/>
<meta name="twitter:app:id:iphone" content="828256236"/>
<meta name="twitter:app:url:iphone" content="medium:/p/9718cd0fe504"/>
<meta property="al:ios:app_name" content="Medium"/>
<meta property="al:ios:app_store_id" content="828256236"/>
<meta property="al:ios:url" content="medium:/p/9718cd0fe504"/>
<meta property="al:web:url" content="https://medium.com/backchannel/inside-the-deep-web-drug-lab-9718cd0fe504"/>
<meta name="theme-color" content="#000000"/>
<script type="text/javascript" src="http://www.google-analytics.com/ga.js"></script>
<script>
if (window.top !== window.self) window.top.location = window.self.location.href;var OB_startTime = new Date().getTime(); var OB_fontLoaded = 0; var OB_loadErrors = []; function _onerror(e) { OB_loadErrors.push(e) }; if (document.addEventListener) document.addEventListener("error", _onerror, true); else if (document.attachEvent) document.attachEvent("onerror", _onerror); function _asyncScript(u) {var d = document, f = d.getElementsByTagName("script")[0], s = d.createElement("script"); s.type = "text/javascript"; s.async = true; s.src = u; f.parentNode.insertBefore(s, f);}function _asyncStyles(u) {var d = document, f = d.getElementsByTagName("script")[0], s = d.createElement("link"); s.rel = "stylesheet"; s.href = u; f.parentNode.insertBefore(s, f); return s}var _gaq = _gaq || []; _gaq.push(["_setAccount", "UA-24232453-2"]); _gaq.push(["_setDomainName", window.location.hostname]); _gaq.push(["_setAllowLinker", true]); _gaq.push(["_trackPageview"]); _asyncScript(("https:" == document.location.protocol ? "https://ssl" : "http://www") + ".google-analytics.com/ga.js");(new Image()).src = "/_/stat?event=pixel.load&origin=" + encodeURIComponent(location.origin);
@ -44,18 +44,18 @@
<script>
_asyncStyles('https:\/\/dnqgz544uhbo8.cloudfront.net\/_\/fp\/css\/main-sprites.1B2M2Y8AsgTpgAmY7PhCfg.css')
</script>
<link rel="stylesheet" href="https://dnqgz544uhbo8.cloudfront.net/_/fp/css/main-base.6kQxKAiKOmce2ozmMfuxGQ.css">
<link rel="stylesheet" href="https://dnqgz544uhbo8.cloudfront.net/_/fp/css/main-base.6kQxKAiKOmce2ozmMfuxGQ.css"/>
<script>
(function () {var height = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; document.write("<style>section.section-image--fullBleed {padding-top: " + Math.round(1.1 * height) + "px;}section.section-image--fullScreen, section.section-image--coverFade {min-height: " + height + "px; padding-top: " + Math.round(0.5 * height) + "px;}.u-sizeViewHeight100 {height: " + height + "px !important;}.u-sizeViewHeightMin100 {min-height: " + height + "px !important;}section.section-image--coverFade, .section-image--fullScreen > .section-background, .section-image--coverFade > .section-background, .section-image--fullBleed .section-backgroundImage, .section-image--fullScreen .section-backgroundImage, .section-image--coverFade .section-backgroundImage {height: " + height + "px;}.section-image--content > .section-background, .section-image--content .section-backgroundImage, .section-aspectRatioViewportPlaceholder, .section-aspectRatioViewportCropPlaceholder {max-height: " + height + "px;}.section-image--fullBleed > .section-background {height: " + Math.round(1.1 * height) + "px;}.section-aspectRatioViewportBottomSpacer, .section-aspectRatioViewportBottomPlaceholder {max-height: " + Math.round(0.5 * height) + "px;}</style>");})()
</script>
<!--[if lt IE 9]>
<script charset="UTF-8" src="https://dnqgz544uhbo8.cloudfront.net/_/fp/js/shiv.RI2ePTZ5gFmMgLzG5bEVAA.js"></script>
<![endif]-->
<link rel="shortcut icon" href="https://dnqgz544uhbo8.cloudfront.net/_/fp/icons/favicon.n7eHNqdWyHhbTLN2-3a-6g.ico">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/apple-touch-icon-precomposed-152.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/apple-touch-icon-precomposed-120.png">
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/apple-touch-icon-precomposed-76.png">
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-precomposed.png">
<link rel="shortcut icon" href="https://dnqgz544uhbo8.cloudfront.net/_/fp/icons/favicon.n7eHNqdWyHhbTLN2-3a-6g.ico"/>
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/apple-touch-icon-precomposed-152.png"/>
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/apple-touch-icon-precomposed-120.png"/>
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/apple-touch-icon-precomposed-76.png"/>
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-precomposed.png"/>
</head>
<body itemscope="" itemtype="http://schema.org/Article" class=" template-flex-article js-loading ">
@ -107,9 +107,9 @@
<div class="metabar u-clearfix js-metabar metabar--top metabar--postArticle is-withCollectionLogo ">
<div class="metabar-block metabar-left u-floatLeft"><a href="https://medium.com/" alt="Homepage" data-log-event="home" class="siteNav-logo"><span class="icon icon--logoM"></span></a>
<span
class="metabar-divider metabar-divider--first u-showOnMobile"></span><span class="postMetaInline postMetaInline--avatar u-showOnMobile"><a class="link" title="Go to Backchannel" href="https://medium.com/backchannel?source=avatarTopMetabar-lo_69de9372095b-d16afa0ae7c" data-action-source="avatarTopMetabar-lo_69de9372095b-d16afa0ae7c"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/32/32/1*VN9AINEbi2CS8bHWeu80GQ.png" class="avatar-image avatar-image--icon avatar-image--roundedRectangle" alt="Backchannel"></a></span>
class="metabar-divider metabar-divider--first u-showOnMobile"></span><span class="postMetaInline postMetaInline--avatar u-showOnMobile"><a class="link" title="Go to Backchannel" href="https://medium.com/backchannel?source=avatarTopMetabar-lo_69de9372095b-d16afa0ae7c" data-action-source="avatarTopMetabar-lo_69de9372095b-d16afa0ae7c"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/32/32/1*VN9AINEbi2CS8bHWeu80GQ.png" class="avatar-image avatar-image--icon avatar-image--roundedRectangle" alt="Backchannel"/></a></span>
</div>
<div class="metabar-block metabar-center"><a class="metabar-logoWrapper js-logCollection" href="https://medium.com/backchannel?source=logo-lo_69de9372095b-d16afa0ae7c"><img class="metabar-logo" src="https://d262ilb51hltx0.cloudfront.net/fit/c/280/36/1*CBYh7ADvcY9Z-WYUrJN2Gw.png?source=logoAvatar-lo_69de9372095b-d16afa0ae7c"></a>
<div class="metabar-block metabar-center"><a class="metabar-logoWrapper js-logCollection" href="https://medium.com/backchannel?source=logo-lo_69de9372095b-d16afa0ae7c"><img class="metabar-logo" src="https://d262ilb51hltx0.cloudfront.net/fit/c/280/36/1*CBYh7ADvcY9Z-WYUrJN2Gw.png?source=logoAvatar-lo_69de9372095b-d16afa0ae7c"/></a>
</div>
<div class="metabar-block metabar-right u-floatRight">
<div class="metabar-text"></div>
@ -123,11 +123,11 @@
</div>
</div>
<div class="metabar u-clearfix metabar--bottom metabar--bordered metabar--social metabar--postSecondaryBar js-postSecondaryBar">
<div class="metabar-block metabar-left u-floatLeft"><span class="postMetaInline postMetaInline--avatar u-xs-hide"><a class="link" title="Go to Backchannel" href="https://medium.com/backchannel?source=avatarSecondaryBar-lo_69de9372095b-d16afa0ae7c" data-action-source="avatarSecondaryBar-lo_69de9372095b-d16afa0ae7c"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/32/32/1*VN9AINEbi2CS8bHWeu80GQ.png" class="avatar-image avatar-image--icon avatar-image--roundedRectangle" alt="Backchannel"></a></span>
<div class="metabar-block metabar-left u-floatLeft"><span class="postMetaInline postMetaInline--avatar u-xs-hide"><a class="link" title="Go to Backchannel" href="https://medium.com/backchannel?source=avatarSecondaryBar-lo_69de9372095b-d16afa0ae7c" data-action-source="avatarSecondaryBar-lo_69de9372095b-d16afa0ae7c"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/32/32/1*VN9AINEbi2CS8bHWeu80GQ.png" class="avatar-image avatar-image--icon avatar-image--roundedRectangle" alt="Backchannel"/></a></span>
<span
class="postMetaInline postMetaInline--avatar"><a href="https://medium.com/@josephfcox" class="avatar avatar--icon avatar--inline link link--secondary"
title="Go to the profile of Joseph Cox"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/32/32/0*caZ172e36yu_pElb.png" class="avatar-image avatar-image--icon" title="Joseph Cox"></a>
</span><span class="postMetaInline postMetaInline--authorDateline"><a class="link link--secondary" title="Go to the profile of Joseph Cox" href="https://medium.com/@josephfcox">Joseph Cox</a><span class="u-showOnTabletMini"><br></span>
title="Go to the profile of Joseph Cox"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/32/32/0*caZ172e36yu_pElb.png" class="avatar-image avatar-image--icon" title="Joseph Cox"/></a>
</span><span class="postMetaInline postMetaInline--authorDateline"><a class="link link--secondary" title="Go to the profile of Joseph Cox" href="https://medium.com/@josephfcox">Joseph Cox</a><span class="u-showOnTabletMini"><br/></span>
<span
class="postMetaInline postMetaInline--date"><span class="u-xs-hide"> on </span>
<time class="post-date">Mar 27</time><span class="middotDivider"></span>14 min</span>
@ -216,7 +216,7 @@
<div class="postField postField--body">
<section name="ef8c" class=" section--first section--last">
<div class="section-divider layoutSingleColumn">
<hr class="section-divider">
<hr class="section-divider"/>
</div>
<div class="section-content">
<div class="section-inner u-sizeFullWidth">
@ -224,25 +224,25 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 66.8%;"></div>
<img class="graf-image" data-image-id="1*sLDnS1UWEFIS33uLMxq3cw.jpeg"
data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*sLDnS1UWEFIS33uLMxq3cw.jpeg">
data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*sLDnS1UWEFIS33uLMxq3cw.jpeg"/>
</div>
</figure>
</div>
<div class="section-inner layoutSingleColumn">
<h2 name="9ebb" id="9ebb" data-align="center" class="graf--h2">Inside the Deep Web Drug Lab</h2>
<p name="1f41" id="1f41" class="graf--p graf--empty">
<br>
<br/>
</p>
<h4 name="9736" id="9736" data-align="center" class="graf--h4">Welcome to DoctorXs Barcelona lab, where the drugs you bought online are tested for safety and purity. No questions asked.</h4>
<p name="fc64" id="fc64" class="graf--p graf--empty">
<br>
<br/>
</p>
<figure name="7417" id="7417" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked" style="max-width: 700px; max-height: 14px;">
<div class="aspect-ratio-fill" style="padding-bottom: 2%;"></div>
<img class="graf-image" data-image-id="1*3vIhkoHIzcxvUdijoCVx6w.png"
data-width="1200" data-height="24" data-action="zoom" data-action-value="1*3vIhkoHIzcxvUdijoCVx6w.png"
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*3vIhkoHIzcxvUdijoCVx6w.png">
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*3vIhkoHIzcxvUdijoCVx6w.png"/>
</div>
</figure>
<p name="8a83" id="8a83" class="graf--p">Standing at a table in a chemistry lab in Barcelona, Cristina Gil Lladanosa
@ -267,7 +267,7 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 66.8%;"></div>
<img class="graf-image" data-image-id="1*4gN1-fzOwCniw-DbqQjDeQ.jpeg"
data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*4gN1-fzOwCniw-DbqQjDeQ.jpeg">
data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*4gN1-fzOwCniw-DbqQjDeQ.jpeg"/>
</div>
<figcaption class="imageCaption">Cristina Gil Lladanosa, at the Barcelona testing lab | photo by Joan Bardeletti</figcaption>
</figure>
@ -305,7 +305,7 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 66.8%;"></div>
<img class="graf-image" data-image-id="1*2KPmZkIBUrhps-2uwDvYFQ.jpeg"
data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*2KPmZkIBUrhps-2uwDvYFQ.jpeg">
data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*2KPmZkIBUrhps-2uwDvYFQ.jpeg"/>
</div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
@ -325,7 +325,7 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 61.6%;"></div>
<img class="graf-image" data-image-id="1*PU40bbbox2Ompc5I3RE99A.jpeg"
data-width="2013" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*PU40bbbox2Ompc5I3RE99A.jpeg">
data-width="2013" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*PU40bbbox2Ompc5I3RE99A.jpeg"/>
</div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
@ -357,7 +357,7 @@
<div class="aspect-ratio-fill" style="padding-bottom: 2%;"></div>
<img class="graf-image" data-image-id="1*ohyycinH18fz98TCyUzVgQ.png"
data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png"
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png">
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"/>
</div>
</figure>
<p name="39a6" id="39a6" class="graf--p">The deep web drug lab is the brainchild of Fernando Caudevilla, a Spanish
@ -374,7 +374,7 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 59.099999999999994%;"></div>
<img class="graf-image" data-image-id="1*mKvUNOAVQxl6atCbxbCZsg.jpeg"
data-width="2100" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*mKvUNOAVQxl6atCbxbCZsg.jpeg">
data-width="2100" data-height="1241" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*mKvUNOAVQxl6atCbxbCZsg.jpeg"/>
</div>
<figcaption class="imageCaption">Fernando Caudevilla, AKA DoctorX. Photo: Joseph Cox</figcaption>
</figure>
@ -430,7 +430,7 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 71.39999999999999%;"></div>
<img class="graf-image" data-image-id="1*knT10_FNVUmqQIBLnutmzQ.jpeg"
data-width="4400" data-height="3141" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*knT10_FNVUmqQIBLnutmzQ.jpeg">
data-width="4400" data-height="3141" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*knT10_FNVUmqQIBLnutmzQ.jpeg"/>
</div>
<figcaption class="imageCaption">Photo: Joseph Cox</figcaption>
</figure>
@ -441,7 +441,7 @@
<div class="aspect-ratio-fill" style="padding-bottom: 2%;"></div>
<img class="graf-image" data-image-id="1*ohyycinH18fz98TCyUzVgQ.png"
data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png"
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png">
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"/>
</div>
</figure>
<p name="7b5e" id="7b5e" class="graf--p">While the Energy Control lab in Madrid lab only tests Spanish drugs from
@ -475,7 +475,7 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 66.8%;"></div>
<img class="graf-image" data-image-id="1*Vr61dyCTRwk6CemmVF8YAQ.jpeg"
data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*Vr61dyCTRwk6CemmVF8YAQ.jpeg">
data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*Vr61dyCTRwk6CemmVF8YAQ.jpeg"/>
</div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
@ -523,7 +523,7 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 66.8%;"></div>
<img class="graf-image" data-image-id="1*a-1_13xE6_ErQ-QSlz6myw.jpeg"
data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*a-1_13xE6_ErQ-QSlz6myw.jpeg">
data-width="2100" data-height="1402" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*a-1_13xE6_ErQ-QSlz6myw.jpeg"/>
</div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
@ -534,7 +534,7 @@
<div class="aspect-ratio-fill" style="padding-bottom: 2%;"></div>
<img class="graf-image" data-image-id="1*ohyycinH18fz98TCyUzVgQ.png"
data-width="1200" data-height="24" data-action="zoom" data-action-value="1*ohyycinH18fz98TCyUzVgQ.png"
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png">
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*ohyycinH18fz98TCyUzVgQ.png"/>
</div>
</figure>
<p name="126b" id="126b" class="graf--p">Despite the prevalence of people using the service to gauge the quality
@ -584,7 +584,7 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 56.8%;"></div>
<img class="graf-image" data-image-id="1*IWXhtSsVv0gNnCwnDEXk-Q.jpeg"
data-width="2100" data-height="1192" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*IWXhtSsVv0gNnCwnDEXk-Q.jpeg">
data-width="2100" data-height="1192" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*IWXhtSsVv0gNnCwnDEXk-Q.jpeg"/>
</div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
@ -618,7 +618,7 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 66.7%;"></div>
<img class="graf-image" data-image-id="1*NGcrjfkV0l37iQH2uyYjEw.jpeg"
data-width="1368" data-height="913" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*NGcrjfkV0l37iQH2uyYjEw.jpeg">
data-width="1368" data-height="913" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*NGcrjfkV0l37iQH2uyYjEw.jpeg"/>
</div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
@ -682,7 +682,7 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 65.4%;"></div>
<img class="graf-image" data-image-id="1*WRlKt3q3mt7utmwxcbl3sQ.jpeg"
data-width="2100" data-height="1373" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*WRlKt3q3mt7utmwxcbl3sQ.jpeg">
data-width="2100" data-height="1373" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*WRlKt3q3mt7utmwxcbl3sQ.jpeg"/>
</div>
<figcaption class="imageCaption">Photo by Joan Bardeletti</figcaption>
</figure>
@ -702,7 +702,7 @@
<div class="aspect-ratio-fill" style="padding-bottom: 2%;"></div>
<img class="graf-image" data-image-id="1*320_4I0lxbn5x3bx4XPI5Q.png"
data-width="1200" data-height="24" data-action="zoom" data-action-value="1*320_4I0lxbn5x3bx4XPI5Q.png"
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*320_4I0lxbn5x3bx4XPI5Q.png">
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*320_4I0lxbn5x3bx4XPI5Q.png"/>
</div>
</figure>
<p name="9b87" id="9b87" data-align="center" class="graf--p"><em class="markup--em markup--p-em">Top photo by Joan Bardeletti</em>
@ -753,7 +753,7 @@
<div class="postFooter-info js-postFooterInfo">
<div class="infoCard u-clearfix js-infoCardCollection">
<div class="infoCard-avatar"><a class="link js-logCollection" title="Go to Backchannel" href="https://medium.com/backchannel"
data-action-source="footer"><img class="card-image card-image--collection" alt="Go to Backchannel" src="https://d262ilb51hltx0.cloudfront.net/fit/c/60/60/1*VN9AINEbi2CS8bHWeu80GQ.png"></a>
data-action-source="footer"><img class="card-image card-image--collection" alt="Go to Backchannel" src="https://d262ilb51hltx0.cloudfront.net/fit/c/60/60/1*VN9AINEbi2CS8bHWeu80GQ.png"/></a>
</div>
<div class="infoCard-info ">
<div class="infoCard-wrapper">
@ -777,10 +777,10 @@
</div>
</div>
</div>
<hr class="infoCard-border">
<hr class="infoCard-border"/>
<div class="infoCard u-clearfix js-infoCardUser">
<div class="infoCard-avatar"><a href="https://medium.com/@josephfcox" class="avatar avatar--small"
title="Go to the profile of Joseph Cox"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/60/60/0*caZ172e36yu_pElb.png" class="avatar-image avatar-image--small" title="Joseph Cox"></a>
title="Go to the profile of Joseph Cox"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/60/60/0*caZ172e36yu_pElb.png" class="avatar-image avatar-image--small" title="Joseph Cox"/></a>
</div>
<div class="infoCard-info ">
<div class="infoCard-wrapper">

@ -6,7 +6,7 @@
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script>
if ("undefined" === typeof lmd || !lmd) lmd = {};
(function(a, b) {
@ -111,64 +111,64 @@
<!-- Mobile redirect, lmd conf, registered redirect -->
<script src="//s1.lemde.fr/bootstrap/list-early-load.js"></script>
<title>Le projet de loi sur le renseignement massivement approuvé à l'Assemblée</title>
<meta name="description" content="Largement approuvé par les députés, le texte sera désormais examiné par le Sénat, puis le Conseil constitutionnel.">
<meta name="robots" content="index, follow, noarchive">
<meta http-equiv="refresh" content="900">
<meta http-equiv="Expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="application-name" content="Le Monde.fr">
<meta name="DC.language" content="fr">
<meta name="DC.format" content="text/html">
<meta name="DC.publisher" content="Le Monde">
<meta name="DC.identifier" content="ISSN 1950-6244">
<meta name="msapplication-tooltip" content="Le Monde.fr">
<meta name="msapplication-navbutton-color" content="#000">
<meta name="msapplication-starturl" content="/">
<meta name="msapplication-task" content="name=A la Une;action-uri=/;icon-uri=/medias/web/ico/ie9-pin/une.ico">
<meta name="msapplication-task" content="name=International;action-uri=/international/;icon-uri=/medias/web/ico/ie9-pin/international.ico">
<meta name="msapplication-task" content="name=Politique;action-uri=/politique/;icon-uri=/medias/web/ico/ie9-pin/politique.ico">
<meta name="msapplication-task" content="name=Economie;action-uri=/economie/;icon-uri=/medias/web/ico/ie9-pin/economie.ico">
<meta name="msapplication-task" content="name=Sport;action-uri=/sport/;icon-uri=/medias/web/ico/ie9-pin/sport.ico">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="//s1.lemde.fr/medias/web/1.2.671/ico/apple/icon-72.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="//s1.lemde.fr/medias/web/1.2.671/ico/apple/icon-144.png">
<meta property="fb:app_id" content="166878320861">
<meta property="fb:page_id" content="14892757589">
<meta property="og:site_name" content="Le Monde.fr">
<meta property="og:locale" content="fr_FR">
<meta property="og:url" content="http://www.lemonde.fr/pixels/article/2015/05/04/que-contient-la-loi-sur-le-renseignement_4627068_4408996.html">
<meta property="og:title" content="Le projet de loi sur le renseignement massivement approuvé à l'Assemblée">
<meta property="og:description" content="Largement approuvé par les députés, le texte sera désormais examiné par le Sénat, puis le Conseil constitutionnel.">
<meta property="og:image" content="http://s1.lemde.fr/image/2015/05/05/600x315/4628128_3_47fc_projet-de-loi-renseignement_aeba800424730d672d1bd08faf203438.jpg">
<meta property="og:image:width" content="600">
<meta property="og:image:height" content="315">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:type" content="article">
<meta property="al:ios:url" content="lmfr://element/article/4627068?x4=8">
<meta property="al:ios:app_store_id" content="294047850">
<meta property="al:android:url" content="lmfr://element/article/4627068?x4=8">
<meta property="al:android:package" content="com.lemonde.androidapp">
<meta property="al:web:url" content="http://www.lemonde.fr/pixels/article/2015/05/04/que-contient-la-loi-sur-le-renseignement_4627068_4408996.html">
<meta property="al:web:should_fallback" content="true">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@lemondefr">
<meta name="twitter:url" content="http://www.lemonde.fr/pixels/article/2015/05/04/que-contient-la-loi-sur-le-renseignement_4627068_4408996.html">
<meta name="twitter:title" content="Le projet de loi sur le renseignement massivement approuvé à l'Assemblée">
<meta name="twitter:description" content="Largement approuvé par les députés, le texte sera désormais examiné par le Sénat, puis le Conseil constitutionnel.">
<meta name="twitter:image" content="http://s1.lemde.fr/image/2015/05/05/600x315/4628128_3_47fc_projet-de-loi-renseignement_aeba800424730d672d1bd08faf203438.jpg">
<meta name="twitter:app:country" content="FR">
<meta name="twitter:app:id:iphone" content="294047850">
<meta name="twitter:app:url:iphone" content="lmfr://element/article/4627068?x4=8">
<meta name="twitter:app:id:ipad" content="294047850">
<meta name="twitter:app:url:ipad" content="lmfr://element/article/4627068?x4=8">
<meta name="twitter:app:id:googleplay" content="com.lemonde.androidapp">
<meta name="twitter:app:url:googleplay" content="lmfr://element/article/4627068?x4=8">
<link rel="alternate" href="android-app://com.lemonde.androidapp/lmfr/element/article/4627068?x4=8">
<link rel="shortcut icon" href="//s1.lemde.fr/medias/web/1.2.671/ico/favicon.ico">
<link rel="stylesheet" type="text/css" href="//s1.lemde.fr/bootstrap/www/67e40ec439cec7837a3a02ea3a19df14.css?m[]=normalize&amp;m[]=fonts&amp;m[]=grille&amp;m[]=base&amp;m[]=header&amp;m[]=footer&amp;m[]=rubrique&amp;m[]=article&amp;m[]=friends%2Fpaves&amp;m[]=col_droite&amp;m[]=ticker&amp;m[]=couleurs&amp;m[]=marketing%2Fmeter&amp;m[]=evenementiel%2Fcoupe-du-monde&amp;m[]=friends%2Fnewsweb%2Fbase&amp;m[]=friends%2Fnewsweb%2Fdatabox&amp;m[]=friends%2Fnewsweb%2Flivescore&amp;m[]=friends%2Fnewsweb%2Flivescore_tennis&amp;m[]=print&amp;m[]=element&amp;m[]=rubriques%2Fpixels&amp;m[]=modules%2Fportfolio&amp;m[]=modules%2Fzen&amp;m[]=abonnes%2Foverlay">
<link rel="canonical" href="http://www.lemonde.fr/pixels/article/2015/05/04/que-contient-la-loi-sur-le-renseignement_4627068_4408996.html">
<link rel="alternate" href="http://mobile.lemonde.fr/pixels/article/2015/05/04/que-contient-la-loi-sur-le-renseignement_4627068_4408996.html" media="only screen and (max-width: 640px)">
<link rel="alternate" href="http://www.lemonde.fr/pixels/rss_full.xml" title="Le Monde.fr : Pixels" type="application/rss+xml">
<meta name="description" content="Largement approuvé par les députés, le texte sera désormais examiné par le Sénat, puis le Conseil constitutionnel."/>
<meta name="robots" content="index, follow, noarchive"/>
<meta http-equiv="refresh" content="900"/>
<meta http-equiv="Expires" content="0"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="application-name" content="Le Monde.fr"/>
<meta name="DC.language" content="fr"/>
<meta name="DC.format" content="text/html"/>
<meta name="DC.publisher" content="Le Monde"/>
<meta name="DC.identifier" content="ISSN 1950-6244"/>
<meta name="msapplication-tooltip" content="Le Monde.fr"/>
<meta name="msapplication-navbutton-color" content="#000"/>
<meta name="msapplication-starturl" content="/"/>
<meta name="msapplication-task" content="name=A la Une;action-uri=/;icon-uri=/medias/web/ico/ie9-pin/une.ico"/>
<meta name="msapplication-task" content="name=International;action-uri=/international/;icon-uri=/medias/web/ico/ie9-pin/international.ico"/>
<meta name="msapplication-task" content="name=Politique;action-uri=/politique/;icon-uri=/medias/web/ico/ie9-pin/politique.ico"/>
<meta name="msapplication-task" content="name=Economie;action-uri=/economie/;icon-uri=/medias/web/ico/ie9-pin/economie.ico"/>
<meta name="msapplication-task" content="name=Sport;action-uri=/sport/;icon-uri=/medias/web/ico/ie9-pin/sport.ico"/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="//s1.lemde.fr/medias/web/1.2.671/ico/apple/icon-72.png"/>
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="//s1.lemde.fr/medias/web/1.2.671/ico/apple/icon-144.png"/>
<meta property="fb:app_id" content="166878320861"/>
<meta property="fb:page_id" content="14892757589"/>
<meta property="og:site_name" content="Le Monde.fr"/>
<meta property="og:locale" content="fr_FR"/>
<meta property="og:url" content="http://www.lemonde.fr/pixels/article/2015/05/04/que-contient-la-loi-sur-le-renseignement_4627068_4408996.html"/>
<meta property="og:title" content="Le projet de loi sur le renseignement massivement approuvé à l'Assemblée"/>
<meta property="og:description" content="Largement approuvé par les députés, le texte sera désormais examiné par le Sénat, puis le Conseil constitutionnel."/>
<meta property="og:image" content="http://s1.lemde.fr/image/2015/05/05/600x315/4628128_3_47fc_projet-de-loi-renseignement_aeba800424730d672d1bd08faf203438.jpg"/>
<meta property="og:image:width" content="600"/>
<meta property="og:image:height" content="315"/>
<meta property="og:image:type" content="image/jpeg"/>
<meta property="og:type" content="article"/>
<meta property="al:ios:url" content="lmfr://element/article/4627068?x4=8"/>
<meta property="al:ios:app_store_id" content="294047850"/>
<meta property="al:android:url" content="lmfr://element/article/4627068?x4=8"/>
<meta property="al:android:package" content="com.lemonde.androidapp"/>
<meta property="al:web:url" content="http://www.lemonde.fr/pixels/article/2015/05/04/que-contient-la-loi-sur-le-renseignement_4627068_4408996.html"/>
<meta property="al:web:should_fallback" content="true"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:site" content="@lemondefr"/>
<meta name="twitter:url" content="http://www.lemonde.fr/pixels/article/2015/05/04/que-contient-la-loi-sur-le-renseignement_4627068_4408996.html"/>
<meta name="twitter:title" content="Le projet de loi sur le renseignement massivement approuvé à l'Assemblée"/>
<meta name="twitter:description" content="Largement approuvé par les députés, le texte sera désormais examiné par le Sénat, puis le Conseil constitutionnel."/>
<meta name="twitter:image" content="http://s1.lemde.fr/image/2015/05/05/600x315/4628128_3_47fc_projet-de-loi-renseignement_aeba800424730d672d1bd08faf203438.jpg"/>
<meta name="twitter:app:country" content="FR"/>
<meta name="twitter:app:id:iphone" content="294047850"/>
<meta name="twitter:app:url:iphone" content="lmfr://element/article/4627068?x4=8"/>
<meta name="twitter:app:id:ipad" content="294047850"/>
<meta name="twitter:app:url:ipad" content="lmfr://element/article/4627068?x4=8"/>
<meta name="twitter:app:id:googleplay" content="com.lemonde.androidapp"/>
<meta name="twitter:app:url:googleplay" content="lmfr://element/article/4627068?x4=8"/>
<link rel="alternate" href="android-app://com.lemonde.androidapp/lmfr/element/article/4627068?x4=8"/>
<link rel="shortcut icon" href="//s1.lemde.fr/medias/web/1.2.671/ico/favicon.ico"/>
<link rel="stylesheet" type="text/css" href="//s1.lemde.fr/bootstrap/www/67e40ec439cec7837a3a02ea3a19df14.css?m[]=normalize&amp;m[]=fonts&amp;m[]=grille&amp;m[]=base&amp;m[]=header&amp;m[]=footer&amp;m[]=rubrique&amp;m[]=article&amp;m[]=friends%2Fpaves&amp;m[]=col_droite&amp;m[]=ticker&amp;m[]=couleurs&amp;m[]=marketing%2Fmeter&amp;m[]=evenementiel%2Fcoupe-du-monde&amp;m[]=friends%2Fnewsweb%2Fbase&amp;m[]=friends%2Fnewsweb%2Fdatabox&amp;m[]=friends%2Fnewsweb%2Flivescore&amp;m[]=friends%2Fnewsweb%2Flivescore_tennis&amp;m[]=print&amp;m[]=element&amp;m[]=rubriques%2Fpixels&amp;m[]=modules%2Fportfolio&amp;m[]=modules%2Fzen&amp;m[]=abonnes%2Foverlay"/>
<link rel="canonical" href="http://www.lemonde.fr/pixels/article/2015/05/04/que-contient-la-loi-sur-le-renseignement_4627068_4408996.html"/>
<link rel="alternate" href="http://mobile.lemonde.fr/pixels/article/2015/05/04/que-contient-la-loi-sur-le-renseignement_4627068_4408996.html" media="only screen and (max-width: 640px)"/>
<link rel="alternate" href="http://www.lemonde.fr/pixels/rss_full.xml" title="Le Monde.fr : Pixels" type="application/rss+xml"/>
<script src="//s1.lemde.fr/medias/web/1.2.671/js/lib/require/core/current/require.js"></script>
<script src="//s1.lemde.fr/bootstrap/www/main.js"></script>
<script>
@ -303,9 +303,9 @@
<!--[if IE]>
<script>require(["lib/require/plugin/domReady!","lmd/ui/ie9-pinning"],function(b,a){a.start()});</script>
<![endif]-->
<link rel="dns-prefetch" href="//cdn1.smartadserver.com">
<link rel="dns-prefetch" href="//ww690.smartadserver.com">
<link rel="dns-prefetch" href="//logc2.xiti.com"> </head>
<link rel="dns-prefetch" href="//cdn1.smartadserver.com"/>
<link rel="dns-prefetch" href="//ww690.smartadserver.com"/>
<link rel="dns-prefetch" href="//logc2.xiti.com"/> </head>
<body class="pixels">
<header id="header">
@ -361,9 +361,9 @@
<form name="recherche" action="/recherche/" method="get" class="recherche">
<p>
<label for="recherche_globale" class="cache">Rechercher&nbsp;:</label>
<input type="search" name="keywords" id="recherche_globale" placeholder="Rechercher">
<input type="hidden" name="qt" value="recherche_globale">
<input type="submit" value="rechercher" class="loupe"> </p>
<input type="search" name="keywords" id="recherche_globale" placeholder="Rechercher"/>
<input type="hidden" name="qt" value="recherche_globale"/>
<input type="submit" value="rechercher" class="loupe"/> </p>
</form>
</div>
<div class="tcell">
@ -380,7 +380,7 @@
<div class="popinbox">
<div id="header_twitter_contenu"> <span class="block txt4">Suivre le Monde sur Twitter</span>
<div class="liste_img_lien"> <span data-target="_blank" data-href="aHR0cDovL3R3aXR0ZXIuY29tL2xlbW9uZGVmcg==" class="block obf">
<img data-n-src="//s1.lemde.fr/medias/web/1.2.671/img/pictos/twitter_lemonde.jpg" alt="Avatar lemonde.fr" width="48" height="48" class="radius5"></span> <span data-target="_blank" data-href="aHR0cDovL3R3aXR0ZXIuY29tL2xlbW9uZGVmcg==" class="block obf">@lemondefr</span> <span data-href="aHR0cDovL3R3aXR0ZXIuY29tL2xlbW9uZGVmcg==" class="twitter-follow-button obf">Suivre @lemondefr</span> </div>
<img data-n-src="//s1.lemde.fr/medias/web/1.2.671/img/pictos/twitter_lemonde.jpg" alt="Avatar lemonde.fr" width="48" height="48" class="radius5"/></span> <span data-target="_blank" data-href="aHR0cDovL3R3aXR0ZXIuY29tL2xlbW9uZGVmcg==" class="block obf">@lemondefr</span> <span data-href="aHR0cDovL3R3aXR0ZXIuY29tL2xlbW9uZGVmcg==" class="twitter-follow-button obf">Suivre @lemondefr</span> </div>
</div>
</div>
</div>
@ -448,7 +448,7 @@
ADVERT_AD(['50270/444463', 21486, '', 'habillage', '']);
</script>
<noscript>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21486/S/1430854052/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21486/S/1430854052/?" border="0" alt=""></a>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21486/S/1430854052/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21486/S/1430854052/?" border="0" alt=""/></a>
</noscript>
</div>
<div class="position_pub top banniere" data-adformat="top" data-adsite="50270" data-adpage="444463" data-adquery="" data-adformat-id="21482">
@ -457,7 +457,7 @@
ADVERT_AD(['50270/444463', 21482, '', 'top', '']);
</script>
<noscript>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21482/S/1430854052/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21482/S/1430854052/?" border="0" alt=""></a>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21482/S/1430854052/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21482/S/1430854052/?" border="0" alt=""/></a>
</noscript>
</div>
<div class="ombrelle ombrelle_pixels">
@ -538,13 +538,13 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
<a href="/journaliste/martin-untersinger/" target="_blank">
<img data-placeholder="true" width="24" height="24" data-src="http://s1.lemde.fr/image/2014/04/18/24x24/1100512060_4_989c_13978271609841-0kab-c47_a068f1501374eefd42e6bb2cac94b37a.jpg" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-lazyload="true" onload="lmd.pic(this);" onerror="lmd.pic(this);" class="lazy-retina" alt=" ">
<img data-placeholder="true" width="24" height="24" data-src="http://s1.lemde.fr/image/2014/04/18/24x24/1100512060_4_989c_13978271609841-0kab-c47_a068f1501374eefd42e6bb2cac94b37a.jpg" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-lazyload="true" onload="lmd.pic(this);" onerror="lmd.pic(this);" class="lazy-retina" alt=" "/>
</a>
<a href="/journaliste/martin-untersinger/" target="_blank" class="gras">Martin Untersinger</a> (avec Damien Leloup et Morgane Tual)
<br><span class="txt_gris_clair">Journaliste au Monde</span> </span> <span class="suivre">
<br/><span class="txt_gris_clair">Journaliste au Monde</span> </span> <span class="suivre">
<strong class="txt1 txt_gris_moyen">Suivre</strong>
<a href="/journaliste/martin-untersinger/" class="avatar13x13" target="_blank">Aller sur la page de ce journaliste</a>
@ -561,7 +561,7 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
ADVERT_AD(['50270/444463', 23371, '', 'web_partenaire', '']);
</script>
<noscript>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/23371/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/23371/S/1430854051/?" border="0" alt=""></a>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/23371/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/23371/S/1430854051/?" border="0" alt=""/></a>
</noscript>
</div>
<div class="position_pub" data-adformat="web_partenaire_2" data-adsite="50270" data-adpage="444463" data-adquery="" data-adformat-id="23885">
@ -570,7 +570,7 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
ADVERT_AD(['50270/444463', 23885, '', 'web_partenaire_2', '']);
</script>
<noscript>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/23885/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/23885/S/1430854051/?" border="0" alt=""></a>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/23885/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/23885/S/1430854051/?" border="0" alt=""/></a>
</noscript>
</div>
<div class="fb-like" data-send="true" data-show-faces="true" data-action="recommend" data-font="arial" data-width="534"> </div>
@ -639,7 +639,7 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
ADVERT_AD(['50270/444463', 21483, '', 'pave_haut', '']);
</script>
<noscript>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21483/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21483/S/1430854051/?" border="0" alt=""></a>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21483/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21483/S/1430854051/?" border="0" alt=""/></a>
</noscript>
</div>
<div id="aj-c65b1e" data-aj-uri="/ajah/5m/lemonde/www/Controller_Module_Social_Pluspartages/actionAfficher/W3R/ydW/Vd/EMPTY/?key=e9c1df2637b3a3d3a2ba3035fdd06a727446de91"></div>
@ -656,7 +656,7 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
ADVERT_AD(['50270/444463', 21484, '', 'pave_milieu', '']);
</script>
<noscript>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21484/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21484/S/1430854051/?" border="0" alt=""></a>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21484/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21484/S/1430854051/?" border="0" alt=""/></a>
</noscript>
</div>
<div id="aj-6e587e" data-aj-uri="/ajah/5m/lemonde/www/Controller_Module_Abonnes_AppelJelec/actionAfficher/W3R/ydW/UsI/kJMT0NBQk9BUlRDT0xEUjE0Il0-/?key=8b6254c0b89102f0d95ade6fd5204a54dd7769ba"></div>
@ -693,7 +693,7 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
ADVERT_AD(['50270/444463', 21485, '', 'pave_bas', '']);
</script>
<noscript>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21485/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21485/S/1430854051/?" border="0" alt=""></a>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21485/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21485/S/1430854051/?" border="0" alt=""/></a>
</noscript>
</div>
<div id="aj-d4766b" data-aj-uri="/ajah/5m/lemonde/web/Controller_Module_Zone_Rotation/actionAfficherTypeZone/WzQ/0MD/g5O/TYsInpvbmVfY29sb25uZV9iaXpkZXZfZWx0MiIsMV0-/?key=442ca578128c98ed51d421440c92c87a913030b9"></div>
@ -710,7 +710,7 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
ADVERT_AD(['50270/444463', 22396, '', 'web_partenariat', '']);
</script>
<noscript>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/22396/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/22396/S/1430854051/?" border="0" alt=""></a>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/22396/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/22396/S/1430854051/?" border="0" alt=""/></a>
</noscript>
</div>
<div class="position_pub noborder" data-adformat="logo_texte" data-adsite="50270" data-adpage="444463" data-adquery="" data-adformat-id="21492">
@ -719,7 +719,7 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
ADVERT_AD(['50270/444463', 21492, '', 'logo_texte', '']);
</script>
<noscript>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21492/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21492/S/1430854051/?" border="0" alt=""></a>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21492/S/1430854051/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21492/S/1430854051/?" border="0" alt=""/></a>
</noscript>
</div>
</div>
@ -752,7 +752,7 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
ADVERT_AD(['50270/444463', 21488, '', 'bottom', '']);
</script>
<noscript>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21488/S/1430854052/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21488/S/1430854052/?" border="0" alt=""></a>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21488/S/1430854052/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21488/S/1430854052/?" border="0" alt=""/></a>
</noscript>
</div>
<div id="aj-93f310" data-aj-uri="/ajah/5m/lemonde/web/Controller_Module_Deroule_Bloc_Paves/actionAfficherBizdevOffre/WzQ/0MD/g5O/TYsdHJ1ZV0-/?key=5652f682d8b9b0b77268891a96feddeaec2be194"></div>
@ -777,14 +777,14 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
<p class="contenu">
<span>Le monde abonnements</span> Profitez du journal où et quand vous voulez. Abonnements papier, offres 100 % numériques sur Web et tablette. </p>
<p class="bt"> <span class="btn">S'abonner au Monde à partir de 1 €</span> </p>
</div> <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" width="350" height="155" alt=" " data-src="//s1.lemde.fr/medias/web/1.2.671/img/elements_lm/footer_supports.png" data-lazyload="true" onload="lmd.pic(this);" onerror="lmd.pic(this);" class="lazy-retina"></span>
</div> <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" width="350" height="155" alt=" " data-src="//s1.lemde.fr/medias/web/1.2.671/img/elements_lm/footer_supports.png" data-lazyload="true" onload="lmd.pic(this);" onerror="lmd.pic(this);" class="lazy-retina"/></span>
<div class="deja_abonne">
<div> <span class="accroche">Déjà abonné au<br>journal <em>Le Monde</em> ?</span>
<div> <span class="accroche">Déjà abonné au<br/>journal <em>Le Monde</em> ?</span>
<ul>
<li><span data-target="_blank" data-href="aHR0cDovL3d3dy5sZW1vbmRlLmZyL3dlYi9hYm9wYXBpZXIvMSwyNy0wLDEtMCwwLmh0bWw=" class="obf">Activez votre accès à l'Édition abonnés du Monde.fr</span></li>
<li><span data-target="_blank" data-href="aHR0cDovL21vbmFiby5sZW1vbmRlLmZyLyN4dG9yPUFELTMyMjgwMDYx" class="obf">Gérez votre abonnement</span></li>
</ul>
</div> <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" width="123" height="78" alt=" " data-src="//s1.lemde.fr/medias/web/1.2.671/img/elements_lm/footer_journaux.png" data-lazyload="true" onload="lmd.pic(this);" onerror="lmd.pic(this);" class="lazy-retina"> </div>
</div> <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" width="123" height="78" alt=" " data-src="//s1.lemde.fr/medias/web/1.2.671/img/elements_lm/footer_journaux.png" data-lazyload="true" onload="lmd.pic(this);" onerror="lmd.pic(this);" class="lazy-retina"/> </div>
</div>
<div class="footer_listes">
<div> <span class="titre">Les rubriques du Monde.fr</span> <span data-target="" data-href="L2ludGVybmF0aW9uYWwv" class="obf">International</span><span data-target="" data-href="L3BvbGl0aXF1ZS8=" class="obf">Politique</span><span data-target="" data-href="L3NvY2lldGUv" class="obf">Société</span><span data-target="" data-href="L2Vjb25vbWllLw==" class="obf">Économie</span><span data-target="" data-href="L2N1bHR1cmUv" class="obf">Culture</span><span data-target="" data-href="L3Nwb3J0Lw==" class="obf">Sport</span><span data-target="" data-href="L3BpeGVscy8=" class="obf">Techno</span><span data-target="" data-href="L3N0eWxlLw==" class="obf">Style</span><span data-target="" data-href="L3ZvdXMv" class="obf">Vous</span><span data-target="" data-href="L2lkZWVzLw==" class="obf">Idées</span><span data-target="" data-href="L3BsYW5ldGUv" class="obf">Planète</span><span data-target="" data-href="L2VkdWNhdGlvbi8=" class="obf">Éducation</span><span data-target="" data-href="L2Rpc3Bhcml0aW9ucy8=" class="obf">Disparitions</span><span data-target="" data-href="L3NhbnRlLw==" class="obf">Santé</span><span data-target="" data-href="L21vbmRlLWFjYWRlbWllLw==" class="obf">Monde Académie</span> </div>
@ -853,7 +853,7 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
ADVERT_AD(['50270/444463', 21487, '', 'dhtml', '']);
</script>
<noscript>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21487/S/1430854052/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21487/S/1430854052/?" border="0" alt=""></a>
<a href="http://ww690.smartadserver.com/call/pubjumpi/50270/444463/21487/S/1430854052/?" target="_blank"> <img src="http://ww690.smartadserver.com/call/pubi/50270/444463/21487/S/1430854052/?" border="0" alt=""/></a>
</noscript>
</div>
<script src="//s1.lemde.fr/medias/web/1.2.671/js/lmd/core/ux/sync.js"></script>
@ -1031,7 +1031,7 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
}
</script>
<object>
<noscript> <img src="http://logc2.xiti.com/hit.xiti?s=43260&s2=56&p=pixels::que_contient_la_loi_sur_le_renseignement&ptype=&di=&an=&ac=&x1=&x2=article" width="1" height="1" alt=""> </noscript>
<noscript> <img src="http://logc2.xiti.com/hit.xiti?s=43260&s2=56&p=pixels::que_contient_la_loi_sur_le_renseignement&ptype=&di=&an=&ac=&x1=&x2=article" width="1" height="1" alt=""/> </noscript>
</object>
</div>
<script>
@ -1114,4 +1114,4 @@ Par <span itemprop="author" class="auteur txt2_120"> <a class="a
</body>
</html>
<!--Rosae 2015/05/05 21:27:32 4.01 27.25 web11-www5:20230:4.36 httpfront-->
<!--Rosae 2015/05/05 21:27:32 4.01 27.25 web11-www5:20230:4.36 httpfront-->

@ -7,7 +7,7 @@
<p>Le séisme a fait près de 5&nbsp;500 morts et touche huit des 28 millions dhabitants du Népal. Des dizaines de milliers de personnes sont sans abri.</p>
<p>
<iframe src="http://www.dailymotion.com/embed/video/x2oikl3" frameborder="0" width="100%" data-aspect-ratio="0.5625" data-responsive="1"></iframe>
<br><em></em></p>
<br/><em></em></p>
</div>
</div>
</div>

@ -8,64 +8,64 @@
<!--<![endif]-->
<head prefix="og: http://ogp.me ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#">
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Un troisième Français mort dans le séisme au Népal - Libération</title>
<!-- Meta -->
<meta name="description" content="
Laurent Fabius a accueilli jeudi matin à Roissy un premier avion spécial ramenant des rescapés.
">
"/>
<meta name="keywords" content="
actualités, news">
<meta name="google-site-verification" content="F49Mb6L-Rs_uQg4KRSIoZq4tN4d6vltGt_QqCVFfjYw">
<meta name="google-site-verification" content="ZU8yhvOSn18Hu1fXjykeuXzDBFFdwNN6ah6Km9zr85k">
actualités, news"/>
<meta name="google-site-verification" content="F49Mb6L-Rs_uQg4KRSIoZq4tN4d6vltGt_QqCVFfjYw"/>
<meta name="google-site-verification" content="ZU8yhvOSn18Hu1fXjykeuXzDBFFdwNN6ah6Km9zr85k"/>
<!-- Open Graph -->
<meta property="og:site_name" content="Libération.fr">
<meta property="og:type" content="article">
<meta property="og:title" content="Un troisième Français mort dans le séisme au Népal">
<meta property="article:section" content="Monde">
<meta property="article:published_time" content="2015-04-30T07:19:58">
<meta property="article:modified_time" content="2015-04-30T07:38:17">
<meta property="article:author" content="http://www.liberation.fr/auteur/2005-afp">
<meta property="og:url" content="http://www.liberation.fr/monde/2015/04/30/un-troisieme-francais-mort-dans-le-seisme-au-nepal_1278483">
<meta property="og:description" content="Laurent Fabius a accueilli jeudi matin à Roissy un premier avion spécial ramenant des rescapés.">
<meta property="og:image" content="http://md1.libe.com/photo/755923-000_hkg10175905.jpg?modified_at=1430371146&amp;amp;width=750">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@libe">
<meta name="twitter:site:id" content="68440549">
<meta name="twitter:creator" content="@libe">
<meta name="twitter:title" content="Un troisième Français mort dans le séisme au Népal">
<meta name="twitter:description" content="Laurent Fabius a accueilli jeudi matin à Roissy un premier avion spécial ramenant des rescapés.">
<meta name="twitter:image:src" content="http://md1.libe.com/photo/755923-000_hkg10175905.jpg?modified_at=1430371146&amp;amp;width=600">
<meta name="twitter:image:width" content="600">
<meta name="twitter:image:height" content="400">
<meta property="og:site_name" content="Libération.fr"/>
<meta property="og:type" content="article"/>
<meta property="og:title" content="Un troisième Français mort dans le séisme au Népal"/>
<meta property="article:section" content="Monde"/>
<meta property="article:published_time" content="2015-04-30T07:19:58"/>
<meta property="article:modified_time" content="2015-04-30T07:38:17"/>
<meta property="article:author" content="http://www.liberation.fr/auteur/2005-afp"/>
<meta property="og:url" content="http://www.liberation.fr/monde/2015/04/30/un-troisieme-francais-mort-dans-le-seisme-au-nepal_1278483"/>
<meta property="og:description" content="Laurent Fabius a accueilli jeudi matin à Roissy un premier avion spécial ramenant des rescapés."/>
<meta property="og:image" content="http://md1.libe.com/photo/755923-000_hkg10175905.jpg?modified_at=1430371146&amp;amp;width=750"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:site" content="@libe"/>
<meta name="twitter:site:id" content="68440549"/>
<meta name="twitter:creator" content="@libe"/>
<meta name="twitter:title" content="Un troisième Français mort dans le séisme au Népal"/>
<meta name="twitter:description" content="Laurent Fabius a accueilli jeudi matin à Roissy un premier avion spécial ramenant des rescapés."/>
<meta name="twitter:image:src" content="http://md1.libe.com/photo/755923-000_hkg10175905.jpg?modified_at=1430371146&amp;amp;width=600"/>
<meta name="twitter:image:width" content="600"/>
<meta name="twitter:image:height" content="400"/>
<!-- For all browsers -->
<link rel="canonical" href="http://www.liberation.fr/monde/2015/04/30/un-troisieme-francais-mort-dans-le-seisme-au-nepal_1278483">
<link type="application/rss+xml" rel="alternate" title="Monde" href="http://rss.liberation.fr/rss/10/">
<link type="application/rss+xml" rel="alternate" title="A la une sur Libération" href="http://rss.liberation.fr/rss/latest/">
<link rel="stylesheet" href="http://s1.libe.com/cache/css/794f2126806d.css" type="text/css" media="all">
<link rel="stylesheet" href="http://s1.libe.com/cache/css/1b9d227b4dfa.css" type="text/css" media="screen, print">
<link rel="stylesheet" href="http://s1.libe.com/cache/css/0f76f1b47b82.css" type="text/css" media="all">
<link rel="canonical" href="http://www.liberation.fr/monde/2015/04/30/un-troisieme-francais-mort-dans-le-seisme-au-nepal_1278483"/>
<link type="application/rss+xml" rel="alternate" title="Monde" href="http://rss.liberation.fr/rss/10/"/>
<link type="application/rss+xml" rel="alternate" title="A la une sur Libération" href="http://rss.liberation.fr/rss/latest/"/>
<link rel="stylesheet" href="http://s1.libe.com/cache/css/794f2126806d.css" type="text/css" media="all"/>
<link rel="stylesheet" href="http://s1.libe.com/cache/css/1b9d227b4dfa.css" type="text/css" media="screen, print"/>
<link rel="stylesheet" href="http://s1.libe.com/cache/css/0f76f1b47b82.css" type="text/css" media="all"/>
<!--
www.KNACSS.com V2.6e @author: Raphael Goetter, Alsacreations
Licence CC-BY http://creativecommons.org/licenses/by/3.0/fr/
-->
<!-- Icons -->
<!-- 16x16 -->
<link rel="shortcut icon" href="http://s1.libe.com/favicon.ico">
<link rel="shortcut icon" href="http://s1.libe.com/favicon.ico"/>
<!-- 32x32 -->
<link rel="shortcut icon" href="http://s1.libe.com/favicon.png">
<link rel="shortcut icon" href="http://s1.libe.com/favicon.png"/>
<!--iOS -->
<!--<meta name="viewport" content="width=1000">-->
<meta name="apple-mobile-web-app-title" content="Libération">
<meta name="viewport" content="initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-itunes-app" content="app-id=336173383">
<meta name="apple-mobile-web-app-title" content="Libération"/>
<meta name="viewport" content="initial-scale=1.0"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-itunes-app" content="app-id=336173383"/>
<!-- Windows 8 / RT -->
<!--[if IEMobile]><meta http-equiv="cleartype" content="on"><![endif]-->
<!--[if lt IE 9]>
<meta http-equiv="cleartype" content="on">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="cleartype" content="on"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<script src="http://s1.libe.com/compat/respond.min.js"></script>
@ -300,14 +300,14 @@ actualités, news">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#header_mobile_search" data-parent="#header_mobile"> <span class="sr-only">Rechercher</span> <span class="icon-zoom"></span> </button>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#header_mobile_user" data-parent="#header_mobile"> <span class="sr-only">Mon profil</span> <span class="icon-user"></span> </button>
<button type="button" class="navbar-toggle liberadio_trigger_js"> <span class="sr-only">Libéradio</span> <span class="icon-volume"></span> </button>
<a class="navbar-brand" data-href="http://www.liberation.fr"><img src="http://s1.libe.com/img/logo-liberation-311x113.png" alt="Libération"></a>
<a class="navbar-brand" data-href="http://www.liberation.fr"><img src="http://s1.libe.com/img/logo-liberation-311x113.png" alt="Libération"/></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="panel">
<div class="collapse navbar-collapse" id="header_mobile_search">
<form class="navbar-form navbar-left" role="search" method="get" action="/recherche/">
<div class="form-group">
<input type="search" name="q" class="focus" placeholder="Ex : éducation, rebonds"> </div>
<input type="search" name="q" class="focus" placeholder="Ex : éducation, rebonds"/> </div>
<button type="submit" class="btn btn-default">Recherche</button>
</form>
</div>
@ -468,10 +468,10 @@ actualités, news">
<header id="header" role="banner">
<div class="wrapper line">
<div id="logo" class="mod">
<a href="/"><img src="http://s1.libe.com/img/logo-liberation-311x113.png" alt="Libération"></a> <span class="articleSection"><a href="/monde,10">Monde</a></span> </div>
<a href="/"><img src="http://s1.libe.com/img/logo-liberation-311x113.png" alt="Libération"/></a> <span class="articleSection"><a href="/monde,10">Monde</a></span> </div>
<div id="peek" class="mod">
<div class="wrapper">
<a class="media" href="http://journal.liberation.fr/publication/liberation/1846/"> <img src="http://md0.libe.com/api/libe/v2/paperpage/218375/?format=jpg" alt="La Une du 30 avril 2015"> </a>
<a class="media" href="http://journal.liberation.fr/publication/liberation/1846/"> <img src="http://md0.libe.com/api/libe/v2/paperpage/218375/?format=jpg" alt="La Une du 30 avril 2015"/> </a>
<div class="content">
<div class="name">Journal numérique
<time class="time" datetime="2015-04-30T00:00:00">30 avril 2015</time>
@ -487,8 +487,8 @@ actualités, news">
<div id="search" class="right"><span class="button"><em>Rechercher</em><i class="icon-zoom"></i></span>
<form method="get" action="/recherche/">
<fieldset class="target">
<input type="search" name="q" class="focus">
<input class="btn grey" type="submit" value="Rechercher">
<input type="search" name="q" class="focus"/>
<input class="btn grey" type="submit" value="Rechercher"/>
</fieldset>
</form>
</div>
@ -528,7 +528,7 @@ actualités, news">
<li class="menu-evenementslibe"><a title="Rubrique Événements" href="/evenements-libe,100200">Événements</a></li>
</ul>
</div>
<hr>
<hr/>
<div class="wrapper line nav-secondary">
<ul class="heading hsb">
<li><a title="Rubrique Ukraine,&nbsp;la&nbsp;drôle&nbsp;de&nbsp;guerre" href="/ukraine-la-crise,100372">Ukraine,&nbsp;la&nbsp;drôle&nbsp;de&nbsp;guerre</a></li>
@ -600,14 +600,14 @@ actualités, news">
<li class="reader"><a href="#"><span class="name">Lire sur le reader</span><i class="icon-reader"></i><span class="hit">Mode zen</span></a></li>
</ul>
</aside>
<figure itemscope="" itemtype="http://schema.org/ImageObject"> <img itemprop="contentURL" src="http://md1.libe.com/photo/755923-000_hkg10175905.jpg?modified_at=1430371146&amp;width=750" alt="Un Népalais prie à Katmandou, le 30 avril 2015." data-src="http://md1.libe.com/photo/755923-000_hkg10175905.jpg?modified_at=1430371146&amp;width=750" data-src-retina="http://md1.libe.com/photo/755923-000_hkg10175905.jpg?modified_at=1430371146&amp;width=750" data-lazy-load="false" width="750">
<figure itemscope="" itemtype="http://schema.org/ImageObject"> <img itemprop="contentURL" src="http://md1.libe.com/photo/755923-000_hkg10175905.jpg?modified_at=1430371146&amp;width=750" alt="Un Népalais prie à Katmandou, le 30 avril 2015." data-src="http://md1.libe.com/photo/755923-000_hkg10175905.jpg?modified_at=1430371146&amp;width=750" data-src-retina="http://md1.libe.com/photo/755923-000_hkg10175905.jpg?modified_at=1430371146&amp;width=750" data-lazy-load="false" width="750"/>
<figcaption itemprop="description">Un Népalais prie à Katmandou, le 30 avril 2015. (Photo Prakash Mathema. AFP)</figcaption>
</figure>
<div class="description">
<h2 itemprop="description">Laurent Fabius a accueilli jeudi matin à Roissy un premier avion spécial ramenant des rescapés.</h2>
<div itemprop="copyrightHolder provider sourceOrganization" itemscope="" itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Libération">
<meta itemprop="url" content="http://www.liberation.fr/contacts/"> </div>
<meta itemprop="name" content="Libération"/>
<meta itemprop="url" content="http://www.liberation.fr/contacts/"/> </div>
</div>
</header>
<div class="article-body mod" itemprop="articleBody" id="article-body">
@ -642,7 +642,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<p>Le séisme a fait près de 5&nbsp;500 morts et touche huit des 28 millions dhabitants du Népal. Des dizaines de milliers de personnes sont sans abri.</p>
<p>
<iframe src="http://www.dailymotion.com/embed/video/x2oikl3" frameborder="0" width="100%" data-aspect-ratio="0.5625" data-responsive="1"></iframe>
<br><em></em></p>
<br/><em></em></p>
</div>
<div class="authors-container"> <span class="author" itemprop="author creator" itemscope="" itemtype="http://schema.org/Person"><a href="http://www.liberation.fr/auteur/2005-afp"><span itemprop="name"> AFP</span></a>
</span>
@ -737,8 +737,8 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<h2>Recevoir la newsletter</h2>
<p>L'actu Libé tous les matins par email</p>
<form class="newsletter_form_js">
<input type="text" id="EMAIL_FIELD" name="EMAIL_FIELD" placeholder="Adresse e-mail" class="email-field">
<input type="button" value="S'inscrire" class="btn libe" onclick="return validForm(this, 'newsletter-form');"> </form>
<input type="text" id="EMAIL_FIELD" name="EMAIL_FIELD" placeholder="Adresse e-mail" class="email-field"/>
<input type="button" value="S'inscrire" class="btn libe" onclick="return validForm(this, 'newsletter-form');"/> </form>
</div>
<div class="live"> <a class="live-title" href="/direct/">Direct<i class="icon-arrow-right"></i></a>
<ul class="live-flux live_flux_js" data-since="1430397895.165800" data-before="1430381429.720523" data-html-api-attr="side_html" data-polling="True">
@ -754,10 +754,10 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<a href="http://www.liberation.fr/direct/#live-item-6193" target="_blank"> <span class="live-item-title">Un artiste arrêté pour avoir coloré un geyser</span> </a>
</div>
<a href="http://www.liberation.fr/direct/#live-item-6193" target="_blank"> </a>
<div class="live-item-tweet"> <img class="tweet-image" src="http://pbs.twimg.com/media/CDwsg63WgAAZwcT.jpg">
<div class="live-item-tweet"> <img class="tweet-image" src="http://pbs.twimg.com/media/CDwsg63WgAAZwcT.jpg"/>
<div class="tweet">
<div class="tweet-profile">
<a class="tweet-profile-picture" href="#"> <img src="http://pbs.twimg.com/profile_images/525022505140899840/SqjK4CPu_normal.png"> </a>
<a class="tweet-profile-picture" href="#"> <img src="http://pbs.twimg.com/profile_images/525022505140899840/SqjK4CPu_normal.png"/> </a>
<div class="tweet-profile-identity">
<div class="tweet-user-name">artnet</div> <a class="tweet-screen-name" href="https://twitter.com/artnet">@artnet</a> </div>
</div>
@ -778,7 +778,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<a class="live-item-pub-date" href="http://www.liberation.fr/direct/element/6191/" target="_blank"> <span>13:54</span> </a>
<a href="http://www.liberation.fr/direct/#live-item-6191" target="_blank"> <span class="live-item-title">En Islande, tuer un Basque est désormais interdit</span> </a>
</div>
<a href="http://www.liberation.fr/direct/#live-item-6191" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/631481-des-drapeaux-aux-couleurs-basques.jpg?modified_at=1395757809" title=""> </a>
<a href="http://www.liberation.fr/direct/#live-item-6191" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/631481-des-drapeaux-aux-couleurs-basques.jpg?modified_at=1395757809" title=""/> </a>
</li>
<li data-id="6189" data-modified-at="1430394327.620160" data-published-at="1430394224.78608" data-pinned="false" class="live-item live_item_js">
<div class="live-item-title-container">
@ -806,7 +806,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<div class="live-item-tweet">
<div class="tweet">
<div class="tweet-profile">
<a class="tweet-profile-picture" href="#"> <img src="http://pbs.twimg.com/profile_images/529237339709517824/-k-bIWzH_normal.jpeg"> </a>
<a class="tweet-profile-picture" href="#"> <img src="http://pbs.twimg.com/profile_images/529237339709517824/-k-bIWzH_normal.jpeg"/> </a>
<div class="tweet-profile-identity">
<div class="tweet-user-name">Laure de La Raudière</div> <a class="tweet-screen-name" href="https://twitter.com/lauredlr">@lauredlr</a> </div>
</div>
@ -819,7 +819,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<a class="live-item-pub-date" href="http://www.liberation.fr/direct/element/6185/" target="_blank"> <span>13:08</span> </a>
<a href="http://www.liberation.fr/direct/#live-item-6185" target="_blank"> <span class="live-item-title">Les calories bientôt affichées sur les bouteilles d'alcool</span> </a>
</div>
<a href="http://www.liberation.fr/direct/#live-item-6185" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/703736--.jpg?modified_at=1419846514" title=""> </a>
<a href="http://www.liberation.fr/direct/#live-item-6185" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/703736--.jpg?modified_at=1419846514" title=""/> </a>
</li>
<li data-id="6187" data-modified-at="1430391437.357331" data-published-at="1430391437.353734" data-pinned="false" class="live-item live_item_js">
<div class="live-item-title-container">
@ -841,7 +841,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<a class="live-item-pub-date" href="http://www.liberation.fr/direct/element/6175/" target="_blank"> <span>12:34</span> </a>
<a href="http://www.liberation.fr/direct/#live-item-6175" target="_blank"> <span class="live-item-title">Russie : l'entreprise nationale Gazprom enregistre une baisse de 90% de ses bénéfices</span> </a>
</div>
<a href="http://www.liberation.fr/direct/#live-item-6175" target="_blank"> <img class="live-item-image" src="https://qzprod.files.wordpress.com/2015/04/rtr2325p.jpg?w=1600" title="Russias gas weapon, Gazprom, is rapidly losing pressure"> </a>
<a href="http://www.liberation.fr/direct/#live-item-6175" target="_blank"> <img class="live-item-image" src="https://qzprod.files.wordpress.com/2015/04/rtr2325p.jpg?w=1600" title="Russias gas weapon, Gazprom, is rapidly losing pressure"/> </a>
</li>
<li data-id="6183" data-modified-at="1430392581.941865" data-published-at="1430389331.153851" data-pinned="false" class="live-item live_item_js">
<div class="live-item-title-container">
@ -865,7 +865,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<a class="live-item-pub-date" href="http://www.liberation.fr/direct/element/6179/" target="_blank"> <span>12:17</span> </a>
<a href="http://www.liberation.fr/direct/#live-item-6179" target="_blank"> <span class="live-item-title">Pakistan : prison à vie pour les agresseurs de Malala </span> </a>
</div>
<a href="http://www.liberation.fr/direct/#live-item-6179" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/684944-000_ts-dv1887153.jpg?modified_at=1418736417" title=""> </a>
<a href="http://www.liberation.fr/direct/#live-item-6179" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/684944-000_ts-dv1887153.jpg?modified_at=1418736417" title=""/> </a>
</li>
<li data-id="6181" data-modified-at="1430388660.394639" data-published-at="1430388660.391365" data-pinned="false" class="live-item live_item_js">
<div class="live-item-title-container">
@ -887,7 +887,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<p>(photo AFP)</p>
</div>
</div>
<a href="http://www.liberation.fr/direct/#live-item-6178" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/715611--.jpg?modified_at=1423758922" title=""> </a>
<a href="http://www.liberation.fr/direct/#live-item-6178" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/715611--.jpg?modified_at=1423758922" title=""/> </a>
</li>
<li data-id="6177" data-modified-at="1430387144.455908" data-published-at="1430387144.450692" data-pinned="false" class="live-item live_item_js">
<div class="live-item-title-container">
@ -903,7 +903,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<p>(photo DR)</p>
</div>
</div>
<a href="http://www.liberation.fr/direct/#live-item-6174" target="_blank"> <img class="live-item-image" src="http://md1.libe.com/photo/728427-next70_culte_kway.jpg?modified_at=1430384803&amp;width=750" title=""> </a>
<a href="http://www.liberation.fr/direct/#live-item-6174" target="_blank"> <img class="live-item-image" src="http://md1.libe.com/photo/728427-next70_culte_kway.jpg?modified_at=1430384803&amp;width=750" title=""/> </a>
</li>
<li data-id="6173" data-modified-at="1430389301.776911" data-published-at="1430386264.401609" data-pinned="false" class="live-item live_item_js">
<div class="live-item-title-container">
@ -936,7 +936,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<p>(photo AFP/Bundespolizei)</p>
</div>
</div>
<a href="http://www.liberation.fr/direct/#live-item-6170" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/756216-000_dv2014616.jpg?modified_at=1430384473" title=""> </a>
<a href="http://www.liberation.fr/direct/#live-item-6170" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/756216-000_dv2014616.jpg?modified_at=1430384473" title=""/> </a>
</li>
<li data-id="6169" data-modified-at="1430384371.211740" data-published-at="1430384371.209262" data-pinned="false" class="live-item live_item_js">
<div class="live-item-title-container">
@ -958,10 +958,10 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
</div>
</div>
<a href="http://www.liberation.fr/direct/#live-item-6163" target="_blank"> </a>
<div class="live-item-tweet"> <img class="tweet-image" src="http://pbs.twimg.com/media/CD0459BWoAANWLC.png">
<div class="live-item-tweet"> <img class="tweet-image" src="http://pbs.twimg.com/media/CD0459BWoAANWLC.png"/>
<div class="tweet">
<div class="tweet-profile">
<a class="tweet-profile-picture" href="#"> <img src="http://pbs.twimg.com/profile_images/554623459423031296/bzNTGLYo_normal.jpeg"> </a>
<a class="tweet-profile-picture" href="#"> <img src="http://pbs.twimg.com/profile_images/554623459423031296/bzNTGLYo_normal.jpeg"/> </a>
<div class="tweet-profile-identity">
<div class="tweet-user-name">Élysée</div> <a class="tweet-screen-name" href="https://twitter.com/Elysee">@Elysee</a> </div>
</div>
@ -975,10 +975,10 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<div class="live-item-content"> <span class="flavor-text">Népal.</span> </div>
</div>
<a href="http://www.liberation.fr/direct/#live-item-6165" target="_blank"> </a>
<div class="live-item-tweet"> <img class="tweet-image" src="http://pbs.twimg.com/media/CD006VXWAAECbk0.jpg">
<div class="live-item-tweet"> <img class="tweet-image" src="http://pbs.twimg.com/media/CD006VXWAAECbk0.jpg"/>
<div class="tweet">
<div class="tweet-profile">
<a class="tweet-profile-picture" href="#"> <img src="http://pbs.twimg.com/profile_images/2579541358/0rmyxf4ccg09oh2ti4m4_normal.png"> </a>
<a class="tweet-profile-picture" href="#"> <img src="http://pbs.twimg.com/profile_images/2579541358/0rmyxf4ccg09oh2ti4m4_normal.png"/> </a>
<div class="tweet-profile-identity">
<div class="tweet-user-name">France Info</div> <a class="tweet-screen-name" href="https://twitter.com/franceinfo">@franceinfo</a> </div>
</div>
@ -1008,7 +1008,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<a class="live-item-pub-date" href="http://www.liberation.fr/direct/element/6160/" target="_blank"> <span>10:10</span> </a>
<a href="http://www.liberation.fr/direct/#live-item-6160" target="_blank"> <span class="live-item-title">Jupe trop longue : la mère de la collégienne joue l'apaisement</span> </a>
</div>
<a href="http://www.liberation.fr/direct/#live-item-6160" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/754926-charleville-mezieres-exclue-du-college-pour-une-jupe-trop-longue.jpg?modified_at=1430321168" title=""> </a>
<a href="http://www.liberation.fr/direct/#live-item-6160" target="_blank"> <img class="live-item-image" src="http://md0.libe.com/photo/754926-charleville-mezieres-exclue-du-college-pour-une-jupe-trop-longue.jpg?modified_at=1430321168" title=""/> </a>
</li>
</ul>
</div>
@ -1082,7 +1082,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<a href="/video/2015/04/27/fatou-diome-si-les-gens-qui-meurent-etaient-des-blancs-la-terre-entiere-serait-en-train-de_1271272">
<img itemprop="contentURL" src="http://s1.libe.com/photocrop/img/image-lazy.png" alt="" data-src="http://md1.libe.com/photo/751155-fatou-diome-si-les-gens-qui-meurent-etaient-des-blancs-la-terre-entiere-serait-en-train-de.jpg?modified_at=1430127005&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-src-retina="http://md1.libe.com/photo/751155-fatou-diome-si-les-gens-qui-meurent-etaient-des-blancs-la-terre-entiere-serait-en-train-de.jpg?modified_at=1430127005&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-lazy-load="true" width="150" height="100">
<img itemprop="contentURL" src="http://s1.libe.com/photocrop/img/image-lazy.png" alt="" data-src="http://md1.libe.com/photo/751155-fatou-diome-si-les-gens-qui-meurent-etaient-des-blancs-la-terre-entiere-serait-en-train-de.jpg?modified_at=1430127005&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-src-retina="http://md1.libe.com/photo/751155-fatou-diome-si-les-gens-qui-meurent-etaient-des-blancs-la-terre-entiere-serait-en-train-de.jpg?modified_at=1430127005&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-lazy-load="true" width="150" height="100"/>
</a>
@ -1097,7 +1097,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<a href="/video/2015/04/28/ceremonie-des-molieres-un-comedien-en-costume-d-adam-devant-la-ministre_1273541">
<img itemprop="contentURL" src="http://s1.libe.com/photocrop/img/image-lazy.png" alt="" data-src="http://md1.libe.com/photo/752647-ceremonie-des-molieres-un-comedien-en-costume-d-adam-devant-la-ministre.jpg?modified_at=1430206275&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-src-retina="http://md1.libe.com/photo/752647-ceremonie-des-molieres-un-comedien-en-costume-d-adam-devant-la-ministre.jpg?modified_at=1430206275&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-lazy-load="true" width="150" height="100">
<img itemprop="contentURL" src="http://s1.libe.com/photocrop/img/image-lazy.png" alt="" data-src="http://md1.libe.com/photo/752647-ceremonie-des-molieres-un-comedien-en-costume-d-adam-devant-la-ministre.jpg?modified_at=1430206275&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-src-retina="http://md1.libe.com/photo/752647-ceremonie-des-molieres-un-comedien-en-costume-d-adam-devant-la-ministre.jpg?modified_at=1430206275&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-lazy-load="true" width="150" height="100"/>
</a>
@ -1112,7 +1112,7 @@ Par<span class="authorname"> Laurence Defranoux</span> </span>
<a href="/video/2015/04/27/seisme-au-nepal-les-images-de-videosurveillance-d-un-restaurant-chinois_1271727">
<img itemprop="contentURL" src="http://s1.libe.com/photocrop/img/image-lazy.png" alt="" data-src="http://md1.libe.com/photo/751455-seisme-au-nepal-les-images-de-videosurveillance-d-un-restaurant-chinois.jpg?modified_at=1430142657&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-src-retina="http://md1.libe.com/photo/751455-seisme-au-nepal-les-images-de-videosurveillance-d-un-restaurant-chinois.jpg?modified_at=1430142657&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-lazy-load="true" width="150" height="100">
<img itemprop="contentURL" src="http://s1.libe.com/photocrop/img/image-lazy.png" alt="" data-src="http://md1.libe.com/photo/751455-seisme-au-nepal-les-images-de-videosurveillance-d-un-restaurant-chinois.jpg?modified_at=1430142657&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-src-retina="http://md1.libe.com/photo/751455-seisme-au-nepal-les-images-de-videosurveillance-d-un-restaurant-chinois.jpg?modified_at=1430142657&amp;ratio_x=03&amp;ratio_y=02&amp;width=150" data-lazy-load="true" width="150" height="100"/>
</a>
@ -1158,10 +1158,10 @@ Par<span class="authorname"> Pierre Alonso</span> </span>
</li>
</ul>
<section id="aside-heading-suscriber">
<div class="cover" onclick="window.location.assign('http://journal.liberation.fr/publication/liberation/1846/');"> <span class="media"><img src="http://md0.libe.com/api/libe/v2/paperpage/218375/?format=jpg" alt="La Une du 29 avril 2015"></span> <span class="link"><a href="http://journal.liberation.fr/publication/liberation/1846/"><strong>Feuilleter le journal</strong></a></span> </div>
<div class="cover" onclick="window.location.assign('http://journal.liberation.fr/publication/liberation/1846/');"> <span class="media"><img src="http://md0.libe.com/api/libe/v2/paperpage/218375/?format=jpg" alt="La Une du 29 avril 2015"/></span> <span class="link"><a href="http://journal.liberation.fr/publication/liberation/1846/"><strong>Feuilleter le journal</strong></a></span> </div>
<div class="offer mod" onclick="window.location.assign('http://token.liberation.fr/accounts/offers');"> <span class="media">
<a>
<img alt="Libération.fr sur tous les écrans" src="http://s1.libe.com/img/devices-226x151.png">
<img alt="Libération.fr sur tous les écrans" src="http://s1.libe.com/img/devices-226x151.png"/>
</a>
</span>
<div class="calltoaction">
@ -1183,7 +1183,7 @@ Par<span class="authorname"> Pierre Alonso</span> </span>
<iframe height="300" src="http://cshoppingbox.partner.leguide.com/liberationv2/001_accueil.htm" style="border: none; overflow: hidden; width:100%; background-color: transparent;" scrolling="no" frameborder="0"></iframe>
</div>
<div class="internal-ad promo block-ad" onclick="window.open('http://adfarm.mediaplex.com/ad/ck/19766-190962-8779-0?mpt=[CACHEBUSTER]');"> <span class="name"><strong>Apprenez une langue</strong> avec Babbel</span>
<!-- Stars notation --><img src="http://s1.libe.com/photocrop/img/image-lazy.png" data-lazy-load="true" data-src="http://s1.libe.com/img/babbel.jpg?5ab453ca06a48f0e53b210afa383781f">
<!-- Stars notation --><img src="http://s1.libe.com/photocrop/img/image-lazy.png" data-lazy-load="true" data-src="http://s1.libe.com/img/babbel.jpg?5ab453ca06a48f0e53b210afa383781f"/>
<!-- End -->
<p> <strong>Cours de langues par Internet</strong> 13 langues disponibles. Apprenez où et quand vous voulez. Devenez enfin bon en langues </p>
<div class="call-action">Je me lance</div>
@ -1204,7 +1204,7 @@ Par<span class="authorname"> Pierre Alonso</span> </span>
<div class="shopping-list"> <span class="name"><a rel="nofollow" href="http://boutique.liberation.fr/" target="_blank"><strong>La boutique de Libé</strong></a></span>
<div class="product-item">
<a class="url" rel="nofollow" href="http://boutique.liberation.fr/collections/unes/products/une-encadree-30x40-steve-jobs-7-octobre-2011" target="_blank">
<div class="product-photo"><img alt="La nostalgie heureuse" src="http://s1.libe.com/photocrop/img/image-lazy.png" data-src="http://s1.libe.com/img/boutique_une1.jpg?5ab453ca06a48f0e53b210afa383781f" data-lazy-load="true"></div>
<div class="product-photo"><img alt="La nostalgie heureuse" src="http://s1.libe.com/photocrop/img/image-lazy.png" data-src="http://s1.libe.com/img/boutique_une1.jpg?5ab453ca06a48f0e53b210afa383781f" data-lazy-load="true"/></div>
<div class="fname">Steve Jobs - 30x40cm</div>
<div class="desc">Une - tirage photographique professionnel</div>
<div class="pricing">39€</div>
@ -1213,7 +1213,7 @@ Par<span class="authorname"> Pierre Alonso</span> </span>
</div>
<div class="product-item">
<a class="url" rel="nofollow" href="http://boutique.liberation.fr/collections/all" target="_blank">
<div class="product-photo"><img alt="La nostalgie heureuse" src="http://s1.libe.com/photocrop/img/image-lazy.png" data-src="http://s1.libe.com/img/boutique_une2.jpg?5ab453ca06a48f0e53b210afa383781f" data-lazy-load="true"></div>
<div class="product-photo"><img alt="La nostalgie heureuse" src="http://s1.libe.com/photocrop/img/image-lazy.png" data-src="http://s1.libe.com/img/boutique_une2.jpg?5ab453ca06a48f0e53b210afa383781f" data-lazy-load="true"/></div>
<div class="fname">Le meilleur de Libé</div>
<div class="desc">Anciens numéros, hors-série, collectors</div>
<div class="pricing">A partir de 9,90€</div>
@ -1289,19 +1289,19 @@ Par<span class="authorname"> Pierre Alonso</span> </span>
<section class="partners-box promo">
<ul>
<li onclick="window.open('http://boutique.liberation.fr/', '_blank');">
<div class="content"> <span class="name"><strong>La boutique de Libé</strong></span> <img data-lazy-load="true" src="http://s1.libe.com/photocrop/img/image-lazy.png" data-src="http://s1.libe.com/img/boutique2.jpg?5ab453ca06a48f0e53b210afa383781f">
<div class="content"> <span class="name"><strong>La boutique de Libé</strong></span> <img data-lazy-load="true" src="http://s1.libe.com/photocrop/img/image-lazy.png" data-src="http://s1.libe.com/img/boutique2.jpg?5ab453ca06a48f0e53b210afa383781f"/>
<p> <strong>Le meilleur de Libération</strong> Offrez ou offrez-vous des unes, beaux livres, anciens numéros, hors-séries, e-books </p>
<div class="call-action">La boutique</div>
</div>
</li>
<li onclick="window.open('http://cours-anglais.liberation.fr/onefree201303', '_blank');">
<div class="content"> <span class="name"><strong>Cours d'anglais</strong> avec Gymglish</span> <img data-lazy-load="true" src="http://s1.libe.com/photocrop/img/image-lazy.png" data-src="http://s1.libe.com/img/gymglish.jpg?5ab453ca06a48f0e53b210afa383781f">
<div class="content"> <span class="name"><strong>Cours d'anglais</strong> avec Gymglish</span> <img data-lazy-load="true" src="http://s1.libe.com/photocrop/img/image-lazy.png" data-src="http://s1.libe.com/img/gymglish.jpg?5ab453ca06a48f0e53b210afa383781f"/>
<p> <strong>Cours d'anglais par Internet</strong> Testez gratuitement nos cours d'anglais pendant 1 mois. </p>
<div class="call-action">J'en profite</div>
</div>
</li>
<li onclick="window.open('http://trf.greatviews.de/cl?m315=c&amp;q=1Sdq54EaitGUuYG3fH4eLySf', '_blank');">
<div class="content"> <span class="name"><strong>Rencontres sérieuses</strong> avec Parship</span> <img data-lazy-load="true" src="http://s1.libe.com/photocrop/img/image-lazy.png" data-src="http://s1.libe.com/img/parship.jpg?5ab453ca06a48f0e53b210afa383781f">
<div class="content"> <span class="name"><strong>Rencontres sérieuses</strong> avec Parship</span> <img data-lazy-load="true" src="http://s1.libe.com/photocrop/img/image-lazy.png" data-src="http://s1.libe.com/img/parship.jpg?5ab453ca06a48f0e53b210afa383781f"/>
<p> <strong>Trouvez l'amour</strong> Rencontrez des célibataires qui vous correspondent avec Libé.fr et Parship </p>
<div class="call-action">Je découvre</div>
</div>
@ -1318,7 +1318,7 @@ Par<span class="authorname"> Pierre Alonso</span> </span>
<section class="bottom-banner-suscriber offer">
<div onclick="window.location.assign('http://token.liberation.fr/accounts/offers');" class="mod"> <span class="media">
<a>
<img alt="Libération.fr sur tous les écrans" src="http://s1.libe.com/img/devices-226x151.png">
<img alt="Libération.fr sur tous les écrans" src="http://s1.libe.com/img/devices-226x151.png"/>
</a>
</span>
<div class="calltoaction">
@ -1333,7 +1333,7 @@ Par<span class="authorname"> Pierre Alonso</span> </span>
</p>
</div>
<p class="baseline"> <a href="#">
Le quotidien chaque jour chez vous Libé sur iPhone, iPad et Android <br>
Le quotidien chaque jour chez vous Libé sur iPhone, iPad et Android <br/>
Accès illimité aux archives
</a> </p> <span class="btn subscribe" onclick="window.location.assign('http://token.liberation.fr/accounts/offers');">
<a>S'abonner</a>
@ -1356,11 +1356,11 @@ Par<span class="authorname"> Pierre Alonso</span> </span>
<h2>Recevoir la newsletter</h2>
<p>Recevez l'actu Libé tous les matins par email</p>
<form class="newsletter_form_js">
<input type="text" id="EMAIL_FIELD" name="EMAIL_FIELD" placeholder="Adresse e-mail" class="email-field">
<input type="button" value="S'inscrire" class="btn libe" onclick="return validForm(this, 'newsletter-form');"> </form>
<input type="text" id="EMAIL_FIELD" name="EMAIL_FIELD" placeholder="Adresse e-mail" class="email-field"/>
<input type="button" value="S'inscrire" class="btn libe" onclick="return validForm(this, 'newsletter-form');"/> </form>
</div>
<div id="footer-teaser" class="mod">
<a class="media left" href="http://boutique.liberation.fr/products/une-encadree-40x50-cm-yes-barack-obama" target="_blank"><img src="http://s1.libe.com/img/cover-shopify-full.jpg" alt=""></a>
<a class="media left" href="http://boutique.liberation.fr/products/une-encadree-40x50-cm-yes-barack-obama" target="_blank"><img src="http://s1.libe.com/img/cover-shopify-full.jpg" alt=""/></a>
<div class="description">
<h2>Libé boutique</h2>
<ul>
@ -1728,7 +1728,7 @@ Par<span class="authorname"> Pierre Alonso</span> </span>
}
window.xtparam += "&ptype=" + xt_pagetype + "&ac=" + xt_ac + "&an=" + xt_an + xt_multc;
</script>
<noscript> <img width="1" height="1" alt="xiti" src="http://logliberation.xiti.com/hit.xiti?s=381060&amp;s2=48&amp;p=Monde::Article_-_Un_troisieme_Francais_mort_dans_le_seisme_au_Nepal_-_1278483&amp;ptype=2-1-0&amp;di=&amp;ac=&amp;an=&amp;x1=0&amp;x2=40&amp;x3=10&amp;x4=&amp;x5=20150430&amp;x6=20&amp;x7=1278483"> </noscript>
<noscript> <img width="1" height="1" alt="xiti" src="http://logliberation.xiti.com/hit.xiti?s=381060&amp;s2=48&amp;p=Monde::Article_-_Un_troisieme_Francais_mort_dans_le_seisme_au_Nepal_-_1278483&amp;ptype=2-1-0&amp;di=&amp;ac=&amp;an=&amp;x1=0&amp;x2=40&amp;x3=10&amp;x4=&amp;x5=20150430&amp;x6=20&amp;x7=1278483"/> </noscript>
<script type="text/javascript" src="http://s1.libe.com/cache/js/1883037ffeac.js"></script>
<script type="text/javascript">
if (typeof isPubActive !== 'undefined' && isPubActive) {
@ -1800,4 +1800,4 @@ Par<span class="authorname"> Pierre Alonso</span> </span>
<!-- end iframe -->
</body>
</html>
</html>

@ -1,9 +1,9 @@
<div id="readability-page-1" class="page">
<div class="post-content entry-content new-annotation">
<p data-textannotation-id="58a492029dca5e6a6e481d21b6b2933a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg" data-chomp-id="n1s6c2m6kc07iqdyllj6" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg" class="js_annotatable-image cursor-crosshair"></span></p>
<p data-textannotation-id="58a492029dca5e6a6e481d21b6b2933a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg" data-chomp-id="n1s6c2m6kc07iqdyllj6" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg" class="js_annotatable-image cursor-crosshair"/></span></p>
<p data-textannotation-id="a043044f9b3e31fd85568b17e3b1b5f3" class="first-text"><span>We all buy things from time to time that we don't really need. It's okay to appeal to your wants every once in a while, as long as you're in control. If you struggle with clutter, impulse buys, and buyer's remorse, here's how to put your mind in the right place before you even set foot in a store.</span></p>
<h3 data-textannotation-id="e51cbbc52eb8c3b33571908351076cf7"><strong>Understand How Your Own Brain Works Against You</strong></h3>
<p data-textannotation-id="268f7702467d33e3b0972dd09f1cf0a6" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg" data-chomp-id="o4dpyrcbiqyfrc3bxx6p" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg" class="js_annotatable-image cursor-crosshair"></span></p>
<p data-textannotation-id="268f7702467d33e3b0972dd09f1cf0a6" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg" data-chomp-id="o4dpyrcbiqyfrc3bxx6p" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg" class="js_annotatable-image cursor-crosshair"/></span></p>
<p data-textannotation-id="32604538f84919efff270e87b61191a1">It may come as no surprise to learn that stores employ all kinds of tricks to get you to part ways with your cash, and your brain plays right along. Through psychological tricks, product placement, and even color, stores are designed from the ground up to increase spending. We've talked about the biggest things stores do to manipulate your senses, but here are some of the biggest things to look out for:</p>
<ul>
<li data-textannotation-id="cd748c8b681c781cdd728c5e17b5e05f"><strong>Color:</strong> Stores use color to make products attractive and eye-catching, but they also use color on price labels. Red stands out and can encourage taking action, that's why it's commonly associated with sale signage and advertising. When you see red, remember what they're trying to do to your brain with that color. You don't to buy something just because it's on sale.</li>
@ -15,7 +15,7 @@
<aside class="referenced-wide referenced-fullwidth js_inset tmpl_referencedGroupFullWidth clearfix core-decorated-inset"> </aside>
<p data-textannotation-id="89992f1ca493b248eea6ed1772326c46">For example, confirmation bias makes you only believe the information that conforms to your prior beliefs, while you discount everything else. Advertisers appeal to this bias directly by convincing you one item is better than another with imagery and other tricks, regardless of what hard facts might say. Keep your mind open, do your own research, and accept when you're wrong about a product. The Decoy effect is also a commonly used tactic. You think one product is a deal because it's next to a similar product that's priced way higher. Even if it's a product you need, it's probably not as good of a deal as it looks right then and there. Again, always research beforehand and be on the lookout for this common trick to avoid impulse buys.</p>
<h3 data-textannotation-id="eedde8c384145f2593efc2a15a4d79de"><strong>Make a List of </strong><em><strong>Everything</strong></em><strong> You Own and Do Some Decluttering</strong></h3>
<p data-textannotation-id="8044cf9aab698fd28931acd90ba96f7a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg" data-chomp-id="xrhkwleyurcizy4akiae" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg" class="js_annotatable-image cursor-crosshair"></span></p>
<p data-textannotation-id="8044cf9aab698fd28931acd90ba96f7a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg" data-chomp-id="xrhkwleyurcizy4akiae" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg" class="js_annotatable-image cursor-crosshair"/></span></p>
<p data-textannotation-id="a2a886d841e5aed848cdf7088edde4ea">Now that you know what you're up against, it's time to start changing the way you think. Before you can stop buying crap you don't need, you need to identify what that crap is. The first step is to make a list of <a href="http://lifehacker.com/how-to-defeat-the-urge-to-binge-shop-1468216943" x-inset="1">every single thing you own</a>. <strong>Every. Single. Thing</strong>. This might sound extreme, but you need to gather your data so you can start reprogramming your mind.</p>
<aside class="referenced-wide referenced-fullwidth js_inset tmpl_referencedGroupFullWidth clearfix core-decorated-inset"> </aside>
<p data-textannotation-id="bbe57b7aa20b48550e5f66b7c530822c">The purpose of this exercise is twofold: you see what you already have and don't need to ever buy again, and you get to see what you shouldn't have bought in the first place. As you list everything out, separate items into categories. It's extremely important that you are as honest with yourself as possible while you do this. It's also important you actually write this all down or type it all out. Here is the first set of categories to separate everything into:</p>
@ -34,19 +34,19 @@
<p data-textannotation-id="816cd504161fecc6f3e173779b33d5db">Remember to be honest and adjust your lists accordingly. There's nothing wrong with keeping things you wanted. Material items can <a href="http://lifehacker.com/how-to-buy-happiness-the-purchases-most-likely-to-brin-1681780686">bring happiness to many people</a>, but make sure the items on your "want" list actively provide you joy and are being used. If an item doesn't get much use or doesn't make you happy, add it to the "crap" list.</p>
<p data-textannotation-id="675103d9c0da55e95f93c53bb019f864">Once you have everything organized, it's time to do some serious decluttering. This listing exercise should get you started, but there are <a href="http://lifehacker.com/5957609/how-to-kick-your-clutter-habit-and-live-in-a-clean-house-once-and-for-all">a lot of other great ideas</a> when it comes to ditching the junk you don't need. Regardless, everything on your "crap" list needs to go. You can donate it, sell it at a yard sale, give it away to people know, whatever you like. Before you get rid of everything, though, take a picture of all your stuff together. Print out or save the picture somewhere. Some of it was probably gifts, but in general, this is all the crap you bought that you don't need. Take a good look and remember it.</p>
<h3 data-textannotation-id="f15ab0a628b159459f095f04fef851ba"><strong>See How Much Money and Time You Spent on the Stuff You Threw Out</strong></h3>
<p data-textannotation-id="bc2f55587bf4ab07a1852a8d26217233" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg" data-chomp-id="qodag11euf2npkawkn9v" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg" class="js_annotatable-image cursor-crosshair"></span></p>
<p data-textannotation-id="bc2f55587bf4ab07a1852a8d26217233" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg" data-chomp-id="qodag11euf2npkawkn9v" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg" class="js_annotatable-image cursor-crosshair"/></span></p>
<p data-textannotation-id="95ab4fe30c3ade42a8011966ea54aa0b">Now take a look at your "crap" list again and start calculating how much you spent on all of it. If it was a gift, mark it as $0. Otherwise, figure out the price of the item at the time you bought it. If you got a deal or bought it on sale it's okay to factor that in, but try to be as accurate as possible. Once you have the price for each item, add it all together. Depending on your spending habits this could possibly be in the hundreds to thousands of dollars. Remember the picture you took of all this stuff? Attach the total cost to the picture so you can see both at the same time.</p>
<p data-textannotation-id="f654efec679064b15826d8ee20bc94e4">With the money cost figured out, you should take a look at the other costs too. Time is a resource just like any other, and it's a finite one. What kind of time did you pour into these things? Consider the time you spent acquiring and using these items, then write it all down. These can be rough estimations, but go ahead and add it all up when you think you've got it. Now attach the total time to same picture as before and think of the other ways you could have spent all that time. This isn't to make you feel bad about yourself, just to deliver information to your brain in an easy-to-understand form. When you look at it all like this, it can open your eyes a little more, and help you think about purchases in the future. You'll look at an item and ask yourself, "Will this just end up in the picture?"</p>
<h3 data-textannotation-id="6342bf7f15d9eddd21489c23e51ca434"><strong>List Every Non-Material Thing In Your Life that Makes You Happy</strong></h3>
<p data-textannotation-id="bafeac1c3808e0d2900190979f058b2c" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg" data-chomp-id="imfc9ybqfw0jmztbhfrh" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg" class="js_annotatable-image cursor-crosshair"></span></p>
<p data-textannotation-id="bafeac1c3808e0d2900190979f058b2c" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg" data-chomp-id="imfc9ybqfw0jmztbhfrh" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg" class="js_annotatable-image cursor-crosshair"/></span></p>
<p data-textannotation-id="4bd8fbaabb33ff1cb5dc93c16e1f83cc">Now it's time to make a different list. While material items may bring plenty of joy, the things in your life that make you happiest probably can't be bought. Get a separate piece of paper or create a new document and list out everything in your life that makes you happy. If you can't buy it, it's eligible for the list. It doesn't matter if it only makes you crack a smile or makes you jump for joy, list it out. </p>
<p data-textannotation-id="104a646a62ad7a0cfb4e3ff086185fdc"><span>These are probably the things that actually make you want to get out of bed in the morning and keep on keepin' on. Once you have it all down, put it in your purse or wallet. The next time you feel the urge to buy something, whip this list out first and remind yourself why you probably don't need it.</span></p>
<h3 data-textannotation-id="532cf992ff45d52de501c1a8f80fc152"><strong>Spend Some Time Away from Material Things to Gain Perspective</strong></h3>
<p data-textannotation-id="64f5c7155ad89bd2835399d33c1ae28a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg" data-chomp-id="afy7n45jfvsjdmmhonct" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg" class="js_annotatable-image cursor-crosshair"></span></p>
<p data-textannotation-id="64f5c7155ad89bd2835399d33c1ae28a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg" data-chomp-id="afy7n45jfvsjdmmhonct" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg" class="js_annotatable-image cursor-crosshair"/></span></p>
<p data-textannotation-id="84554492c487779e921b98fb64222177">If you're having a really hard time with your spending, it can help to get away from material objects completely. When you're constantly surrounded by stuff and have access to buying things at all times, it can be really tough to break the habit. Spend a day in the park enjoying the sights and sounds of the outdoors, go camping with some friends, or hike a trail you haven't been on before. </p>
<p data-textannotation-id="b44add1c7b690705d672186e3a9604b6">Essentially, you want to show yourself that you don't need your "things" to have a good time. When you realize how much fun you can have without all the trinkets and trivets, you'll start to shut down your desire to buy them. If you can't get really get away right now, just go for a walk without your purse or wallet (but carry your ID). If you can't buy anything, you'll be forced to experience things a different way.</p>
<h3 data-textannotation-id="98c11bebae0bbcdbe8411df0186d6465"><strong>Develop a Personal "Should I Buy This?" Test</strong></h3>
<p data-textannotation-id="ff438b878771354bb7f6d065ff50dbb2" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg" data-chomp-id="s3pq8vjrvyjgne4lfsod" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg" class="js_annotatable-image cursor-crosshair"></span></p>
<p data-textannotation-id="ff438b878771354bb7f6d065ff50dbb2" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg" data-chomp-id="s3pq8vjrvyjgne4lfsod" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg" class="js_annotatable-image cursor-crosshair"/></span></p>
<p data-textannotation-id="4af04ae83f18d9c37da21527bcd4a290">If you don't have a personal "should I buy this?" test, now's the perfect time to make one. When you find an item you think you need or want, it has to pass all of the questions you have on your test before you can buy it. Here's where you can use all of the data you've gathered so far and put it to really good use. The test should be personalized to your own buying habits, but here are some example questions:</p>
<ul>
<li data-textannotation-id="fcfd78b1619bdf0b7330f4b40efb899d">Is this a planned purchase?</li>
@ -57,7 +57,7 @@
</ul>
<p data-textannotation-id="0162d779382cdc7de908fc1488af3940">Custom build your test to hit all of your weaknesses. If you make a lot of impulse buys, include questions that address that. If you experience a lot of buyer's remorse, include a lot of questions that make you think about the use of item after you buy it. If buying the latest and greatest technology is your weakness, Joshua Becker at Becoming Minimalist suggests you ask yourself <a target="_blank" href="http://www.becomingminimalist.com/marriage-hacks/">what problem the piece of tech solves</a>. If you can't think of anything it solves or if you already have something that solves it, you don't need it. Be thorough and build a test that you can run through your mind every time you consider buying something.</p>
<h3 data-textannotation-id="c0ed0882675acc340dcd88e13ca514b3"><strong>Learn to Delay Gratification and Destroy the Urge to Impulse Buy</strong></h3>
<p data-textannotation-id="1d43712fc5ce8f156e4661cca5750575" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg" data-chomp-id="y2ldv5eufb3jcrtfouye" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg" class="js_annotatable-image cursor-crosshair"></span></p>
<p data-textannotation-id="1d43712fc5ce8f156e4661cca5750575" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg" data-chomp-id="y2ldv5eufb3jcrtfouye" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg" class="js_annotatable-image cursor-crosshair"/></span></p>
<p data-textannotation-id="3d8086719c5da749f877629d498ccab9">When it comes to the unnecessary crap we buy, impulse purchases probably make up a good deal of them. We love to feel gratification instantly and impulse buys appeal to that with a rush of excitement with each new purchase. We like to believe that we have control over our impulses all the time, but we really don't, and that's a major problem for the ol' wallet.</p>
<p data-textannotation-id="620ca9836425e09ec7fa50bfad204665">The key is teaching your brain that it's okay to <a href="http://lifehacker.com/overcome-the-need-for-instant-gratification-by-delaying-1636938356">wait for gratification</a>. You can do this with a simple time out every time you want something. Look at whatever you're thinking of buying, go through your personal "should I buy this?" test, and then walk away for a little while. Planning your purchases ahead is ideal, so the longer you can hold off, the better. Set yourself a reminder to check on the item <a href="http://lifehacker.com/5859632/buyers-remorse-is-inevitable-how-to-make-purchases-you-really-wont-regret">a week or month down the line</a>. When you come back to it, you may find that you don't even want it, just the gratification that would come with it. If you're shopping online, you can do the same thing. Walk away from your desk or put your phone in your pocket and do something else for a little while.</p>
<p data-textannotation-id="a85d9eb501c898234ac5df2a56c50a13">You can also avoid online impulse purchases by <a href="http://lifehacker.com/5919833/how-to-avoid-impulse-purchases-in-the-internet-shopping-age" x-inset="1">making it harder to do</a>. Block shopping web sites during time periods you know you're at your weakest, or remove all of your saved credit card or Paypal information. You can also <a href="http://lifehacker.com/5569035/practice-the-halt-method-to-curb-impulse-purchases" x-inset="1">practice the "HALT" method</a> when you're shopping online or in a store. Try not to buy things when you're Hungry, Angry, Lonely, or Tired because you're at your weakest state mentally. Last, but not least, the "<a href="http://lifehacker.com/5320196/use-the-stranger-test-to-reduce-impulse-purchases" x-inset="1">stranger test</a>" can help you weed out bad purchases too.</p>
@ -68,7 +68,7 @@
</blockquote>
<p data-textannotation-id="4b6cc2900ffacd3daef54b13b4caceac">You probably have things in your life that provide plenty of gratification, so don't get caught substituting it with impulse buys. Always make sure you keep yourself happy with plenty of time doing the things you like to do and you won't be subconsciously trying to fill that void with useless crap.</p>
<h3 data-textannotation-id="aed9b435c4ed23e573c453ceeb34ed18"><strong>Turn the Money You Save Into More Money</strong></h3>
<p data-textannotation-id="21154394d63f1943d01f2b717aa31115" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg" data-chomp-id="atb9qm07fvvg7hqkumkw" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg" class="js_annotatable-image cursor-crosshair"></span></p>
<p data-textannotation-id="21154394d63f1943d01f2b717aa31115" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg" data-chomp-id="atb9qm07fvvg7hqkumkw" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg" class="js_annotatable-image cursor-crosshair"/></span></p>
<p data-textannotation-id="6141942e977cc058fd7a0fa06a3f7389">Once you've programmed your mind to stop buying crap you don't need, you'll have some extra cash to play with. Take all that money and start putting it toward your future and things you <em>will</em> need further down the road. You might need <a target="_blank" href="http://twocents.lifehacker.com/how-to-start-saving-for-a-home-down-payment-1541254056">a home</a>, a vehicle, or a way to retire, but none of that can happen until you start planning for it. </p>
<p data-textannotation-id="90f08afddc08e2c3b45c266f2e6965ec">Start by paying off any debts you already have. Credit cards, student loans, and even car payments can force you to <a href="http://lifehacker.com/how-to-break-the-living-paycheck-to-paycheck-cycle-1445330680">live paycheck to paycheck</a>. Use the <a href="http://lifehacker.com/5940989/pay-off-small-balances-first-for-better-odds-of-eliminating-all-your-debt">snowball method</a> and pay off some small balances to make you feel motivated, then start taking out your debt in full force with the <a href="http://lifehacker.com/how-to-pay-off-your-debt-using-the-stack-method-576070292">stacking method</a>: stop creating new debt, determine which balances have the highest interest rates, and create a payment schedule to pay them off efficiently.</p>
<p data-textannotation-id="1106cb837deb2b6fc8e28ba98f078c27">With your debts whittled down, you should start an emergency fund. No matter how well you plan things, accidents and health emergencies can still happen. An emergency fund is designed to make those kinds of events more manageable. This type of savings account is strictly for when life throws you a curveball, but you can grow one pretty easily <a target="_blank" href="http://twocents.lifehacker.com/how-to-grow-an-emergency-fund-from-modest-savings-1638409351">with only modest savings</a>.</p>

@ -1,9 +1,9 @@
<div id="readability-page-1" class="page">
<div class="post-content entry-content ">
<p data-textannotation-id="58a492029dca5e6a6e481d21b6b2933a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg" data-chomp-id="n1s6c2m6kc07iqdyllj6" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg"></span></p>
<p data-textannotation-id="58a492029dca5e6a6e481d21b6b2933a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg" data-chomp-id="n1s6c2m6kc07iqdyllj6" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--hqqO9fze--/n1s6c2m6kc07iqdyllj6.jpg"/></span></p>
<p data-textannotation-id="a043044f9b3e31fd85568b17e3b1b5f3" class="first-text"><span>We all buy things from time to time that we don't really need. It's okay to appeal to your wants every once in a while, as long as you're in control. If you struggle with clutter, impulse buys, and buyer's remorse, here's how to put your mind in the right place before you even set foot in a store.</span></p>
<h3 data-textannotation-id="e51cbbc52eb8c3b33571908351076cf7"><strong>Understand How Your Own Brain Works Against You</strong></h3>
<p data-textannotation-id="268f7702467d33e3b0972dd09f1cf0a6" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg" data-chomp-id="o4dpyrcbiqyfrc3bxx6p" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg"></span></p>
<p data-textannotation-id="268f7702467d33e3b0972dd09f1cf0a6" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg" data-chomp-id="o4dpyrcbiqyfrc3bxx6p" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--QeUTCiuW--/o4dpyrcbiqyfrc3bxx6p.jpg"/></span></p>
<p data-textannotation-id="32604538f84919efff270e87b61191a1">It may come as no surprise to learn that stores employ all kinds of tricks to get you to part ways with your cash, and your brain plays right along. Through psychological tricks, product placement, and even color, stores are designed from the ground up to increase spending. We've talked about the biggest things stores do to manipulate your senses, but here are some of the biggest things to look out for:</p>
<ul>
<li data-textannotation-id="cd748c8b681c781cdd728c5e17b5e05f"><strong>Color:</strong> Stores use color to make products attractive and eye-catching, but they also use color on price labels. Red stands out and can encourage taking action, that's why it's commonly associated with sale signage and advertising. When you see red, remember what they're trying to do to your brain with that color. You don't to buy something just because it's on sale.</li>
@ -15,7 +15,7 @@
<aside class="referenced-wide referenced-fullwidth js_inset tmpl_referencedGroupFullWidth clearfix core-decorated-inset"> </aside>
<p data-textannotation-id="89992f1ca493b248eea6ed1772326c46">For example, confirmation bias makes you only believe the information that conforms to your prior beliefs, while you discount everything else. Advertisers appeal to this bias directly by convincing you one item is better than another with imagery and other tricks, regardless of what hard facts might say. Keep your mind open, do your own research, and accept when you're wrong about a product. The Decoy effect is also a commonly used tactic. You think one product is a deal because it's next to a similar product that's priced way higher. Even if it's a product you need, it's probably not as good of a deal as it looks right then and there. Again, always research beforehand and be on the lookout for this common trick to avoid impulse buys.</p>
<h3 data-textannotation-id="eedde8c384145f2593efc2a15a4d79de"><strong>Make a List of </strong><em><strong>Everything</strong></em><strong> You Own and Do Some Decluttering</strong></h3>
<p data-textannotation-id="8044cf9aab698fd28931acd90ba96f7a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg" data-chomp-id="xrhkwleyurcizy4akiae" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg"></span></p>
<p data-textannotation-id="8044cf9aab698fd28931acd90ba96f7a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg" data-chomp-id="xrhkwleyurcizy4akiae" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mlR3Ku0_--/xrhkwleyurcizy4akiae.jpg"/></span></p>
<p data-textannotation-id="a2a886d841e5aed848cdf7088edde4ea">Now that you know what you're up against, it's time to start changing the way you think. Before you can stop buying crap you don't need, you need to identify what that crap is. The first step is to make a list of <a href="http://lifehacker.com/how-to-defeat-the-urge-to-binge-shop-1468216943" x-inset="1">every single thing you own</a>. <strong>Every. Single. Thing</strong>. This might sound extreme, but you need to gather your data so you can start reprogramming your mind.</p>
<aside class="referenced-wide referenced-fullwidth js_inset tmpl_referencedGroupFullWidth clearfix core-decorated-inset"> </aside>
<p data-textannotation-id="bbe57b7aa20b48550e5f66b7c530822c">The purpose of this exercise is twofold: you see what you already have and don't need to ever buy again, and you get to see what you shouldn't have bought in the first place. As you list everything out, separate items into categories. It's extremely important that you are as honest with yourself as possible while you do this. It's also important you actually write this all down or type it all out. Here is the first set of categories to separate everything into:</p>
@ -34,19 +34,19 @@
<p data-textannotation-id="816cd504161fecc6f3e173779b33d5db">Remember to be honest and adjust your lists accordingly. There's nothing wrong with keeping things you wanted. Material items can <a href="http://lifehacker.com/how-to-buy-happiness-the-purchases-most-likely-to-brin-1681780686">bring happiness to many people</a>, but make sure the items on your "want" list actively provide you joy and are being used. If an item doesn't get much use or doesn't make you happy, add it to the "crap" list.</p>
<p data-textannotation-id="675103d9c0da55e95f93c53bb019f864">Once you have everything organized, it's time to do some serious decluttering. This listing exercise should get you started, but there are <a href="http://lifehacker.com/5957609/how-to-kick-your-clutter-habit-and-live-in-a-clean-house-once-and-for-all">a lot of other great ideas</a> when it comes to ditching the junk you don't need. Regardless, everything on your "crap" list needs to go. You can donate it, sell it at a yard sale, give it away to people know, whatever you like. Before you get rid of everything, though, take a picture of all your stuff together. Print out or save the picture somewhere. Some of it was probably gifts, but in general, this is all the crap you bought that you don't need. Take a good look and remember it.</p>
<h3 data-textannotation-id="f15ab0a628b159459f095f04fef851ba"><strong>See How Much Money and Time You Spent on the Stuff You Threw Out</strong></h3>
<p data-textannotation-id="bc2f55587bf4ab07a1852a8d26217233" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg" data-chomp-id="qodag11euf2npkawkn9v" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg"></span></p>
<p data-textannotation-id="bc2f55587bf4ab07a1852a8d26217233" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg" data-chomp-id="qodag11euf2npkawkn9v" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--Tacb0tyW--/qodag11euf2npkawkn9v.jpg"/></span></p>
<p data-textannotation-id="95ab4fe30c3ade42a8011966ea54aa0b">Now take a look at your "crap" list again and start calculating how much you spent on all of it. If it was a gift, mark it as $0. Otherwise, figure out the price of the item at the time you bought it. If you got a deal or bought it on sale it's okay to factor that in, but try to be as accurate as possible. Once you have the price for each item, add it all together. Depending on your spending habits this could possibly be in the hundreds to thousands of dollars. Remember the picture you took of all this stuff? Attach the total cost to the picture so you can see both at the same time.</p>
<p data-textannotation-id="f654efec679064b15826d8ee20bc94e4">With the money cost figured out, you should take a look at the other costs too. Time is a resource just like any other, and it's a finite one. What kind of time did you pour into these things? Consider the time you spent acquiring and using these items, then write it all down. These can be rough estimations, but go ahead and add it all up when you think you've got it. Now attach the total time to same picture as before and think of the other ways you could have spent all that time. This isn't to make you feel bad about yourself, just to deliver information to your brain in an easy-to-understand form. When you look at it all like this, it can open your eyes a little more, and help you think about purchases in the future. You'll look at an item and ask yourself, "Will this just end up in the picture?"</p>
<h3 data-textannotation-id="6342bf7f15d9eddd21489c23e51ca434"><strong>List Every Non-Material Thing In Your Life that Makes You Happy</strong></h3>
<p data-textannotation-id="bafeac1c3808e0d2900190979f058b2c" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg" data-chomp-id="imfc9ybqfw0jmztbhfrh" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg"></span></p>
<p data-textannotation-id="bafeac1c3808e0d2900190979f058b2c" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg" data-chomp-id="imfc9ybqfw0jmztbhfrh" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--x9hLbIKJ--/imfc9ybqfw0jmztbhfrh.jpg"/></span></p>
<p data-textannotation-id="4bd8fbaabb33ff1cb5dc93c16e1f83cc">Now it's time to make a different list. While material items may bring plenty of joy, the things in your life that make you happiest probably can't be bought. Get a separate piece of paper or create a new document and list out everything in your life that makes you happy. If you can't buy it, it's eligible for the list. It doesn't matter if it only makes you crack a smile or makes you jump for joy, list it out. </p>
<p data-textannotation-id="104a646a62ad7a0cfb4e3ff086185fdc"><span>These are probably the things that actually make you want to get out of bed in the morning and keep on keepin' on. Once you have it all down, put it in your purse or wallet. The next time you feel the urge to buy something, whip this list out first and remind yourself why you probably don't need it.</span></p>
<h3 data-textannotation-id="532cf992ff45d52de501c1a8f80fc152"><strong>Spend Some Time Away from Material Things to Gain Perspective</strong></h3>
<p data-textannotation-id="64f5c7155ad89bd2835399d33c1ae28a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg" data-chomp-id="afy7n45jfvsjdmmhonct" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg"></span></p>
<p data-textannotation-id="64f5c7155ad89bd2835399d33c1ae28a" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg" data-chomp-id="afy7n45jfvsjdmmhonct" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--6NwBgQLy--/afy7n45jfvsjdmmhonct.jpg"/></span></p>
<p data-textannotation-id="84554492c487779e921b98fb64222177">If you're having a really hard time with your spending, it can help to get away from material objects completely. When you're constantly surrounded by stuff and have access to buying things at all times, it can be really tough to break the habit. Spend a day in the park enjoying the sights and sounds of the outdoors, go camping with some friends, or hike a trail you haven't been on before. </p>
<p data-textannotation-id="b44add1c7b690705d672186e3a9604b6">Essentially, you want to show yourself that you don't need your "things" to have a good time. When you realize how much fun you can have without all the trinkets and trivets, you'll start to shut down your desire to buy them. If you can't get really get away right now, just go for a walk without your purse or wallet (but carry your ID). If you can't buy anything, you'll be forced to experience things a different way.</p>
<h3 data-textannotation-id="98c11bebae0bbcdbe8411df0186d6465"><strong>Develop a Personal "Should I Buy This?" Test</strong></h3>
<p data-textannotation-id="ff438b878771354bb7f6d065ff50dbb2" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg" data-chomp-id="s3pq8vjrvyjgne4lfsod" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg"></span></p>
<p data-textannotation-id="ff438b878771354bb7f6d065ff50dbb2" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg" data-chomp-id="s3pq8vjrvyjgne4lfsod" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--ciqk42G0--/s3pq8vjrvyjgne4lfsod.jpg"/></span></p>
<p data-textannotation-id="4af04ae83f18d9c37da21527bcd4a290">If you don't have a personal "should I buy this?" test, now's the perfect time to make one. When you find an item you think you need or want, it has to pass all of the questions you have on your test before you can buy it. Here's where you can use all of the data you've gathered so far and put it to really good use. The test should be personalized to your own buying habits, but here are some example questions:</p>
<ul>
<li data-textannotation-id="fcfd78b1619bdf0b7330f4b40efb899d">Is this a planned purchase?</li>
@ -57,7 +57,7 @@
</ul>
<p data-textannotation-id="0162d779382cdc7de908fc1488af3940">Custom build your test to hit all of your weaknesses. If you make a lot of impulse buys, include questions that address that. If you experience a lot of buyer's remorse, include a lot of questions that make you think about the use of item after you buy it. If buying the latest and greatest technology is your weakness, Joshua Becker at Becoming Minimalist suggests you ask yourself <a target="_blank" href="http://www.becomingminimalist.com/marriage-hacks/">what problem the piece of tech solves</a>. If you can't think of anything it solves or if you already have something that solves it, you don't need it. Be thorough and build a test that you can run through your mind every time you consider buying something.</p>
<h3 data-textannotation-id="c0ed0882675acc340dcd88e13ca514b3"><strong>Learn to Delay Gratification and Destroy the Urge to Impulse Buy</strong></h3>
<p data-textannotation-id="1d43712fc5ce8f156e4661cca5750575" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg" data-chomp-id="y2ldv5eufb3jcrtfouye" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg"></span></p>
<p data-textannotation-id="1d43712fc5ce8f156e4661cca5750575" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg" data-chomp-id="y2ldv5eufb3jcrtfouye" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--mtob1sjR--/y2ldv5eufb3jcrtfouye.jpg"/></span></p>
<p data-textannotation-id="3d8086719c5da749f877629d498ccab9">When it comes to the unnecessary crap we buy, impulse purchases probably make up a good deal of them. We love to feel gratification instantly and impulse buys appeal to that with a rush of excitement with each new purchase. We like to believe that we have control over our impulses all the time, but we really don't, and that's a major problem for the ol' wallet.</p>
<p data-textannotation-id="620ca9836425e09ec7fa50bfad204665">The key is teaching your brain that it's okay to <a href="http://lifehacker.com/overcome-the-need-for-instant-gratification-by-delaying-1636938356">wait for gratification</a>. You can do this with a simple time out every time you want something. Look at whatever you're thinking of buying, go through your personal "should I buy this?" test, and then walk away for a little while. Planning your purchases ahead is ideal, so the longer you can hold off, the better. Set yourself a reminder to check on the item <a href="http://lifehacker.com/5859632/buyers-remorse-is-inevitable-how-to-make-purchases-you-really-wont-regret">a week or month down the line</a>. When you come back to it, you may find that you don't even want it, just the gratification that would come with it. If you're shopping online, you can do the same thing. Walk away from your desk or put your phone in your pocket and do something else for a little while.</p>
<p data-textannotation-id="a85d9eb501c898234ac5df2a56c50a13">You can also avoid online impulse purchases by <a href="http://lifehacker.com/5919833/how-to-avoid-impulse-purchases-in-the-internet-shopping-age" x-inset="1">making it harder to do</a>. Block shopping web sites during time periods you know you're at your weakest, or remove all of your saved credit card or Paypal information. You can also <a href="http://lifehacker.com/5569035/practice-the-halt-method-to-curb-impulse-purchases" x-inset="1">practice the "HALT" method</a> when you're shopping online or in a store. Try not to buy things when you're Hungry, Angry, Lonely, or Tired because you're at your weakest state mentally. Last, but not least, the "<a href="http://lifehacker.com/5320196/use-the-stranger-test-to-reduce-impulse-purchases" x-inset="1">stranger test</a>" can help you weed out bad purchases too.</p>
@ -68,7 +68,7 @@
</blockquote>
<p data-textannotation-id="4b6cc2900ffacd3daef54b13b4caceac">You probably have things in your life that provide plenty of gratification, so don't get caught substituting it with impulse buys. Always make sure you keep yourself happy with plenty of time doing the things you like to do and you won't be subconsciously trying to fill that void with useless crap.</p>
<h3 data-textannotation-id="aed9b435c4ed23e573c453ceeb34ed18"><strong>Turn the Money You Save Into More Money</strong></h3>
<p data-textannotation-id="21154394d63f1943d01f2b717aa31115" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg" data-chomp-id="atb9qm07fvvg7hqkumkw" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg"></span></p>
<p data-textannotation-id="21154394d63f1943d01f2b717aa31115" class="has-media media-640"><span class="img-border"><img width="636" height="358" data-format="jpg" data-asset-url="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg" data-chomp-id="atb9qm07fvvg7hqkumkw" alt="How to Program Your Mind to Stop Buying Crap You Dont Need" src="http://i.kinja-img.com/gawker-media/image/upload/s--4Ajak63w--/atb9qm07fvvg7hqkumkw.jpg"/></span></p>
<p data-textannotation-id="6141942e977cc058fd7a0fa06a3f7389">Once you've programmed your mind to stop buying crap you don't need, you'll have some extra cash to play with. Take all that money and start putting it toward your future and things you <em>will</em> need further down the road. You might need <a target="_blank" href="http://twocents.lifehacker.com/how-to-start-saving-for-a-home-down-payment-1541254056">a home</a>, a vehicle, or a way to retire, but none of that can happen until you start planning for it. </p>
<p data-textannotation-id="90f08afddc08e2c3b45c266f2e6965ec">Start by paying off any debts you already have. Credit cards, student loans, and even car payments can force you to <a href="http://lifehacker.com/how-to-break-the-living-paycheck-to-paycheck-cycle-1445330680">live paycheck to paycheck</a>. Use the <a href="http://lifehacker.com/5940989/pay-off-small-balances-first-for-better-odds-of-eliminating-all-your-debt">snowball method</a> and pay off some small balances to make you feel motivated, then start taking out your debt in full force with the <a href="http://lifehacker.com/how-to-pay-off-your-debt-using-the-stack-method-576070292">stacking method</a>: stop creating new debt, determine which balances have the highest interest rates, and create a payment schedule to pay them off efficiently.</p>
<p data-textannotation-id="1106cb837deb2b6fc8e28ba98f078c27">With your debts whittled down, you should start an emergency fund. No matter how well you plan things, accidents and health emergencies can still happen. An emergency fund is designed to make those kinds of events more manageable. This type of savings account is strictly for when life throws you a curveball, but you can grow one pretty easily <a target="_blank" href="http://twocents.lifehacker.com/how-to-grow-an-emergency-fund-from-modest-savings-1638409351">with only modest savings</a>.</p>

@ -24,19 +24,19 @@ program</a> for third-party manufacturers interested in using the "Arduino" bran
<p><a href="http://fakehost/Articles/637755/#Comments">Comments (5 posted)</a> </p>
<h2 class="SummaryHL"><a href="http://fakehost/Articles/637533/">Mapping and data mining with QGIS 2.8</a></h2>
<p class="FeatureByline"> By <b>Nathan Willis</b>
<br>March 25, 2015 </p>
<br/>March 25, 2015 </p>
<p><a href="http://qgis.org/">QGIS</a> is a free-software geographic information system (GIS) tool; it provides a unified interface in which users can import, edit, and analyze geographic-oriented information, and it can produce output as varied as printable maps or map-based web services. The project recently made its first update to be designated a long-term release (LTR), and that release is both poised for high-end usage and friendly to newcomers alike. </p>
<p>The new release is version 2.8, which was unveiled on March&nbsp;2. An official <a href="http://qgis.org/en/site/forusers/visualchangelog28/index.html">change
log</a> is available on the QGIS site, while the release itself was announced primarily through blog posts (such as <a href="http://anitagraser.com/2015/03/02/qgis-2-8-ltr-has-landed/">this
post</a> by Anita Graser of the project's steering committee). Downloads are <a href="http://qgis.org/en/site/forusers/download.html">available</a> for a variety of platforms, including packages for Ubuntu, Debian, Fedora, openSUSE, and several other distributions.</p>
<a href="http://fakehost/Articles/637747/"> <img src="http://fakehost/images/2015/03-qgis-map-sm.png" border="0" hspace="5" align="right" width="350" height="264" alt="[QGIS main interface]"> </a>
<a href="http://fakehost/Articles/637747/"> <img src="http://fakehost/images/2015/03-qgis-map-sm.png" border="0" hspace="5" align="right" width="350" height="264" alt="[QGIS main interface]"/> </a>
<p>As the name might suggest, QGIS is a Qt application; the latest release will, in fact, build on both Qt4 and Qt5, although the binaries released by the project come only in Qt4 form at present. 2.8 has been labeled a long-term release (LTR)—which, in this case, means that the project has committed to providing backported bug fixes for one full calendar year, and that the 2.8.x series is in permanent feature freeze. The goal, according to the change log, is to provide a stable version suitable for businesses and deployments in other large organizations. The change log itself points out that the development of quite a few new features was underwritten by various GIS companies or university groups, which suggests that taking care of these organizations' needs is reaping dividends for the project. </p>
<p>For those new to QGIS (or GIS in general), there is a detailed new-user <a href="http://docs.qgis.org/testing/en/docs/training_manual/">tutorial</a> that provides a thorough walk-through of the data-manipulation, mapping, and analysis functions. Being a new user, I went through the tutorial; although there are a handful of minor differences between QGIS 2.8 and the version used in the text (primarily whether specific features were accessed through a toolbar or right-click menu), on the whole it is well worth the time. </p>
<p>QGIS is designed to make short work of importing spatially oriented data sets, mining information from them, and turning the results into a meaningful visualization. Technically speaking, the visualization output is optional: one could simply extract the needed statistics and results and use them to answer some question or, perhaps, publish the massaged data set as a database for others to use. </p>
<p>But well-made maps are often the easiest way to illuminate facts about populations, political regions, geography, and many other topics when human comprehension is the goal. QGIS makes importing data from databases, web-mapping services (WMS), and even unwieldy flat-file data dumps a painless experience. It handles converting between a variety of map-referencing systems more or less automatically, and allows the user to focus on finding the useful attributes of the data sets and rendering them on screen. </p>
<h4>Here be data</h4>
<p>The significant changes in QGIS 2.8 fall into several categories. There are updates to how QGIS handles the mathematical expressions and queries users can use to filter information out of a data set, improvements to the tools used to explore the on-screen map canvas, and enhancements to the "map composer" used to produce visual output. This is on top of plenty of other under-the-hood improvements, naturally.</p>
<a href="http://fakehost/Articles/637748/"> <img src="http://fakehost/images/2015/03-qgis-query-sm.png" border="0" hspace="5" align="left" width="300" height="302" alt="[QGIS query builder]"> </a>
<a href="http://fakehost/Articles/637748/"> <img src="http://fakehost/images/2015/03-qgis-query-sm.png" border="0" hspace="5" align="left" width="300" height="302" alt="[QGIS query builder]"/> </a>
<p>In the first category are several updates to the filtering tools used to mine a data set. Generally speaking, each independent data set is added to a QGIS project as its own layer, then transformed with filters to focus in on a specific portion of the original data. For instance, the land-usage statistics for a region might be one layer, while roads and buildings for the same region from OpenStreetMap might be two additional layers. Such filters can be created in several ways: there is a "query builder" that lets the user construct and test expressions on a data layer, then save the results, an SQL console for performing similar queries on a database, and spreadsheet-like editing tools for working directly on data tables. </p>
<p>All three have been improved in this release. New are support for <tt>if(condition, true, false)</tt> conditional statements, a set of operations for geometry primitives (e.g., to test whether regions overlap or lines intersect), and an "integer divide" operation. Users can also add comments to their queries to annotate their code, and there is a new <a href="http://nathanw.net/2015/01/19/function-editor-for-qgis-expressions/">custom
function editor</a> for writing Python functions that can be called in mathematical expressions within the query builder. </p>
@ -44,11 +44,11 @@ function editor</a> for writing Python functions that can be called in mathemati
<p>There have also been several improvements to the Python and Processing plugins. Users can now drag-and-drop Python scripts onto QGIS and they will be run automatically. Several new analysis algorithms are now available through the Processing interface that were previously Python-only; they include algorithms for generating grids of points or vectors within a region, splitting layers and lines, generating <a href="http://en.wikipedia.org/wiki/Hypsometric_curve">hypsometric
curves</a>, refactoring data sets, and more. </p>
<h4>Maps in, maps out</h4>
<a href="http://fakehost/Articles/637749/"> <img src="http://fakehost/images/2015/03-qgis-simplify-sm.png" border="0" hspace="5" align="right" width="300" height="303" alt="[QGIS simplify tool]"> </a>
<a href="http://fakehost/Articles/637749/"> <img src="http://fakehost/images/2015/03-qgis-simplify-sm.png" border="0" hspace="5" align="right" width="300" height="303" alt="[QGIS simplify tool]"/> </a>
<p>The process of working with on-screen map data picked up some improvements in the new release as well. Perhaps the most fundamental is that each map layer added to the canvas is now handled in its own thread, so fewer hangs in the user interface are experienced when re-rendering a layer (as happens whenever the user changes the look of points or shapes in a layer). Since remote databases can also be layers, this multi-threaded approach is more resilient against connectivity problems, too. The interface also now supports temporary "scratch" layers that can be used to merge, filter, or simply experiment with a data set, but are not saved when the current project is saved. </p>
<p>For working on the canvas itself, polygonal regions can now use raster images (tiled, if necessary) as fill colors, the map itself can be rotated arbitrarily, and objects can be "snapped" to align with items on any layer (not just the current layer). For working with raster image layers (e.g., aerial photographs) or simply creating new geometric shapes by hand, there is a new digitizing tool that can offer assistance by locking lines to specific angles, automatically keeping borders parallel, and other niceties. </p>
<p>There is a completely overhauled "simplify" tool that is used to reduce the number of extraneous vertices of a vector layer (thus reducing its size). The old simplify tool provided only a relative "tolerance" setting that did not correspond directly to any units. With the new tool, users can set a simplification threshold in terms of the underlying map units, layer-specific units, pixels, and more—and, in addition, the tool reports how much the simplify operation has reduced the size of the data.</p>
<a href="http://fakehost/Articles/637751/"> <img src="http://fakehost/images/2015/03-qgis-style-sm.png" border="0" hspace="5" align="left" width="300" height="286" alt="[QGIS style editing]"> </a>
<a href="http://fakehost/Articles/637751/"> <img src="http://fakehost/images/2015/03-qgis-style-sm.png" border="0" hspace="5" align="left" width="300" height="286" alt="[QGIS style editing]"/> </a>
<p>There has also been an effort to present a uniform interface to one of the most important features of the map canvas: the ability to change the symbology used for an item based on some data attribute. The simplest example might be to change the line color of a road based on whether its road-type attribute is "highway," "service road," "residential," or so on. But the same feature is used to automatically highlight layer information based on the filtering and querying functionality discussed above. The new release allows many more map attributes to be controlled by these "data definition" settings, and provides a hard-to-miss button next to each attribute, through which a custom data definition can be set. </p>
<p>QGIS's composer module is the tool used to take project data and generate a map that can be used outside of the application (in print, as a static image, or as a layer for <a href="http://mapserver.org/">MapServer</a> or some other software tool, for example). Consequently, it is not a simple select-and-click-export tool; composing the output can involve a lot of choices about which data to make visible, how (and where) to label it, and how to make it generally accessible. </p>
<p>The updated composer in 2.8 now has a full-screen mode and sports several new options for configuring output. For instance, the user now has full control over how map axes are labeled. In previous releases, the grid coordinates of the map could be turned on or off, but the only options were all or nothing. Now, the user can individually choose whether coordinates are displayed on all four sides, and can even choose in which direction vertical text labels will run (so that they can be correctly justified to the edge of the map, for example). </p>
@ -57,7 +57,7 @@ curves</a>, refactoring data sets, and more. </p>
<p><a href="http://fakehost/Articles/637533/#Comments">Comments (3 posted)</a> </p>
<h2 class="SummaryHL"><a href="http://fakehost/Articles/637735/">Development activity in LibreOffice and OpenOffice</a></h2>
<p class="FeatureByline"> By <b>Jonathan Corbet</b>
<br>March 25, 2015 </p>
<br/>March 25, 2015 </p>
<p style="display: inline;" class="readability-styled"> The LibreOffice project was </p><a href="http://fakehost/Articles/407383/">announced</a>
<p style="display: inline;" class="readability-styled"> with great fanfare in September 2010. Nearly one year later, the OpenOffice.org project (from which LibreOffice was forked) </p><a href="http://fakehost/Articles/446093/">was
cut loose from Oracle</a>
@ -563,7 +563,7 @@ bark but the caravan moves on.</span>" That may be true, but, in this case, the
<p> Anything can happen in the free-software development world; it is entirely possible that a reinvigorated OpenOffice.org may yet give LibreOffice a run for its money. But something will clearly have to change to bring that future around. As things stand now, it is hard not to conclude that LibreOffice has won the battle for developer participation. </p>
<p><a href="http://fakehost/Articles/637735/#Comments">Comments (74 posted)</a> </p>
<p> <b>Page editor</b>: Jonathan Corbet
<br> </p>
<br/> </p>
<h2>Inside this week's LWN.net Weekly Edition</h2>
<ul>
<li> <a href="http://fakehost/Articles/637395/">Security</a>: Toward secure package downloads; New vulnerabilities in drupal, mozilla, openssl, python-django ... </li>
@ -573,7 +573,7 @@ bark but the caravan moves on.</span>" That may be true, but, in this case, the
<li> <a href="http://fakehost/Articles/637399/">Announcements</a>: A Turing award for Michael Stonebraker, Sébastien Jodogne, ReGlue are Free Software Award winners, Kat Walsh joins FSF board of directors, Cyanogen, ... </li>
</ul><b>Next page</b>
<p style="display: inline;" class="readability-styled">: </p><a href="http://fakehost/Articles/637395/">Security&gt;&gt;</a>
<br>
<br/>
</div>
</td>
<td class="RightColumn"> </td>

@ -3,11 +3,11 @@
<head>
<title>LWN.net Weekly Edition for March 26, 2015 [LWN.net]</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" href="/images/favicon.png" type="image/png">
<link rel="alternate" type="application/rss+xml" title="LWN.net headlines" href="http://lwn.net/headlines/newrss">
<link rel="stylesheet" href="/CSS/lwn">
<link rel="stylesheet" href="/CSS/nosub">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="icon" href="/images/favicon.png" type="image/png"/>
<link rel="alternate" type="application/rss+xml" title="LWN.net headlines" href="http://lwn.net/headlines/newrss"/>
<link rel="stylesheet" href="/CSS/lwn"/>
<link rel="stylesheet" href="/CSS/nosub"/>
<script type="text/javascript">
var p = "http",
d = "static";
@ -47,7 +47,7 @@
<tr>
<td class="LeftColumn">
<center>
<a href="/"><img src="/images/lcorner.png" width="153" height="120" border="0" alt="LWN.net Logo"></a>
<a href="/"><img src="/images/lcorner.png" width="153" height="120" border="0" alt="LWN.net Logo"/></a>
</center>
<p>
<script type="text/javascript">
@ -80,18 +80,18 @@
</div>
<div class="SideBox">
<p class="Header">LWN Weekly Edition</p> <a href="/Articles/637393/" class="Current">Front page</a>
<br> <a href="/Articles/637395/" class="Other">Security</a>
<br> <a href="/Articles/637396/" class="Other">Kernel development</a>
<br> <a href="/Articles/637397/" class="Other">Distributions</a>
<br> <a href="/Articles/637398/" class="Other">Development</a>
<br> <a href="/Articles/637399/" class="Other">Announcements</a>
<br> <a href="/Articles/637393/bigpage">-&gt;One big page</a>
<br/> <a href="/Articles/637395/" class="Other">Security</a>
<br/> <a href="/Articles/637396/" class="Other">Kernel development</a>
<br/> <a href="/Articles/637397/" class="Other">Distributions</a>
<br/> <a href="/Articles/637398/" class="Other">Development</a>
<br/> <a href="/Articles/637399/" class="Other">Announcements</a>
<br/> <a href="/Articles/637393/bigpage">-&gt;One big page</a>
<p> &nbsp;
<br>
<br/>
</p>
<p class="Header">This page</p> <a href="/Articles/636463/">Previous week</a>
<br> <a href="/Articles/638065/">Following week</a>
<br> </div>
<br/> <a href="/Articles/638065/">Following week</a>
<br/> </div>
<div class="SideBox">
<p class="Header">Recent Features</p>
<p><a href="/Articles/640549/">LWN.net Weekly Edition for April 23, 2015</a></p>
@ -145,7 +145,7 @@
<div class="ArticleText">
<h2 class="SummaryHL"><a href="/Articles/637755/">A trademark battle in the Arduino community</a></h2>
<div class="FeatureByline"> By <b>Nathan Willis</b>
<br>March 25, 2015 </div>
<br/>March 25, 2015 </div>
<p>The <a href="https://en.wikipedia.org/wiki/Arduino">Arduino</a> has been one of the biggest success stories of the open-hardware movement, but that success does not protect it from internal conflict. In recent months, two of the project's founders have come into conflict about the direction of future efforts—and that conflict has turned into a legal dispute about who owns the rights to the Arduino trademark. </p>
<p>The current fight is a battle between two companies that both bear the Arduino name: Arduino LLC and Arduino SRL. The disagreements that led to present state of affairs go back a bit further. </p>
<p>The Arduino project grew out of 2005-era course work taught at the Interaction Design Institute Ivrea (IDII) in Ivrea, Italy (using <a href="https://en.wikipedia.org/wiki/Processing_(programming_language)">Processing</a>, <a href="https://en.wikipedia.org/wiki/Wiring_%28development_platform%29">Wiring</a>, and pre-existing microcontroller hardware). After the IDII program was discontinued, the open-hardware Arduino project as we know it was launched by Massimo Banzi, David Cuartielles, and David Mellis (who had worked together at IDII), with co-founders Tom Igoe and Gianluca Martino joining shortly afterward. The project released open hardware designs (including full schematics and design files) as well as the microcontroller software to run on the boards and the desktop IDE needed to program it. </p>
@ -168,19 +168,19 @@ program</a> for third-party manufacturers interested in using the "Arduino" bran
<p> </p>
<h2 class="SummaryHL"><a href="/Articles/637533/">Mapping and data mining with QGIS 2.8</a></h2>
<div class="FeatureByline"> By <b>Nathan Willis</b>
<br>March 25, 2015 </div>
<br/>March 25, 2015 </div>
<p><a href="http://qgis.org/">QGIS</a> is a free-software geographic information system (GIS) tool; it provides a unified interface in which users can import, edit, and analyze geographic-oriented information, and it can produce output as varied as printable maps or map-based web services. The project recently made its first update to be designated a long-term release (LTR), and that release is both poised for high-end usage and friendly to newcomers alike. </p>
<p>The new release is version 2.8, which was unveiled on March&nbsp;2. An official <a href="http://qgis.org/en/site/forusers/visualchangelog28/index.html">change
log</a> is available on the QGIS site, while the release itself was announced primarily through blog posts (such as <a href="http://anitagraser.com/2015/03/02/qgis-2-8-ltr-has-landed/">this
post</a> by Anita Graser of the project's steering committee). Downloads are <a href="http://qgis.org/en/site/forusers/download.html">available</a> for a variety of platforms, including packages for Ubuntu, Debian, Fedora, openSUSE, and several other distributions.</p>
<a href="/Articles/637747/"> <img src="/images/2015/03-qgis-map-sm.png" border="0" hspace="5" align="right" width="350" height="264" alt="[QGIS main interface]"> </a>
<a href="/Articles/637747/"> <img src="/images/2015/03-qgis-map-sm.png" border="0" hspace="5" align="right" width="350" height="264" alt="[QGIS main interface]"/> </a>
<p>As the name might suggest, QGIS is a Qt application; the latest release will, in fact, build on both Qt4 and Qt5, although the binaries released by the project come only in Qt4 form at present. 2.8 has been labeled a long-term release (LTR)—which, in this case, means that the project has committed to providing backported bug fixes for one full calendar year, and that the 2.8.x series is in permanent feature freeze. The goal, according to the change log, is to provide a stable version suitable for businesses and deployments in other large organizations. The change log itself points out that the development of quite a few new features was underwritten by various GIS companies or university groups, which suggests that taking care of these organizations' needs is reaping dividends for the project. </p>
<p>For those new to QGIS (or GIS in general), there is a detailed new-user <a href="http://docs.qgis.org/testing/en/docs/training_manual/">tutorial</a> that provides a thorough walk-through of the data-manipulation, mapping, and analysis functions. Being a new user, I went through the tutorial; although there are a handful of minor differences between QGIS 2.8 and the version used in the text (primarily whether specific features were accessed through a toolbar or right-click menu), on the whole it is well worth the time. </p>
<p>QGIS is designed to make short work of importing spatially oriented data sets, mining information from them, and turning the results into a meaningful visualization. Technically speaking, the visualization output is optional: one could simply extract the needed statistics and results and use them to answer some question or, perhaps, publish the massaged data set as a database for others to use. </p>
<p>But well-made maps are often the easiest way to illuminate facts about populations, political regions, geography, and many other topics when human comprehension is the goal. QGIS makes importing data from databases, web-mapping services (WMS), and even unwieldy flat-file data dumps a painless experience. It handles converting between a variety of map-referencing systems more or less automatically, and allows the user to focus on finding the useful attributes of the data sets and rendering them on screen. </p>
<h4>Here be data</h4>
<p>The significant changes in QGIS 2.8 fall into several categories. There are updates to how QGIS handles the mathematical expressions and queries users can use to filter information out of a data set, improvements to the tools used to explore the on-screen map canvas, and enhancements to the "map composer" used to produce visual output. This is on top of plenty of other under-the-hood improvements, naturally.</p>
<a href="/Articles/637748/"> <img src="/images/2015/03-qgis-query-sm.png" border="0" hspace="5" align="left" width="300" height="302" alt="[QGIS query builder]"> </a>
<a href="/Articles/637748/"> <img src="/images/2015/03-qgis-query-sm.png" border="0" hspace="5" align="left" width="300" height="302" alt="[QGIS query builder]"/> </a>
<p>In the first category are several updates to the filtering tools used to mine a data set. Generally speaking, each independent data set is added to a QGIS project as its own layer, then transformed with filters to focus in on a specific portion of the original data. For instance, the land-usage statistics for a region might be one layer, while roads and buildings for the same region from OpenStreetMap might be two additional layers. Such filters can be created in several ways: there is a "query builder" that lets the user construct and test expressions on a data layer, then save the results, an SQL console for performing similar queries on a database, and spreadsheet-like editing tools for working directly on data tables. </p>
<p>All three have been improved in this release. New are support for <tt>if(condition, true, false)</tt> conditional statements, a set of operations for geometry primitives (e.g., to test whether regions overlap or lines intersect), and an "integer divide" operation. Users can also add comments to their queries to annotate their code, and there is a new <a href="http://nathanw.net/2015/01/19/function-editor-for-qgis-expressions/">custom
function editor</a> for writing Python functions that can be called in mathematical expressions within the query builder. </p>
@ -188,11 +188,11 @@ function editor</a> for writing Python functions that can be called in mathemati
<p>There have also been several improvements to the Python and Processing plugins. Users can now drag-and-drop Python scripts onto QGIS and they will be run automatically. Several new analysis algorithms are now available through the Processing interface that were previously Python-only; they include algorithms for generating grids of points or vectors within a region, splitting layers and lines, generating <a href="http://en.wikipedia.org/wiki/Hypsometric_curve">hypsometric
curves</a>, refactoring data sets, and more. </p>
<h4>Maps in, maps out</h4>
<a href="/Articles/637749/"> <img src="/images/2015/03-qgis-simplify-sm.png" border="0" hspace="5" align="right" width="300" height="303" alt="[QGIS simplify tool]"> </a>
<a href="/Articles/637749/"> <img src="/images/2015/03-qgis-simplify-sm.png" border="0" hspace="5" align="right" width="300" height="303" alt="[QGIS simplify tool]"/> </a>
<p>The process of working with on-screen map data picked up some improvements in the new release as well. Perhaps the most fundamental is that each map layer added to the canvas is now handled in its own thread, so fewer hangs in the user interface are experienced when re-rendering a layer (as happens whenever the user changes the look of points or shapes in a layer). Since remote databases can also be layers, this multi-threaded approach is more resilient against connectivity problems, too. The interface also now supports temporary "scratch" layers that can be used to merge, filter, or simply experiment with a data set, but are not saved when the current project is saved. </p>
<p>For working on the canvas itself, polygonal regions can now use raster images (tiled, if necessary) as fill colors, the map itself can be rotated arbitrarily, and objects can be "snapped" to align with items on any layer (not just the current layer). For working with raster image layers (e.g., aerial photographs) or simply creating new geometric shapes by hand, there is a new digitizing tool that can offer assistance by locking lines to specific angles, automatically keeping borders parallel, and other niceties. </p>
<p>There is a completely overhauled "simplify" tool that is used to reduce the number of extraneous vertices of a vector layer (thus reducing its size). The old simplify tool provided only a relative "tolerance" setting that did not correspond directly to any units. With the new tool, users can set a simplification threshold in terms of the underlying map units, layer-specific units, pixels, and more—and, in addition, the tool reports how much the simplify operation has reduced the size of the data.</p>
<a href="/Articles/637751/"> <img src="/images/2015/03-qgis-style-sm.png" border="0" hspace="5" align="left" width="300" height="286" alt="[QGIS style editing]"> </a>
<a href="/Articles/637751/"> <img src="/images/2015/03-qgis-style-sm.png" border="0" hspace="5" align="left" width="300" height="286" alt="[QGIS style editing]"/> </a>
<p>There has also been an effort to present a uniform interface to one of the most important features of the map canvas: the ability to change the symbology used for an item based on some data attribute. The simplest example might be to change the line color of a road based on whether its road-type attribute is "highway," "service road," "residential," or so on. But the same feature is used to automatically highlight layer information based on the filtering and querying functionality discussed above. The new release allows many more map attributes to be controlled by these "data definition" settings, and provides a hard-to-miss button next to each attribute, through which a custom data definition can be set. </p>
<p>QGIS's composer module is the tool used to take project data and generate a map that can be used outside of the application (in print, as a static image, or as a layer for <a href="http://mapserver.org/">MapServer</a> or some other software tool, for example). Consequently, it is not a simple select-and-click-export tool; composing the output can involve a lot of choices about which data to make visible, how (and where) to label it, and how to make it generally accessible. </p>
<p>The updated composer in 2.8 now has a full-screen mode and sports several new options for configuring output. For instance, the user now has full control over how map axes are labeled. In previous releases, the grid coordinates of the map could be turned on or off, but the only options were all or nothing. Now, the user can individually choose whether coordinates are displayed on all four sides, and can even choose in which direction vertical text labels will run (so that they can be correctly justified to the edge of the map, for example). </p>
@ -202,7 +202,7 @@ curves</a>, refactoring data sets, and more. </p>
<p> </p>
<h2 class="SummaryHL"><a href="/Articles/637735/">Development activity in LibreOffice and OpenOffice</a></h2>
<div class="FeatureByline"> By <b>Jonathan Corbet</b>
<br>March 25, 2015 </div> The LibreOffice project was <a href="/Articles/407383/">announced</a> with great fanfare in September 2010. Nearly one year later, the OpenOffice.org project (from which LibreOffice was forked) <a href="/Articles/446093/">was
<br/>March 25, 2015 </div> The LibreOffice project was <a href="/Articles/407383/">announced</a> with great fanfare in September 2010. Nearly one year later, the OpenOffice.org project (from which LibreOffice was forked) <a href="/Articles/446093/">was
cut loose from Oracle</a> and found a new home as an Apache project. It is fair to say that the rivalry between the two projects in the time since then has been strong. Predictions that one project or the other would fail have not been borne out, but that does not mean that the two projects are equally successful. A look at the two projects' development communities reveals some interesting differences.
<p> </p>
<h4>Release histories</h4>
@ -782,7 +782,7 @@ bark but the caravan moves on.</span>" That may be true, but, in this case, the
<p><a href="/Articles/637735/#Comments">Comments (74 posted)</a> </p>
<p> </p>
<p> <b>Page editor</b>: Jonathan Corbet
<br> </p>
<br/> </p>
<h2>Inside this week's LWN.net Weekly Edition</h2>
<ul>
<li> <a href="/Articles/637395/">Security</a>: Toward secure package downloads; New vulnerabilities in drupal, mozilla, openssl, python-django ... </li>
@ -791,7 +791,7 @@ bark but the caravan moves on.</span>" That may be true, but, in this case, the
<li> <a href="/Articles/637398/">Development</a>: A look at GlusterFS; LibreOffice Online; Open sourcing existing code; Secure Boot in Windows 10; ... </li>
<li> <a href="/Articles/637399/">Announcements</a>: A Turing award for Michael Stonebraker, Sébastien Jodogne, ReGlue are Free Software Award winners, Kat Walsh joins FSF board of directors, Cyanogen, ... </li>
</ul> <b>Next page</b>: <a href="/Articles/637395/">Security&gt;&gt;</a>
<br> </div>
<br/> </div>
<!-- ArticleText -->
</td>
<!-- MC -->
@ -806,13 +806,13 @@ bark but the caravan moves on.</span>" That may be true, but, in this case, the
</tbody>
</table>
<!-- endpage -->
<br clear="all">
<br clear="all"/>
<center>
<p> <font size="-2">
Copyright © 2015, Eklektix, Inc.<br>
Copyright © 2015, Eklektix, Inc.<br/>
Comments and public postings are copyrighted by their creators.<br>
Linux is a registered trademark of Linus Torvalds<br>
Comments and public postings are copyrighted by their creators.<br/>
Linux is a registered trademark of Linus Torvalds<br/>
</font> </p>
</center>
</body>

@ -1,21 +1,21 @@
<div id="readability-page-1" class="page">
<div class="section-inner layoutSingleColumn">
<h4 name="425a" id="425a" data-align="center" class="graf--h4"><em class="markup--em markup--h4-em">Better Student Journalism</em></h4>
<h4 name="08db" id="08db" class="graf--h4 graf--empty"><br></h4>
<h4 name="08db" id="08db" class="graf--h4 graf--empty"><br/></h4>
<p name="d178" id="d178" class="graf--p">We pushed out the first version of the <a href="http://pippinlee.github.io/open-journalism-project/" data-href="http://pippinlee.github.io/open-journalism-project/" class="markup--anchor markup--p-anchor" rel="nofollow">Open Journalism site</a> in January. Our goal is for the site to be a place to teach students what they should know about journalism on the web. It should be fun too.</p>
<p name="01ed" id="01ed" class="graf--p">Topics like <a href="http://pippinlee.github.io/open-journalism-project/Mapping/" data-href="http://pippinlee.github.io/open-journalism-project/Mapping/" class="markup--anchor markup--p-anchor" rel="nofollow">mapping</a>, <a href="http://pippinlee.github.io/open-journalism-project/Security/" data-href="http://pippinlee.github.io/open-journalism-project/Security/" class="markup--anchor markup--p-anchor" rel="nofollow">security</a>, command line tools, and <a href="http://pippinlee.github.io/open-journalism-project/Open-source/" data-href="http://pippinlee.github.io/open-journalism-project/Open-source/" class="markup--anchor markup--p-anchor" rel="nofollow">open source</a> are all concepts that should be made more accessible, and should be easily understood at a basic level by all journalists. Were focusing on students because we know student journalism well, and we believe that teaching maturing journalists about the web will provide them with an important lens to view the world with. This is how we got to where we are now.</p>
<h3 name="0348" id="0348" class="graf--h3">Circa 2011</h3>
<p name="f923" id="f923" class="graf--p">In late 2011 I sat in the design room of our universitys student newsroom with some of the other editors: Kate Hudson, Brent Rose, and Nicholas Maronese. I was working as the photo editor then—something I loved doing. I was very happy travelling and photographing people while listening to their stories.</p>
<p name="c9d4" id="c9d4" class="graf--p">Photography was my lucky way of experiencing the many types of people my generation seemed to avoid, as well as many the public spends too much time discussing. One of my habits as a photographer was scouring sites like Flickr to see how others could frame the world in ways I hadnt previously considered.</p>
<figure name="06e8" id="06e8" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*AzYWbe4cZkMMEUbfRjysLQ.png" data-width="1000" data-height="500" data-action="zoom" data-action-value="1*AzYWbe4cZkMMEUbfRjysLQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*AzYWbe4cZkMMEUbfRjysLQ.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*AzYWbe4cZkMMEUbfRjysLQ.png" data-width="1000" data-height="500" data-action="zoom" data-action-value="1*AzYWbe4cZkMMEUbfRjysLQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*AzYWbe4cZkMMEUbfRjysLQ.png"/></div>
<figcaption class="imageCaption">topleftpixel.com</figcaption>
</figure>
<p name="930f" id="930f" class="graf--p">I started discovering beautiful things the <a href="http://wvs.topleftpixel.com/13/02/06/timelapse-strips-homewood.htm" data-href="http://wvs.topleftpixel.com/13/02/06/timelapse-strips-homewood.htm" class="markup--anchor markup--p-anchor" rel="nofollow">web could do with images</a>: things not possible with print. Just as every generation revolts against walking in the previous generations shoes, I found myself questioning the expectations that I came up against as a photo editor. In our newsroom the expectations were built from an outdated information world. We were expected to fill old shoes.</p>
<p name="2674" id="2674" class="graf--p">So we sat in our student newsroom—not very happy with what we were doing. Our weekly newspaper had remained essentially unchanged for 40+ years. Each editorial position had the same requirement every year. The <em class="markup--em markup--p-em">big</em> change happened in the 80s when the paper started using colour. Wed also stumbled into having a website, but it was updated just once a week with the release of the newspaper.</p>
<p name="e498" id="e498" class="graf--p">Information had changed form, but the student newsroom hadnt, and it was becoming harder to romanticize the dusty newsprint smell coming from the shoes we were handed down from previous generations of editors. It was, we were told, all part of “becoming a journalist.”</p>
<figure name="12da" id="12da" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*d0Hp6KlzyIcGHcL6to1sYQ.png" data-width="868" data-height="451" data-action="zoom" data-action-value="1*d0Hp6KlzyIcGHcL6to1sYQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*d0Hp6KlzyIcGHcL6to1sYQ.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*d0Hp6KlzyIcGHcL6to1sYQ.png" data-width="868" data-height="451" data-action="zoom" data-action-value="1*d0Hp6KlzyIcGHcL6to1sYQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*d0Hp6KlzyIcGHcL6to1sYQ.png"/></div>
</figure>
<h3 name="e2f0" id="e2f0" class="graf--h3">We dont know what we dont know</h3>
<p name="8263" id="8263" class="graf--p">We spent much of the rest of the school year asking “what should we be doing in the newsroom?”, which mainly led us to ask “how do we use the web to tell stories?” It was a straightforward question that led to many more questions about the web: something we knew little about. Out in the real world, traditional journalists were struggling to keep their jobs in a dying print world. They wore the same design of shoes that we were supposed to fill. Being pushed to repeat old, failing strategies and blocked from trying something new scared us.</p>
@ -34,7 +34,7 @@
<li name="0be9" id="0be9" class="graf--li">Not enough discussion between the business side and web efforts</li>
</ul>
<figure name="79ed" id="79ed" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*_9KYIFrk_PqWFgptsMDeww.png" data-width="1086" data-height="500" data-action="zoom" data-action-value="1*_9KYIFrk_PqWFgptsMDeww.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*_9KYIFrk_PqWFgptsMDeww.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*_9KYIFrk_PqWFgptsMDeww.png" data-width="1086" data-height="500" data-action="zoom" data-action-value="1*_9KYIFrk_PqWFgptsMDeww.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*_9KYIFrk_PqWFgptsMDeww.png"/></div>
<figcaption class="imageCaption">From our 2011 research</figcaption>
</figure>
<h3 name="8d0c" id="8d0c" class="graf--h3">Common problems in student newsrooms (2013)</h3>
@ -57,53 +57,53 @@
<h3 name="9c30" id="9c30" class="graf--h3">A train or light at the end of the tunnel: are student newsrooms changing for the better?</h3>
<p name="4634" id="4634" class="graf--p">In our 2013 research we found that almost 50% of student newsrooms had created roles specifically for the web. <strong class="markup--strong markup--p-strong">This sounds great, but is still problematic in its current state.</strong> </p>
<figure name="416f" id="416f" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*Vh2MpQjqjPkzYJaaWExoVg.png" data-width="624" data-height="560" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*Vh2MpQjqjPkzYJaaWExoVg.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*Vh2MpQjqjPkzYJaaWExoVg.png" data-width="624" data-height="560" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*Vh2MpQjqjPkzYJaaWExoVg.png"/></div>
<figcaption class="imageCaption"><strong class="markup--strong markup--figure-strong">We designed many of these slides to help explain to ourselves what we were doing</strong> </figcaption>
</figure>
<p name="39e6" id="39e6" class="graf--p">When a newsroom decides to create a position for the web, its often with the intent of having content flow steadily from writers onto the web. This is a big improvement from just uploading stories to the web whenever there is a print issue. <em class="markup--em markup--p-em">However…</em> </p>
<ol class="postList">
<li name="91b5" id="91b5" class="graf--li"><strong class="markup--strong markup--li-strong">The handoff</strong>
<br>Problems arise because web editors are given roles that absolve the rest of the editors from thinking about the web. All editors should be involved in the process of story development for the web. While its a good idea to have one specific editor manage the website, contributors and editors should all play with and learn about the web. Instead of “can you make a computer do XYZ for me?”, we should be saying “can you show me how to make a computer do XYZ?”</li>
<li name="6448" id="6448" class="graf--li"><strong class="markup--strong markup--li-strong">Not just social media<br></strong>A web editor could do much more than simply being in charge of the social media accounts for the student paper. Their responsibility could include teaching all other editors to be listening to whats happening online. The web editor can take advantage of live information to change how the student newsroom reports news in real time.</li>
<li name="ab30" id="ab30" class="graf--li"><strong class="markup--strong markup--li-strong">Web (interactive) editor<br></strong>The goal of having a web editor should be for someone to build and tell stories that take full advantage of the web as their medium. Too often the webs interactivity is not considered when developing the story. The web then ends up as a resting place for print words.</li>
<br/>Problems arise because web editors are given roles that absolve the rest of the editors from thinking about the web. All editors should be involved in the process of story development for the web. While its a good idea to have one specific editor manage the website, contributors and editors should all play with and learn about the web. Instead of “can you make a computer do XYZ for me?”, we should be saying “can you show me how to make a computer do XYZ?”</li>
<li name="6448" id="6448" class="graf--li"><strong class="markup--strong markup--li-strong">Not just social media<br/></strong>A web editor could do much more than simply being in charge of the social media accounts for the student paper. Their responsibility could include teaching all other editors to be listening to whats happening online. The web editor can take advantage of live information to change how the student newsroom reports news in real time.</li>
<li name="ab30" id="ab30" class="graf--li"><strong class="markup--strong markup--li-strong">Web (interactive) editor<br/></strong>The goal of having a web editor should be for someone to build and tell stories that take full advantage of the web as their medium. Too often the webs interactivity is not considered when developing the story. The web then ends up as a resting place for print words.</li>
</ol>
<p name="e983" id="e983" class="graf--p">Editors at newsrooms are still figuring out how to convince writers of the benefit to having their content online. Theres still a stronger draw to writers seeing their name in print than on the web. Showing writers that their stories can be told in new ways to larger audiences is a convincing argument that the web is a starting point for telling a story, not its graveyard.</p>
<p name="5c11" id="5c11" class="graf--p">When everyone in the newsroom approaches their website with the intention of using it to explore the web as a medium, they all start to ask “what is possible?” and “what can be done?” You cant expect students to think in terms of the web if its treated as a place for print words to hang out on a web page.</p>
<p name="4eb1" id="4eb1" class="graf--p">Were OK with this problem, if we see newsrooms continue to take small steps towards having all their editors involved in the stories for the web.</p>
<figure name="7aab" id="7aab" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*2Ln_DmC95Xpz6LzgywkcFQ.png" data-width="1315" data-height="718" data-action="zoom" data-action-value="1*2Ln_DmC95Xpz6LzgywkcFQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*2Ln_DmC95Xpz6LzgywkcFQ.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*2Ln_DmC95Xpz6LzgywkcFQ.png" data-width="1315" data-height="718" data-action="zoom" data-action-value="1*2Ln_DmC95Xpz6LzgywkcFQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*2Ln_DmC95Xpz6LzgywkcFQ.png"/></div>
<figcaption class="imageCaption">The current Open Journalism site was a few years in the making. This was an original launch page we use in 2012</figcaption>
</figure>
<h3 name="08f5" id="08f5" class="graf--h3">What we know</h3>
<ul class="postList">
<li name="f7fe" id="f7fe" class="graf--li"><strong class="markup--strong markup--li-strong">New process</strong>
<br>Our rough research has told us newsrooms need to be reorganized. This includes every part of the newsrooms workflow: from where a story and its information comes from, to thinking of every word, pixel, and interaction the reader will have with your stories. If I was a photo editor that wanted to re-think my process with digital tools in mind, Id start by asking “how are photo assignments processed and sent out?”, “how do we receive images?”, “what formats do images need to be exported in?”, “what type of screens will the images be viewed on?”, and “how are the designers getting these images?” Making a student newsroom digital isnt about producing “digital manifestos”, its about being curious enough that youll want to to continue experimenting with your process until youve found one that fits your newsrooms needs.</li>
<br/>Our rough research has told us newsrooms need to be reorganized. This includes every part of the newsrooms workflow: from where a story and its information comes from, to thinking of every word, pixel, and interaction the reader will have with your stories. If I was a photo editor that wanted to re-think my process with digital tools in mind, Id start by asking “how are photo assignments processed and sent out?”, “how do we receive images?”, “what formats do images need to be exported in?”, “what type of screens will the images be viewed on?”, and “how are the designers getting these images?” Making a student newsroom digital isnt about producing “digital manifestos”, its about being curious enough that youll want to to continue experimenting with your process until youve found one that fits your newsrooms needs.</li>
<li name="d757" id="d757" class="graf--li"><strong class="markup--strong markup--li-strong">More (remote) mentorship</strong>
<br>Lack of mentorship is still a big problem. <a href="http://www.google.com/get/journalismfellowship/" data-href="http://www.google.com/get/journalismfellowship/" class="markup--anchor markup--li-anchor" rel="nofollow">Googles fellowship program</a> is great. The fact that it only caters to United States students isnt. There are only a handful of internships in Canada where students interested in journalism can get experience writing code and building interactive stories. Were OK with this for now, as we expect internships and mentorship over the next 5 years between professional newsrooms and student newsrooms will only increase. Its worth noting that some of that mentorship will likely be done remotely.</li>
<br/>Lack of mentorship is still a big problem. <a href="http://www.google.com/get/journalismfellowship/" data-href="http://www.google.com/get/journalismfellowship/" class="markup--anchor markup--li-anchor" rel="nofollow">Googles fellowship program</a> is great. The fact that it only caters to United States students isnt. There are only a handful of internships in Canada where students interested in journalism can get experience writing code and building interactive stories. Were OK with this for now, as we expect internships and mentorship over the next 5 years between professional newsrooms and student newsrooms will only increase. Its worth noting that some of that mentorship will likely be done remotely.</li>
<li name="a9b8" id="a9b8" class="graf--li"><strong class="markup--strong markup--li-strong">Changing a newsroom culture</strong>
<br>Skill diversity needs to change. We encourage every student newsroom we talk to, to start building a partnership with their schools Computer Science department. It will take some work, but youll find there are many CS undergrads that love playing with web technologies, and using data to tell stories. Changing who is in the newsroom should be one of the first steps newsrooms take to changing how they tell stories. The same goes with getting designers who understand the wonderful interactive elements of the web and students who love statistics and exploring data. Getting students who are amazing at design, data, code, words, and images into one room is one of the coolest experience Ive had. Everyone benefits from a more diverse newsroom.</li>
<br/>Skill diversity needs to change. We encourage every student newsroom we talk to, to start building a partnership with their schools Computer Science department. It will take some work, but youll find there are many CS undergrads that love playing with web technologies, and using data to tell stories. Changing who is in the newsroom should be one of the first steps newsrooms take to changing how they tell stories. The same goes with getting designers who understand the wonderful interactive elements of the web and students who love statistics and exploring data. Getting students who are amazing at design, data, code, words, and images into one room is one of the coolest experience Ive had. Everyone benefits from a more diverse newsroom.</li>
</ul>
<h3 name="a67e" id="a67e" class="graf--h3">What we dont know</h3>
<ul class="postList">
<li name="7320" id="7320" class="graf--li"><strong class="markup--strong markup--li-strong">Sharing curiosity for the web</strong>
<br>We dont know how to best teach students about the web. Its not efficient for us to teach coding classes. We do go into newsrooms and get them running their first code exercises, but if someone wants to learn to program, we can only provide the initial push and curiosity. We will be trying out “labs” with a few schools next school year to hopefully get a better idea of how to teach students about the web.</li>
<br/>We dont know how to best teach students about the web. Its not efficient for us to teach coding classes. We do go into newsrooms and get them running their first code exercises, but if someone wants to learn to program, we can only provide the initial push and curiosity. We will be trying out “labs” with a few schools next school year to hopefully get a better idea of how to teach students about the web.</li>
<li name="8b23" id="8b23" class="graf--li"><strong class="markup--strong markup--li-strong">Business</strong>
<br>We dont know how to convince the business side of student papers that they should invest in the web. At the very least were able to explain that having students graduate with their current skill set is painful in the current job market.</li>
<br/>We dont know how to convince the business side of student papers that they should invest in the web. At the very least were able to explain that having students graduate with their current skill set is painful in the current job market.</li>
<li name="191e" id="191e" class="graf--li"><strong class="markup--strong markup--li-strong">The future</strong>
<br>We dont know what journalism or the web will be like in 10 years, but we can start encouraging students to keep an open mind about the skills theyll need. Were less interested in preparing students for the current newsroom climate, than we are in teaching students to have the ability to learn new tools quickly as they come and go.</li>
<br/>We dont know what journalism or the web will be like in 10 years, but we can start encouraging students to keep an open mind about the skills theyll need. Were less interested in preparing students for the current newsroom climate, than we are in teaching students to have the ability to learn new tools quickly as they come and go.</li>
</ul>
</div>
<div class="section-inner layoutSingleColumn">
<h3 name="009a" id="009a" class="graf--h3">What were trying to share with others</h3>
<ul class="postList">
<li name="8bfa" id="8bfa" class="graf--li"><strong class="markup--strong markup--li-strong">A concise guide to building stories for the web</strong>
<br>There are too many options to get started. We hope to provide an opinionated guide that follows both our experiences, research, and observations from trying to teach our peers.</li>
<br/>There are too many options to get started. We hope to provide an opinionated guide that follows both our experiences, research, and observations from trying to teach our peers.</li>
</ul>
<p name="8196" id="8196" class="graf--p">Student newsrooms dont have investors to please. Student newsrooms can change their website every week if they want to try a new design or interaction. As long as students start treating the web as a different medium, and start building stories around that idea, then well know were moving forward.</p>
<h3 name="f6c6" id="f6c6" class="graf--h3">A note to professional news orgs</h3>
<p name="d8f5" id="d8f5" class="graf--p">Were also asking professional newsrooms to be more open about their process of developing stories for the web. You play a big part in this. This means writing about it, and sharing code. We need to start building a bridge between student journalism and professional newsrooms.</p>
<figure name="7ed3" id="7ed3" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*bXaR_NBJdoHpRc8lUWSsow.png" data-width="686" data-height="400" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*bXaR_NBJdoHpRc8lUWSsow.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*bXaR_NBJdoHpRc8lUWSsow.png" data-width="686" data-height="400" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*bXaR_NBJdoHpRc8lUWSsow.png"/></div>
<figcaption class="imageCaption">2012</figcaption>
</figure>
<h3 name="ee1b" id="ee1b" class="graf--h3">This is a start</h3>
@ -111,7 +111,7 @@
<p name="bd44" id="bd44" class="graf--p">We expect to have more original tutorials as well as the beginnings of what a curriculum may look like that a student newsroom can adopt to start guiding their transition to become a web first newsroom. Were also going to be working with the <a href="http://queensjournal.ca/" data-href="http://queensjournal.ca/" class="markup--anchor markup--p-anchor" rel="nofollow">Queens Journal</a> and <a href="http://ubyssey.ca/" data-href="http://ubyssey.ca/" class="markup--anchor markup--p-anchor" rel="nofollow">The Ubyssey</a>next school year to better understand how to make the student newsroom a place for experimenting with telling stories on the web. If this sound like a good idea in your newsroom, were still looking to add 1 more school.</p>
<p name="abd5" id="abd5" class="graf--p">Were trying out some new shoes. And while theyre not self-lacing, and smell a bit different, we feel lacing up a new pair of kicks can change a lot.</p>
<figure name="4c68" id="4c68" class="graf--figure">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*lulfisQxgSQ209vPHMAifg.png" data-width="950" data-height="534" data-action="zoom" data-action-value="1*lulfisQxgSQ209vPHMAifg.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*lulfisQxgSQ209vPHMAifg.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*lulfisQxgSQ209vPHMAifg.png" data-width="950" data-height="534" data-action="zoom" data-action-value="1*lulfisQxgSQ209vPHMAifg.png" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*lulfisQxgSQ209vPHMAifg.png"/></div>
</figure>
<p name="2c5c" id="2c5c" class="graf--p"><strong class="markup--strong markup--p-strong">Lets talk. Lets listen.</strong> </p>
<p name="63ec" id="63ec" class="graf--p"><strong class="markup--strong markup--p-strong">Were still in the early stages of what this project will look like, so if you want to help or have thoughts, lets talk.</strong> </p>

@ -2,40 +2,40 @@
<html>
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# medium-com: http://ogp.me/ns/fb/medium-com#">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"
user-scalable="no">
user-scalable="no"/>
<title>The Open Journalism Project: Better Student Journalism — Medium</title>
<link
rel="canonical" href="https://medium.com/@pippinlee/the-open-journalism-project-better-student-journalism-fb39f4f701bb">
<meta name="title" content="The Open Journalism Project: Better Student Journalism">
<meta name="referrer" content="always">
<meta name="description" content="We pushed out the first version of the Open Journalism site in January. Heres what weve learned about student journali…">
<meta property="og:site_name" content="Medium">
<meta property="og:title" content="The Open Journalism Project: Better Student Journalism">
<meta property="og:url" content="https://medium.com/@pippinlee/the-open-journalism-project-better-student-journalism-fb39f4f701bb">
<meta property="og:image" content="https://d262ilb51hltx0.cloudfront.net/max/800/1*oBWUXtszDsiv_-Qq2bFLTQ.png">
<meta property="fb:app_id" content="542599432471018">
<meta property="og:description" content="We pushed out the first version of the Open Journalism site in January. Heres what weve learned about student journali…">
<meta name="twitter:site" content="@Medium">
<meta name="twitter:image:src" content="https://d262ilb51hltx0.cloudfront.net/max/800/1*oBWUXtszDsiv_-Qq2bFLTQ.png">
<link rel="publisher" href="https://plus.google.com/103654360130207659246">
<link rel="author" href="https://medium.com/@pippinlee">
<meta name="author" content="Pippin Lee">
<meta property="og:type" content="article">
<meta name="twitter:card" content="summary_large_image">
<meta property="article:publisher" content="https://www.facebook.com/medium">
<meta property="article:author" content="https://medium.com/@pippinlee">
<meta property="article:published_time" content="2015-03-17T16:27:40.294Z">
<meta name="twitter:creator" content="@pippinlee">
<meta name="twitter:app:name:iphone" content="Medium">
<meta name="twitter:app:id:iphone" content="828256236">
<meta name="twitter:app:url:iphone" content="medium:/p/fb39f4f701bb">
<meta property="al:ios:app_name" content="Medium">
<meta property="al:ios:app_store_id" content="828256236">
<meta property="al:ios:url" content="medium:/p/fb39f4f701bb">
<meta property="al:web:url" content="https://medium.com/@pippinlee/the-open-journalism-project-better-student-journalism-fb39f4f701bb">
<meta name="theme-color" content="#000000">
rel="canonical" href="https://medium.com/@pippinlee/the-open-journalism-project-better-student-journalism-fb39f4f701bb"/>
<meta name="title" content="The Open Journalism Project: Better Student Journalism"/>
<meta name="referrer" content="always"/>
<meta name="description" content="We pushed out the first version of the Open Journalism site in January. Heres what weve learned about student journali…"/>
<meta property="og:site_name" content="Medium"/>
<meta property="og:title" content="The Open Journalism Project: Better Student Journalism"/>
<meta property="og:url" content="https://medium.com/@pippinlee/the-open-journalism-project-better-student-journalism-fb39f4f701bb"/>
<meta property="og:image" content="https://d262ilb51hltx0.cloudfront.net/max/800/1*oBWUXtszDsiv_-Qq2bFLTQ.png"/>
<meta property="fb:app_id" content="542599432471018"/>
<meta property="og:description" content="We pushed out the first version of the Open Journalism site in January. Heres what weve learned about student journali…"/>
<meta name="twitter:site" content="@Medium"/>
<meta name="twitter:image:src" content="https://d262ilb51hltx0.cloudfront.net/max/800/1*oBWUXtszDsiv_-Qq2bFLTQ.png"/>
<link rel="publisher" href="https://plus.google.com/103654360130207659246"/>
<link rel="author" href="https://medium.com/@pippinlee"/>
<meta name="author" content="Pippin Lee"/>
<meta property="og:type" content="article"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta property="article:publisher" content="https://www.facebook.com/medium"/>
<meta property="article:author" content="https://medium.com/@pippinlee"/>
<meta property="article:published_time" content="2015-03-17T16:27:40.294Z"/>
<meta name="twitter:creator" content="@pippinlee"/>
<meta name="twitter:app:name:iphone" content="Medium"/>
<meta name="twitter:app:id:iphone" content="828256236"/>
<meta name="twitter:app:url:iphone" content="medium:/p/fb39f4f701bb"/>
<meta property="al:ios:app_name" content="Medium"/>
<meta property="al:ios:app_store_id" content="828256236"/>
<meta property="al:ios:url" content="medium:/p/fb39f4f701bb"/>
<meta property="al:web:url" content="https://medium.com/@pippinlee/the-open-journalism-project-better-student-journalism-fb39f4f701bb"/>
<meta name="theme-color" content="#000000"/>
<script type="text/javascript" src="http://www.google-analytics.com/ga.js"></script>
<script>
if (window.top !== window.self) window.top.location = window.self.location.href;var OB_startTime = new Date().getTime(); var OB_fontLoaded = 0; var OB_loadErrors = []; function _onerror(e) { OB_loadErrors.push(e) }; if (document.addEventListener) document.addEventListener("error", _onerror, true); else if (document.attachEvent) document.attachEvent("onerror", _onerror); function _asyncScript(u) {var d = document, f = d.getElementsByTagName("script")[0], s = d.createElement("script"); s.type = "text/javascript"; s.async = true; s.src = u; f.parentNode.insertBefore(s, f);}function _asyncStyles(u) {var d = document, f = d.getElementsByTagName("script")[0], s = d.createElement("link"); s.rel = "stylesheet"; s.href = u; f.parentNode.insertBefore(s, f); return s}var _gaq = _gaq || []; _gaq.push(["_setAccount", "UA-24232453-2"]); _gaq.push(["_setDomainName", window.location.hostname]); _gaq.push(["_setAllowLinker", true]); _gaq.push(["_trackPageview"]); _asyncScript(("https:" == document.location.protocol ? "https://ssl" : "http://www") + ".google-analytics.com/ga.js");(new Image()).src = "/_/stat?event=pixel.load&origin=" + encodeURIComponent(location.origin);
@ -43,18 +43,18 @@
<script>
_asyncStyles('https:\/\/dnqgz544uhbo8.cloudfront.net\/_\/fp\/css\/main-sprites.1B2M2Y8AsgTpgAmY7PhCfg.css')
</script>
<link rel="stylesheet" href="https://dnqgz544uhbo8.cloudfront.net/_/fp/css/main-base.yJzZ9u5sH5_3PnBRjyto6A.css">
<link rel="stylesheet" href="https://dnqgz544uhbo8.cloudfront.net/_/fp/css/main-base.yJzZ9u5sH5_3PnBRjyto6A.css"/>
<script>
(function () {var height = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; document.write("<style>section.section-image--fullBleed {padding-top: " + Math.round(1.1 * height) + "px;}section.section-image--fullScreen, section.section-image--coverFade {min-height: " + height + "px; padding-top: " + Math.round(0.5 * height) + "px;}.u-sizeViewHeight100 {height: " + height + "px !important;}.u-sizeViewHeightMin100 {min-height: " + height + "px !important;}section.section-image--coverFade, .section-image--fullScreen > .section-background, .section-image--coverFade > .section-background, .section-image--fullBleed .section-backgroundImage, .section-image--fullScreen .section-backgroundImage, .section-image--coverFade .section-backgroundImage {height: " + height + "px;}.section-image--content > .section-background, .section-image--content .section-backgroundImage, .section-aspectRatioViewportPlaceholder, .section-aspectRatioViewportCropPlaceholder {max-height: " + height + "px;}.section-image--fullBleed > .section-background {height: " + Math.round(1.1 * height) + "px;}.section-aspectRatioViewportBottomSpacer, .section-aspectRatioViewportBottomPlaceholder {max-height: " + Math.round(0.5 * height) + "px;}</style>");})()
</script>
<!--[if lt IE 9]>
<script charset="UTF-8" src="https://dnqgz544uhbo8.cloudfront.net/_/fp/js/shiv.RI2ePTZ5gFmMgLzG5bEVAA.js"></script>
<![endif]-->
<link rel="shortcut icon" href="https://dnqgz544uhbo8.cloudfront.net/_/fp/icons/favicon.n7eHNqdWyHhbTLN2-3a-6g.ico">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/apple-touch-icon-precomposed-152.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/apple-touch-icon-precomposed-120.png">
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/apple-touch-icon-precomposed-76.png">
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-precomposed.png">
<link rel="shortcut icon" href="https://dnqgz544uhbo8.cloudfront.net/_/fp/icons/favicon.n7eHNqdWyHhbTLN2-3a-6g.ico"/>
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/apple-touch-icon-precomposed-152.png"/>
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/apple-touch-icon-precomposed-120.png"/>
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/apple-touch-icon-precomposed-76.png"/>
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-precomposed.png"/>
</head>
<body itemscope="" itemtype="http://schema.org/Article" class=" template-flex-article js-loading ">
@ -118,10 +118,10 @@
</div>
</div>
<div class="metabar u-clearfix metabar--bottom metabar--opaque metabar--bordered metabar--social metabar--postSecondaryBar js-postSecondaryBar">
<div class="metabar-block metabar-left u-floatLeft"><span class="postMetaInline postMetaInline--avatar"><a href="https://medium.com/@pippinlee" class="avatar avatar--icon avatar--inline link link--secondary" title="Go to the profile of Pippin Lee"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/32/32/0*312pRa3Jh6ESE7Es.jpeg" class="avatar-image avatar-image--icon" title="Pippin Lee"></a></span>
<div class="metabar-block metabar-left u-floatLeft"><span class="postMetaInline postMetaInline--avatar"><a href="https://medium.com/@pippinlee" class="avatar avatar--icon avatar--inline link link--secondary" title="Go to the profile of Pippin Lee"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/32/32/0*312pRa3Jh6ESE7Es.jpeg" class="avatar-image avatar-image--icon" title="Pippin Lee"/></a></span>
<span
class="postMetaInline postMetaInline--authorDateline"><a class="link link--secondary" title="Go to the profile of Pippin Lee"
href="https://medium.com/@pippinlee">Pippin Lee</a><span class="u-showOnTabletMini"><br></span>
href="https://medium.com/@pippinlee">Pippin Lee</a><span class="u-showOnTabletMini"><br/></span>
<span
class="postMetaInline postMetaInline--date"><span class="u-xs-hide"> on </span>
<time class="post-date">Mar 17</time><span class="middotDivider"></span>11 min</span>
@ -211,7 +211,7 @@
<div class="postField postField--body">
<section name="465f" class=" section--first section--last">
<div class="section-divider layoutSingleColumn">
<hr class="section-divider">
<hr class="section-divider"/>
</div>
<div class="section-content">
<div class="section-inner u-sizeFullWidth">
@ -219,22 +219,22 @@
<div class="aspectRatioPlaceholder is-locked">
<div class="aspect-ratio-fill" style="padding-bottom: 43.9%;"></div>
<img class="graf-image" data-image-id="1*oBWUXtszDsiv_-Qq2bFLTQ.png"
data-width="1368" data-height="600" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*oBWUXtszDsiv_-Qq2bFLTQ.png">
data-width="1368" data-height="600" src="https://d262ilb51hltx0.cloudfront.net/max/2000/1*oBWUXtszDsiv_-Qq2bFLTQ.png"/>
</div>
</figure>
</div>
<div class="section-inner layoutSingleColumn">
<h2 name="3c62" id="3c62" data-align="center" class="graf--h2">Open Journalism Project:</h2>
<p name="e970" id="e970" class="graf--p graf--empty">
<br>
<br/>
</p>
<h4 name="425a" id="425a" data-align="center" class="graf--h4"><em class="markup--em markup--h4-em">Better Student Journalism</em></h4>
<p name="a511" id="a511" class="graf--p graf--empty">
<br>
<br/>
</p>
<h4 name="08db" id="08db" class="graf--h4 graf--empty"><br></h4>
<h4 name="08db" id="08db" class="graf--h4 graf--empty"><br/></h4>
<p name="acc4" id="acc4" class="graf--p graf--empty">
<br>
<br/>
</p>
<p name="d178" id="d178" class="graf--p">We pushed out the first version of the <a href="http://pippinlee.github.io/open-journalism-project/"
data-href="http://pippinlee.github.io/open-journalism-project/" class="markup--anchor markup--p-anchor"
@ -271,7 +271,7 @@
<div class="aspect-ratio-fill" style="padding-bottom: 50%;"></div>
<img class="graf-image" data-image-id="1*AzYWbe4cZkMMEUbfRjysLQ.png"
data-width="1000" data-height="500" data-action="zoom" data-action-value="1*AzYWbe4cZkMMEUbfRjysLQ.png"
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*AzYWbe4cZkMMEUbfRjysLQ.png">
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*AzYWbe4cZkMMEUbfRjysLQ.png"/>
</div>
<figcaption class="imageCaption">topleftpixel.com</figcaption>
</figure>
@ -299,7 +299,7 @@
<div class="aspect-ratio-fill" style="padding-bottom: 52%;"></div>
<img class="graf-image" data-image-id="1*d0Hp6KlzyIcGHcL6to1sYQ.png"
data-width="868" data-height="451" data-action="zoom" data-action-value="1*d0Hp6KlzyIcGHcL6to1sYQ.png"
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*d0Hp6KlzyIcGHcL6to1sYQ.png">
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*d0Hp6KlzyIcGHcL6to1sYQ.png"/>
</div>
</figure>
<h3 name="e2f0" id="e2f0" class="graf--h3">We dont know what we dont know</h3>
@ -354,7 +354,7 @@
<div class="aspect-ratio-fill" style="padding-bottom: 46%;"></div>
<img class="graf-image" data-image-id="1*_9KYIFrk_PqWFgptsMDeww.png"
data-width="1086" data-height="500" data-action="zoom" data-action-value="1*_9KYIFrk_PqWFgptsMDeww.png"
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*_9KYIFrk_PqWFgptsMDeww.png">
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*_9KYIFrk_PqWFgptsMDeww.png"/>
</div>
<figcaption class="imageCaption">From our 2011 research</figcaption>
</figure>
@ -406,11 +406,11 @@
<p name="2888" id="2888" class="graf--p"><strong class="markup--strong markup--p-strong">We are building a shoe machine, not a shoe.</strong>
</p>
<p name="1955" id="1955" class="graf--p graf--empty">
<br>
<br/>
</p>
<h3 name="9c30" id="9c30" class="graf--h3">A train or light at the end of the tunnel: are student newsrooms changing for the better?</h3>
<p name="1f98" id="1f98" class="graf--p graf--empty">
<br>
<br/>
</p>
<p name="4634" id="4634" class="graf--p">In our 2013 research we found that almost 50% of student newsrooms had
created roles specifically for the web. <strong class="markup--strong markup--p-strong">This sounds great, but is still problematic in its current state.</strong>
@ -419,7 +419,7 @@
<div class="aspectRatioPlaceholder is-locked" style="max-width: 624px; max-height: 560px;">
<div class="aspect-ratio-fill" style="padding-bottom: 89.7%;"></div>
<img class="graf-image" data-image-id="1*Vh2MpQjqjPkzYJaaWExoVg.png"
data-width="624" data-height="560" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*Vh2MpQjqjPkzYJaaWExoVg.png">
data-width="624" data-height="560" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*Vh2MpQjqjPkzYJaaWExoVg.png"/>
</div>
<figcaption class="imageCaption"><strong class="markup--strong markup--figure-strong">We designed many of these slides to help explain to ourselves what we were doing</strong>
</figcaption>
@ -431,21 +431,21 @@
</p>
<ol class="postList">
<li name="91b5" id="91b5" class="graf--li"><strong class="markup--strong markup--li-strong">The handoff</strong>
<br>Problems arise because web editors are given roles that absolve the rest
<br/>Problems arise because web editors are given roles that absolve the rest
of the editors from thinking about the web. All editors should be involved
in the process of story development for the web. While its a good idea
to have one specific editor manage the website, contributors and editors
should all play with and learn about the web. Instead of “can you make
a computer do XYZ for me?”, we should be saying “can you show me how to
make a computer do XYZ?”</li>
<li name="6448" id="6448" class="graf--li"><strong class="markup--strong markup--li-strong">Not just social media<br></strong>A
<li name="6448" id="6448" class="graf--li"><strong class="markup--strong markup--li-strong">Not just social media<br/></strong>A
web editor could do much more than simply being in charge of the social
media accounts for the student paper. Their responsibility could include
teaching all other editors to be listening to whats happening online.
The web editor can take advantage of live information to change how the
student newsroom reports news in real time.</li>
<li name="ab30" id="ab30"
class="graf--li"><strong class="markup--strong markup--li-strong">Web (interactive) editor<br></strong>The
class="graf--li"><strong class="markup--strong markup--li-strong">Web (interactive) editor<br/></strong>The
goal of having a web editor should be for someone to build and tell stories
that take full advantage of the web as their medium. Too often the webs
interactivity is not considered when developing the story. The web then
@ -470,7 +470,7 @@
<div class="aspect-ratio-fill" style="padding-bottom: 54.6%;"></div>
<img class="graf-image" data-image-id="1*2Ln_DmC95Xpz6LzgywkcFQ.png"
data-width="1315" data-height="718" data-action="zoom" data-action-value="1*2Ln_DmC95Xpz6LzgywkcFQ.png"
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*2Ln_DmC95Xpz6LzgywkcFQ.png">
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*2Ln_DmC95Xpz6LzgywkcFQ.png"/>
</div>
<figcaption class="imageCaption">The current Open Journalism site was a few years in the making. This was
an original launch page we use in 2012</figcaption>
@ -478,7 +478,7 @@
<h3 name="08f5" id="08f5" class="graf--h3">What we know</h3>
<ul class="postList">
<li name="f7fe" id="f7fe" class="graf--li"><strong class="markup--strong markup--li-strong">New process</strong>
<br>Our rough research has told us newsrooms need to be reorganized. This
<br/>Our rough research has told us newsrooms need to be reorganized. This
includes every part of the newsrooms workflow: from where a story and
its information comes from, to thinking of every word, pixel, and interaction
the reader will have with your stories. If I was a photo editor that wanted
@ -491,7 +491,7 @@
to to continue experimenting with your process until youve found one that
fits your newsrooms needs.</li>
<li name="d757" id="d757" class="graf--li"><strong class="markup--strong markup--li-strong">More (remote) mentorship</strong>
<br>Lack of mentorship is still a big problem. <a href="http://www.google.com/get/journalismfellowship/"
<br/>Lack of mentorship is still a big problem. <a href="http://www.google.com/get/journalismfellowship/"
data-href="http://www.google.com/get/journalismfellowship/" class="markup--anchor markup--li-anchor"
rel="nofollow">Googles fellowship program</a> is great. The fact that it
only caters to United States students isnt. There are only a handful of
@ -502,7 +502,7 @@
some of that mentorship will likely be done remotely.</li>
<li name="a9b8"
id="a9b8" class="graf--li"><strong class="markup--strong markup--li-strong">Changing a newsroom culture</strong>
<br>Skill diversity needs to change. We encourage every student newsroom we
<br/>Skill diversity needs to change. We encourage every student newsroom we
talk to, to start building a partnership with their schools Computer Science
department. It will take some work, but youll find there are many CS undergrads
that love playing with web technologies, and using data to tell stories.
@ -516,19 +516,19 @@
<h3 name="a67e" id="a67e" class="graf--h3">What we dont know</h3>
<ul class="postList">
<li name="7320" id="7320" class="graf--li"><strong class="markup--strong markup--li-strong">Sharing curiosity for the web</strong>
<br>We dont know how to best teach students about the web. Its not efficient
<br/>We dont know how to best teach students about the web. Its not efficient
for us to teach coding classes. We do go into newsrooms and get them running
their first code exercises, but if someone wants to learn to program, we
can only provide the initial push and curiosity. We will be trying out
“labs” with a few schools next school year to hopefully get a better idea
of how to teach students about the web.</li>
<li name="8b23" id="8b23" class="graf--li"><strong class="markup--strong markup--li-strong">Business</strong>
<br>We dont know how to convince the business side of student papers that
<br/>We dont know how to convince the business side of student papers that
they should invest in the web. At the very least were able to explain
that having students graduate with their current skill set is painful in
the current job market.</li>
<li name="191e" id="191e" class="graf--li"><strong class="markup--strong markup--li-strong">The future</strong>
<br>We dont know what journalism or the web will be like in 10 years, but
<br/>We dont know what journalism or the web will be like in 10 years, but
we can start encouraging students to keep an open mind about the skills
theyll need. Were less interested in preparing students for the current
newsroom climate, than we are in teaching students to have the ability
@ -541,7 +541,7 @@
<div class="aspect-ratio-fill" style="padding-bottom: 36.4%;"></div>
<img class="graf-image" data-image-id="1*Zz5haO6iz7Hlj0z2IUHulg.png"
data-width="1100" data-height="400" data-action="zoom" data-action-value="1*Zz5haO6iz7Hlj0z2IUHulg.png"
src="https://d262ilb51hltx0.cloudfront.net/max/1200/1*Zz5haO6iz7Hlj0z2IUHulg.png">
src="https://d262ilb51hltx0.cloudfront.net/max/1200/1*Zz5haO6iz7Hlj0z2IUHulg.png"/>
</div>
<figcaption class="imageCaption">Another slide from 2012 website</figcaption>
</figure>
@ -550,7 +550,7 @@
<h3 name="009a" id="009a" class="graf--h3">What were trying to share with others</h3>
<ul class="postList">
<li name="8bfa" id="8bfa" class="graf--li"><strong class="markup--strong markup--li-strong">A concise guide to building stories for the web</strong>
<br>There are too many options to get started. We hope to provide an opinionated
<br/>There are too many options to get started. We hope to provide an opinionated
guide that follows both our experiences, research, and observations from
trying to teach our peers.</li>
</ul>
@ -569,7 +569,7 @@
<div class="aspectRatioPlaceholder is-locked" style="max-width: 686px; max-height: 400px;">
<div class="aspect-ratio-fill" style="padding-bottom: 58.3%;"></div>
<img class="graf-image" data-image-id="1*bXaR_NBJdoHpRc8lUWSsow.png"
data-width="686" data-height="400" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*bXaR_NBJdoHpRc8lUWSsow.png">
data-width="686" data-height="400" src="https://d262ilb51hltx0.cloudfront.net/max/800/1*bXaR_NBJdoHpRc8lUWSsow.png"/>
</div>
<figcaption class="imageCaption">2012</figcaption>
</figure>
@ -598,11 +598,11 @@
<div class="aspect-ratio-fill" style="padding-bottom: 56.2%;"></div>
<img class="graf-image" data-image-id="1*lulfisQxgSQ209vPHMAifg.png"
data-width="950" data-height="534" data-action="zoom" data-action-value="1*lulfisQxgSQ209vPHMAifg.png"
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*lulfisQxgSQ209vPHMAifg.png">
src="https://d262ilb51hltx0.cloudfront.net/max/800/1*lulfisQxgSQ209vPHMAifg.png"/>
</div>
</figure>
<p name="c6bf" id="c6bf" class="graf--p graf--empty">
<br>
<br/>
</p>
<p name="2c5c" id="2c5c" class="graf--p"><strong class="markup--strong markup--p-strong">Lets talk. Lets listen.</strong>
</p>
@ -612,10 +612,10 @@
class="markup--anchor markup--p-anchor" rel="nofollow"><strong class="markup--strong markup--p-strong">pippin@pippinlee.com</strong></a>
</p>
<p name="dc4d" id="dc4d" class="graf--p graf--empty">
<br>
<br/>
</p>
<p name="1bdf" id="1bdf" class="graf--p graf--empty">
<br>
<br/>
</p>
<p name="ea00" id="ea00" class="graf--p graf--last"><em class="markup--em markup--p-em">This isnt supposed to be a </em>
<strong
@ -660,7 +660,7 @@
<div class="postFooter-tags infoCard js-postTags"></div>
<div class="postFooter-info js-postFooterInfo">
<div class="infoCard u-clearfix js-infoCardUser">
<div class="infoCard-avatar"><a href="https://medium.com/@pippinlee" class="avatar avatar--small" title="Go to the profile of Pippin Lee"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/60/60/0*312pRa3Jh6ESE7Es.jpeg" class="avatar-image avatar-image--small" title="Pippin Lee"></a>
<div class="infoCard-avatar"><a href="https://medium.com/@pippinlee" class="avatar avatar--small" title="Go to the profile of Pippin Lee"><img src="https://d262ilb51hltx0.cloudfront.net/fit/c/60/60/0*312pRa3Jh6ESE7Es.jpeg" class="avatar-image avatar-image--small" title="Pippin Lee"/></a>
</div>
<div class="infoCard-info ">
<div class="infoCard-wrapper">
@ -702,4 +702,4 @@
<script charset="UTF-8" src="https://dnqgz544uhbo8.cloudfront.net/_/fp/js/icons.kMtvd60hqPtTdUxvP9j8rw.js"></script>
</body>
</html>
</html>

@ -1,7 +1,7 @@
<div id="readability-page-1" class="page">
<div class="section-inner layoutSingleColumn">
<figure name="4924" id="4924" class="graf--figure graf--first">
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*eR_J8DurqygbhrwDg-WPnQ.png" data-width="1891" data-height="1280" data-action="zoom" data-action-value="1*eR_J8DurqygbhrwDg-WPnQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/1600/1*eR_J8DurqygbhrwDg-WPnQ.png"></div>
<div class="aspectRatioPlaceholder is-locked"><img class="graf-image" data-image-id="1*eR_J8DurqygbhrwDg-WPnQ.png" data-width="1891" data-height="1280" data-action="zoom" data-action-value="1*eR_J8DurqygbhrwDg-WPnQ.png" src="https://d262ilb51hltx0.cloudfront.net/max/1600/1*eR_J8DurqygbhrwDg-WPnQ.png"/></div>
<figcaption class="imageCaption">Words need defenders.</figcaption>
</figure>
<h3 name="b098" id="b098" class="graf--h3">On Behalf of “Literally”</h3>

File diff suppressed because one or more lines are too long

@ -2,12 +2,12 @@
<html lang="en">
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy
eirmod tempor invidunt</title>
<meta content="width=device-width, initial-scale=1"
name="viewport">
<meta content="Henri Sivonen" name="author">
name="viewport"/>
<meta content="Henri Sivonen" name="author"/>
</head>
<body>
@ -61,4 +61,4 @@
sit amet.</p>
</body>
</html>
</html>

@ -3,16 +3,16 @@
<section id="intro">
<div class="container">
<p class="lead">Its easier than ever to personalize Firefox and make it work the way you do.
<br class="wide-br">No other browser gives you so much choice and flexibility.</p>
<div class="animation-wrapper" id="flexible-top-animation"><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/animations/flexible-top-fallback.c960365ba781.png" class="fallback" alt=""></div>
<br class="wide-br"/>No other browser gives you so much choice and flexibility.</p>
<div class="animation-wrapper" id="flexible-top-animation"><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/animations/flexible-top-fallback.c960365ba781.png" class="fallback" alt=""/></div>
</div>
</section>
<section id="designed" class="ga-section" data-ga-label="Designed to be redesigned">
<div class="container">
<div id="designed-copy">
<h2>Designed to <br class="wide-br">be redesigned</h2>
<p>Get fast and easy access to the features you use most in the new menu. Open the “Customize” panel to add, move or remove any button you want. Keep your favorite features — add-ons, private browsing, Sync and more — one quick click away.</p><img class="js " src="" data-processed="false" data-src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/designed-redesigned.fbd3ee9402e6.png" data-high-res="true" data-high-res-src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/designed-redesigned-high-res.6efd60766484.png" alt="" id="designed-mobile"></div>
<div class="animation-wrapper" id="flexible-bottom-animation"><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/animations/flexible-bottom-fallback.cafd48a3d0a4.png" class="fallback" alt=""></div>
<h2>Designed to <br class="wide-br"/>be redesigned</h2>
<p>Get fast and easy access to the features you use most in the new menu. Open the “Customize” panel to add, move or remove any button you want. Keep your favorite features — add-ons, private browsing, Sync and more — one quick click away.</p><img class="js " src="" data-processed="false" data-src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/designed-redesigned.fbd3ee9402e6.png" data-high-res="true" data-high-res-src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/designed-redesigned-high-res.6efd60766484.png" alt="" id="designed-mobile"/></div>
<div class="animation-wrapper" id="flexible-bottom-animation"><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/animations/flexible-bottom-fallback.cafd48a3d0a4.png" class="fallback" alt=""/></div>
</div>
</section>
<section id="customize" class="ga-section" data-ga-label="More ways to customize"> </section>
@ -28,8 +28,8 @@
<button type="button" aria-controls="theme-demo" id="theme-blue">Preview blue theme</button>
<button type="button" aria-controls="theme-demo" id="theme-red" class="selected">Preview red theme</button>
</p><a class="more" rel="external" href="https://addons.mozilla.org/firefox/themes/">Try it now</a>
<br><a class="more" rel="external" href="https://support.mozilla.org/kb/use-themes-change-look-of-firefox">Learn more</a></div><a class="next show-customizer" href="http://fakehost/test/#add-ons" role="button">Next</a>
<div class="customizer-visual"><img id="theme-demo" src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/theme-red.61611c5734ab.png" alt="Preview of the currently selected theme"></div>
<br/><a class="more" rel="external" href="https://support.mozilla.org/kb/use-themes-change-look-of-firefox">Learn more</a></div><a class="next show-customizer" href="http://fakehost/test/#add-ons" role="button">Next</a>
<div class="customizer-visual"><img id="theme-demo" src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/theme-red.61611c5734ab.png" alt="Preview of the currently selected theme"/></div>
</div>
</section>
<section class="customizer" id="add-ons" role="tabpanel" aria-labelledby="customize-addons">
@ -42,8 +42,8 @@
<li>Manage your downloads</li>
<li>Watch videos &amp; view photos</li>
</ul><a class="more" rel="external" href="https://addons.mozilla.org/firefox/extensions/?sort=featured">Here are a few of our favorites</a>
<br><a class="more" rel="external" href="https://support.mozilla.org/kb/find-and-install-add-ons-add-features-to-firefox">Learn more</a></div>
<div class="customizer-visual"><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/add-ons.63a4b761f822.png" alt=""></div>
<br/><a class="more" rel="external" href="https://support.mozilla.org/kb/find-and-install-add-ons-add-features-to-firefox">Learn more</a></div>
<div class="customizer-visual"><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/add-ons.63a4b761f822.png" alt=""/></div>
</div>
</section>
<section class="customizer" id="awesome-bar" role="tabpanel" aria-labelledby="customize-awesomebar">
@ -51,7 +51,7 @@
<div class="customizer-copy">
<h3>Awesome Bar</h3><a class="next show-customizer" href="http://fakehost/test/#themes" role="button">Next</a>
<p class="lead">The Awesome Bar learns as you browse to make your version of Firefox unique. Find and return to your favorite sites without having to remember a URL.</p><a class="more" rel="external" href="https://support.mozilla.org/kb/awesome-bar-find-your-bookmarks-history-and-tabs">See what it can do for you</a></div>
<div class="customizer-visual"><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/awesome-bar.437df162126c.png" alt="Firefox Awesome Bar"></div>
<div class="customizer-visual"><img src="http://mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/awesome-bar.437df162126c.png" alt="Firefox Awesome Bar"/></div>
</div>
</section>
</div>

@ -3,7 +3,7 @@
data-esr-versions="[31]">
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<!-- _.-~-. 7'' Q..\ _7 (_ _7 _/ _q. / _7 . ___ /VVvv-'_ . 7/ / /~- \_\\
'-._ .-' / // ./ ( /-~-/||'=.__ '::. '-~'' { ___ / // ./{ V V-~-~| || __''_
':::. ''~-~.___.-'' _/ // / {_ / { / VV/-~-~-|/ \ .'__'. '. ':: _ _ _ ''.
@ -16,195 +16,195 @@ data-esr-versions="[31]">
https://careers.mozilla.org to learn about our current job openings. Visit
https://www.mozilla.org/contribute for more ways to get involved and help
support Mozilla.-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Firefox — Customize and make it your own — The most flexible browser on
the Web — Mozilla</title>
<meta name="description" content="">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Mozilla">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="https://www.mozilla.org/en-US/firefox/desktop/customize/">
<meta property="og:image" content="https://mozorg.cdn.mozilla.net/media/img/firefox/template/page-image.af8027a425de.png">
<meta property="og:title" content="Firefox — Customize and make it your own — The most flexible browser on the Web">
<meta property="og:description" content="">
<meta property="fb:page_id" content="14696440021">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@firefox">
<meta name="twitter:domain" content="mozilla.org">
<meta name="twitter:app:name:googleplay" content="Firefox">
<meta name="twitter:app:id:googleplay" content="org.mozilla.firefox">
<link rel="author" type="text/plain" href="/humans.txt">
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="//mozorg.cdn.mozilla.net/media/img/firefox/ios-icon-180.7a8401f21915.png">
<link rel="icon" type="image/png" sizes="196x196" href="//mozorg.cdn.mozilla.net/media/img/firefox/favicon-196.223e1bcaf067.png">
<link rel="shortcut icon" href="//mozorg.cdn.mozilla.net/media/img/firefox/favicon.dc6635050bf5.ico">
<link rel="canonical" hreflang="en" href="https://www.mozilla.org/en-US/firefox/desktop/customize/">
<link rel="alternate" hreflang="x-default" href="https://www.mozilla.org/firefox/desktop/customize/">
<meta name="description" content=""/>
<meta property="og:type" content="website"/>
<meta property="og:site_name" content="Mozilla"/>
<meta property="og:locale" content="en_US"/>
<meta property="og:url" content="https://www.mozilla.org/en-US/firefox/desktop/customize/"/>
<meta property="og:image" content="https://mozorg.cdn.mozilla.net/media/img/firefox/template/page-image.af8027a425de.png"/>
<meta property="og:title" content="Firefox — Customize and make it your own — The most flexible browser on the Web"/>
<meta property="og:description" content=""/>
<meta property="fb:page_id" content="14696440021"/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:site" content="@firefox"/>
<meta name="twitter:domain" content="mozilla.org"/>
<meta name="twitter:app:name:googleplay" content="Firefox"/>
<meta name="twitter:app:id:googleplay" content="org.mozilla.firefox"/>
<link rel="author" type="text/plain" href="/humans.txt"/>
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="//mozorg.cdn.mozilla.net/media/img/firefox/ios-icon-180.7a8401f21915.png"/>
<link rel="icon" type="image/png" sizes="196x196" href="//mozorg.cdn.mozilla.net/media/img/firefox/favicon-196.223e1bcaf067.png"/>
<link rel="shortcut icon" href="//mozorg.cdn.mozilla.net/media/img/firefox/favicon.dc6635050bf5.ico"/>
<link rel="canonical" hreflang="en" href="https://www.mozilla.org/en-US/firefox/desktop/customize/"/>
<link rel="alternate" hreflang="x-default" href="https://www.mozilla.org/firefox/desktop/customize/"/>
<link rel="alternate" hreflang="af" href="https://www.mozilla.org/af/firefox/desktop/customize/"
title="Afrikaans">
title="Afrikaans"/>
<link rel="alternate" hreflang="an" href="https://www.mozilla.org/an/firefox/desktop/customize/"
title="aragonés">
title="aragonés"/>
<link rel="alternate" hreflang="ar" href="https://www.mozilla.org/ar/firefox/desktop/customize/"
title="عربي">
title="عربي"/>
<link rel="alternate" hreflang="as" href="https://www.mozilla.org/as/firefox/desktop/customize/"
title="অসমীয়া">
title="অসমীয়া"/>
<link rel="alternate" hreflang="ast" href="https://www.mozilla.org/ast/firefox/desktop/customize/"
title="Asturianu">
title="Asturianu"/>
<link rel="alternate" hreflang="az" href="https://www.mozilla.org/az/firefox/desktop/customize/"
title="Azərbaycanca">
title="Azərbaycanca"/>
<link rel="alternate" hreflang="be" href="https://www.mozilla.org/be/firefox/desktop/customize/"
title="Беларуская">
title="Беларуская"/>
<link rel="alternate" hreflang="bg" href="https://www.mozilla.org/bg/firefox/desktop/customize/"
title="Български">
title="Български"/>
<link rel="alternate" hreflang="bn-IN" href="https://www.mozilla.org/bn-IN/firefox/desktop/customize/"
title="বাংলা (ভারত)">
title="বাংলা (ভারত)"/>
<link rel="alternate" hreflang="br" href="https://www.mozilla.org/br/firefox/desktop/customize/"
title="Brezhoneg">
title="Brezhoneg"/>
<link rel="alternate" hreflang="ca" href="https://www.mozilla.org/ca/firefox/desktop/customize/"
title="Català">
title="Català"/>
<link rel="alternate" hreflang="cs" href="https://www.mozilla.org/cs/firefox/desktop/customize/"
title="Čeština">
title="Čeština"/>
<link rel="alternate" hreflang="cy" href="https://www.mozilla.org/cy/firefox/desktop/customize/"
title="Cymraeg">
title="Cymraeg"/>
<link rel="alternate" hreflang="da" href="https://www.mozilla.org/da/firefox/desktop/customize/"
title="Dansk">
title="Dansk"/>
<link rel="alternate" hreflang="de" href="https://www.mozilla.org/de/firefox/desktop/customize/"
title="Deutsch">
title="Deutsch"/>
<link rel="alternate" hreflang="dsb" href="https://www.mozilla.org/dsb/firefox/desktop/customize/"
title="Dolnoserbšćina">
title="Dolnoserbšćina"/>
<link rel="alternate" hreflang="el" href="https://www.mozilla.org/el/firefox/desktop/customize/"
title="Ελληνικά">
title="Ελληνικά"/>
<link rel="alternate" hreflang="en-GB" href="https://www.mozilla.org/en-GB/firefox/desktop/customize/"
title="English (British)">
title="English (British)"/>
<link rel="alternate" hreflang="en" href="https://www.mozilla.org/en-US/firefox/desktop/customize/"
title="English">
title="English"/>
<link rel="alternate" hreflang="en-CA" href="https://www.mozilla.org/en-US/firefox/desktop/customize/"
title="English (Canada)">
title="English (Canada)"/>
<link rel="alternate" hreflang="en-ZA" href="https://www.mozilla.org/en-ZA/firefox/desktop/customize/"
title="English (South African)">
title="English (South African)"/>
<link rel="alternate" hreflang="eo" href="https://www.mozilla.org/eo/firefox/desktop/customize/"
title="Esperanto">
title="Esperanto"/>
<link rel="alternate" hreflang="es-AR" href="https://www.mozilla.org/es-AR/firefox/desktop/customize/"
title="Español (de Argentina)">
title="Español (de Argentina)"/>
<link rel="alternate" hreflang="es-CL" href="https://www.mozilla.org/es-CL/firefox/desktop/customize/"
title="Español (de Chile)">
title="Español (de Chile)"/>
<link rel="alternate" hreflang="es-ES" href="https://www.mozilla.org/es-ES/firefox/desktop/customize/"
title="Español (de España)">
title="Español (de España)"/>
<link rel="alternate" hreflang="es-MX" href="https://www.mozilla.org/es-MX/firefox/desktop/customize/"
title="Español (de México)">
title="Español (de México)"/>
<link rel="alternate" hreflang="et" href="https://www.mozilla.org/et/firefox/desktop/customize/"
title="Eesti keel">
title="Eesti keel"/>
<link rel="alternate" hreflang="eu" href="https://www.mozilla.org/eu/firefox/desktop/customize/"
title="Euskara">
title="Euskara"/>
<link rel="alternate" hreflang="fa" href="https://www.mozilla.org/fa/firefox/desktop/customize/"
title="فارسی">
title="فارسی"/>
<link rel="alternate" hreflang="ff" href="https://www.mozilla.org/ff/firefox/desktop/customize/"
title="Pulaar-Fulfulde">
title="Pulaar-Fulfulde"/>
<link rel="alternate" hreflang="fi" href="https://www.mozilla.org/fi/firefox/desktop/customize/"
title="suomi">
title="suomi"/>
<link rel="alternate" hreflang="fr" href="https://www.mozilla.org/fr/firefox/desktop/customize/"
title="Français">
title="Français"/>
<link rel="alternate" hreflang="fy-NL" href="https://www.mozilla.org/fy-NL/firefox/desktop/customize/"
title="Frysk">
title="Frysk"/>
<link rel="alternate" hreflang="ga-IE" href="https://www.mozilla.org/ga-IE/firefox/desktop/customize/"
title="Gaeilge">
title="Gaeilge"/>
<link rel="alternate" hreflang="gd" href="https://www.mozilla.org/gd/firefox/desktop/customize/"
title="Gàidhlig">
title="Gàidhlig"/>
<link rel="alternate" hreflang="gl" href="https://www.mozilla.org/gl/firefox/desktop/customize/"
title="Galego">
title="Galego"/>
<link rel="alternate" hreflang="he" href="https://www.mozilla.org/he/firefox/desktop/customize/"
title="עברית">
title="עברית"/>
<link rel="alternate" hreflang="hi-IN" href="https://www.mozilla.org/hi-IN/firefox/desktop/customize/"
title="हिन्दी (भारत)">
title="हिन्दी (भारत)"/>
<link rel="alternate" hreflang="hr" href="https://www.mozilla.org/hr/firefox/desktop/customize/"
title="Hrvatski">
title="Hrvatski"/>
<link rel="alternate" hreflang="hsb" href="https://www.mozilla.org/hsb/firefox/desktop/customize/"
title="Hornjoserbsce">
title="Hornjoserbsce"/>
<link rel="alternate" hreflang="hu" href="https://www.mozilla.org/hu/firefox/desktop/customize/"
title="magyar">
title="magyar"/>
<link rel="alternate" hreflang="hy-AM" href="https://www.mozilla.org/hy-AM/firefox/desktop/customize/"
title="Հայերեն">
title="Հայերեն"/>
<link rel="alternate" hreflang="id" href="https://www.mozilla.org/id/firefox/desktop/customize/"
title="Bahasa Indonesia">
title="Bahasa Indonesia"/>
<link rel="alternate" hreflang="is" href="https://www.mozilla.org/is/firefox/desktop/customize/"
title="íslenska">
title="íslenska"/>
<link rel="alternate" hreflang="it" href="https://www.mozilla.org/it/firefox/desktop/customize/"
title="Italiano">
title="Italiano"/>
<link rel="alternate" hreflang="ja" href="https://www.mozilla.org/ja/firefox/desktop/customize/"
title="日本語">
title="日本語"/>
<link rel="alternate" hreflang="kk" href="https://www.mozilla.org/kk/firefox/desktop/customize/"
title="Қазақ">
title="Қазақ"/>
<link rel="alternate" hreflang="km" href="https://www.mozilla.org/km/firefox/desktop/customize/"
title="ខ្មែរ">
title="ខ្មែរ"/>
<link rel="alternate" hreflang="kn" href="https://www.mozilla.org/kn/firefox/desktop/customize/"
title="ಕನ್ನಡ">
title="ಕನ್ನಡ"/>
<link rel="alternate" hreflang="ko" href="https://www.mozilla.org/ko/firefox/desktop/customize/"
title="한국어">
title="한국어"/>
<link rel="alternate" hreflang="lt" href="https://www.mozilla.org/lt/firefox/desktop/customize/"
title="lietuvių kalba">
title="lietuvių kalba"/>
<link rel="alternate" hreflang="lv" href="https://www.mozilla.org/lv/firefox/desktop/customize/"
title="Latviešu">
title="Latviešu"/>
<link rel="alternate" hreflang="mk" href="https://www.mozilla.org/mk/firefox/desktop/customize/"
title="Македонски">
title="Македонски"/>
<link rel="alternate" hreflang="ml" href="https://www.mozilla.org/ml/firefox/desktop/customize/"
title="മലയാളം">
title="മലയാളം"/>
<link rel="alternate" hreflang="mr" href="https://www.mozilla.org/mr/firefox/desktop/customize/"
title="मराठी">
title="मराठी"/>
<link rel="alternate" hreflang="ms" href="https://www.mozilla.org/ms/firefox/desktop/customize/"
title="Melayu">
title="Melayu"/>
<link rel="alternate" hreflang="nb-NO" href="https://www.mozilla.org/nb-NO/firefox/desktop/customize/"
title="Norsk bokmål">
title="Norsk bokmål"/>
<link rel="alternate" hreflang="nl" href="https://www.mozilla.org/nl/firefox/desktop/customize/"
title="Nederlands">
title="Nederlands"/>
<link rel="alternate" hreflang="or" href="https://www.mozilla.org/or/firefox/desktop/customize/"
title="ଓଡ଼ିଆ">
title="ଓଡ଼ିଆ"/>
<link rel="alternate" hreflang="pa-IN" href="https://www.mozilla.org/pa-IN/firefox/desktop/customize/"
title="ਪੰਜਾਬੀ (ਭਾਰਤ)">
title="ਪੰਜਾਬੀ (ਭਾਰਤ)"/>
<link rel="alternate" hreflang="pl" href="https://www.mozilla.org/pl/firefox/desktop/customize/"
title="Polski">
title="Polski"/>
<link rel="alternate" hreflang="pt-BR" href="https://www.mozilla.org/pt-BR/firefox/desktop/customize/"
title="Português (do&nbsp;Brasil)">
title="Português (do&nbsp;Brasil)"/>
<link rel="alternate" hreflang="pt-PT" href="https://www.mozilla.org/pt-PT/firefox/desktop/customize/"
title="Português (Europeu)">
title="Português (Europeu)"/>
<link rel="alternate" hreflang="rm" href="https://www.mozilla.org/rm/firefox/desktop/customize/"
title="rumantsch">
title="rumantsch"/>
<link rel="alternate" hreflang="ro" href="https://www.mozilla.org/ro/firefox/desktop/customize/"
title="română">
title="română"/>
<link rel="alternate" hreflang="ru" href="https://www.mozilla.org/ru/firefox/desktop/customize/"
title="Русский">
title="Русский"/>
<link rel="alternate" hreflang="sat" href="https://www.mozilla.org/sat/firefox/desktop/customize/"
title="संताली">
title="संताली"/>
<link rel="alternate" hreflang="si" href="https://www.mozilla.org/si/firefox/desktop/customize/"
title="සිංහල">
title="සිංහල"/>
<link rel="alternate" hreflang="sk" href="https://www.mozilla.org/sk/firefox/desktop/customize/"
title="slovenčina">
title="slovenčina"/>
<link rel="alternate" hreflang="sl" href="https://www.mozilla.org/sl/firefox/desktop/customize/"
title="Slovenščina">
title="Slovenščina"/>
<link rel="alternate" hreflang="son" href="https://www.mozilla.org/son/firefox/desktop/customize/"
title="Soŋay">
title="Soŋay"/>
<link rel="alternate" hreflang="sq" href="https://www.mozilla.org/sq/firefox/desktop/customize/"
title="Shqip">
title="Shqip"/>
<link rel="alternate" hreflang="sr" href="https://www.mozilla.org/sr/firefox/desktop/customize/"
title="Српски">
title="Српски"/>
<link rel="alternate" hreflang="sv-SE" href="https://www.mozilla.org/sv-SE/firefox/desktop/customize/"
title="Svenska">
title="Svenska"/>
<link rel="alternate" hreflang="ta" href="https://www.mozilla.org/ta/firefox/desktop/customize/"
title="தமிழ்">
title="தமிழ்"/>
<link rel="alternate" hreflang="te" href="https://www.mozilla.org/te/firefox/desktop/customize/"
title="తెలుగు">
title="తెలుగు"/>
<link rel="alternate" hreflang="tr" href="https://www.mozilla.org/tr/firefox/desktop/customize/"
title="Türkçe">
title="Türkçe"/>
<link rel="alternate" hreflang="uk" href="https://www.mozilla.org/uk/firefox/desktop/customize/"
title="Українська">
title="Українська"/>
<link rel="alternate" hreflang="uz" href="https://www.mozilla.org/uz/firefox/desktop/customize/"
title="Oʻzbek tili">
title="Oʻzbek tili"/>
<link rel="alternate" hreflang="vi" href="https://www.mozilla.org/vi/firefox/desktop/customize/"
title="Tiếng Việt">
title="Tiếng Việt"/>
<link rel="alternate" hreflang="xh" href="https://www.mozilla.org/xh/firefox/desktop/customize/"
title="isiXhosa">
title="isiXhosa"/>
<link rel="alternate" hreflang="zh-CN" href="https://www.mozilla.org/zh-CN/firefox/desktop/customize/"
title="中文 (简体)">
title="中文 (简体)"/>
<link rel="alternate" hreflang="zh-TW" href="https://www.mozilla.org/zh-TW/firefox/desktop/customize/"
title="正體中文 (繁體)">
title="正體中文 (繁體)"/>
<!--[if lte IE 8]>
<script src="//mozorg.cdn.mozilla.net/media/js/libs/html5shiv.d580a4cd1cb4.js"></script>
<![endif]-->
@ -215,7 +215,7 @@ data-esr-versions="[31]">
<!--[if !lte IE 7]>
<!-->
<link href="//mozorg.cdn.mozilla.net/media/css/firefox_desktop_customize-bundle.c0bde984d09d.css"
rel="stylesheet" type="text/css">
rel="stylesheet" type="text/css"/>
<!--<![endif]-->
<script src="//mozorg.cdn.mozilla.net/media/js/libs/modernizr.custom.cssanimations.856d2f5d99fa.js"></script>
<script type="text/javascript" src="//mozorg.cdn.mozilla.net/media/js/site-bundle.4d72c30b1a11.js"
@ -505,11 +505,11 @@ data-esr-versions="[31]">
<p class="lead">Its easier than ever to personalize Firefox and make it work the way
you do.
<br class="wide-br">No other browser gives you so much choice and flexibility.</p>
<br class="wide-br"/>No other browser gives you so much choice and flexibility.</p>
<div class="animation-wrapper"
id="flexible-top-animation">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/animations/flexible-top-fallback.c960365ba781.png"
class="fallback" alt="">
class="fallback" alt=""/>
<div class="stage">
<div id="browser-customize-orange"></div>
<div id="browser-toolbar-outline"></div>
@ -523,7 +523,7 @@ data-esr-versions="[31]">
<section id="designed" class="ga-section" data-ga-label="Designed to be redesigned">
<div class="container">
<div id="designed-copy">
<h2>Designed to <br class="wide-br">be redesigned</h2>
<h2>Designed to <br class="wide-br"/>be redesigned</h2>
<p>Get fast and easy access to the features you use most in the new menu.
Open the “Customize” panel to add, move or remove any button you want.
@ -532,14 +532,14 @@ data-esr-versions="[31]">
<img class="js " src="" data-processed="false"
data-src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/designed-redesigned.fbd3ee9402e6.png"
data-high-res="true" data-high-res-src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/designed-redesigned-high-res.6efd60766484.png"
alt="" id="designed-mobile">
alt="" id="designed-mobile"/>
<noscript>
<img class="" src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/designed-redesigned.fbd3ee9402e6.png"
alt="" id="designed-mobile">
alt="" id="designed-mobile"/>
</noscript></div>
<div class="animation-wrapper" id="flexible-bottom-animation">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/animations/flexible-bottom-fallback.cafd48a3d0a4.png"
class="fallback" alt="">
class="fallback" alt=""/>
<div class="stage">
<div id="panel-start">
<div class="icon panel-icon-print"></div>
@ -654,14 +654,14 @@ data-esr-versions="[31]">
id="theme-red" class="selected">Preview red theme</button>
</div> <a class="more" rel="external" href="https://addons.mozilla.org/firefox/themes/">Try it now</a>
<br> <a class="more" rel="external" href="https://support.mozilla.org/kb/use-themes-change-look-of-firefox">Learn more</a>
<br/> <a class="more" rel="external" href="https://support.mozilla.org/kb/use-themes-change-look-of-firefox">Learn more</a>
</div> <a class="next show-customizer" href="#add-ons" role="button">Next</a>
<div
class="customizer-visual">
<img id="theme-demo" src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/theme-red.61611c5734ab.png"
alt="Preview of the currently selected theme">
alt="Preview of the currently selected theme"/>
</div>
</div>
</section>
@ -681,13 +681,13 @@ data-esr-versions="[31]">
<li>Watch videos &amp; view photos</li>
</ul> <a class="more" rel="external" href="https://addons.mozilla.org/firefox/extensions/?sort=featured">Here are a few of our favorites</a>
<br> <a class="more" rel="external" href="https://support.mozilla.org/kb/find-and-install-add-ons-add-features-to-firefox">Learn more</a>
<br/> <a class="more" rel="external" href="https://support.mozilla.org/kb/find-and-install-add-ons-add-features-to-firefox">Learn more</a>
</div>
<!--/.customizer-copy-->
<div class="customizer-visual">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/add-ons.63a4b761f822.png"
alt="">
alt=""/>
</div>
</div>
</section>
@ -705,7 +705,7 @@ data-esr-versions="[31]">
</div>
<div class="customizer-visual">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/desktop/customize/awesome-bar.437df162126c.png"
alt="Firefox Awesome Bar">
alt="Firefox Awesome Bar"/>
</div>
</div>
</section>
@ -717,7 +717,7 @@ data-esr-versions="[31]">
<p class="lead">Access your bookmarks, history, passwords and more from any device to
<br
class="wide-br">make Firefox your own wherever you use it.</p>
class="wide-br"/>make Firefox your own wherever you use it.</p>
<div class="sync-anim">
<div class="device laptop">
<div class="inner">
@ -746,7 +746,7 @@ data-esr-versions="[31]">
</div>
</div> <a class="button" id="sync-button" href="http://www.mozilla.org/mobile/sync/"><span></span>Learn more about Sync</a>
<br> <a class="more" rel="external" href="https://support.mozilla.org/kb/how-do-i-set-up-firefox-sync">Get help with Sync</a>
<br/> <a class="more" rel="external" href="https://support.mozilla.org/kb/how-do-i-set-up-firefox-sync">Get help with Sync</a>
</div>
</section>
@ -759,14 +759,14 @@ data-esr-versions="[31]">
</div>
<form class="billboard newsletter-form footer-newsletter-form" id="newsletter-form"
action="/en-US/newsletter/" method="post">
<input id="id_newsletters" name="newsletters" type="hidden" value="mozilla-and-you">
<input type="hidden" name="source_url" value="https://www.mozilla.org/en-US/firefox/desktop/customize/">
<input id="id_newsletters" name="newsletters" type="hidden" value="mozilla-and-you"/>
<input type="hidden" name="source_url" value="https://www.mozilla.org/en-US/firefox/desktop/customize/"/>
<h3>Get Firefox news</h3>
<div class="form-contents">
<div class="field field-email ">
<input id="id_email" name="email" placeholder="YOUR EMAIL HERE" required="required"
type="email">
type="email"/>
</div>
<div id="form-details">
<div class="field field-country">
@ -1034,20 +1034,20 @@ data-esr-versions="[31]">
</div>
<div class="field field-format">
<label for="id_fmt_0">
<input checked="checked" id="id_fmt_0" name="fmt" type="radio" value="H">HTML</label>
<input checked="checked" id="id_fmt_0" name="fmt" type="radio" value="H"/>HTML</label>
<label for="id_fmt_1">
<input id="id_fmt_1" name="fmt" type="radio" value="T">Text</label>
<input id="id_fmt_1" name="fmt" type="radio" value="T"/>Text</label>
</div>
<div class="field field-privacy ">
<label for="id_privacy" class="privacy-check-label">
<input id="id_privacy" name="privacy" required="required" type="checkbox"> <span class="title">Im okay with Mozilla handling my info as explained in <a href="/privacy/">this Privacy Policy</a></span>
<input id="id_privacy" name="privacy" required="required" type="checkbox"/> <span class="title">Im okay with Mozilla handling my info as explained in <a href="/privacy/">this Privacy Policy</a></span>
</label>
</div>
</div>
</div>
<div class="form-submit">
<input type="submit" id="footer_email_submit" value="Sign me up&nbsp;»"
class="button">
class="button"/>
<p class="form-details"> <small>We will only send you Mozilla-related information.</small>
</p>

@ -6,11 +6,11 @@
</header>
<ul class="features">
<li class="feature">
<a href="https://www.youtube.com/watch?v=1R9_WdXwUsE" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webide.16763db341cb.jpg" alt="Screenshot" class="screenshot"> </a>
<a href="https://www.youtube.com/watch?v=1R9_WdXwUsE" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webide.16763db341cb.jpg" alt="Screenshot" class="screenshot"/> </a>
<h2>WebIDE</h2>
<p>Develop, deploy and debug Firefox OS apps directly in your browser, or on a Firefox OS device, with this tool that replaces App Manager.</p> <a href="https://developer.mozilla.org/docs/Tools/WebIDE" rel="external" class="more">Learn more about WebIDE</a> </li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=eH0R10Ga4Hs" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-valence.251f9def4d8d.jpg" alt="Screenshot" class="screenshot"> </a>
<a href="https://www.youtube.com/watch?v=eH0R10Ga4Hs" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-valence.251f9def4d8d.jpg" alt="Screenshot" class="screenshot"/> </a>
<h2>Valence</h2>
<p>Develop and debug your apps across multiple browsers and devices with this powerful extension that comes pre-installed with Firefox Developer Edition.</p> <a href="https://developer.mozilla.org/docs/Tools/Firefox_Tools_Adapter" rel="external" class="more">Learn more about Valence</a> </li>
</ul>
@ -25,27 +25,27 @@
<h2>Features and tools</h2> </header>
<ul class="features">
<li class="feature">
<a href="https://www.youtube.com/watch?v=eQqNfkqIJdw" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-inspector.c791bf1f1a59.jpg" alt="Screenshot" class="screenshot"> </a>
<a href="https://www.youtube.com/watch?v=eQqNfkqIJdw" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-inspector.c791bf1f1a59.jpg" alt="Screenshot" class="screenshot"/> </a>
<h2>Page Inspector</h2>
<p>Examine the HTML and CSS of any Web page and easily modify the structure and layout of a page.</p> <a href="https://developer.mozilla.org/docs/Tools/Page_Inspector" rel="external" class="more">Learn more about Page Inspector</a> </li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=iEDk8o9ehlw" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-console.42666aaf6d03.jpg" alt="Screenshot" class="screenshot"> </a>
<a href="https://www.youtube.com/watch?v=iEDk8o9ehlw" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-console.42666aaf6d03.jpg" alt="Screenshot" class="screenshot"/> </a>
<h2>Web Console</h2>
<p>See logged information associated with a Web page and use Web Console to interact with Web pages using JavaScript.</p> <a href="https://developer.mozilla.org/docs/Tools/Web_Console" rel="external" class="more">Learn more about Web Console</a> </li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=OS4AxYFLCIE" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-debugger.02ed86fb0c9f.jpg" alt="Screenshot" class="screenshot"> </a>
<a href="https://www.youtube.com/watch?v=OS4AxYFLCIE" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-debugger.02ed86fb0c9f.jpg" alt="Screenshot" class="screenshot"/> </a>
<h2>JavaScript Debugger</h2>
<p>Step through JavaScript code and examine or modify its state to help track down bugs.</p> <a href="https://developer.mozilla.org/docs/Tools/Debugger" rel="external" class="more">Learn more about JavaScript Debugger</a> </li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=w4zSG53Qlbk" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-network.740d6082b3f6.jpg" alt="Screenshot" class="screenshot"> </a>
<a href="https://www.youtube.com/watch?v=w4zSG53Qlbk" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-network.740d6082b3f6.jpg" alt="Screenshot" class="screenshot"/> </a>
<h2>Network Monitor</h2>
<p>See all the network requests your browser makes, how long each request takes and details of each request.</p> <a href="https://developer.mozilla.org/docs/Tools/Network_Monitor" rel="external" class="more">Learn more about Network Monitor</a> </li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=R_qDaLQ8ghg" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webaudio.a10ebc48d017.jpg" alt="Screenshot" class="screenshot"> </a>
<a href="https://www.youtube.com/watch?v=R_qDaLQ8ghg" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webaudio.a10ebc48d017.jpg" alt="Screenshot" class="screenshot"/> </a>
<h2>Web Audio Editor</h2>
<p>Inspect and interact with Web Audio API in real time to ensure that all audio nodes are connected in the way you expect.</p> <a href="https://developer.mozilla.org/docs/Tools/Web_Audio_Editor" rel="external" class="more">Learn more about Web Audio Editor</a> </li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=3kdBvvIZIqU" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-style-editor.87c5d2017506.jpg" alt="Screenshot" class="screenshot"> </a>
<a href="https://www.youtube.com/watch?v=3kdBvvIZIqU" rel="external" class="video-play"> <img src="http://mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-style-editor.87c5d2017506.jpg" alt="Screenshot" class="screenshot"/> </a>
<h2>Style Editor</h2>
<p>View and edit CSS styles associated with a Web page, create new ones and apply existing CSS stylesheets to any page.</p> <a href="https://developer.mozilla.org/docs/Tools/Style_Editor" rel="external" class="more">Learn more about Style Editor</a> </li>
</ul>

@ -3,7 +3,7 @@
<!doctype html>
<html class="windows x86 no-js" lang="en" dir="ltr" data-latest-firefox="37.0.2" data-esr-versions="[31]">
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<!--
_.-~-.
7'' Q..\
@ -29,71 +29,71 @@ Visit https://careers.mozilla.org to learn about our current job openings.
Visit https://www.mozilla.org/contribute for more ways to get involved and
help support Mozilla.-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="robots" content="noindex"/>
<title>Welcome to Firefox Developer Edition</title>
<meta name="description" content="">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Mozilla">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="https://www.mozilla.org/en-US/firefox/developer/">
<meta property="og:image" content="https://mozorg.cdn.mozilla.net/media/img/firefox/developer/page-image.03bbe7da3199.png">
<meta property="og:title" content="Welcome to Firefox Developer Edition">
<meta property="og:description" content="Built for those who build the Web. Introducing the only browser made for developers.">
<meta property="fb:page_id" content="14696440021">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@firefox">
<meta name="twitter:domain" content="mozilla.org">
<meta name="twitter:app:name:googleplay" content="Firefox">
<meta name="twitter:app:id:googleplay" content="org.mozilla.firefox">
<link rel="author" type="text/plain" href="/humans.txt">
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="//mozorg.cdn.mozilla.net/media/img/firefox/ios-icon-180.7a8401f21915.png">
<link rel="icon" type="image/png" sizes="196x196" href="//mozorg.cdn.mozilla.net/media/img/firefox/favicon-196.223e1bcaf067.png">
<link rel="shortcut icon" href="//mozorg.cdn.mozilla.net/media/img/firefox/favicon.dc6635050bf5.ico">
<link rel="canonical" hreflang="en" href="https://www.mozilla.org/en-US/firefox/39.0a2/firstrun/">
<link rel="alternate" hreflang="x-default" href="https://www.mozilla.org/firefox/39.0a2/firstrun/">
<link rel="alternate" hreflang="an" href="https://www.mozilla.org/an/firefox/39.0a2/firstrun/" title="aragonés">
<link rel="alternate" hreflang="ast" href="https://www.mozilla.org/ast/firefox/39.0a2/firstrun/" title="Asturianu">
<link rel="alternate" hreflang="bg" href="https://www.mozilla.org/bg/firefox/39.0a2/firstrun/" title="Български">
<link rel="alternate" hreflang="bn-IN" href="https://www.mozilla.org/bn-IN/firefox/39.0a2/firstrun/" title="বাংলা (ভারত)">
<link rel="alternate" hreflang="ca" href="https://www.mozilla.org/ca/firefox/39.0a2/firstrun/" title="Català">
<link rel="alternate" hreflang="cs" href="https://www.mozilla.org/cs/firefox/39.0a2/firstrun/" title="Čeština">
<link rel="alternate" hreflang="cy" href="https://www.mozilla.org/cy/firefox/39.0a2/firstrun/" title="Cymraeg">
<link rel="alternate" hreflang="de" href="https://www.mozilla.org/de/firefox/39.0a2/firstrun/" title="Deutsch">
<link rel="alternate" hreflang="dsb" href="https://www.mozilla.org/dsb/firefox/39.0a2/firstrun/" title="Dolnoserbšćina">
<link rel="alternate" hreflang="en-GB" href="https://www.mozilla.org/en-GB/firefox/39.0a2/firstrun/" title="English (British)">
<link rel="alternate" hreflang="en" href="https://www.mozilla.org/en-US/firefox/39.0a2/firstrun/" title="English">
<link rel="alternate" hreflang="en-CA" href="https://www.mozilla.org/en-US/firefox/39.0a2/firstrun/" title="English (Canada)">
<link rel="alternate" hreflang="eo" href="https://www.mozilla.org/eo/firefox/39.0a2/firstrun/" title="Esperanto">
<link rel="alternate" hreflang="es-AR" href="https://www.mozilla.org/es-AR/firefox/39.0a2/firstrun/" title="Español (de Argentina)">
<link rel="alternate" hreflang="es-CL" href="https://www.mozilla.org/es-CL/firefox/39.0a2/firstrun/" title="Español (de Chile)">
<link rel="alternate" hreflang="es-ES" href="https://www.mozilla.org/es-ES/firefox/39.0a2/firstrun/" title="Español (de España)">
<link rel="alternate" hreflang="es-MX" href="https://www.mozilla.org/es-MX/firefox/39.0a2/firstrun/" title="Español (de México)">
<link rel="alternate" hreflang="fr" href="https://www.mozilla.org/fr/firefox/39.0a2/firstrun/" title="Français">
<link rel="alternate" hreflang="fy-NL" href="https://www.mozilla.org/fy-NL/firefox/39.0a2/firstrun/" title="Frysk">
<link rel="alternate" hreflang="gd" href="https://www.mozilla.org/gd/firefox/39.0a2/firstrun/" title="Gàidhlig">
<link rel="alternate" hreflang="hsb" href="https://www.mozilla.org/hsb/firefox/39.0a2/firstrun/" title="Hornjoserbsce">
<link rel="alternate" hreflang="hu" href="https://www.mozilla.org/hu/firefox/39.0a2/firstrun/" title="magyar">
<link rel="alternate" hreflang="hy-AM" href="https://www.mozilla.org/hy-AM/firefox/39.0a2/firstrun/" title="Հայերեն">
<link rel="alternate" hreflang="id" href="https://www.mozilla.org/id/firefox/39.0a2/firstrun/" title="Bahasa Indonesia">
<link rel="alternate" hreflang="is" href="https://www.mozilla.org/is/firefox/39.0a2/firstrun/" title="íslenska">
<link rel="alternate" hreflang="it" href="https://www.mozilla.org/it/firefox/39.0a2/firstrun/" title="Italiano">
<link rel="alternate" hreflang="ja" href="https://www.mozilla.org/ja/firefox/39.0a2/firstrun/" title="日本語">
<link rel="alternate" hreflang="lt" href="https://www.mozilla.org/lt/firefox/39.0a2/firstrun/" title="lietuvių kalba">
<link rel="alternate" hreflang="nl" href="https://www.mozilla.org/nl/firefox/39.0a2/firstrun/" title="Nederlands">
<link rel="alternate" hreflang="pt-BR" href="https://www.mozilla.org/pt-BR/firefox/39.0a2/firstrun/" title="Português (do Brasil)">
<link rel="alternate" hreflang="pt-PT" href="https://www.mozilla.org/pt-PT/firefox/39.0a2/firstrun/" title="Português (Europeu)">
<link rel="alternate" hreflang="ru" href="https://www.mozilla.org/ru/firefox/39.0a2/firstrun/" title="Русский">
<link rel="alternate" hreflang="sk" href="https://www.mozilla.org/sk/firefox/39.0a2/firstrun/" title="slovenčina">
<link rel="alternate" hreflang="sl" href="https://www.mozilla.org/sl/firefox/39.0a2/firstrun/" title="Slovenščina">
<link rel="alternate" hreflang="son" href="https://www.mozilla.org/son/firefox/39.0a2/firstrun/" title="Soŋay">
<link rel="alternate" hreflang="sq" href="https://www.mozilla.org/sq/firefox/39.0a2/firstrun/" title="Shqip">
<link rel="alternate" hreflang="sv-SE" href="https://www.mozilla.org/sv-SE/firefox/39.0a2/firstrun/" title="Svenska">
<link rel="alternate" hreflang="tr" href="https://www.mozilla.org/tr/firefox/39.0a2/firstrun/" title="Türkçe">
<link rel="alternate" hreflang="uk" href="https://www.mozilla.org/uk/firefox/39.0a2/firstrun/" title="Українська">
<link rel="alternate" hreflang="uz" href="https://www.mozilla.org/uz/firefox/39.0a2/firstrun/" title="Oʻzbek tili">
<link rel="alternate" hreflang="zh-CN" href="https://www.mozilla.org/zh-CN/firefox/39.0a2/firstrun/" title="中文 (简体)">
<link rel="alternate" hreflang="zh-TW" href="https://www.mozilla.org/zh-TW/firefox/39.0a2/firstrun/" title="正體中文 (繁體)">
<meta name="description" content=""/>
<meta property="og:type" content="website"/>
<meta property="og:site_name" content="Mozilla"/>
<meta property="og:locale" content="en_US"/>
<meta property="og:url" content="https://www.mozilla.org/en-US/firefox/developer/"/>
<meta property="og:image" content="https://mozorg.cdn.mozilla.net/media/img/firefox/developer/page-image.03bbe7da3199.png"/>
<meta property="og:title" content="Welcome to Firefox Developer Edition"/>
<meta property="og:description" content="Built for those who build the Web. Introducing the only browser made for developers."/>
<meta property="fb:page_id" content="14696440021"/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:site" content="@firefox"/>
<meta name="twitter:domain" content="mozilla.org"/>
<meta name="twitter:app:name:googleplay" content="Firefox"/>
<meta name="twitter:app:id:googleplay" content="org.mozilla.firefox"/>
<link rel="author" type="text/plain" href="/humans.txt"/>
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="//mozorg.cdn.mozilla.net/media/img/firefox/ios-icon-180.7a8401f21915.png"/>
<link rel="icon" type="image/png" sizes="196x196" href="//mozorg.cdn.mozilla.net/media/img/firefox/favicon-196.223e1bcaf067.png"/>
<link rel="shortcut icon" href="//mozorg.cdn.mozilla.net/media/img/firefox/favicon.dc6635050bf5.ico"/>
<link rel="canonical" hreflang="en" href="https://www.mozilla.org/en-US/firefox/39.0a2/firstrun/"/>
<link rel="alternate" hreflang="x-default" href="https://www.mozilla.org/firefox/39.0a2/firstrun/"/>
<link rel="alternate" hreflang="an" href="https://www.mozilla.org/an/firefox/39.0a2/firstrun/" title="aragonés"/>
<link rel="alternate" hreflang="ast" href="https://www.mozilla.org/ast/firefox/39.0a2/firstrun/" title="Asturianu"/>
<link rel="alternate" hreflang="bg" href="https://www.mozilla.org/bg/firefox/39.0a2/firstrun/" title="Български"/>
<link rel="alternate" hreflang="bn-IN" href="https://www.mozilla.org/bn-IN/firefox/39.0a2/firstrun/" title="বাংলা (ভারত)"/>
<link rel="alternate" hreflang="ca" href="https://www.mozilla.org/ca/firefox/39.0a2/firstrun/" title="Català"/>
<link rel="alternate" hreflang="cs" href="https://www.mozilla.org/cs/firefox/39.0a2/firstrun/" title="Čeština"/>
<link rel="alternate" hreflang="cy" href="https://www.mozilla.org/cy/firefox/39.0a2/firstrun/" title="Cymraeg"/>
<link rel="alternate" hreflang="de" href="https://www.mozilla.org/de/firefox/39.0a2/firstrun/" title="Deutsch"/>
<link rel="alternate" hreflang="dsb" href="https://www.mozilla.org/dsb/firefox/39.0a2/firstrun/" title="Dolnoserbšćina"/>
<link rel="alternate" hreflang="en-GB" href="https://www.mozilla.org/en-GB/firefox/39.0a2/firstrun/" title="English (British)"/>
<link rel="alternate" hreflang="en" href="https://www.mozilla.org/en-US/firefox/39.0a2/firstrun/" title="English"/>
<link rel="alternate" hreflang="en-CA" href="https://www.mozilla.org/en-US/firefox/39.0a2/firstrun/" title="English (Canada)"/>
<link rel="alternate" hreflang="eo" href="https://www.mozilla.org/eo/firefox/39.0a2/firstrun/" title="Esperanto"/>
<link rel="alternate" hreflang="es-AR" href="https://www.mozilla.org/es-AR/firefox/39.0a2/firstrun/" title="Español (de Argentina)"/>
<link rel="alternate" hreflang="es-CL" href="https://www.mozilla.org/es-CL/firefox/39.0a2/firstrun/" title="Español (de Chile)"/>
<link rel="alternate" hreflang="es-ES" href="https://www.mozilla.org/es-ES/firefox/39.0a2/firstrun/" title="Español (de España)"/>
<link rel="alternate" hreflang="es-MX" href="https://www.mozilla.org/es-MX/firefox/39.0a2/firstrun/" title="Español (de México)"/>
<link rel="alternate" hreflang="fr" href="https://www.mozilla.org/fr/firefox/39.0a2/firstrun/" title="Français"/>
<link rel="alternate" hreflang="fy-NL" href="https://www.mozilla.org/fy-NL/firefox/39.0a2/firstrun/" title="Frysk"/>
<link rel="alternate" hreflang="gd" href="https://www.mozilla.org/gd/firefox/39.0a2/firstrun/" title="Gàidhlig"/>
<link rel="alternate" hreflang="hsb" href="https://www.mozilla.org/hsb/firefox/39.0a2/firstrun/" title="Hornjoserbsce"/>
<link rel="alternate" hreflang="hu" href="https://www.mozilla.org/hu/firefox/39.0a2/firstrun/" title="magyar"/>
<link rel="alternate" hreflang="hy-AM" href="https://www.mozilla.org/hy-AM/firefox/39.0a2/firstrun/" title="Հայերեն"/>
<link rel="alternate" hreflang="id" href="https://www.mozilla.org/id/firefox/39.0a2/firstrun/" title="Bahasa Indonesia"/>
<link rel="alternate" hreflang="is" href="https://www.mozilla.org/is/firefox/39.0a2/firstrun/" title="íslenska"/>
<link rel="alternate" hreflang="it" href="https://www.mozilla.org/it/firefox/39.0a2/firstrun/" title="Italiano"/>
<link rel="alternate" hreflang="ja" href="https://www.mozilla.org/ja/firefox/39.0a2/firstrun/" title="日本語"/>
<link rel="alternate" hreflang="lt" href="https://www.mozilla.org/lt/firefox/39.0a2/firstrun/" title="lietuvių kalba"/>
<link rel="alternate" hreflang="nl" href="https://www.mozilla.org/nl/firefox/39.0a2/firstrun/" title="Nederlands"/>
<link rel="alternate" hreflang="pt-BR" href="https://www.mozilla.org/pt-BR/firefox/39.0a2/firstrun/" title="Português (do Brasil)"/>
<link rel="alternate" hreflang="pt-PT" href="https://www.mozilla.org/pt-PT/firefox/39.0a2/firstrun/" title="Português (Europeu)"/>
<link rel="alternate" hreflang="ru" href="https://www.mozilla.org/ru/firefox/39.0a2/firstrun/" title="Русский"/>
<link rel="alternate" hreflang="sk" href="https://www.mozilla.org/sk/firefox/39.0a2/firstrun/" title="slovenčina"/>
<link rel="alternate" hreflang="sl" href="https://www.mozilla.org/sl/firefox/39.0a2/firstrun/" title="Slovenščina"/>
<link rel="alternate" hreflang="son" href="https://www.mozilla.org/son/firefox/39.0a2/firstrun/" title="Soŋay"/>
<link rel="alternate" hreflang="sq" href="https://www.mozilla.org/sq/firefox/39.0a2/firstrun/" title="Shqip"/>
<link rel="alternate" hreflang="sv-SE" href="https://www.mozilla.org/sv-SE/firefox/39.0a2/firstrun/" title="Svenska"/>
<link rel="alternate" hreflang="tr" href="https://www.mozilla.org/tr/firefox/39.0a2/firstrun/" title="Türkçe"/>
<link rel="alternate" hreflang="uk" href="https://www.mozilla.org/uk/firefox/39.0a2/firstrun/" title="Українська"/>
<link rel="alternate" hreflang="uz" href="https://www.mozilla.org/uz/firefox/39.0a2/firstrun/" title="Oʻzbek tili"/>
<link rel="alternate" hreflang="zh-CN" href="https://www.mozilla.org/zh-CN/firefox/39.0a2/firstrun/" title="中文 (简体)"/>
<link rel="alternate" hreflang="zh-TW" href="https://www.mozilla.org/zh-TW/firefox/39.0a2/firstrun/" title="正體中文 (繁體)"/>
@ -174,7 +174,7 @@ data-sync-icon-high-res="//mozorg.cdn.mozilla.net/media/img/firefox/dev-firstrun
<a href="/en-US/" id="tabzilla" data-infobar="update translation">Mozilla</a>
<h2><img class="js " src="" data-processed="false" data-src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/title.949ac051aba3.png" data-high-res="true" data-high-res-src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/title-high-res.3bd820c2e8da.png" width="220" alt="Firefox Developer Edition" height="84"><noscript><img class="" src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/title.949ac051aba3.png" width="220" alt="Firefox Developer Edition" height="84"></noscript></h2>
<h2><img class="js " src="" data-processed="false" data-src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/title.949ac051aba3.png" data-high-res="true" data-high-res-src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/title-high-res.3bd820c2e8da.png" width="220" alt="Firefox Developer Edition" height="84"/><noscript><img class="" src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/title.949ac051aba3.png" width="220" alt="Firefox Developer Edition" height="84"/></noscript></h2>
@ -193,7 +193,7 @@ data-sync-icon-high-res="//mozorg.cdn.mozilla.net/media/img/firefox/dev-firstrun
<ul class="features">
<li class="feature">
<a href="https://www.youtube.com/watch?v=1R9_WdXwUsE" rel="external" class="video-play">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webide.16763db341cb.jpg" alt="Screenshot" class="screenshot">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webide.16763db341cb.jpg" alt="Screenshot" class="screenshot"/>
</a>
<h2>WebIDE</h2>
<p>Develop, deploy and debug Firefox OS apps directly in your browser, or on a Firefox OS device, with this tool that replaces App Manager.</p>
@ -204,7 +204,7 @@ data-sync-icon-high-res="//mozorg.cdn.mozilla.net/media/img/firefox/dev-firstrun
</li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=eH0R10Ga4Hs" rel="external" class="video-play">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-valence.251f9def4d8d.jpg" alt="Screenshot" class="screenshot">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-valence.251f9def4d8d.jpg" alt="Screenshot" class="screenshot"/>
</a>
<h2>Valence</h2>
<p>Develop and debug your apps across multiple browsers and devices with this powerful extension that comes pre-installed with Firefox Developer Edition.</p>
@ -231,7 +231,7 @@ data-sync-icon-high-res="//mozorg.cdn.mozilla.net/media/img/firefox/dev-firstrun
<ul class="features">
<li class="feature">
<a href="https://www.youtube.com/watch?v=eQqNfkqIJdw" rel="external" class="video-play">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-inspector.c791bf1f1a59.jpg" alt="Screenshot" class="screenshot">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-inspector.c791bf1f1a59.jpg" alt="Screenshot" class="screenshot"/>
</a>
<h2>Page Inspector</h2>
<p>Examine the HTML and CSS of any Web page and easily modify the structure and layout of a page.</p>
@ -242,7 +242,7 @@ data-sync-icon-high-res="//mozorg.cdn.mozilla.net/media/img/firefox/dev-firstrun
</li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=iEDk8o9ehlw" rel="external" class="video-play">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-console.42666aaf6d03.jpg" alt="Screenshot" class="screenshot">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-console.42666aaf6d03.jpg" alt="Screenshot" class="screenshot"/>
</a>
<h2>Web Console</h2>
<p>See logged information associated with a Web page and use Web Console to interact with Web pages using JavaScript.</p>
@ -253,7 +253,7 @@ data-sync-icon-high-res="//mozorg.cdn.mozilla.net/media/img/firefox/dev-firstrun
</li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=OS4AxYFLCIE" rel="external" class="video-play">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-debugger.02ed86fb0c9f.jpg" alt="Screenshot" class="screenshot">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-debugger.02ed86fb0c9f.jpg" alt="Screenshot" class="screenshot"/>
</a>
<h2>JavaScript Debugger</h2>
<p>Step through JavaScript code and examine or modify its state to help track down bugs.</p>
@ -264,7 +264,7 @@ data-sync-icon-high-res="//mozorg.cdn.mozilla.net/media/img/firefox/dev-firstrun
</li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=w4zSG53Qlbk" rel="external" class="video-play">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-network.740d6082b3f6.jpg" alt="Screenshot" class="screenshot">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-network.740d6082b3f6.jpg" alt="Screenshot" class="screenshot"/>
</a>
<h2>Network Monitor</h2>
<p>See all the network requests your browser makes, how long each request takes and details of each request.</p>
@ -275,7 +275,7 @@ data-sync-icon-high-res="//mozorg.cdn.mozilla.net/media/img/firefox/dev-firstrun
</li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=R_qDaLQ8ghg" rel="external" class="video-play">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webaudio.a10ebc48d017.jpg" alt="Screenshot" class="screenshot">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-webaudio.a10ebc48d017.jpg" alt="Screenshot" class="screenshot"/>
</a>
<h2>Web Audio Editor</h2>
<p>Inspect and interact with Web Audio API in real time to ensure that all audio nodes are connected in the way you expect.</p>
@ -286,7 +286,7 @@ data-sync-icon-high-res="//mozorg.cdn.mozilla.net/media/img/firefox/dev-firstrun
</li>
<li class="feature">
<a href="https://www.youtube.com/watch?v=3kdBvvIZIqU" rel="external" class="video-play">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-style-editor.87c5d2017506.jpg" alt="Screenshot" class="screenshot">
<img src="//mozorg.cdn.mozilla.net/media/img/firefox/firstrun/dev/feature-style-editor.87c5d2017506.jpg" alt="Screenshot" class="screenshot"/>
</a>
<h2>Style Editor</h2>
<p>View and edit CSS styles associated with a Web page, create new ones and apply existing CSS stylesheets to any page.</p>

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Normalize space test</title>
</head>
<body>

@ -1,19 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Remove trailing brs test</title>
</head>
<body>
<article>
<h1>Lorem</h1>
<div>
<br>
<br/>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.</p>
<br><br><p>Ut enim ad minim veniam,
<br/><br/><p>Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat.</p><br>
consequat.</p><br/>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Replace font tags test</title>
</head>
<body>

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Remove script tags test</title>
</head>
<body>

@ -2,4 +2,4 @@
<p id="first">Regarding item# 11111, under sufficiently extreme conditions, quarks may become deconfined and exist as free particles. In the course of asymptotic freedom, the strong interaction becomes weaker at higher temperatures. Eventually, color confinement would be lost and an extremely hot plasma of freely moving quarks and gluons would be formed. This theoretical phase of matter is called quark-gluon plasma.[81] The exact conditions needed to give rise to this state are unknown and have been the subject of a great deal of speculation and experimentation.</p>
<p id="second">Regarding item# 22222, under sufficiently extreme conditions, quarks may become deconfined and exist as free particles. In the course of asymptotic freedom, the strong interaction becomes weaker at higher temperatures. Eventually, color confinement would be lost and an extremely hot plasma of freely moving quarks and gluons would be formed. This theoretical phase of matter is called quark-gluon plasma.[81] The exact conditions needed to give rise to this state are unknown and have been the subject of a great deal of speculation and experimentation.</p>
<p id="third">Regarding item# 33333, under sufficiently extreme conditions, quarks may become deconfined and exist as free particles. In the course of asymptotic freedom, the strong interaction becomes weaker at higher temperatures. Eventually, color confinement would be lost and an extremely hot plasma of freely moving quarks and gluons would be formed. This theoretical phase of matter is called quark-gluon plasma.[81] The exact conditions needed to give rise to this state are unknown and have been the subject of a great deal of speculation and experimentation.</p>
<br id="br2"> </div>
<br id="br2"/> </div>

@ -3,7 +3,7 @@
<head></head>
<body>
<br id="br1">
<br id="br1"/>
<p id="first">Regarding item# 11111, under sufficiently extreme conditions, quarks may
become deconfined and exist as free particles. In the course of asymptotic
freedom, the strong interaction becomes weaker at higher temperatures.
@ -28,7 +28,7 @@
of matter is called quark-gluon plasma.[81] The exact conditions needed
to give rise to this state are unknown and have been the subject of a great
deal of speculation and experimentation.</p>
<br id="br2">
<br id="br2"/>
</body>
</html>

@ -1,14 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Replace brs test</title>
</head>
<body>
<article>
<h1>Lorem</h1>
<div>
Lorem ipsum<br>dolor sit<br> <br><br>amet, consectetur adipisicing elit, sed do eiusmod
Lorem ipsum<br/>dolor sit<br/> <br/><br/>amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
@ -17,7 +17,7 @@
</div>
<h2>Foo</h2>
<div>
Tempor<br><br>incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
Tempor<br/><br/>incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Replace font tags test</title>
</head>
<body>

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8"/>
<title>Style tags removal</title>
<style>h1{font-weight:normal}</style>
</head>

@ -7,12 +7,12 @@
</h5>
<div itemprop="articleBody" class="all-post-body group article-content">
<p class="primary-image-swipe"><span>EXCLUSIVE</span> </p>
<p> <img alt="0225-lupita-nyongo-getty-01" src="http://ll-media.tmz.com/2015/02/26/0225-lupita-nyongo-getty-4.jpg"><strong>Lupita Nyong</strong>'<strong>o</strong>'s now-famous Oscar dress -- adorned in pearls -- was stolen right out of her hotel room ... TMZ has learned.</p>
<p> <img alt="0225-lupita-nyongo-getty-01" src="http://ll-media.tmz.com/2015/02/26/0225-lupita-nyongo-getty-4.jpg"/><strong>Lupita Nyong</strong>'<strong>o</strong>'s now-famous Oscar dress -- adorned in pearls -- was stolen right out of her hotel room ... TMZ has learned.</p>
<p>Law enforcement sources tell TMZ ... the dress was taken out of Lupita's room at The London West Hollywood. The dress is made of pearls ... 6,000 white Akoya pearls. It's valued at $150,000.</p>
<p>Our sources say Lupita told cops it was taken from her room sometime between 8 AM and 9 PM Wednesday ... while she was gone. &nbsp;</p>
<p>We're told there is security footage that cops are looking at that could catch the culprit right in the act.&nbsp;</p>
<p> <img alt="update_graphic_red_bar" src="http://ll-media.tmz.com/2013/11/20/update-graphic-red-bar.jpg"><strong>12:00 PM PT</strong> -- Sheriff's deputies were at The London Thursday morning. &nbsp;We know they were in the manager's office and we're told they have looked at security footage to determine if they can ID the culprit.</p>
<p> <img alt="0226-SUB-london-hotel-swipe-tmz-02" src="http://ll-media.tmz.com/2015/02/26/0226-sub-london-hotel-swipe-tmz-11.jpg"> </p>
<p> <img alt="update_graphic_red_bar" src="http://ll-media.tmz.com/2013/11/20/update-graphic-red-bar.jpg"/><strong>12:00 PM PT</strong> -- Sheriff's deputies were at The London Thursday morning. &nbsp;We know they were in the manager's office and we're told they have looked at security footage to determine if they can ID the culprit.</p>
<p> <img alt="0226-SUB-london-hotel-swipe-tmz-02" src="http://ll-media.tmz.com/2015/02/26/0226-sub-london-hotel-swipe-tmz-11.jpg"/> </p>
<a name="continued"></a>
</div>
</div>

@ -3,7 +3,7 @@
xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://ogp.me/ns/fb#">
<head>
<link rel="canonical" href="http://www.tmz.com/2015/02/26/lupita-nyongo-pearl-dress-stolen-oscars/">
<link rel="canonical" href="http://www.tmz.com/2015/02/26/lupita-nyongo-pearl-dress-stolen-oscars/"/>
<!-- Require JS -->
<script>
var SYSTEM_VERSION = '1425687224';
@ -34,7 +34,7 @@ xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http
<!--[if lt IE 10]>
<script language="JavaScript" type="text/javascript" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/jquery.html5-placeholder-shim.491d773b3026f66a7b690d8bcd0c3983.v2014_05_09_164122.js"></script>
<![endif]-->
<link rel="alternate" media="handheld" href="http://m.tmz.com/2015/02/26/lupita-nyongo-pearl-dress-stolen-oscars/">
<link rel="alternate" media="handheld" href="http://m.tmz.com/2015/02/26/lupita-nyongo-pearl-dress-stolen-oscars/"/>
<!-- BEGIN Tynt Script -->
<script type="text/javascript">
if(document.location.protocol=='http:'){
@ -83,7 +83,7 @@ xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http
);
</script>
<script language="JavaScript" type="text/javascript" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/spinner.3ab697b3b6a3cf7be0a061af8e9c0e1d.v2014_06_11_152631.js"></script>
<link rel="stylesheet" type="text/css" media="screen" href="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/style.0c025c59d9785bf4bd93c859ba6c5e03.v2015_03_10_155849.css">
<link rel="stylesheet" type="text/css" media="screen" href="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/style.0c025c59d9785bf4bd93c859ba6c5e03.v2015_03_10_155849.css"/>
<script language="JavaScript" type="text/javascript" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/220084d67afc3f1291993cbd8bf46c77.v2014_10_16_163308.js"></script>
<script language="JavaScript" type="text/javascript" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/ecdb9b872560bac80e1b2efcaf73f7dc.v2015_03_11_155121.js"></script>
<script language="JavaScript" type="text/javascript" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/eda2efbea250c40d4d75dde9b8eebda1.v2015_03_09_212628.js"></script>
@ -99,52 +99,52 @@ xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http
mw.init("https://mw-api.tmz.com", "85bcfbd793d84806bd67fa8cb9b13525");
});
</script>
<link rel="image_src" href="http://ll-media.tmz.com/2015/02/26/0225-lupita-nyongo-getty-01-1200x630.jpg">
<meta name="robots" content="all">
<meta name="description" content="Lupita Nyong'o's now-famous Oscar dress -- adorned in pearls -- was stolen right out of her hotel room ... TMZ has learned. Law enforcement sources tell…">
<meta name="generator" content="Crowd Fusion 2.0-enterprise">
<meta name="viewport" content="width=device-width, maximum-scale=1.0">
<meta name="google-site-verification" content="UUmtbUBf3djgPpCeLefe_PbFsOc6JGxfXmHzpjFLAEQ">
<meta name="verify-v1" content="Wtpd0N6FufoE2XqopQJoTjWV6Co/Mny9BTaswPJbPPA=">
<meta name="msvalidate.01" content="AFEB17971BCF30779AEA662782EF26F4">
<meta name="y_key" content="14cb04e4656b0c58">
<meta property="fb:app_id" content="310610065699820">
<meta property="article:publisher" content="https://www.facebook.com/tmz">
<meta property="og:site_name" content="http://www.tmz.com">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="content-language" content="en">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="imagetoolbar" content="no">
<meta name="twitter:description" value="Lupita Nyong'o's now-famous Oscar dress -- adorned in pearls -- was stolen right out of her hotel room ... TMZ has learned. Law enforcement sources tell…">
<meta name="news_keywords" content="Lupita Nyong'o, Exclusive, Fashion, Awards / Awards Shows, The Oscars, CELEBRITY JUSTICE ™">
<meta property="og:title" content="Lupita Nyong'o's $150K Pearl Oscar Dress -- STOLEN!!!">
<meta property="og:type" content="article">
<meta property="og:url" content="http://www.tmz.com/2015/02/26/lupita-nyongo-pearl-dress-stolen-oscars/">
<meta property="og:image" content="http://ll-media.tmz.com/2015/02/26/0225-lupita-nyongo-getty-01-1200x630.jpg">
<meta itemprop="inLanguage" content="en-US">
<meta itemprop="thumbnailUrl" content="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/images/tmz_rnews_logo.v2014_05_09_134122.jpg">
<link rel="image_src" href="http://ll-media.tmz.com/2015/02/26/0225-lupita-nyongo-getty-01-1200x630.jpg"/>
<meta name="robots" content="all"/>
<meta name="description" content="Lupita Nyong'o's now-famous Oscar dress -- adorned in pearls -- was stolen right out of her hotel room ... TMZ has learned. Law enforcement sources tell…"/>
<meta name="generator" content="Crowd Fusion 2.0-enterprise"/>
<meta name="viewport" content="width=device-width, maximum-scale=1.0"/>
<meta name="google-site-verification" content="UUmtbUBf3djgPpCeLefe_PbFsOc6JGxfXmHzpjFLAEQ"/>
<meta name="verify-v1" content="Wtpd0N6FufoE2XqopQJoTjWV6Co/Mny9BTaswPJbPPA="/>
<meta name="msvalidate.01" content="AFEB17971BCF30779AEA662782EF26F4"/>
<meta name="y_key" content="14cb04e4656b0c58"/>
<meta property="fb:app_id" content="310610065699820"/>
<meta property="article:publisher" content="https://www.facebook.com/tmz"/>
<meta property="og:site_name" content="http://www.tmz.com"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta http-equiv="content-language" content="en"/>
<meta http-equiv="pragma" content="no-cache"/>
<meta http-equiv="imagetoolbar" content="no"/>
<meta name="twitter:description" value="Lupita Nyong'o's now-famous Oscar dress -- adorned in pearls -- was stolen right out of her hotel room ... TMZ has learned. Law enforcement sources tell…"/>
<meta name="news_keywords" content="Lupita Nyong'o, Exclusive, Fashion, Awards / Awards Shows, The Oscars, CELEBRITY JUSTICE ™"/>
<meta property="og:title" content="Lupita Nyong'o's $150K Pearl Oscar Dress -- STOLEN!!!"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="http://www.tmz.com/2015/02/26/lupita-nyongo-pearl-dress-stolen-oscars/"/>
<meta property="og:image" content="http://ll-media.tmz.com/2015/02/26/0225-lupita-nyongo-getty-01-1200x630.jpg"/>
<meta itemprop="inLanguage" content="en-US"/>
<meta itemprop="thumbnailUrl" content="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/images/tmz_rnews_logo.v2014_05_09_134122.jpg"/>
<!--start twitter card-->
<meta name="twitter:card" value="summary_large_image">
<meta name="twitter:site" value="@TMZ">
<meta name="twitter:description" value="Lupita Nyong'o's now-famous Oscar dress -- adorned in pearls -- was stolen right out of her hotel room ... TMZ has learned. Law enforcement sources tell…">
<meta name="twitter:card" value="summary_large_image"/>
<meta name="twitter:site" value="@TMZ"/>
<meta name="twitter:description" value="Lupita Nyong'o's now-famous Oscar dress -- adorned in pearls -- was stolen right out of her hotel room ... TMZ has learned. Law enforcement sources tell…"/>
<!--end twitter card-->
<!-- PINNING -->
<meta name="application-name" content="TMZ.COM">
<meta name="msapplication-starturl" content="http://www.tmz.com?adid=IE9pin">
<meta name="msapplication-navbutton-color" content="#CF0000">
<meta name="msapplication-window" content="width=1024;height=768">
<meta name="msapplication-tooltip" content="TMZ | Entertainment News">
<meta name="application-name" content="TMZ.COM"/>
<meta name="msapplication-starturl" content="http://www.tmz.com?adid=IE9pin"/>
<meta name="msapplication-navbutton-color" content="#CF0000"/>
<meta name="msapplication-window" content="width=1024;height=768"/>
<meta name="msapplication-tooltip" content="TMZ | Entertainment News"/>
<!-- Each meta tag below adds a Static Jump List item to the Tasks list
on our pinned site's Jump List menu -->
<meta name="msapplication-task" content="name=Home;action-uri=http://www.tmz.com;icon-uri=http://ll-assets.tmz.com/www.tmz.com/main/default/cache/favicon.v2014_05_09_134122.ico">
<meta name="msapplication-task" content="name=Videos;action-uri=http://www.tmz.com/videos;icon-uri=http://ll-assets.tmz.com/www.tmz.com/main/default/cache/favicon.v2014_05_09_134122.ico">
<meta name="msapplication-task" content="name=Photos;action-uri=http://www.tmz.com/photos;icon-uri=http://ll-assets.tmz.com/www.tmz.com/main/default/cache/favicon.v2014_05_09_134122.ico">
<meta name="msapplication-task" content="name=Celebrity Directory;action-uri=http://www.tmz.com/celebrity-directory;icon-uri=http://ll-assets.tmz.com/www.tmz.com/main/default/cache/favicon.v2014_05_09_134122.ico">
<meta name="msapplication-task" content="name=Home;action-uri=http://www.tmz.com;icon-uri=http://ll-assets.tmz.com/www.tmz.com/main/default/cache/favicon.v2014_05_09_134122.ico"/>
<meta name="msapplication-task" content="name=Videos;action-uri=http://www.tmz.com/videos;icon-uri=http://ll-assets.tmz.com/www.tmz.com/main/default/cache/favicon.v2014_05_09_134122.ico"/>
<meta name="msapplication-task" content="name=Photos;action-uri=http://www.tmz.com/photos;icon-uri=http://ll-assets.tmz.com/www.tmz.com/main/default/cache/favicon.v2014_05_09_134122.ico"/>
<meta name="msapplication-task" content="name=Celebrity Directory;action-uri=http://www.tmz.com/celebrity-directory;icon-uri=http://ll-assets.tmz.com/www.tmz.com/main/default/cache/favicon.v2014_05_09_134122.ico"/>
<!-- KRUX VALUES -->
<meta name="articleID" content="b48ab5a6-bdca-11e4-bb2e-30342d324647">
<meta name="celebrityID" content="aa7e28b0-a301-4cda-dd84-3b4c66f23259">
<meta name="categoryID" content="f2cb2570-104e-4c13-e20e-9186a7708dac, 0cba3e09-d41a-45e5-9c40-c964a9d09e78, ff1fba86-7e4d-43fe-fb53-c384d4aa71b5, df5027f9-8759-42b9-ad53-d3b7cb675345, f261d39e-f751-4ecb-f12d-4d386e61929e">
<link rel="apple-touch-icon" href="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/apple-touch-icon-precomposed.v2014_05_09_134122.png">
<meta name="articleID" content="b48ab5a6-bdca-11e4-bb2e-30342d324647"/>
<meta name="celebrityID" content="aa7e28b0-a301-4cda-dd84-3b4c66f23259"/>
<meta name="categoryID" content="f2cb2570-104e-4c13-e20e-9186a7708dac, 0cba3e09-d41a-45e5-9c40-c964a9d09e78, ff1fba86-7e4d-43fe-fb53-c384d4aa71b5, df5027f9-8759-42b9-ad53-d3b7cb675345, f261d39e-f751-4ecb-f12d-4d386e61929e"/>
<link rel="apple-touch-icon" href="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/apple-touch-icon-precomposed.v2014_05_09_134122.png"/>
<!--[if lt IE 9]>
<script language="JavaScript" type="text/javascript" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/html5shiv.min.512480812d84e77c54b38a11b9a9e049.v2014_05_09_164122.js"></script>
<![endif]-->
@ -213,15 +213,15 @@ xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http
<div class="zip-form-overlay">
<form class="stations-search-form">
<label class="zip-code">Enter your Zip Code</label>
<input type="text" class="zip-code-field">
<input type="text" class="zip-code-field"/>
<label alt="Submit" class="submit-search">
<input alt="Enter Zipcode" type="submit" value="Go">
<input alt="Enter Zipcode" type="submit" value="Go"/>
</label>
</form> <a href="#" class="zip-form-close" onclick="Showtimes.hideForm($('.masthead-showtimes'));"><img src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/showtimes/overlay-close.v2014_05_09_134122.png"></a>
</form> <a href="#" class="zip-form-close" onclick="Showtimes.hideForm($('.masthead-showtimes'));"><img src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/showtimes/overlay-close.v2014_05_09_134122.png"/></a>
</div>
<div class="showtimes-block tmz">
<img class="logo" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/showtimes/tmz-showtimes-logo.v2014_05_09_134122.png">
<img class="logo" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/showtimes/tmz-showtimes-logo.v2014_05_09_134122.png"/>
<div class="stations-results"> <a class="buttons prev" href="#"></a>
<div class="viewport">
@ -231,7 +231,7 @@ xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http
</div>
</div>
<div class="showtimes-block tmzlive">
<img class="logo" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/showtimes/tmzlive-showtimes-logo.v2014_05_09_134122.png">
<img class="logo" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/showtimes/tmzlive-showtimes-logo.v2014_05_09_134122.png"/>
<div class="stations-results"> <a class="buttons prev" href="#"></a>
<div class="viewport">
@ -272,10 +272,10 @@ xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http
<div class="search">
<form target="" name="bb_topform" action="http://www.tmz.com/search/news/"
onsubmit="return elasticSearch(this);" id="search">
<input name="q" placeholder="SEARCH TMZ" type="text">
<input name="q" placeholder="SEARCH TMZ" type="text"/>
<label alt="Submit" class="submit-search">
<input alt="Search TMZ.com" id="submit-search" src=" http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/search/search-icon.v2014_05_09_134122.jpg"
type="image">
type="image"/>
</label>
</form>
</div>
@ -286,7 +286,7 @@ xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http
<div id="nav-stretcher"></div>
<nav class="clearfix" id="nav">
<ul class="nav-list">
<li id="nav-tmzhome"> <a href="http://www.tmz.com/?adid=TMZ_Web_Nav_Logo"><img itemprop="logo" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/masthead/tmz-logo-62x23.v2014_05_09_134122.png" alt="tmz"></a>
<li id="nav-tmzhome"> <a href="http://www.tmz.com/?adid=TMZ_Web_Nav_Logo"><img itemprop="logo" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/masthead/tmz-logo-62x23.v2014_05_09_134122.png" alt="tmz"/></a>
</li>
<li> <a href="http://www.tmz.com/celebrity-directory?adid=TMZ_Web_Nav_Celebs">Celebs</a>
@ -308,7 +308,7 @@ xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http
<li> <a href="http://www.tmzstore.com/?adid=TMZ_Web_Nav_TMZ_Store" target="_blank">Store</a>
</li>
<li id="tmztourbutton" class="hotspot"> <a href="javascript:void(0)">TMZ TOURS <img src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/masthead/rightarrow_13x13.v2014_05_09_134122.png" alt="right-arrow"></a>
<li id="tmztourbutton" class="hotspot"> <a href="javascript:void(0)">TMZ TOURS <img src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/masthead/rightarrow_13x13.v2014_05_09_134122.png" alt="right-arrow"/></a>
<div
id="tourmenu" class="hotspot"> <a target="_blank" href="http://www.tmztour.com/?adid=TMZ_Web_Nav_Logo_Tours_Hollywood">HOLLYWOOD</a>
@ -391,7 +391,7 @@ height="1" width="1" border="0" alt="" /></a>
<figure> <a class="has-adid" data-adid="hero1" href="http://www.tmz.com/2015/03/18/drake-dubai-club-fight-video/"
rel="bookmark">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/18/031815-drake-dubai-primary-117x81.jpg" width="117" height="81" alt="Drake Assaulted in Dubai Nightclub (VIDEO)" border="0">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/18/031815-drake-dubai-primary-117x81.jpg" width="117" height="81" alt="Drake Assaulted in Dubai Nightclub (VIDEO)" border="0"/>
</a>
@ -409,7 +409,7 @@ height="1" width="1" border="0" alt="" /></a>
<figure> <a class="has-adid" data-adid="hero2" href="http://www.tmz.com/2015/03/18/tom-cruise-katie-holmes-not-speaking-suri-mission-impossible-5-visitation-jamie-foxx/"
rel="bookmark">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/17/0317-tom-cruise-katie-holmes-suri-tmz-getty-117x81.jpg" width="117" height="81" alt="Tom Cruise and Katie Holmes -- No Love Lost ... NOT on Speaking Terms" border="0">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/17/0317-tom-cruise-katie-holmes-suri-tmz-getty-117x81.jpg" width="117" height="81" alt="Tom Cruise and Katie Holmes -- No Love Lost ... NOT on Speaking Terms" border="0"/>
</a>
@ -427,7 +427,7 @@ height="1" width="1" border="0" alt="" /></a>
<figure> <a class="has-adid" data-adid="hero3" href="http://www.tmz.com/2015/03/18/karrueche-tran-own-network-interview-chris-brown-iyanla-vanzant/"
rel="bookmark">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/16/0316-karrueche-own-01-117x81.jpg" width="117" height="81" alt="Karrueche Tran -- I Kicked Oprah's People Out of My House!" border="0">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/16/0316-karrueche-own-01-117x81.jpg" width="117" height="81" alt="Karrueche Tran -- I Kicked Oprah's People Out of My House!" border="0"/>
</a>
@ -445,7 +445,7 @@ height="1" width="1" border="0" alt="" /></a>
<figure> <a class="has-adid" data-adid="hero4" href="http://www.tmz.com/2015/03/18/shark-tank-star-robert-herjavec-dating-dwts-partner/"
rel="bookmark">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/18/0318-robert-kym-tmz-01-117x81.jpg" width="117" height="81" alt="'Shark Tank' Star Robert Herjavec ... Dating 'DWTS' Partner Kym Johnson" border="0">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/18/0318-robert-kym-tmz-01-117x81.jpg" width="117" height="81" alt="'Shark Tank' Star Robert Herjavec ... Dating 'DWTS' Partner Kym Johnson" border="0"/>
</a>
@ -463,7 +463,7 @@ height="1" width="1" border="0" alt="" /></a>
<figure> <a class="has-adid" data-adid="hero5" href="http://www.tmz.com/2015/03/18/adam-levine-hits-fan-microphone-toronto-concert-video/"
rel="bookmark">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/18/031815-adam-lavine-primary-117x81.jpg" width="117" height="81" alt="Adam Levine -- Unlucky Strike ... Nails Fan In The Head With Mic (NEW VIDEO)" border="0">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/18/031815-adam-lavine-primary-117x81.jpg" width="117" height="81" alt="Adam Levine -- Unlucky Strike ... Nails Fan In The Head With Mic (NEW VIDEO)" border="0"/>
</a>
@ -481,7 +481,7 @@ height="1" width="1" border="0" alt="" /></a>
<figure> <a class="has-adid" data-adid="hero6" href="http://www.tmz.com/2015/03/18/robert-durst-murder-search-warrant-latex-mask-identity-the-jinx/"
rel="bookmark">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/16/0316-robert-durst-hbo-10-117x81.jpg" width="117" height="81" alt="Robert Durst -- Arrested with Latex Mask In Apparent Attempt to Change Identity" border="0">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/16/0316-robert-durst-hbo-10-117x81.jpg" width="117" height="81" alt="Robert Durst -- Arrested with Latex Mask In Apparent Attempt to Change Identity" border="0"/>
</a>
@ -499,7 +499,7 @@ height="1" width="1" border="0" alt="" /></a>
<figure> <a class="has-adid" data-adid="hero7" href="http://www.tmz.com/2015/03/18/kylie-jenner-17-bathing-suit-photo/"
rel="bookmark">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/18/0318-kylie-jenner-splash-117x81.jpg" width="117" height="81" alt="Kylie Jenner -- When I Was 17 ... (PHOTO)" border="0">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/18/0318-kylie-jenner-splash-117x81.jpg" width="117" height="81" alt="Kylie Jenner -- When I Was 17 ... (PHOTO)" border="0"/>
</a>
@ -517,7 +517,7 @@ height="1" width="1" border="0" alt="" /></a>
<figure> <a class="has-adid" data-adid="hero8" href="http://www.tmz.com/2015/03/18/miley-cyrus-patrick-schwarzenegger-cabo-photos-usc/"
rel="bookmark">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/18/0318-miley-patrick-splash-03-117x81.jpg" width="117" height="81" alt="Miley Cyrus -- She's Hung Out With Patrick Schwarzenegger's Cabo Chick" border="0">
<img class="thumb-underlined-4" src="http://ll-media.tmz.com/2015/03/18/0318-miley-patrick-splash-03-117x81.jpg" width="117" height="81" alt="Miley Cyrus -- She's Hung Out With Patrick Schwarzenegger's Cabo Chick" border="0"/>
</a>
@ -554,7 +554,7 @@ height="1" width="1" border="0" alt="" /></a>
<div class="primary-image-swipe"><span>EXCLUSIVE</span>
</div>
<p>
<img alt="0225-lupita-nyongo-getty-01" src="http://ll-media.tmz.com/2015/02/26/0225-lupita-nyongo-getty-4.jpg"><strong>Lupita Nyong</strong>'<strong>o</strong>'s now-famous Oscar dress
<img alt="0225-lupita-nyongo-getty-01" src="http://ll-media.tmz.com/2015/02/26/0225-lupita-nyongo-getty-4.jpg"/><strong>Lupita Nyong</strong>'<strong>o</strong>'s now-famous Oscar dress
-- adorned in pearls -- was stolen right out of her hotel room ... TMZ
has learned.</p>
<p>Law enforcement sources tell TMZ ... the dress was taken out of Lupita's
@ -565,11 +565,11 @@ height="1" width="1" border="0" alt="" /></a>
<p>We're told there is security footage that cops are looking at that could
catch the culprit right in the act.&nbsp;</p>
<p>
<img alt="update_graphic_red_bar" src="http://ll-media.tmz.com/2013/11/20/update-graphic-red-bar.jpg"><strong>12:00 PM PT</strong> -- Sheriff's deputies were at The London Thursday
<img alt="update_graphic_red_bar" src="http://ll-media.tmz.com/2013/11/20/update-graphic-red-bar.jpg"/><strong>12:00 PM PT</strong> -- Sheriff's deputies were at The London Thursday
morning. &nbsp;We know they were in the manager's office and we're told
they have looked at security footage to determine if they can ID the culprit.</p>
<p>
<img alt="0226-SUB-london-hotel-swipe-tmz-02" src="http://ll-media.tmz.com/2015/02/26/0226-sub-london-hotel-swipe-tmz-11.jpg">
<img alt="0226-SUB-london-hotel-swipe-tmz-02" src="http://ll-media.tmz.com/2015/02/26/0226-sub-london-hotel-swipe-tmz-11.jpg"/>
</p> <a name="continued"></a>
<div class="related clearfix">
@ -601,18 +601,18 @@ height="1" width="1" border="0" alt="" /></a>
<form id="opt_in_form" method="post" action="http://www.nl.tmz.com/subscribev2.php"
target="opt-in-iframe" onsubmit="return emailValidation()">
<input type="text" id="email" name="email" value="your@email.com" placeholder="your@email.com"
size="30" maxlength="150">
<input class="opt-in-submit" type="submit" value="SUBMIT">
size="30" maxlength="150"/>
<input class="opt-in-submit" type="submit" value="SUBMIT"/>
<div class="email-groups">
<input type="hidden" name="groups[]" value="268">
<input type="checkbox" name="groups[]" value="3" id="yesbox" checked="">
<input type="hidden" name="groups[]" value="268"/>
<input type="checkbox" name="groups[]" value="3" id="yesbox" checked=""/>
<label for="yesbox">Yes! Also send me
<br><strong>"In Case You Missed It..."</strong>
<br/><strong>"In Case You Missed It..."</strong>
</label>
</div> <span class="policy-link">By clicking "Submit," you agree to the <a href="http://www.warnerbros.com/privacy/policy.html" target="_new">Privacy Policy</a> and <a href="http://www.tmz.com/terms/" target="_new">Terms of Use</a>. &gt;</span>
<input
type="hidden" id="return_url" name="return_url" value="http://www.tmz.com/email-optin-thanks/">
type="hidden" id="return_url" name="return_url" value="http://www.tmz.com/email-optin-thanks/"/>
</form>
</div>
</div>
@ -862,7 +862,7 @@ height="1" width="1" border="0" alt="" /></a>
})();
</script>
<article class="clearfix"> <a href="http://gossipgirl.alloyentertainment.com/kourtney-kardashian-weight-31715/#4"
target="_blank"><img alt="1222_kourtney_main" src="http://ll-media.tmz.com/2014/12/22/1222-kourtney-main-139x99.jpg"></a>
target="_blank"><img alt="1222_kourtney_main" src="http://ll-media.tmz.com/2014/12/22/1222-kourtney-main-139x99.jpg"/></a>
<a
class="subheader" href="http://gossipgirl.alloyentertainment.com/kourtney-kardashian-weight-31715/#4"
@ -873,7 +873,7 @@ height="1" width="1" border="0" alt="" /></a>
</article>
<article class="clearfix"> <a href="http://www.popoholic.com/2015/03/17/selena-gomez-instagrams-her-braless-bosom/"
target="_blank"><img alt="0119_selena_main" src="http://ll-media.tmz.com/2015/01/19/0119-selena-main-139x99.jpg"></a>
target="_blank"><img alt="0119_selena_main" src="http://ll-media.tmz.com/2015/01/19/0119-selena-main-139x99.jpg"/></a>
<a
class="subheader" href="http://www.popoholic.com/2015/03/17/selena-gomez-instagrams-her-braless-bosom/"
@ -884,7 +884,7 @@ height="1" width="1" border="0" alt="" /></a>
</article>
<article class="clearfix"> <a href="http://www.lovebscott.com/news/oh-no-kylie-jenner-suffers-a-boob-contour-fail-on-the-red-carpet-photos"
target="_blank"><img alt="0316_kylie_main" src="http://ll-media.tmz.com/2015/03/16/0316-kylie-main-139x99.jpg"></a>
target="_blank"><img alt="0316_kylie_main" src="http://ll-media.tmz.com/2015/03/16/0316-kylie-main-139x99.jpg"/></a>
<a
class="subheader" href="http://www.lovebscott.com/news/oh-no-kylie-jenner-suffers-a-boob-contour-fail-on-the-red-carpet-photos"
@ -918,11 +918,11 @@ height="1" width="1" border="0" alt="" /></a>
<div id="rr-gameofthrones-video-container"
style="position: relative;">
<div id="rr-gameofthrones-video" style="width: 300px; height: 216px;">
<hr>
<hr/>
</div>
<div id="rr-gameofthrones-video-done" style="position: absolute; top: 0px; width: 300px; height: 156px; display: none; background: black;">
<img src="http://ll-media.tmz.com/2013/06/06/tmz-promo-end-card-1.jpg"
width="300">
width="300"/>
</div>
</div>
<script type="text/javascript">
@ -966,9 +966,9 @@ height="1" width="1" border="0" alt="" /></a>
<div class="zip-form-overlay">
<form class="stations-search-form">
<label class="zip-code">Enter your Zip Code</label>
<input type="text" class="zip-code-field">
<input type="text" class="zip-code-field"/>
<label alt="Submit" class="submit-search">
<input alt="Enter Zipcode" type="submit" value="Go">
<input alt="Enter Zipcode" type="submit" value="Go"/>
</label>
</form>
</div>
@ -984,7 +984,7 @@ height="1" width="1" border="0" alt="" /></a>
<!-- nothing was scheduled to appear in rr-tmz-tv-clips-1 -->
</li>
<li> <a class="video-thumb" href="http://www.tmz.com/videos/0_f4lfqd8l/?adid=sidebarwidget_tv_clips"
onclick="tmzVideosLightbox('0_f4lfqd8l/?adid=sidebarwidget_tv_clips'); return false;"><img src="http://ll-media.tmz.com/2015/03/18/0-j2m1i8eb-300w.jpg" class="video-img" alt="Sidebar TMZ TV Clips 2"></a>
onclick="tmzVideosLightbox('0_f4lfqd8l/?adid=sidebarwidget_tv_clips'); return false;"><img src="http://ll-media.tmz.com/2015/03/18/0-j2m1i8eb-300w.jpg" class="video-img" alt="Sidebar TMZ TV Clips 2"/></a>
<a
class="video-title" href="http://www.tmz.com/videos/0_f4lfqd8l/?adid=sidebarwidget_tv_clips"
@ -994,7 +994,7 @@ height="1" width="1" border="0" alt="" /></a>
</a>
</li>
<li> <a class="video-thumb" href="http://www.tmz.com/videos/0_0n3coul5/?adid=sidebarwidget_tv_clips"
onclick="tmzVideosLightbox('0_0n3coul5/?adid=sidebarwidget_tv_clips'); return false;"><img src="http://ll-media.tmz.com/2015/03/18/0-dryjnrzt-300w.jpg" class="video-img" alt="Sidebar TMZ TV Clips 3"></a>
onclick="tmzVideosLightbox('0_0n3coul5/?adid=sidebarwidget_tv_clips'); return false;"><img src="http://ll-media.tmz.com/2015/03/18/0-dryjnrzt-300w.jpg" class="video-img" alt="Sidebar TMZ TV Clips 3"/></a>
<a
class="video-title" href="http://www.tmz.com/videos/0_0n3coul5/?adid=sidebarwidget_tv_clips"
@ -1016,7 +1016,7 @@ height="1" width="1" border="0" alt="" /></a>
<a href="http://www.tmz.com/2015/03/17/tmz-live-chris-brown-royalty-miley-cyrus-patrick-schwarzenegger-kanye-west-president-obama-jimmy-kimmel-kim-kardashian/?adid=sidebarwidget-tmzlive"
class="video-thumb">
<img src="http://ll-media.tmz.com/2015/03/18/0317-tmz-live-primary-300x163.jpg" width="300" height="163" alt="TMZ Live: Chris Brown: My Baby's Already Getting the V.I.P. Treatment!" border="0">
<img src="http://ll-media.tmz.com/2015/03/18/0317-tmz-live-primary-300x163.jpg" width="300" height="163" alt="TMZ Live: Chris Brown: My Baby's Already Getting the V.I.P. Treatment!" border="0"/>
</a>
@ -1056,9 +1056,9 @@ height="1" width="1" border="0" alt="" /></a>
<div class="next-tmzlive-locator">
<form class="stations-search-form">
<input type="text" class="zip-code-field">
<input type="text" class="zip-code-field"/>
<label alt="Submit" class="submit-search">
<input alt="Enter Zipcode" type="submit" value="Go">
<input alt="Enter Zipcode" type="submit" value="Go"/>
</label>
</form>
<div class="stations-results">
@ -1071,18 +1071,18 @@ height="1" width="1" border="0" alt="" /></a>
<div style="position:relative;width:300px;height:492px;overflow:hidden;">
<iframe width="300" height="492" frameborder="0" scrolling="no" src="http://tmz.vo.llnwd.net/o28/tmztourbus/swf/0120-tmztour-rr-promo.html"></iframe>
</div>
<br>
<br>
<br/>
<br/>
<a class="lightbox-link" href="http://www.tmz.com/videos/0_4yt1vo4z/?adid=sidebar-sports-hw-show"
target="_blank"><img src="http://ll-media.tmz.com/2015/03/18/0318-dave-chappelle-son-boxing-prodigy-sports-promo-1.jpg"></a>
<br>
<br>
target="_blank"><img src="http://ll-media.tmz.com/2015/03/18/0318-dave-chappelle-son-boxing-prodigy-sports-promo-1.jpg"/></a>
<br/>
<br/>
<div style="display:none"><a href="http://www.tmz.com/when-is-tmz-sports/?adid=sidebar-sports-showtimes"
target="_blank"><img src="http://ll-media.tmz.com/2014/01/14/20140114-rr-sports-tv-promo-1.jpg" alt="New - TMZ Sports TV Show - Click here for showtimes."></a>
target="_blank"><img src="http://ll-media.tmz.com/2014/01/14/20140114-rr-sports-tv-promo-1.jpg" alt="New - TMZ Sports TV Show - Click here for showtimes."/></a>
</div>
<a href="http://www.tmz.com/2015/03/17/floyd-mayweather-sworn-off-fast-food-manny-pacquiao-fight-diet/?adid=sidebar-sports-top-story"><img src="http://ll-media.tmz.com/2015/03/17/0317-tmz-sports-promo-launch-1.jpg"></a>
<br>
<br> <a href="http://www.tmz.com/2015/03/18/coco-birthday-instagram-photos-ass-wcw/?adid=sidebar-promo-coco-birthday-butt"><img alt="coco butt photos" src="http://ll-media.tmz.com/2015/03/17/0317-sidebar-coco-cake-birthday-booty-promo2-1.gif"></a>
<a href="http://www.tmz.com/2015/03/17/floyd-mayweather-sworn-off-fast-food-manny-pacquiao-fight-diet/?adid=sidebar-sports-top-story"><img src="http://ll-media.tmz.com/2015/03/17/0317-tmz-sports-promo-launch-1.jpg"/></a>
<br/>
<br/> <a href="http://www.tmz.com/2015/03/18/coco-birthday-instagram-photos-ass-wcw/?adid=sidebar-promo-coco-birthday-butt"><img alt="coco butt photos" src="http://ll-media.tmz.com/2015/03/17/0317-sidebar-coco-cake-birthday-booty-promo2-1.gif"/></a>
<!--DO
NOT TOUCH OR DELETE ANYTHING AFTER THIS THIS-->
@ -1105,7 +1105,7 @@ height="1" width="1" border="0" alt="" /></a>
<div class="widget-title">PHOTO GALLERY</div>
<figure>
<h5><a href="http://www.tmz.com/photos/2015/03/16/patrick-schwarzenegger-body-shots-hugging-girl-cabo-photos/?adid=permasidebarwidget-gallery-1">Patrick Schwarzenegger -- Party in the C.A.B.O. ... And That Ain't Miley! </a></h5>
<a href="http://www.tmz.com/photos/2015/03/16/patrick-schwarzenegger-body-shots-hugging-girl-cabo-photos/?adid=permasidebarwidget-gallery-1"><img class="rr-featured-photo-gallery" src="http://ll-media.tmz.com/2015/03/16/patrick-schwarzenegger-body-shots-hugging-girl-photos-01-300w.jpg" alt="RR Featured Photo Gallery 1 " border="0"></a>
<a href="http://www.tmz.com/photos/2015/03/16/patrick-schwarzenegger-body-shots-hugging-girl-cabo-photos/?adid=permasidebarwidget-gallery-1"><img class="rr-featured-photo-gallery" src="http://ll-media.tmz.com/2015/03/16/patrick-schwarzenegger-body-shots-hugging-girl-photos-01-300w.jpg" alt="RR Featured Photo Gallery 1 " border="0"/></a>
<figcaption
class="photo-meta"> <a class="view-gallery-btn" href="http://www.tmz.com/photos/2015/03/16/patrick-schwarzenegger-body-shots-hugging-girl-cabo-photos/?adid=permasidebarwidget-gallery-1">View Gallery »</a>
@ -1192,7 +1192,7 @@ height="1" width="1" border="0" alt="" /></a>
<div class="partner-headlines-row clearfix">
<div class="partner-headlines"> <a href="http://www.usmagazine.com/" target="_blank" rel="nofollow">
<img src="http://ll-media.tmz.com/2013/04/26/partner-asset-us-magazine-logo2-cut-v2-1.gif" border="0">
<img src="http://ll-media.tmz.com/2013/04/26/partner-asset-us-magazine-logo2-cut-v2-1.gif" border="0"/>
</a>
@ -1213,7 +1213,7 @@ height="1" width="1" border="0" alt="" /></a>
</div>
<div class="partner-headlines"> <a href="http://egotastic.com/" target="_blank" rel="nofollow">
<img src="http://ll-media.tmz.com/2013/04/26/partner-rss-egotastic-v3.png" border="0">
<img src="http://ll-media.tmz.com/2013/04/26/partner-rss-egotastic-v3.png" border="0"/>
</a>
@ -1234,7 +1234,7 @@ height="1" width="1" border="0" alt="" /></a>
</div>
<div class="partner-headlines"> <a href="http://thechive.com/" target="_blank" rel="nofollow">
<img src="http://ll-media.tmz.com/2013/04/26/partner-rss-chive-v2-cut-v2.png" border="0">
<img src="http://ll-media.tmz.com/2013/04/26/partner-rss-chive-v2-cut-v2.png" border="0"/>
</a>
@ -1255,7 +1255,7 @@ height="1" width="1" border="0" alt="" /></a>
</div>
<div class="partner-headlines"> <a href="http://partner.mediatakeout.com/" target="_blank" rel="nofollow">
<img src="http://ll-media.tmz.com/2013/04/26/partner-asset-mto.png" border="0">
<img src="http://ll-media.tmz.com/2013/04/26/partner-asset-mto.png" border="0"/>
</a>
@ -1278,7 +1278,7 @@ height="1" width="1" border="0" alt="" /></a>
<div class="partner-headlines-row clearfix">
<div class="partner-headlines"> <a href="http://gossipgirl.alloyentertainment.com/" target="_blank" rel="nofollow">
<img src="http://ll-media.tmz.com/2013/04/26/partner-rss-gossipgirl-bw.png" border="0">
<img src="http://ll-media.tmz.com/2013/04/26/partner-rss-gossipgirl-bw.png" border="0"/>
</a>
@ -1299,7 +1299,7 @@ height="1" width="1" border="0" alt="" /></a>
</div>
<div class="partner-headlines"> <a href="http://www.justjared.com" target="_blank" rel="nofollow">
<img src="http://ll-media.tmz.com/2013/04/26/partner-rsss-justjared-logo-cut-v2.gif" border="0">
<img src="http://ll-media.tmz.com/2013/04/26/partner-rsss-justjared-logo-cut-v2.gif" border="0"/>
</a>
@ -1320,7 +1320,7 @@ height="1" width="1" border="0" alt="" /></a>
</div>
<div class="partner-headlines"> <a href="http://www.huffingtonpost.com/celebrity/" target="_blank" rel="nofollow">
<img src="http://ll-media.tmz.com/2013/04/26/partner-rss-huffpo-celebrity-bw.png" border="0">
<img src="http://ll-media.tmz.com/2013/04/26/partner-rss-huffpo-celebrity-bw.png" border="0"/>
</a>
@ -1341,7 +1341,7 @@ height="1" width="1" border="0" alt="" /></a>
</div>
<div class="partner-headlines"> <a href="http://laineygossip.com/" target="_blank" rel="nofollow">
<img src="http://ll-media.tmz.com/2013/04/26/partner-asset-lainey-gossip-bw-1.png" border="0">
<img src="http://ll-media.tmz.com/2013/04/26/partner-asset-lainey-gossip-bw-1.png" border="0"/>
</a>
@ -1391,7 +1391,7 @@ height="1" width="1" border="0" alt="" /></a>
<div class="footer-wrapper">
<footer id="footer">
<h2 id="footer-logo">
<a href="http://www.tmz.com"><img alt="TMZ.com" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/footer/footer-logo.v2014_05_09_134122.jpg"></a>
<a href="http://www.tmz.com"><img alt="TMZ.com" src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/footer/footer-logo.v2014_05_09_134122.jpg"/></a>
</h2>
<div class="footer-content-wrapper">
@ -1424,17 +1424,17 @@ height="1" width="1" border="0" alt="" /></a>
<div class="search">
<form target="" name="bb_bottomform" action="http://www.tmz.com/search/news/"
onsubmit="return elasticSearch(this);" id="search">
<input name="q" placeholder="SEARCH TMZ" type="text">
<input name="q" placeholder="SEARCH TMZ" type="text"/>
<label alt="Submit" class="submit-search">
<input alt="Search TMZ.com" id="submit-search" src=" http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/search/search-icon.v2014_05_09_134122.jpg"
type="image">
type="image"/>
</label>
</form>
</div>
</div>
<div id="thirtymilezone">
<img src="http://ll-assets.tmz.com/www.tmz.com/main/default/cache/img/widgets/footer/thirtymilezone.v2014_12_01_102336.png"
alt="Thirty Mile Zone">
alt="Thirty Mile Zone"/>
</div>
</footer>
<div align="center" class="ad-container wbads" data-pos="interstitial"
@ -1525,4 +1525,4 @@ height="1" width="1" border="0" alt="" /></a>
Ad Dimension: Inview - 160 x 600 -->
</body>
</html>
</html>

@ -31,8 +31,8 @@
<p>The leader of Ennahda, Rachid Ghannouchi, condemned Wednesdays attack, saying in a statement that it “will not break our peoples will and will not undermine our revolution and our democracy.”</p>
<p>Security officials are particularly concerned by the collapse of Libya, where various armed groups are vying for influence and jihadist militants have entrenched themselves in major cities. Tunisians worry that extremists can easily get arms and training in the neighboring country.</p>
<p>In January, Libyan militants loyal to the Islamic State <a href="http://www.washingtonpost.com/world/middle_east/video-shows-purported-beheading-of-egyptian-christians-in-libya/2015/02/15/b8d0f092-b548-11e4-bc30-a4e75503948a_story.html">beheaded 21 Christians</a> — 20 of them Egyptian Copts — along the countrys coast. They later seized the Libyan city of Sirte.</p>
<div class="inline-content inline-graphic-embedded"><img class="unprocessed" data-hi-res-src="https://img.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ" data-low-res-src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ" src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ">
<br>
<div class="inline-content inline-graphic-embedded"><img class="unprocessed" data-hi-res-src="https://img.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ" data-low-res-src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ" src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ"/>
<br/>
</div>
<p>Officials are worried about the number of Tunisian militants who may have joined the jihadists in Libya — with the goal of returning home to fight the Tunis government.</p>
<p>Ajmi Lourimi, a member of Ennahdas general secretariat, said he believed the attack would unite Tunisians in the face of terrorism.</p>

@ -2,44 +2,44 @@
<html>
<head>
<meta name="eomportal-uuid" content="00202e76-cd73-11e4-8730-4f473416e759">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes, minimum-scale=0.5, maximum-scale=2.0">
<meta name="keywords" content="tunisia, bardo museum, tourists killed, tunis attack tunisia attack, tunisia terrorism, tunisia death toll, tunisia museum, islamic state, isis, isil, islamic state tunsiia, arab spring, tunisia clashes, tunisia violence, tunisia libya">
<meta name="description" content="The assault on Tunisias most renowned museum, in which gunmen killed at least 19 people, could heighten tensions in a nation that has become deeply divided between pro- and anti-Islamist factions.">
<meta name="news_keywords" content="tunisia, bardo museum, tourists killed, tunis attack tunisia attack, tunisia terrorism, tunisia death toll, tunisia museum, islamic state, isis, isil, islamic state tunsiia, arab spring, tunisia clashes, tunisia violence, tunisia libya">
<meta name="twitter:site" value="@WashingtonPost">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:description" content="The assault on Tunisias most renowned museum, in which gunmen killed at least 19 people, could heighten tensions in a nation that has become deeply divided between pro- and anti-Islamist factions.">
<meta property="og:type" content="article">
<meta property="og:site_name" content="Washington Post">
<meta property="og:image" content="http://img.washingtonpost.com/rw/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429927.jpg">
<meta property="og:title" content="Attack stokes instability fears in North Africa">
<meta property="article:publisher" content="https://www.facebook.com/washingtonpost">
<meta property="fb:admins" content="1513210492">
<meta property="fb:app_id" content="41245586762">
<meta property="fb:admins" content="1244584375">
<meta property="fb:admins" content="4403963">
<meta property="fb:admins" content="2724956">
<meta property="fb:admins" content="500835072">
<meta property="og:url" content="http://www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html">
<meta name="section" content="/world/middle_east">
<meta name="commercialNode" content="/world">
<link rel="canonical" href="http://www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html">
<link rel="alternate" href="android-app://com.washingtonpost.android/wp-android/www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html">
<meta name="eomportal-uuid" content="00202e76-cd73-11e4-8730-4f473416e759"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes, minimum-scale=0.5, maximum-scale=2.0"/>
<meta name="keywords" content="tunisia, bardo museum, tourists killed, tunis attack tunisia attack, tunisia terrorism, tunisia death toll, tunisia museum, islamic state, isis, isil, islamic state tunsiia, arab spring, tunisia clashes, tunisia violence, tunisia libya"/>
<meta name="description" content="The assault on Tunisias most renowned museum, in which gunmen killed at least 19 people, could heighten tensions in a nation that has become deeply divided between pro- and anti-Islamist factions."/>
<meta name="news_keywords" content="tunisia, bardo museum, tourists killed, tunis attack tunisia attack, tunisia terrorism, tunisia death toll, tunisia museum, islamic state, isis, isil, islamic state tunsiia, arab spring, tunisia clashes, tunisia violence, tunisia libya"/>
<meta name="twitter:site" value="@WashingtonPost"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta property="og:description" content="The assault on Tunisias most renowned museum, in which gunmen killed at least 19 people, could heighten tensions in a nation that has become deeply divided between pro- and anti-Islamist factions."/>
<meta property="og:type" content="article"/>
<meta property="og:site_name" content="Washington Post"/>
<meta property="og:image" content="http://img.washingtonpost.com/rw/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429927.jpg"/>
<meta property="og:title" content="Attack stokes instability fears in North Africa"/>
<meta property="article:publisher" content="https://www.facebook.com/washingtonpost"/>
<meta property="fb:admins" content="1513210492"/>
<meta property="fb:app_id" content="41245586762"/>
<meta property="fb:admins" content="1244584375"/>
<meta property="fb:admins" content="4403963"/>
<meta property="fb:admins" content="2724956"/>
<meta property="fb:admins" content="500835072"/>
<meta property="og:url" content="http://www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html"/>
<meta name="section" content="/world/middle_east"/>
<meta name="commercialNode" content="/world"/>
<link rel="canonical" href="http://www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html"/>
<link rel="alternate" href="android-app://com.washingtonpost.android/wp-android/www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html"/>
<title>Attack stokes instability fears in North Africa - The Washington Post</title>
<meta
property="twitter:creator" content="@erinmcunningham">
<link rel="author" content="https://plus.google.com/+ErinCunningham">
property="twitter:creator" content="@erinmcunningham"/>
<link rel="author" content="https://plus.google.com/+ErinCunningham"/>
<!--[if (gt IE 8) | (IEMobile)]>
<!-->
<link rel="stylesheet" href="/pb/resources/css/headerfonts.css?_=f4b3d2">
<link rel="stylesheet" href="/pb/resources/css/headerfonts.css?_=f4b3d2"/>
<!--<![endif]-->
<!--[if (lt IE 9) & (!IEMobile)]><link rel="stylesheet" href="/pb/resources/css/headerfonts_ie.css?_=f4b3d2"/><![endif]-->
<link rel="stylesheet" href="/pb/resources/compact/type/default/styles/bc9d233e62887b11846ddc11bf4175c8.css?_=f4b3d2">
<link rel="stylesheet" href="/pb/resources/compact/template/rO4BZ28dpQ-m5p8EK5JWSsw/styles/ca81b2e4d5b093e7f72fbfe70484081e.css?_=f4b3d2">
<link rel="stylesheet" href="/pb/resource/style-rO4BZ28dpQ-m5p8EK5JWSsw-6de5b76f.css?_=f4b3d2">
<link rel="stylesheet" href="/pb/resources/compact/type/default/styles/bc9d233e62887b11846ddc11bf4175c8.css?_=f4b3d2"/>
<link rel="stylesheet" href="/pb/resources/compact/template/rO4BZ28dpQ-m5p8EK5JWSsw/styles/ca81b2e4d5b093e7f72fbfe70484081e.css?_=f4b3d2"/>
<link rel="stylesheet" href="/pb/resource/style-rO4BZ28dpQ-m5p8EK5JWSsw-6de5b76f.css?_=f4b3d2"/>
<script>
window.head_conf={head:"TWPHead"};
</script>
@ -92,7 +92,7 @@
<nav id="site-menu" class="nav-menu">
<form id="nav-search-mobile" method="get" action="http://www.washingtonpost.com/pb/newssearch/">
<button type="submit" class="fa fa-search"></button>
<input type="text" placeholder="Search" name="query" autocomplete="off">
<input type="text" placeholder="Search" name="query" autocomplete="off"/>
</form>
<ul id="site-menu-sections">
<li id="nav-screenreader-link"><a class="screenreader-link" href="http://www.washingtonpost.com/pb/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html?resType=accessibility">Accessibility for screenreader</a>
@ -201,7 +201,7 @@
</div>
<div id="wp-logo-for-print">
<img src="//www.washingtonpost.com/pb/resources/img/washingtonpost_black_32.png"
alt="The Washington Post">
alt="The Washington Post"/>
</div>
</div>
<div class="nav-middle nav-section">
@ -209,7 +209,7 @@
</div>
<div class="nav-right nav-section">
<form id="nav-search" method="get" action="http://www.washingtonpost.com/newssearch/">
<input type="text" placeholder="Search" name="query" autocomplete="off">
<input type="text" placeholder="Search" name="query" autocomplete="off"/>
<button type="submit" class="fa fa-search"></button>
</form>
<div id="nav-ad">
@ -293,7 +293,7 @@
<a
onclick="try{this.postShare.callPostShare(this, this.postShareObject, 'whatsapp://send?text=Attack%20stokes%20instability%20fears%20in%20North%20Africa - ', 'http://www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html', '' , null);}catch(err){ window.location.href = 'whatsapp://send?text=Attack%20stokes%20instability%20fears%20in%20North%20Africa - http%3A%2F%2Fwapo.st%2F1O61FwZ'; }return false;"
tabindex="_tbidx_">
<div class="whatsapp tool mobile"><span class="hideText">Share on Whatsapp</span><span class="fa fa-whatsapp"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAEhwAABIcBblSwhwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKMSURBVEiJnZVLSFVRFIb/czORKEqjJI0EoVKILMxB0cBJjYJGRhMD6TVs0kAhpw2qSdkoCGoSQkENehBKUSARCtqggiJudUGjh4+KEDW/BmftXB3OuXr7YbH3Wa9/r33WWScCtAg2S9olqdnWHZLGJA05GZb0KzMDkCV1QD9LwzhwJCtXlFHJCUkXJK2SNCnpiZ14UNKIpA2SWqyyPZK2WdxdSScljRarZAXw0J3wFrC+SLVBOoBJi5kADnh70vmyOX4GDi0huZda4J4jqk0j2QfMAzNAU4kEXsJNPEiSrAEKZux2AduBO8ClEkg2uqs77kl6TDkElJkuB3xgATtLIOqwmO9ApYAI+GTK/c5xN//iYonX9sri2nPWhtWSkPTcNV51oq1bMj+2dDyz9WBO0lZ7eCtpyjkNuP28pM4SSYZsbchJqrGHwYTTF0lPbT+peHSUgpCvJiep3CVN4pSkGUlVkq6WSDJua0VOUt4eGlMcRyR12b5N0hlJkbMvl1SZQdJs65jvokJGl0RAr+uyfuLhWQEMANPWecnxc878HwuoAmZNUZ9BtAy44Yh+APlEi38zvxDzyPRdQRESXCvS9xFwzJKlIe98G61CgIagbDHFHNBQhEjAOqALeOEI3rEwEcqAQdNfJzEg35uhbRESL1uI51vkdN2WpwCs9iT1ZvhJ/E/53wncTjzFwY2oYOw0Q68LaLJTLiV5NfG0Dujx9rAZNuNZ4LzdccB9oBUoTyReCewFTgNfzXcKOJo8RLjXNEwQ/8QC5oy8D3gN/E749wGb0ir1LwrgI/GH1Urc8/VW3WjKIaaJ/z9XgMNpyYNEwE1JbyTd1sLkTMNaSXWSaiUVJL2UNFvE/y/+AObPwGxY9EFMAAAAAElFTkSuQmCC"></span>
<div class="whatsapp tool mobile"><span class="hideText">Share on Whatsapp</span><span class="fa fa-whatsapp"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAEhwAABIcBblSwhwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKMSURBVEiJnZVLSFVRFIb/czORKEqjJI0EoVKILMxB0cBJjYJGRhMD6TVs0kAhpw2qSdkoCGoSQkENehBKUSARCtqggiJudUGjh4+KEDW/BmftXB3OuXr7YbH3Wa9/r33WWScCtAg2S9olqdnWHZLGJA05GZb0KzMDkCV1QD9LwzhwJCtXlFHJCUkXJK2SNCnpiZ14UNKIpA2SWqyyPZK2WdxdSScljRarZAXw0J3wFrC+SLVBOoBJi5kADnh70vmyOX4GDi0huZda4J4jqk0j2QfMAzNAU4kEXsJNPEiSrAEKZux2AduBO8ClEkg2uqs77kl6TDkElJkuB3xgATtLIOqwmO9ApYAI+GTK/c5xN//iYonX9sri2nPWhtWSkPTcNV51oq1bMj+2dDyz9WBO0lZ7eCtpyjkNuP28pM4SSYZsbchJqrGHwYTTF0lPbT+peHSUgpCvJiep3CVN4pSkGUlVkq6WSDJua0VOUt4eGlMcRyR12b5N0hlJkbMvl1SZQdJs65jvokJGl0RAr+uyfuLhWQEMANPWecnxc878HwuoAmZNUZ9BtAy44Yh+APlEi38zvxDzyPRdQRESXCvS9xFwzJKlIe98G61CgIagbDHFHNBQhEjAOqALeOEI3rEwEcqAQdNfJzEg35uhbRESL1uI51vkdN2WpwCs9iT1ZvhJ/E/53wncTjzFwY2oYOw0Q68LaLJTLiV5NfG0Dujx9rAZNuNZ4LzdccB9oBUoTyReCewFTgNfzXcKOJo8RLjXNEwQ/8QC5oy8D3gN/E749wGb0ir1LwrgI/GH1Urc8/VW3WjKIaaJ/z9XgMNpyYNEwE1JbyTd1sLkTMNaSXWSaiUVJL2UNFvE/y/+AObPwGxY9EFMAAAAAElFTkSuQmCC"/></span>
</div>
</a><a onclick="try{this.postShare.callPostShare(this, this.postShareObject, '//pinterest.com/pin/create/button/?url=', 'http://www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html', '&amp;media=http://img.washingtonpost.com/rw/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429927.jpg&amp;description=Attack+stokes+instability+fears+in+North+Africa' , 'width=550,height=450,scrollbars=no');}catch(err){ window.open('//pinterest.com/pin/create/button/?url=http%3A%2F%2Fwapo.st%2F1O61FwZ&amp;media=http://img.washingtonpost.com/rw/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429927.jpg&amp;description=Attack+stokes+instability+fears+in+North+Africa','share_linkedin','width=550,height=450,scrollbars=no'); }return false;"
@ -361,11 +361,11 @@
<article>
<div class="inline-content inline-gallery-embedded">
<link href="//www.washingtonpost.com/pb/resources/compact/type/ssiSingle/styles/b2571cf5dfafe5a7760aba08fea63fd6.css"
rel="stylesheet">
rel="stylesheet"/>
<link href="//www.washingtonpost.com/pb/resources/compact/template/rcbXA58IiRzCmehOAc0OM-Q/styles/6bf32f216c50d6ab0c64d68d81d5ebb5.css"
rel="stylesheet">
rel="stylesheet"/>
<link href="//www.washingtonpost.com/pb/resource/style-rcbXA58IiRzCmehOAc0OM-Q-6a954a58.css"
rel="stylesheet">
rel="stylesheet"/>
<script src="//www.washingtonpost.com/pb/resource/headjs-rcbXA58IiRzCmehOAc0OM-Q-6a954a58.js"
type="text/javascript"></script>
<div class="pb-feature-ssi-single pb-f-gallery-gallery" data-pb-content-uri="/pb/galleryEmbed/ef22654e-cd72-11e4-8c54-ffb5ba6f2f69"
@ -554,7 +554,7 @@
<div class="wp-volt-gal-embed-promo-mid">
<div class="cell">
<div class="wp-volt-gal-embed-promo-mid-img-container">
<img src="https://img.washingtonpost.com/rf/image_606w/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429732.jpg">
<img src="https://img.washingtonpost.com/rf/image_606w/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429732.jpg"/>
</div>
<div class="wp-volt-gal-embed-promo-mid-label"><i class="fa fa-camera"></i>View Photos</div>
</div>
@ -673,11 +673,11 @@
tools to fight militants.</p>
<div class="inline-content inline-gallery-embedded">
<link href="//www.washingtonpost.com/pb/resources/compact/type/ssiSingle/styles/b2571cf5dfafe5a7760aba08fea63fd6.css"
rel="stylesheet">
rel="stylesheet"/>
<link href="//www.washingtonpost.com/pb/resources/compact/template/rcbXA58IiRzCmehOAc0OM-Q/styles/6bf32f216c50d6ab0c64d68d81d5ebb5.css"
rel="stylesheet">
rel="stylesheet"/>
<link href="//www.washingtonpost.com/pb/resource/style-rcbXA58IiRzCmehOAc0OM-Q-6a954a58.css"
rel="stylesheet">
rel="stylesheet"/>
<script src="//www.washingtonpost.com/pb/resource/headjs-rcbXA58IiRzCmehOAc0OM-Q-6a954a58.js"
type="text/javascript"></script>
<div class="pb-feature-ssi-single pb-f-gallery-gallery" data-pb-content-uri="/pb/galleryEmbed/b9af65dc-cd7d-11e4-a2a7-9517a3a70506"
@ -796,7 +796,7 @@
<div class="wp-volt-gal-embed-promo-mid">
<div class="cell">
<div class="wp-volt-gal-embed-promo-mid-img-container">
<img src="https://img.washingtonpost.com/rf/image_606w/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/144714787.jpg">
<img src="https://img.washingtonpost.com/rf/image_606w/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/144714787.jpg"/>
</div>
<div class="wp-volt-gal-embed-promo-mid-label"><i class="fa fa-camera"></i>View Photos</div>
</div>
@ -852,7 +852,7 @@
fire for what many Tunisians saw as a failure to crack down on Islamist
extremists.</p>
<div class="inline-content inline-graphic-linked">
<div class="photo-wrapper"> <a href="http://www.washingtonpost.com/world/foreign-fighters-flow-to-syria/2015/01/27/7fa56b70-a631-11e4-a7c2-03d37af98440_graphic.html"><img class="unprocessed" data-hi-res-src="https://img.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/01/27/Foreign/Graphics/foreignFighters-Jan14-GS.jpg?uuid=CDUNJKYyEeShYhIdBsp38Q" data-low-res-src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/01/27/Foreign/Graphics/foreignFighters-Jan14-GS.jpg?uuid=CDUNJKYyEeShYhIdBsp38Q" src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/01/27/Foreign/Graphics/foreignFighters-Jan14-GS.jpg?uuid=CDUNJKYyEeShYhIdBsp38Q"></a>
<div class="photo-wrapper"> <a href="http://www.washingtonpost.com/world/foreign-fighters-flow-to-syria/2015/01/27/7fa56b70-a631-11e4-a7c2-03d37af98440_graphic.html"><img class="unprocessed" data-hi-res-src="https://img.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/01/27/Foreign/Graphics/foreignFighters-Jan14-GS.jpg?uuid=CDUNJKYyEeShYhIdBsp38Q" data-low-res-src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/01/27/Foreign/Graphics/foreignFighters-Jan14-GS.jpg?uuid=CDUNJKYyEeShYhIdBsp38Q" src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/01/27/Foreign/Graphics/foreignFighters-Jan14-GS.jpg?uuid=CDUNJKYyEeShYhIdBsp38Q"/></a>
<a
href="http://www.washingtonpost.com/world/foreign-fighters-flow-to-syria/2015/01/27/7fa56b70-a631-11e4-a7c2-03d37af98440_graphic.html"> <span class="overlay"> <span class="headline">Map: Flow of foreign fighters to Syria </span>
@ -890,8 +890,8 @@
<div class="inline-content inline-graphic-embedded">
<img class="unprocessed" data-hi-res-src="https://img.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ"
data-low-res-src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ"
src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ">
<br>
src="https://img.washingtonpost.com/rf/image_480w/2010-2019/WashingtonPost/2015/03/18/Foreign/Graphics/tunisia600.jpg?uuid=1_yuLs2LEeSHME9HNBbnWQ"/>
<br/>
</div>
<p>Officials are worried about the number of Tunisian militants who may have
joined the jihadists in Libya — with the goal of returning home to fight
@ -1144,7 +1144,7 @@
</div>
<div id="echo-more-comments-top">
<div style="font-size: 11px;">
<br>Comments our editors find particularly useful or relevant are displayed
<br/>Comments our editors find particularly useful or relevant are displayed
in <strong>Top Comments</strong>, as are comments by users with these badges: <strong><span class="badge-list"></span></strong>.
Replies to those posts appear here, as well as posts by staff writers.</div>
</div>
@ -1240,13 +1240,13 @@
<p class="title" id="newsletter-tagline"></p>
<form method="post" action="http://link.washingtonpost.com/s">
<input type="text" name="email" id="newsLetter-input" class="newsLetter-field"
placeholder="E-mail address">
<input type="submit" value="Add" class="newsLetter-btn" id="subscribe-newsLetter">
<input type="hidden" name="template" value="" id="template-var">
<input type="hidden" name="vars[simple_signup]" value="1">
<input type="hidden" name="vars[simple]" value="1">
<input type="hidden" name="" value="1" id="variable-var">
<input type="hidden" name="redirect" value="" id="redirect-url">
placeholder="E-mail address"/>
<input type="submit" value="Add" class="newsLetter-btn" id="subscribe-newsLetter"/>
<input type="hidden" name="template" value="" id="template-var"/>
<input type="hidden" name="vars[simple_signup]" value="1"/>
<input type="hidden" name="vars[simple]" value="1"/>
<input type="hidden" name="" value="1" id="variable-var"/>
<input type="hidden" name="redirect" value="" id="redirect-url"/>
</form>
<p class="newsLetter-error-msg">Please enter a valid email address</p>
</div>
@ -1267,27 +1267,27 @@
</div>
<ul class="large def-feed">
<li> <a href="http://www.washingtonpost.com/blogs/worldviews/wp/2015/03/18/why-was-a-9th-century-viking-woman-buried-with-a-ring-that-says-for-allah-on-it/?tid=pm_world_pop"> <div class="number left">1</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Interactivity/Images/339633.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Interactivity/Images/339633.jpg" width="138" height="92"> <div class="headline ">Why was a 9th century Viking woman buried with a ring that says 'for Allah' on it?</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/blogs/worldviews/wp/2015/03/18/why-was-a-9th-century-viking-woman-buried-with-a-ring-that-says-for-allah-on-it/?tid=pm_world_pop"> <div class="number left">1</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Interactivity/Images/339633.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Interactivity/Images/339633.jpg" width="138" height="92"/> <div class="headline ">Why was a 9th century Viking woman buried with a ring that says 'for Allah' on it?</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html?tid=pm_world_pop"> <div class="number left">2</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429732-6547.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429732-6547.jpg" width="138" height="92"> <div class="headline ">Attack stokes instability fears in North Africa</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html?tid=pm_world_pop"> <div class="number left">2</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429732-6547.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429732-6547.jpg" width="138" height="92"/> <div class="headline ">Attack stokes instability fears in North Africa</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/world/netanyahu-sweeps-to-victory-in-israeli-election/2015/03/18/af4e50ca-ccf2-11e4-8730-4f473416e759_story.html?tid=pm_world_pop"> <div class="number left">3</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/Wires/Videos/2015-03-18/AP/Images/TS-Was8911803.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/Wires/Videos/2015-03-18/AP/Images/TS-Was8911803.jpg" width="138" height="92"> <div class="headline ">Now comes the hard part for Netanyahu</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/world/netanyahu-sweeps-to-victory-in-israeli-election/2015/03/18/af4e50ca-ccf2-11e4-8730-4f473416e759_story.html?tid=pm_world_pop"> <div class="number left">3</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/Wires/Videos/2015-03-18/AP/Images/TS-Was8911803.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/Wires/Videos/2015-03-18/AP/Images/TS-Was8911803.jpg" width="138" height="92"/> <div class="headline ">Now comes the hard part for Netanyahu</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/blogs/worldviews/wp/2015/03/18/how-netanyahu-won-and-what-happens-now/?tid=pm_world_pop"> <div class="number left">4</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/worldviews/201503/Images/2015-03-18T000133Z_01_NIR01_RTRIDSP_3_ISRAEL-ELECTION.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/worldviews/201503/Images/2015-03-18T000133Z_01_NIR01_RTRIDSP_3_ISRAEL-ELECTION.jpg" width="138" height="92"> <div class="headline ">How Netanyahu won - and what happens now</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/blogs/worldviews/wp/2015/03/18/how-netanyahu-won-and-what-happens-now/?tid=pm_world_pop"> <div class="number left">4</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/worldviews/201503/Images/2015-03-18T000133Z_01_NIR01_RTRIDSP_3_ISRAEL-ELECTION.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/worldviews/201503/Images/2015-03-18T000133Z_01_NIR01_RTRIDSP_3_ISRAEL-ELECTION.jpg" width="138" height="92"/> <div class="headline ">How Netanyahu won - and what happens now</div> <div class="clear"></div> </a>
</li>
<li class="last"> <a href="http://www.washingtonpost.com/world/singapore-tries-to-imagine-a-future-without-lee-kuan-yew/2015/03/18/b12acc7c-cbe7-11e4-8730-4f473416e759_story.html?tid=pm_world_pop"> <div class="number left">5</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/Wires/Videos/201503/Reuters/Images/Singapore_Lee_Kuan_Yew-0934c.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/Wires/Videos/201503/Reuters/Images/Singapore_Lee_Kuan_Yew-0934c.jpg" width="138" height="92"> <div class="headline ">Singapore tries to imagine a future without its founder, Lee Kuan Yew</div> <div class="clear"></div> </a>
<li class="last"> <a href="http://www.washingtonpost.com/world/singapore-tries-to-imagine-a-future-without-lee-kuan-yew/2015/03/18/b12acc7c-cbe7-11e4-8730-4f473416e759_story.html?tid=pm_world_pop"> <div class="number left">5</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/Wires/Videos/201503/Reuters/Images/Singapore_Lee_Kuan_Yew-0934c.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/Wires/Videos/201503/Reuters/Images/Singapore_Lee_Kuan_Yew-0934c.jpg" width="138" height="92"/> <div class="headline ">Singapore tries to imagine a future without its founder, Lee Kuan Yew</div> <div class="clear"></div> </a>
</li>
</ul>
<ul class="large alt-feed">
<li> <a href="http://www.washingtonpost.com/blogs/worldviews/wp/2015/03/18/why-was-a-9th-century-viking-woman-buried-with-a-ring-that-says-for-allah-on-it/?tid=pm_world_pop_b"> <div class="number left">1</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Interactivity/Images/339633.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Interactivity/Images/339633.jpg" width="138" height="92"> <div class="headline ">Why was a 9th century Viking woman buried with a ring that says for Allah on it?</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/blogs/worldviews/wp/2015/03/18/why-was-a-9th-century-viking-woman-buried-with-a-ring-that-says-for-allah-on-it/?tid=pm_world_pop_b"> <div class="number left">1</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Interactivity/Images/339633.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Interactivity/Images/339633.jpg" width="138" height="92"/> <div class="headline ">Why was a 9th century Viking woman buried with a ring that says for Allah on it?</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html?tid=pm_world_pop_b"> <div class="number left">2</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg" width="138" height="92"> <div class="headline ">Where do strained U.S.-Israeli relations go after Netanyahus victory?</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html?tid=pm_world_pop_b"> <div class="number left">2</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg" width="138" height="92"/> <div class="headline ">Where do strained U.S.-Israeli relations go after Netanyahus victory?</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/world/singapore-tries-to-imagine-a-future-without-lee-kuan-yew/2015/03/18/b12acc7c-cbe7-11e4-8730-4f473416e759_story.html?tid=pm_world_pop_b"> <div class="number left">3</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Singapore_Lee_Kuan_Yew-0934c-6506.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Singapore_Lee_Kuan_Yew-0934c-6506.jpg" width="138" height="92"> <div class="headline ">Singapore tries to imagine a future without its founder, Lee Kuan Yew</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/world/singapore-tries-to-imagine-a-future-without-lee-kuan-yew/2015/03/18/b12acc7c-cbe7-11e4-8730-4f473416e759_story.html?tid=pm_world_pop_b"> <div class="number left">3</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Singapore_Lee_Kuan_Yew-0934c-6506.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Singapore_Lee_Kuan_Yew-0934c-6506.jpg" width="138" height="92"/> <div class="headline ">Singapore tries to imagine a future without its founder, Lee Kuan Yew</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html?tid=pm_world_pop_b"> <div class="number left">4</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429927.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429927.jpg" width="138" height="92"> <div class="headline ">Attack stokes instability fears in North Africa</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/world/gunmen-storm-museum-in-tunisia-killing-at-least-8/2015/03/18/00202e76-cd73-11e4-8730-4f473416e759_story.html?tid=pm_world_pop_b"> <div class="number left">4</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429927.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/Nic6429927.jpg" width="138" height="92"/> <div class="headline ">Attack stokes instability fears in North Africa</div> <div class="clear"></div> </a>
</li>
<li class="last"> <a href="http://www.washingtonpost.com/world/netanyahu-sweeps-to-victory-in-israeli-election/2015/03/18/af4e50ca-ccf2-11e4-8730-4f473416e759_story.html?tid=pm_world_pop_b"> <div class="number left">5</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/2015-03-18T004343Z_01_JER149_RTRIDSP_3_ISRAEL-ELECTION-6494.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/2015-03-18T004343Z_01_JER149_RTRIDSP_3_ISRAEL-ELECTION-6494.jpg" width="138" height="92"> <div class="headline ">Now comes the hard part for Netanyahu</div> <div class="clear"></div> </a>
<li class="last"> <a href="http://www.washingtonpost.com/world/netanyahu-sweeps-to-victory-in-israeli-election/2015/03/18/af4e50ca-ccf2-11e4-8730-4f473416e759_story.html?tid=pm_world_pop_b"> <div class="number left">5</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/2015-03-18T004343Z_01_JER149_RTRIDSP_3_ISRAEL-ELECTION-6494.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/Foreign/Images/2015-03-18T004343Z_01_JER149_RTRIDSP_3_ISRAEL-ELECTION-6494.jpg" width="138" height="92"/> <div class="headline ">Now comes the hard part for Netanyahu</div> <div class="clear"></div> </a>
</li>
</ul>
<div id="slug_postmost" data-ad-type="postmost" style="display:none;width:100%;"></div>
@ -1308,7 +1308,7 @@
</div>
<ul class="large">
<li>
<div class="outer-div"> <a target="_blank" href="https://www.thedodo.com/dogs-who-are-smothering-the-cat-with-their-love-1047641763.html"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://assets.rbl.ms/605929/300x.jpg&amp;h=60&amp;w=60"> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://assets.rbl.ms/605929/300x.jpg&amp;h=92&amp;w=138"> </a>
<div class="outer-div"> <a target="_blank" href="https://www.thedodo.com/dogs-who-are-smothering-the-cat-with-their-love-1047641763.html"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://assets.rbl.ms/605929/300x.jpg&amp;h=60&amp;w=60"/> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://assets.rbl.ms/605929/300x.jpg&amp;h=92&amp;w=138"/> </a>
<a
target="_blank" href="http://www.thedodo.com">
<div class="feedname">The Dodo</div>
@ -1317,7 +1317,7 @@
<div class="clear"></div>
</li>
<li>
<div class="outer-div"> <a target="_blank" href="http://www.wnyc.org/story/race-and-latino-americans/"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://media2.wnyc.org/i/1500/1053/c/80/1/Rodner_Figueroa_getty.jpg&amp;h=60&amp;w=60"> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://media2.wnyc.org/i/1500/1053/c/80/1/Rodner_Figueroa_getty.jpg&amp;h=92&amp;w=138"> </a>
<div class="outer-div"> <a target="_blank" href="http://www.wnyc.org/story/race-and-latino-americans/"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://media2.wnyc.org/i/1500/1053/c/80/1/Rodner_Figueroa_getty.jpg&amp;h=60&amp;w=60"/> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://media2.wnyc.org/i/1500/1053/c/80/1/Rodner_Figueroa_getty.jpg&amp;h=92&amp;w=138"/> </a>
<a
target="_blank" href="http://www.wnyc.org">
<div class="feedname">WNYC - New York Public Radio</div>
@ -1326,7 +1326,7 @@
<div class="clear"></div>
</li>
<li>
<div class="outer-div"> <a target="_blank" href="http://feedproxy.google.com/~r/time/topstories/~3/iOi1SUVvooQ/"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://timedotcom.files.wordpress.com/2015/03/hillary-clinton8.jpg?quality=65&amp;strip=color&amp;w=150&amp;h=60&amp;w=60"> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://timedotcom.files.wordpress.com/2015/03/hillary-clinton8.jpg?quality=65&amp;strip=color&amp;w=150&amp;h=92&amp;w=138"> </a>
<div class="outer-div"> <a target="_blank" href="http://feedproxy.google.com/~r/time/topstories/~3/iOi1SUVvooQ/"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://timedotcom.files.wordpress.com/2015/03/hillary-clinton8.jpg?quality=65&amp;strip=color&amp;w=150&amp;h=60&amp;w=60"/> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://timedotcom.files.wordpress.com/2015/03/hillary-clinton8.jpg?quality=65&amp;strip=color&amp;w=150&amp;h=92&amp;w=138"/> </a>
<a
target="_blank" href="http://www.time.com">
<div class="feedname">TIME</div>
@ -1359,7 +1359,7 @@
<div class="position-abs on-right game-player-container ghide">
<div class="position-rel full-width full-height game-player-container-inner overflow-hidden">
<iframe frameborder="0"></iframe>
<img class="screenshot position-abs on-left">
<img class="screenshot position-abs on-left"/>
</div>
<div class="close-button position-abs"><i class="fa fa-2x fa-times-circle"></i>
@ -1369,13 +1369,13 @@
<div class="game-widgets-container position-rel">
<div id="online-game-carousel-right-rail">
<ul class="games">
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/sudoku/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="470"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/sudoku/img/148x148.png" alt="sudoku"> <div> <h4>Sudoku</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Strategy</span> <p> Put on your Sudoku hat and get ready for a challenging Sudoku puzzle! </p> </div> </div> </a>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/sudoku/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="470"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/sudoku/img/148x148.png" alt="sudoku"/> <div> <h4>Sudoku</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Strategy</span> <p> Put on your Sudoku hat and get ready for a challenging Sudoku puzzle! </p> </div> </div> </a>
</li>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/daily-crossword/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="450"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/daily-crossword/img/148x148.png" alt="daily-crossword"> <div> <h4>Daily Crossword</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Word</span> <p> Same fun of crosswords but online! </p> </div> </div> </a>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/daily-crossword/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="450"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/daily-crossword/img/148x148.png" alt="daily-crossword"/> <div> <h4>Daily Crossword</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Word</span> <p> Same fun of crosswords but online! </p> </div> </div> </a>
</li>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/just-words/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="455"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/masque-just-words/img/148x148.png" alt="masque-just-words"> <div> <h4>Just Words</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Word</span> <p> Get ready to be wowed with wonderful word fun! </p> </div> </div> </a>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/just-words/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="455"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/masque-just-words/img/148x148.png" alt="masque-just-words"/> <div> <h4>Just Words</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Word</span> <p> Get ready to be wowed with wonderful word fun! </p> </div> </div> </a>
</li>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block html5"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/trizzle/html5?type=gamesembed" onlinegamecodelanguage="html5" iframewidth="650px" iframeheight="0"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/html5-trizzle/img/292x194.png" alt="html5-trizzle"> <div> <h4>Trizzle</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Strategy</span> <p> Experience the joy of Trizzle! </p> </div> </div> </a>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block html5"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/trizzle/html5?type=gamesembed" onlinegamecodelanguage="html5" iframewidth="650px" iframeheight="0"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/html5-trizzle/img/292x194.png" alt="html5-trizzle"/> <div> <h4>Trizzle</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Strategy</span> <p> Experience the joy of Trizzle! </p> </div> </div> </a>
</li>
</ul>
</div> <a href="#" id="ui-carousel-prev" class="up-arrow position-abs on-top on-right"><i class="icon-chevron-up icon-2x"></i></a>
@ -1489,34 +1489,34 @@
</div>
<form method="post" action="http://link.washingtonpost.com/s" id="signup-form">
<input type="text" name="email" class="signup-field" placeholder="E-mail address"
id="newsLetter-input-banner">
<input type="submit" value="Add" class="submit-btn signup" id="signup-newsLetter">
<input type="hidden" name="template" value="" id="template-var-banner">
<input type="hidden" name="vars[simple_signup]" value="1">
<input type="hidden" name="vars[simple]" value="2" id="banner-simple-var">
<input type="hidden" name="" value="1" id="variable-var-banner">
<input type="hidden" name="redirect" value="" id="redirect-url-banner">
id="newsLetter-input-banner"/>
<input type="submit" value="Add" class="submit-btn signup" id="signup-newsLetter"/>
<input type="hidden" name="template" value="" id="template-var-banner"/>
<input type="hidden" name="vars[simple_signup]" value="1"/>
<input type="hidden" name="vars[simple]" value="2" id="banner-simple-var"/>
<input type="hidden" name="" value="1" id="variable-var-banner"/>
<input type="hidden" name="redirect" value="" id="redirect-url-banner"/>
</form>
<div class="clear"></div>
<div class="newsletter-suggestions">
<p class="title">You might also like:</p>
<div class="suggestion-list">
<div class="suggestion">
<input type="checkbox" class="checkbox">
<input type="checkbox" class="checkbox"/>
<p class="title">Name of Related Newsletter (daily)</p>
</div>
<div class="suggestion">
<input type="checkbox" class="checkbox">
<input type="checkbox" class="checkbox"/>
<p class="title">Another Related Newsletter (M-W-F)</p>
</div>
<div class="suggestion">
<input type="checkbox" class="checkbox">
<input type="checkbox" class="checkbox"/>
<p class="title">This Newsletter is Good (weekly)</p>
</div>
</div>
<div class="suggestion-buttons">
<input type="submit" value="No, thanks" class="submit-btn signup" id="signup-cancel">
<input type="submit" value="Sign Up" class="submit-btn signup" id="signup-more">
<input type="submit" value="No, thanks" class="submit-btn signup" id="signup-cancel"/>
<input type="submit" value="Sign Up" class="submit-btn signup" id="signup-more"/>
</div>
</div> <span class="not-now-btn subscribe"> <p class="label">Not Now</p> <a class="link"><i class="fa fa-times"></i></a> </span>
</div>
@ -1546,8 +1546,7 @@
window.TWPHead.ready("main.js",function(){window.TWP&&TWP.Analytics&&TWP.Analytics.init("production"=="production"?"":{suite:"preproduction"})});
</script>
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=3005617&cv=2.0&cj=1"
/>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=3005617&cv=2.0&cj=1" />
</noscript>
<script type="text/javascript" src="//widget.perfectmarket.com/wwwwashingtonpost/load.js"></script>
<script type="text/javascript">
@ -1558,4 +1557,4 @@
</script>
</body>
</html>
</html>

@ -29,7 +29,7 @@
<p>“That could be an issue forced onto the agenda about the same time as a potential nuclear deal.”</p>
</article>
<div class="post-body-sig-line">
<a href="http://www.washingtonpost.com/people/steven-mufson"><img class="post-body-headshot-left" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=http://www.washingtonpost.com/blogs/wonkblog/files/2014/07/mufson_steve.jpg&amp;h=180&amp;w=180"></a>
<a href="http://www.washingtonpost.com/people/steven-mufson"><img class="post-body-headshot-left" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=http://www.washingtonpost.com/blogs/wonkblog/files/2014/07/mufson_steve.jpg&amp;h=180&amp;w=180"/></a>
<p class="post-body-bio has-photo">Steven Mufson covers the White House. Since joining The Post, he has covered economics, China, foreign policy and energy.</p>
</div>
</div>

@ -2,43 +2,43 @@
<html>
<head>
<meta name="eomportal-uuid" content="ca175d64-cd76-11e4-a2a7-9517a3a70506">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes, minimum-scale=0.5, maximum-scale=2.0">
<meta name="keywords" content="business">
<meta name="description" content="Few foreign leaders have so brazenly stood up to President Obama and the relationship could face its next test this month.">
<meta name="news_keywords" content="business">
<meta name="twitter:site" value="@WashingtonPost">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:description" content="Few foreign leaders have so brazenly stood up to President Obama and the relationship could face its next test this month.">
<meta property="og:type" content="article">
<meta property="og:site_name" content="Washington Post">
<meta property="og:image" content="http://img.washingtonpost.com/rw/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg">
<meta property="og:title" content="Where do strained U.S.-Israeli relations go after Netanyahus victory?">
<meta property="article:publisher" content="https://www.facebook.com/washingtonpost">
<meta property="fb:admins" content="1513210492">
<meta property="fb:app_id" content="41245586762">
<meta property="fb:admins" content="1244584375">
<meta property="fb:admins" content="4403963">
<meta property="fb:admins" content="2724956">
<meta property="fb:admins" content="500835072">
<meta property="og:url" content="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html">
<meta name="section" content="/world/middle_east">
<meta name="commercialNode" content="/business/economy">
<link rel="canonical" href="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html">
<link rel="alternate" href="android-app://com.washingtonpost.android/wp-android/www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html">
<meta name="eomportal-uuid" content="ca175d64-cd76-11e4-a2a7-9517a3a70506"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes, minimum-scale=0.5, maximum-scale=2.0"/>
<meta name="keywords" content="business"/>
<meta name="description" content="Few foreign leaders have so brazenly stood up to President Obama and the relationship could face its next test this month."/>
<meta name="news_keywords" content="business"/>
<meta name="twitter:site" value="@WashingtonPost"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta property="og:description" content="Few foreign leaders have so brazenly stood up to President Obama and the relationship could face its next test this month."/>
<meta property="og:type" content="article"/>
<meta property="og:site_name" content="Washington Post"/>
<meta property="og:image" content="http://img.washingtonpost.com/rw/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg"/>
<meta property="og:title" content="Where do strained U.S.-Israeli relations go after Netanyahus victory?"/>
<meta property="article:publisher" content="https://www.facebook.com/washingtonpost"/>
<meta property="fb:admins" content="1513210492"/>
<meta property="fb:app_id" content="41245586762"/>
<meta property="fb:admins" content="1244584375"/>
<meta property="fb:admins" content="4403963"/>
<meta property="fb:admins" content="2724956"/>
<meta property="fb:admins" content="500835072"/>
<meta property="og:url" content="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"/>
<meta name="section" content="/world/middle_east"/>
<meta name="commercialNode" content="/business/economy"/>
<link rel="canonical" href="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"/>
<link rel="alternate" href="android-app://com.washingtonpost.android/wp-android/www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html"/>
<title>Where do strained U.S.-Israeli relations go after Netanyahus victory?
- The Washington Post</title>
<meta property="twitter:creator" content="@StevenMufson">
<meta property="twitter:creator" content="@StevenMufson"/>
<!--[if (gt IE 8) | (IEMobile)]>
<!-->
<link rel="stylesheet" href="/pb/resources/css/headerfonts.css?_=f4b3d2">
<link rel="stylesheet" href="/pb/resources/css/headerfonts.css?_=f4b3d2"/>
<!--<![endif]-->
<!--[if (lt IE 9) & (!IEMobile)]><link rel="stylesheet" href="/pb/resources/css/headerfonts_ie.css?_=f4b3d2"/><![endif]-->
<link rel="stylesheet" href="/pb/resources/compact/type/default/styles/bc9d233e62887b11846ddc11bf4175c8.css?_=f4b3d2">
<link rel="stylesheet" href="/pb/resources/compact/template/rZcHWoZzuToaTieQLcQMUOw/styles/ca81b2e4d5b093e7f72fbfe70484081e.css?_=f4b3d2">
<link rel="stylesheet" href="/pb/resource/style-rZcHWoZzuToaTieQLcQMUOw-6de5b76f.css?_=f4b3d2">
<link rel="stylesheet" href="/pb/resources/compact/type/default/styles/bc9d233e62887b11846ddc11bf4175c8.css?_=f4b3d2"/>
<link rel="stylesheet" href="/pb/resources/compact/template/rZcHWoZzuToaTieQLcQMUOw/styles/ca81b2e4d5b093e7f72fbfe70484081e.css?_=f4b3d2"/>
<link rel="stylesheet" href="/pb/resource/style-rZcHWoZzuToaTieQLcQMUOw-6de5b76f.css?_=f4b3d2"/>
<script>
window.head_conf={head:"TWPHead"};
</script>
@ -91,7 +91,7 @@
<nav id="site-menu" class="nav-menu">
<form id="nav-search-mobile" method="get" action="http://www.washingtonpost.com/pb/newssearch/">
<button type="submit" class="fa fa-search"></button>
<input type="text" placeholder="Search" name="query" autocomplete="off">
<input type="text" placeholder="Search" name="query" autocomplete="off"/>
</form>
<ul id="site-menu-sections">
<li id="nav-screenreader-link"><a class="screenreader-link" href="http://www.washingtonpost.com/pb/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html?resType=accessibility">Accessibility for screenreader</a>
@ -171,7 +171,7 @@
</div>
<div id="wp-logo-for-print">
<img src="//www.washingtonpost.com/pb/resources/img/washingtonpost_black_32.png"
alt="The Washington Post">
alt="The Washington Post"/>
</div>
</div>
<div class="nav-middle nav-section">
@ -179,7 +179,7 @@
</div>
<div class="nav-right nav-section">
<form id="nav-search" method="get" action="http://www.washingtonpost.com/newssearch/">
<input type="text" placeholder="Search" name="query" autocomplete="off">
<input type="text" placeholder="Search" name="query" autocomplete="off"/>
<button type="submit" class="fa fa-search"></button>
</form>
<div id="nav-ad">
@ -256,7 +256,7 @@
<a
onclick="try{this.postShare.callPostShare(this, this.postShareObject, 'whatsapp://send?text=Where%20do%20strained%20U.S.-Israeli%20relations%20go%20after%20Netanyahu%E2%80%99s%20victory%3F - ', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '' , null);}catch(err){ window.location.href = 'whatsapp://send?text=Where%20do%20strained%20U.S.-Israeli%20relations%20go%20after%20Netanyahu%E2%80%99s%20victory%3F - http%3A%2F%2Fwapo.st%2F1Era2Lw'; }return false;"
tabindex="_tbidx_">
<div class="whatsapp tool mobile"><span class="hideText">Share on Whatsapp</span><span class="fa fa-whatsapp"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAEhwAABIcBblSwhwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKMSURBVEiJnZVLSFVRFIb/czORKEqjJI0EoVKILMxB0cBJjYJGRhMD6TVs0kAhpw2qSdkoCGoSQkENehBKUSARCtqggiJudUGjh4+KEDW/BmftXB3OuXr7YbH3Wa9/r33WWScCtAg2S9olqdnWHZLGJA05GZb0KzMDkCV1QD9LwzhwJCtXlFHJCUkXJK2SNCnpiZ14UNKIpA2SWqyyPZK2WdxdSScljRarZAXw0J3wFrC+SLVBOoBJi5kADnh70vmyOX4GDi0huZda4J4jqk0j2QfMAzNAU4kEXsJNPEiSrAEKZux2AduBO8ClEkg2uqs77kl6TDkElJkuB3xgATtLIOqwmO9ApYAI+GTK/c5xN//iYonX9sri2nPWhtWSkPTcNV51oq1bMj+2dDyz9WBO0lZ7eCtpyjkNuP28pM4SSYZsbchJqrGHwYTTF0lPbT+peHSUgpCvJiep3CVN4pSkGUlVkq6WSDJua0VOUt4eGlMcRyR12b5N0hlJkbMvl1SZQdJs65jvokJGl0RAr+uyfuLhWQEMANPWecnxc878HwuoAmZNUZ9BtAy44Yh+APlEi38zvxDzyPRdQRESXCvS9xFwzJKlIe98G61CgIagbDHFHNBQhEjAOqALeOEI3rEwEcqAQdNfJzEg35uhbRESL1uI51vkdN2WpwCs9iT1ZvhJ/E/53wncTjzFwY2oYOw0Q68LaLJTLiV5NfG0Dujx9rAZNuNZ4LzdccB9oBUoTyReCewFTgNfzXcKOJo8RLjXNEwQ/8QC5oy8D3gN/E749wGb0ir1LwrgI/GH1Urc8/VW3WjKIaaJ/z9XgMNpyYNEwE1JbyTd1sLkTMNaSXWSaiUVJL2UNFvE/y/+AObPwGxY9EFMAAAAAElFTkSuQmCC"></span>
<div class="whatsapp tool mobile"><span class="hideText">Share on Whatsapp</span><span class="fa fa-whatsapp"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAEhwAABIcBblSwhwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKMSURBVEiJnZVLSFVRFIb/czORKEqjJI0EoVKILMxB0cBJjYJGRhMD6TVs0kAhpw2qSdkoCGoSQkENehBKUSARCtqggiJudUGjh4+KEDW/BmftXB3OuXr7YbH3Wa9/r33WWScCtAg2S9olqdnWHZLGJA05GZb0KzMDkCV1QD9LwzhwJCtXlFHJCUkXJK2SNCnpiZ14UNKIpA2SWqyyPZK2WdxdSScljRarZAXw0J3wFrC+SLVBOoBJi5kADnh70vmyOX4GDi0huZda4J4jqk0j2QfMAzNAU4kEXsJNPEiSrAEKZux2AduBO8ClEkg2uqs77kl6TDkElJkuB3xgATtLIOqwmO9ApYAI+GTK/c5xN//iYonX9sri2nPWhtWSkPTcNV51oq1bMj+2dDyz9WBO0lZ7eCtpyjkNuP28pM4SSYZsbchJqrGHwYTTF0lPbT+peHSUgpCvJiep3CVN4pSkGUlVkq6WSDJua0VOUt4eGlMcRyR12b5N0hlJkbMvl1SZQdJs65jvokJGl0RAr+uyfuLhWQEMANPWecnxc878HwuoAmZNUZ9BtAy44Yh+APlEi38zvxDzyPRdQRESXCvS9xFwzJKlIe98G61CgIagbDHFHNBQhEjAOqALeOEI3rEwEcqAQdNfJzEg35uhbRESL1uI51vkdN2WpwCs9iT1ZvhJ/E/53wncTjzFwY2oYOw0Q68LaLJTLiV5NfG0Dujx9rAZNuNZ4LzdccB9oBUoTyReCewFTgNfzXcKOJo8RLjXNEwQ/8QC5oy8D3gN/E749wGb0ir1LwrgI/GH1Urc8/VW3WjKIaaJ/z9XgMNpyYNEwE1JbyTd1sLkTMNaSXWSaiUVJL2UNFvE/y/+AObPwGxY9EFMAAAAAElFTkSuQmCC"/></span>
</div>
</a><a onclick="try{this.postShare.callPostShare(this, this.postShareObject, '//pinterest.com/pin/create/button/?url=', 'http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html', '&amp;media=http://img.washingtonpost.com/rw/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg&amp;description=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F' , 'width=550,height=450,scrollbars=no');}catch(err){ window.open('//pinterest.com/pin/create/button/?url=http%3A%2F%2Fwapo.st%2F1Era2Lw&amp;media=http://img.washingtonpost.com/rw/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg&amp;description=Where+do+strained+U.S.-Israeli+relations+go+after+Netanyahu%E2%80%99s+victory%3F','share_linkedin','width=550,height=450,scrollbars=no'); }return false;"
tabindex="_tbidx_"> <div class="pinterest tool desktop mobile"><span class="hideText">Share on Pinterest</span><span class="fa fa-pinterest"></span></div> </a>
@ -311,8 +311,8 @@
<img class="unprocessed"
src="https://img.washingtonpost.com/rf/image_400w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg"
data-hi-res-src="https://img.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg"
data-low-res-src="https://img.washingtonpost.com/rf/image_400w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg">
<br> <span class="pb-caption">Israeli Prime Minister Benjamin Netanyahu reacts as he visits the Western Wall in Jerusalem on March 18 following his party's victory in Israel's general election. (Thomas Coex/AFP/Getty Images)</span>
data-low-res-src="https://img.washingtonpost.com/rf/image_400w/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1140.jpg?uuid=zLIZQs2KEeSip5UXo6cFBg"/>
<br/> <span class="pb-caption">Israeli Prime Minister Benjamin Netanyahu reacts as he visits the Western Wall in Jerusalem on March 18 following his party's victory in Israel's general election. (Thomas Coex/AFP/Getty Images)</span>
</div>
<div class="pb-sig-line hasnt-headshot has-0-headshots hasnt-bio is-not-column"> <span class="pb-byline">By <a href="http://www.washingtonpost.com/people/steven-mufson">Steven Mufson</a></span>
<span
@ -429,7 +429,7 @@
</div>
</article>
<div class="clear"></div>
<div class="post-body-sig-line"><a href="http://www.washingtonpost.com/people/steven-mufson"><img class="post-body-headshot-left" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=http://www.washingtonpost.com/blogs/wonkblog/files/2014/07/mufson_steve.jpg&amp;h=180&amp;w=180"></a>
<div class="post-body-sig-line"><a href="http://www.washingtonpost.com/people/steven-mufson"><img class="post-body-headshot-left" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=http://www.washingtonpost.com/blogs/wonkblog/files/2014/07/mufson_steve.jpg&amp;h=180&amp;w=180"/></a>
<div
class="post-body-bio has-photo">Steven Mufson covers the White House. Since joining The Post, he has covered
economics, China, foreign policy and energy.</div>
@ -640,7 +640,7 @@
</div>
<div id="echo-more-comments-top">
<div style="font-size: 11px;">
<br>Comments our editors find particularly useful or relevant are displayed
<br/>Comments our editors find particularly useful or relevant are displayed
in <strong>Top Comments</strong>, as are comments by users with these badges: <strong><span class="badge-list"></span></strong>.
Replies to those posts appear here, as well as posts by staff writers.</div>
</div>
@ -727,13 +727,13 @@
<p class="title" id="newsletter-tagline"></p>
<form method="post" action="http://link.washingtonpost.com/s">
<input type="text" name="email" id="newsLetter-input" class="newsLetter-field"
placeholder="E-mail address">
<input type="submit" value="Add" class="newsLetter-btn" id="subscribe-newsLetter">
<input type="hidden" name="template" value="" id="template-var">
<input type="hidden" name="vars[simple_signup]" value="1">
<input type="hidden" name="vars[simple]" value="1">
<input type="hidden" name="" value="1" id="variable-var">
<input type="hidden" name="redirect" value="" id="redirect-url">
placeholder="E-mail address"/>
<input type="submit" value="Add" class="newsLetter-btn" id="subscribe-newsLetter"/>
<input type="hidden" name="template" value="" id="template-var"/>
<input type="hidden" name="vars[simple_signup]" value="1"/>
<input type="hidden" name="vars[simple]" value="1"/>
<input type="hidden" name="" value="1" id="variable-var"/>
<input type="hidden" name="redirect" value="" id="redirect-url"/>
</form>
<p class="newsLetter-error-msg">Please enter a valid email address</p>
</div>
@ -753,27 +753,27 @@
<div class="pb-module-header">Most Read <span class="section">Business</span>
</div>
<ul class="large def-feed">
<li> <a href="http://www.washingtonpost.com/news/energy-environment/wp/2015/03/16/the-melting-of-antarctica-was-already-really-bad-it-just-got-worse/?tid=pm_business_pop"> <div class="number left">1</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="138" height="92"> <div class="headline ">The melting of Antarctica was already really bad. It just got worse.</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/news/energy-environment/wp/2015/03/16/the-melting-of-antarctica-was-already-really-bad-it-just-got-worse/?tid=pm_business_pop"> <div class="number left">1</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="138" height="92"/> <div class="headline ">The melting of Antarctica was already really bad. It just got worse.</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/the-worlds-longest-non-stop-flights-mapped/?tid=pm_business_pop"> <div class="number left">2</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="138" height="92"> <div class="headline ">The world's longest non-stop flights, mapped</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/the-worlds-longest-non-stop-flights-mapped/?tid=pm_business_pop"> <div class="number left">2</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="138" height="92"/> <div class="headline ">The world's longest non-stop flights, mapped</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/fed-signals-that-higher-interest-rates-are-coming/?tid=pm_business_pop"> <div class="number left">3</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="138" height="92"> <div class="headline ">Federal Reserve decision: Fed signals that higher interest rates are coming</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/fed-signals-that-higher-interest-rates-are-coming/?tid=pm_business_pop"> <div class="number left">3</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="138" height="92"/> <div class="headline ">Federal Reserve decision: Fed signals that higher interest rates are coming</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/the-most-popular-breakfast-cereals-in-america-today/?tid=pm_business_pop"> <div class="number left">4</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/2015-03-05T143249Z_01_TOR117_RTRIDSP_3_KROGER-RESULTS.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/2015-03-05T143249Z_01_TOR117_RTRIDSP_3_KROGER-RESULTS.jpg" width="138" height="92"> <div class="headline ">The most popular breakfast cereals in America today</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/the-most-popular-breakfast-cereals-in-america-today/?tid=pm_business_pop"> <div class="number left">4</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/2015-03-05T143249Z_01_TOR117_RTRIDSP_3_KROGER-RESULTS.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/2015-03-05T143249Z_01_TOR117_RTRIDSP_3_KROGER-RESULTS.jpg" width="138" height="92"/> <div class="headline ">The most popular breakfast cereals in America today</div> <div class="clear"></div> </a>
</li>
<li class="last"> <a href="http://www.washingtonpost.com/blogs/the-switch/wp/2015/03/18/tesla-just-won-a-huge-victory-in-new-jersey/?tid=pm_business_pop"> <div class="number left">5</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/the-switch/201503/Images/Screen-Shot-2014-10-22-at-11.32.40.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/the-switch/201503/Images/Screen-Shot-2014-10-22-at-11.32.40.jpg" width="138" height="92"> <div class="headline ">Tesla just won a huge victory in New Jersey</div> <div class="clear"></div> </a>
<li class="last"> <a href="http://www.washingtonpost.com/blogs/the-switch/wp/2015/03/18/tesla-just-won-a-huge-victory-in-new-jersey/?tid=pm_business_pop"> <div class="number left">5</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/the-switch/201503/Images/Screen-Shot-2014-10-22-at-11.32.40.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/the-switch/201503/Images/Screen-Shot-2014-10-22-at-11.32.40.jpg" width="138" height="92"/> <div class="headline ">Tesla just won a huge victory in New Jersey</div> <div class="clear"></div> </a>
</li>
</ul>
<ul class="large alt-feed">
<li> <a href="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html?tid=pm_business_pop_b"> <div class="number left">1</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg" width="138" height="92"> <div class="headline ">Where do strained U.S.-Israeli relations go after Netanyahus victory?</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/business/economy/netanyahu-win-points-to-two-more-years-of-strained-us-israel-ties/2015/03/18/ca175d64-cd76-11e4-a2a7-9517a3a70506_story.html?tid=pm_business_pop_b"> <div class="number left">1</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/2010-2019/WashingtonPost/2015/03/18/National-Economy/Images/Nic6429750-1138.jpg" width="138" height="92"/> <div class="headline ">Where do strained U.S.-Israeli relations go after Netanyahus victory?</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/news/energy-environment/wp/2015/03/16/the-melting-of-antarctica-was-already-really-bad-it-just-got-worse/?tid=pm_business_pop_b"> <div class="number left">2</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="138" height="92"> <div class="headline ">The melting of Antarctica was already really bad. It just got worse.</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/news/energy-environment/wp/2015/03/16/the-melting-of-antarctica-was-already-really-bad-it-just-got-worse/?tid=pm_business_pop_b"> <div class="number left">2</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/energy-environment/201503/Images/2012-02-07T003457Z_01_TOR105_RTRIDSP_3_USA.jpg" width="138" height="92"/> <div class="headline ">The melting of Antarctica was already really bad. It just got worse.</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/the-worlds-longest-non-stop-flights-mapped/?tid=pm_business_pop_b"> <div class="number left">3</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="138" height="92"> <div class="headline ">The worlds longest non-stop flights, mapped</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/the-worlds-longest-non-stop-flights-mapped/?tid=pm_business_pop_b"> <div class="number left">3</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/tumblr_n1zot9AsFt1s3dn7vo1_1280.png" width="138" height="92"/> <div class="headline ">The worlds longest non-stop flights, mapped</div> <div class="clear"></div> </a>
</li>
<li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/fed-signals-that-higher-interest-rates-are-coming/?tid=pm_business_pop_b"> <div class="number left">4</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="138" height="92"> <div class="headline ">Federal Reserve decision: Fed signals that higher interest rates are coming</div> <div class="clear"></div> </a>
<li> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/fed-signals-that-higher-interest-rates-are-coming/?tid=pm_business_pop_b"> <div class="number left">4</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/Was8907355.jpg" width="138" height="92"/> <div class="headline ">Federal Reserve decision: Fed signals that higher interest rates are coming</div> <div class="clear"></div> </a>
</li>
<li class="last"> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/2015-ncaa-tournament-your-guide-to-picking-all-the-upsets-in-this-years-ncaa-tournament/?tid=pm_business_pop_b"> <div class="number left">5</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/NCAA_South_Georgetowns_Past-0e6bf.jpg" width="60" height="60"> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/NCAA_South_Georgetowns_Past-0e6bf.jpg" width="138" height="92"> <div class="headline ">2015 NCAA tournament: Your guide to picking all the upsets in this years NCAA tournament</div> <div class="clear"></div> </a>
<li class="last"> <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2015/03/18/2015-ncaa-tournament-your-guide-to-picking-all-the-upsets-in-this-years-ncaa-tournament/?tid=pm_business_pop_b"> <div class="number left">5</div> <img class="photo right small-img" src="http://img.washingtonpost.com/rf/image_60x60/WashingtonPost/Content/Blogs/wonkblog/201503/Images/NCAA_South_Georgetowns_Past-0e6bf.jpg" width="60" height="60"/> <img class="photo right big-img" src="http://img.washingtonpost.com/rf/image_138x92/WashingtonPost/Content/Blogs/wonkblog/201503/Images/NCAA_South_Georgetowns_Past-0e6bf.jpg" width="138" height="92"/> <div class="headline ">2015 NCAA tournament: Your guide to picking all the upsets in this years NCAA tournament</div> <div class="clear"></div> </a>
</li>
</ul>
<div id="slug_postmost" data-ad-type="postmost" style="display:none;width:100%;"></div>
@ -794,7 +794,7 @@
</div>
<ul class="large">
<li>
<div class="outer-div"> <a target="_blank" href="https://www.thedodo.com/dogs-who-are-smothering-the-cat-with-their-love-1047641763.html"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://assets.rbl.ms/605929/300x.jpg&amp;h=60&amp;w=60"> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://assets.rbl.ms/605929/300x.jpg&amp;h=92&amp;w=138"> </a>
<div class="outer-div"> <a target="_blank" href="https://www.thedodo.com/dogs-who-are-smothering-the-cat-with-their-love-1047641763.html"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://assets.rbl.ms/605929/300x.jpg&amp;h=60&amp;w=60"/> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://assets.rbl.ms/605929/300x.jpg&amp;h=92&amp;w=138"/> </a>
<a
target="_blank" href="http://www.thedodo.com">
<div class="feedname">The Dodo</div>
@ -803,7 +803,7 @@
<div class="clear"></div>
</li>
<li>
<div class="outer-div"> <a target="_blank" href="http://www.wnyc.org/story/race-and-latino-americans/"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://media2.wnyc.org/i/1500/1053/c/80/1/Rodner_Figueroa_getty.jpg&amp;h=60&amp;w=60"> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://media2.wnyc.org/i/1500/1053/c/80/1/Rodner_Figueroa_getty.jpg&amp;h=92&amp;w=138"> </a>
<div class="outer-div"> <a target="_blank" href="http://www.wnyc.org/story/race-and-latino-americans/"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://media2.wnyc.org/i/1500/1053/c/80/1/Rodner_Figueroa_getty.jpg&amp;h=60&amp;w=60"/> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://media2.wnyc.org/i/1500/1053/c/80/1/Rodner_Figueroa_getty.jpg&amp;h=92&amp;w=138"/> </a>
<a
target="_blank" href="http://www.wnyc.org">
<div class="feedname">WNYC - New York Public Radio</div>
@ -812,7 +812,7 @@
<div class="clear"></div>
</li>
<li class="last">
<div class="outer-div"> <a target="_blank" href="http://feedproxy.google.com/~r/time/topstories/~3/nUTIa4bLKY8/"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://timedotcom.files.wordpress.com/2015/03/terry-mcauliffe.jpg?quality=65&amp;strip=color&amp;w=150&amp;h=60&amp;w=60"> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://timedotcom.files.wordpress.com/2015/03/terry-mcauliffe.jpg?quality=65&amp;strip=color&amp;w=150&amp;h=92&amp;w=138"> </a>
<div class="outer-div"> <a target="_blank" href="http://feedproxy.google.com/~r/time/topstories/~3/nUTIa4bLKY8/"> <img height="60" width="60" class="photo right small-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://timedotcom.files.wordpress.com/2015/03/terry-mcauliffe.jpg?quality=65&amp;strip=color&amp;w=150&amp;h=60&amp;w=60"/> <img height="92" width="138" class="photo right big-img" src="http://img.washingtonpost.com/wp-apps/imrs.php?src=https://timedotcom.files.wordpress.com/2015/03/terry-mcauliffe.jpg?quality=65&amp;strip=color&amp;w=150&amp;h=92&amp;w=138"/> </a>
<a
target="_blank" href="http://www.time.com">
<div class="feedname">TIME</div>
@ -845,7 +845,7 @@
<div class="position-abs on-right game-player-container ghide">
<div class="position-rel full-width full-height game-player-container-inner overflow-hidden">
<iframe frameborder="0"></iframe>
<img class="screenshot position-abs on-left">
<img class="screenshot position-abs on-left"/>
</div>
<div class="close-button position-abs"><i class="fa fa-2x fa-times-circle"></i>
</div>
@ -854,13 +854,13 @@
<div class="game-widgets-container position-rel">
<div id="online-game-carousel-right-rail">
<ul class="games">
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/sudoku/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="470"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/sudoku/img/148x148.png" alt="sudoku"> <div> <h4>Sudoku</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Strategy</span> <p> Put on your Sudoku hat and get ready for a challenging Sudoku puzzle! </p> </div> </div> </a>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/sudoku/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="470"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/sudoku/img/148x148.png" alt="sudoku"/> <div> <h4>Sudoku</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Strategy</span> <p> Put on your Sudoku hat and get ready for a challenging Sudoku puzzle! </p> </div> </div> </a>
</li>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/daily-crossword/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="450"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/daily-crossword/img/148x148.png" alt="daily-crossword"> <div> <h4>Daily Crossword</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Word</span> <p> Same fun of crosswords but online! </p> </div> </div> </a>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/daily-crossword/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="450"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/daily-crossword/img/148x148.png" alt="daily-crossword"/> <div> <h4>Daily Crossword</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Word</span> <p> Same fun of crosswords but online! </p> </div> </div> </a>
</li>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/just-words/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="455"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/masque-just-words/img/148x148.png" alt="masque-just-words"> <div> <h4>Just Words</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Word</span> <p> Get ready to be wowed with wonderful word fun! </p> </div> </div> </a>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block flash"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/just-words/flash?type=gamesembed" onlinegamecodelanguage="flash" iframewidth="650px" iframeheight="455"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/masque-just-words/img/148x148.png" alt="masque-just-words"/> <div> <h4>Just Words</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Word</span> <p> Get ready to be wowed with wonderful word fun! </p> </div> </div> </a>
</li>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block html5"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/trizzle/html5?type=gamesembed" onlinegamecodelanguage="html5" iframewidth="650px" iframeheight="0"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/html5-trizzle/img/292x194.png" alt="html5-trizzle"> <div> <h4>Trizzle</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Strategy</span> <p> Experience the joy of Trizzle! </p> </div> </div> </a>
<li> <a data-toggle="game-trigger" href="javascript:void(0)" class="clear block html5"> <div class="game-item" onlineembeddedgameurl="http://games.washingtonpost.com/API/en-US/games/trizzle/html5?type=gamesembed" onlinegamecodelanguage="html5" iframewidth="650px" iframeheight="0"> <img src="http://cdn.arenaconnect.arkadiumhosted.com/games-storage/html5-trizzle/img/292x194.png" alt="html5-trizzle"/> <div> <h4>Trizzle</h4> <h5>Genre(s):</h5><span>&nbsp;&nbsp;Strategy</span> <p> Experience the joy of Trizzle! </p> </div> </div> </a>
</li>
</ul>
</div> <a href="#" id="ui-carousel-prev" class="up-arrow position-abs on-top on-right"><i class="icon-chevron-up icon-2x"></i></a>
@ -966,34 +966,34 @@
</div>
<form method="post" action="http://link.washingtonpost.com/s" id="signup-form">
<input type="text" name="email" class="signup-field" placeholder="E-mail address"
id="newsLetter-input-banner">
<input type="submit" value="Add" class="submit-btn signup" id="signup-newsLetter">
<input type="hidden" name="template" value="" id="template-var-banner">
<input type="hidden" name="vars[simple_signup]" value="1">
<input type="hidden" name="vars[simple]" value="2" id="banner-simple-var">
<input type="hidden" name="" value="1" id="variable-var-banner">
<input type="hidden" name="redirect" value="" id="redirect-url-banner">
id="newsLetter-input-banner"/>
<input type="submit" value="Add" class="submit-btn signup" id="signup-newsLetter"/>
<input type="hidden" name="template" value="" id="template-var-banner"/>
<input type="hidden" name="vars[simple_signup]" value="1"/>
<input type="hidden" name="vars[simple]" value="2" id="banner-simple-var"/>
<input type="hidden" name="" value="1" id="variable-var-banner"/>
<input type="hidden" name="redirect" value="" id="redirect-url-banner"/>
</form>
<div class="clear"></div>
<div class="newsletter-suggestions">
<p class="title">You might also like:</p>
<div class="suggestion-list">
<div class="suggestion">
<input type="checkbox" class="checkbox">
<input type="checkbox" class="checkbox"/>
<p class="title">Name of Related Newsletter (daily)</p>
</div>
<div class="suggestion">
<input type="checkbox" class="checkbox">
<input type="checkbox" class="checkbox"/>
<p class="title">Another Related Newsletter (M-W-F)</p>
</div>
<div class="suggestion">
<input type="checkbox" class="checkbox">
<input type="checkbox" class="checkbox"/>
<p class="title">This Newsletter is Good (weekly)</p>
</div>
</div>
<div class="suggestion-buttons">
<input type="submit" value="No, thanks" class="submit-btn signup" id="signup-cancel">
<input type="submit" value="Sign Up" class="submit-btn signup" id="signup-more">
<input type="submit" value="No, thanks" class="submit-btn signup" id="signup-cancel"/>
<input type="submit" value="Sign Up" class="submit-btn signup" id="signup-more"/>
</div>
</div> <span class="not-now-btn subscribe"> <p class="label">Not Now</p> <a class="link"><i class="fa fa-times"></i></a> </span>
</div>
@ -1035,4 +1035,4 @@
</script>
</body>
</html>
</html>

@ -4,7 +4,7 @@
<head>
<title>Babies Who Eat Peanuts Early May Avoid Allergy</title>
<meta http-equiv="X-UA-Compatible"
content="IE=Edge">
content="IE=Edge"/>
<script type="text/javascript">
var s_topic="1625"
,s_business_reference="News"
@ -28,29 +28,29 @@
<script language="javascript" type="text/javascript">
var s_furl="/allergies/news/20150220/child-peanut-allergy-findings"; var s_sponsor_program=""; var s_sensitive="false"; var s_mrt=""; var image_server_url="http://img.webmd.com/dtmcms/live";var s_uk_user="false";
</script>
<meta name="description" content="Life-threatening peanut allergies have mysteriously been on the rise in the past decade, with little hope for a cure. But a groundbreaking new study may offer a way to stem that rise, while another may offer some hope for those who are already allergic.">
<meta name="keywords" content="peanuts, peanut allergy, eczema, peanut allergies, babies and peanuts">
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://rssfeeds.webmd.com/rss/rss.aspx?RSSSource=RSS_PUBLIC">
<link rel="alternate" media="only screen and (max-width: 640px)" href="http://www.m.webmd.com/allergies/news/20150220/child-peanut-allergy-findings">
<meta name="description" content="Life-threatening peanut allergies have mysteriously been on the rise in the past decade, with little hope for a cure. But a groundbreaking new study may offer a way to stem that rise, while another may offer some hope for those who are already allergic."/>
<meta name="keywords" content="peanuts, peanut allergy, eczema, peanut allergies, babies and peanuts"/>
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://rssfeeds.webmd.com/rss/rss.aspx?RSSSource=RSS_PUBLIC"/>
<link rel="alternate" media="only screen and (max-width: 640px)" href="http://www.m.webmd.com/allergies/news/20150220/child-peanut-allergy-findings"/>
<script language="javascript1.2" type="text/javascript">
<!--
var center="health"; var center_name="Allergies"; var center_id=893; var center_prefix="www"; var center_url="/allergies/default.htm";//-->
</script>
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="shortcut icon" href="http://img.webmd.com/dtmcms/live/images/favicon/webmd.ico">
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="shortcut icon" href="http://img.webmd.com/dtmcms/live/images/favicon/webmd.ico"/>
<link href="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/layout.css"
type="text/css" rel="stylesheet">
<link rel="apple-touch-icon-precomposed" href="/favico/apple-touch-icon-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/favico/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/favico/apple-touch-icon-114x114-precomposed.png">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/Site/WebMD_091e9c5e8004a22432.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies News CAP/page_Allergies News CAP_091e9c5e80030184_psmodules_css_1224.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Base Template/template_Base Template_091e9c5e80020366_tmodules_css_4157.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies Health Center/template_Allergies Health Center_091e9c5e80022c47_tmodules_css_4718.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies News/template_Allergies News_091e9c5e8002e053_tmodules_css_1593.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies News CAP/page_Allergies News CAP_091e9c5e80030184_pmodules_css_3838.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/Atlanta/reskin/reskin12.css">
type="text/css" rel="stylesheet"/>
<link rel="apple-touch-icon-precomposed" href="/favico/apple-touch-icon-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/favico/apple-touch-icon-72x72-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/favico/apple-touch-icon-114x114-precomposed.png"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/Site/WebMD_091e9c5e8004a22432.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies News CAP/page_Allergies News CAP_091e9c5e80030184_psmodules_css_1224.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Base Template/template_Base Template_091e9c5e80020366_tmodules_css_4157.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies Health Center/template_Allergies Health Center_091e9c5e80022c47_tmodules_css_4718.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies News/template_Allergies News_091e9c5e8002e053_tmodules_css_1593.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies News CAP/page_Allergies News CAP_091e9c5e80030184_pmodules_css_3838.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/Atlanta/reskin/reskin12.css"/>
<script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/webmd.dynamicMobileThrottling.min13.js"></script>
<script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/scripts373.js"></script>
<script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/masthead36.js"></script>
@ -78,7 +78,7 @@
}
</script>
<!-- define the Facebook share thumbnail -->
<link rel="image_src" href="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/miscellaneous/webmd_FB_logo_bluebkgrd.jpg?v=1">
<link rel="image_src" href="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/miscellaneous/webmd_FB_logo_bluebkgrd.jpg?v=1"/>
<!--<ul><li>$adsystem = DFP</li><li>$pos = 101</li><li>$print = false</li></ul><ul><li>adtype = iFRAME</li><li>iframeheight = 90</li><li>iframewidth = 728</li><li>adserver = as.webmd.com</li></ul><ul><li>affiliate = 20</li><li>apg = 1625</li><li>artid = 091e9c5e810fb2ee</li><li>au1 = </li><li>au2 = </li><li>bc = _age121_l23_age122_j30_t780_</li><li>brand = 0</li><li>cc = 17</li><li>env = </li><li>hcent = 893</li><li>mcent = </li><li>micro = </li><li>pkg = &amp;leaf=</li><li>pos = 101</li><li>pug = __</li><li>scent = </li><li>sec = </li><li>segval = </li><li>site = 2</li><li>tile = 365904714</li><li>tmg = </li><li>transactionID = 442451382</li><li>tug = 2321</li><li>uri = %2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings</li></ul>-->
<script>
var priTopId='1625', secTopId='';
@ -100,7 +100,7 @@
<div id="global_overlay"></div><a href="#mainContentContainer_area" class="jawsonly">Skip to content</a>
<div
id="banner" role="banner">
<div id="logo"><a onclick="sl(this,'','logo')" href="http://www.webmd.com/www/default.htm"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/usability/2012/LBi_Masthead/logo_trans.png" class="logo_rdr" alt="WebMD: Better information. Better health."></a>
<div id="logo"><a onclick="sl(this,'','logo')" href="http://www.webmd.com/www/default.htm"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/usability/2012/LBi_Masthead/logo_trans.png" class="logo_rdr" alt="WebMD: Better information. Better health."/></a>
</div>
<div id="search_container" role="search">
<form action="http://www.webmd.com/search/search_results/default.aspx"
@ -108,9 +108,9 @@
<label class="jawsonly" for="searchQuery_fmt">Enter Search Keywords. Use the arrow keys to navigate suggestions.</label>
<input
type="text" id="searchQuery_fmt" name="query" maxlength="200" value=""
autocomplete="off" title="Enter Search Keywords">
autocomplete="off" title="Enter Search Keywords"/>
<input type="submit" class="searchButton_fmt" name="searchButton_fmt"
value="" title="Search" onclick="return sl(this,'','srch-bar_submit')">
value="" title="Search" onclick="return sl(this,'','srch-bar_submit')"/>
</form>
<ul id="searchTypeahead_fmt" aria-live="assertive"></ul>
</div>
@ -207,7 +207,7 @@
</div>
<div id="nav_1_6">
<p>WebMD Pain Coach</p><a href="http://www.webmd.com/webmdpaincoachapp" onclick="return sl(this,'','hicb1-app_1')"
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_pain_app.jpg" alt="WebMD pain app"></a>
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_pain_app.jpg" alt="WebMD pain app"/></a>
<a
href="http://www.webmd.com/webmdpaincoachapp" onclick="return sl(this,'','hicb1-app_1')">Track your pain levels, triggers, and treatments. Set goals and get tips
with our app for iPhone.</a>
@ -286,7 +286,7 @@
</div>
<div id="nav_2_4">
<p>WebMD Mobile Drug Information App</p><a href="http://www.webmd.com/webmdapp"
onclick="return sl(this,'','hicb2-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_webmd_mobile_app.png" alt="WebMD logo"></a>
onclick="return sl(this,'','hicb2-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_webmd_mobile_app.png" alt="WebMD logo"/></a>
<a
href="http://www.webmd.com/webmdapp" onclick="return sl(this,'','hicb2-app_1')">Drug, supplement, and vitamin information on the go.</a>
</div>
@ -302,7 +302,7 @@
<p>Featured Content</p>
<div id="pb11" class="hide_link">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/210x130_healthy_living_feature.jpg"
alt="Women with hair wrapped in towel"> <a href="http://www.webmd.com/healthy-beauty/ss/slideshow-best-kept-hair-secrets"
alt="Women with hair wrapped in towel"/> <a href="http://www.webmd.com/healthy-beauty/ss/slideshow-best-kept-hair-secrets"
onclick="return sl(this,'','hicb3-ftr_1')" class="bold">Want luxurious locks?</a>
<p>WebMD cuts through the hype to reveal the best kept secrets for healthy
hair.</p><a href="http://www.webmd.com/healthy-beauty/ss/slideshow-best-kept-hair-secrets"
@ -315,7 +315,7 @@
<p>Living Healthy Centers</p><span><a href="http://www.webmd.com/a-to-z-guides/healthy-living/default.htm" onclick="return sl(this,'','hicb3-chl_more')">View All</a></span>
<div
class="third right_border"><a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-cdt_1')"
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_diet_food.png" alt="grilled salmon and vegetables"></a>
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_diet_food.png" alt="grilled salmon and vegetables"/></a>
<p
class="bold more_bottom_margin">Diet, Food &amp; Fitness</p>
<ul>
@ -328,7 +328,7 @@
</ul>
</div>
<div class="third right_border"><a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-cbt_1')"
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_beauty_balance.png" alt="man and woman smiling"></a>
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_beauty_balance.png" alt="man and woman smiling"/></a>
<p
class="bold">Beauty, Balance &amp; Love</p>
<ul>
@ -343,7 +343,7 @@
</ul>
</div>
<div class="third"><a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-clw_1')"
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_women_men.png" alt="women doing yoga"></a>
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_women_men.png" alt="women doing yoga"/></a>
<p
class="bold more_bottom_margin">Living Well</p>
<ul>
@ -380,7 +380,7 @@
</div>
<div id="nav_3_4">
<p>WebMD Allergy App for iPhone</p><a href="http://www.webmd.com/allergy-app"
onclick="return sl(this,'','hicb3-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/other/allergy_app_other/50x50_allergy_app_other.jpg" alt="WebMD Allergy App logo"></a>
onclick="return sl(this,'','hicb3-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/other/allergy_app_other/50x50_allergy_app_other.jpg" alt="WebMD Allergy App logo"/></a>
<a
href="http://www.webmd.com/allergy-app" onclick="return sl(this,'','hicb3-app_1')">Fight allergies with daily forecasts, local alerts, and personalized tips.</a>
</div>
@ -396,7 +396,7 @@
<p>Featured Content</p>
<div id="pb20" class="hide_link">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/210x130_family_feature.jpg"
alt="Family at airport"> <a href="http://www.webmd.com/vaccines/ss/slideshow-travel-health" onclick="return sl(this,'','hicb4-ftr_1')"
alt="Family at airport"/> <a href="http://www.webmd.com/vaccines/ss/slideshow-travel-health" onclick="return sl(this,'','hicb4-ftr_1')"
class="bold">Traveling abroad?</a>
<p>Protect yourself and your family by learning which health precautions
and vaccines are advised for your destination.</p><a href="http://www.webmd.com/vaccines/ss/slideshow-travel-health"
@ -408,7 +408,7 @@
<div id="nav_4_2">
<p>Family and Pregnancy Centers</p>
<div class="third right_border"><a href="http://www.webmd.com/baby" onclick="return sl(this,'','hicb4-cpg_1')"
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_pregnancy.png" alt="pregnant woman"></a>
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_pregnancy.png" alt="pregnant woman"/></a>
<a
href="http://www.webmd.com/baby" onclick="return sl(this,'','hicb4-cpg_1')"
class="heading">Pregnancy</a>
@ -425,7 +425,7 @@
</ul>
</div>
<div class="third right_border"><a href="http://www.webmd.com/parenting/default.htm" onclick="return sl(this,'','hicb4-cpt_1')"
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_parenting.png" alt="mom, dad, and baby"></a>
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_parenting.png" alt="mom, dad, and baby"/></a>
<a
href="http://www.webmd.com/parenting/default.htm" onclick="return sl(this,'','hicb4-cpt_1')"
class="heading">Parenting</a>
@ -442,7 +442,7 @@
</ul>
</div>
<div class="third"><a href="http://www.webmd.com/pets/default.htm" onclick="return sl(this,'','hicb4-cpet_1')"
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_pets.png" alt="Cat and dog on grass"></a>
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_pets.png" alt="Cat and dog on grass"/></a>
<a
href="http://www.webmd.com/pets/default.htm" onclick="return sl(this,'','hicb4-cpet_1')"
class="heading">Pets</a>
@ -478,7 +478,7 @@
</div>
<div id="nav_4_4">
<p>WebMD Pregnancy App for iPhone</p><a href="http://www.webmd.com/pregnancyapp"
onclick="return sl(this,'','hicb4-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/other/pregnancy_app_other/50x50_pregnancy_app_other.jpg" alt="WebMD Pregnancy App logo"></a>
onclick="return sl(this,'','hicb4-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/other/pregnancy_app_other/50x50_pregnancy_app_other.jpg" alt="WebMD Pregnancy App logo"/></a>
<a
href="http://www.webmd.com/pregnancyapp" onclick="return sl(this,'','hicb4-app_1')">The big day is coming! Get organized and track baby's weekly development.</a>
</div>
@ -493,12 +493,12 @@
<div id="nav_5_1">
<p>News</p><span><a href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb5-news_more')">View All</a></span>
<div
class="nav_block hide_link" id="pb29"><a href="http://www.webmd.com/news/default.htm" class="nav_image" onclick="return sl(this,'','hicb5-news_1')"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_webmd_1.jpg" alt="WebMD logo"></a>
class="nav_block hide_link" id="pb29"><a href="http://www.webmd.com/news/default.htm" class="nav_image" onclick="return sl(this,'','hicb5-news_1')"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_webmd_1.jpg" alt="WebMD logo"/></a>
<a
href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb5-news_1')"
class="shorter">Today's Top Health Headlines</a>
</div>
<div class="nav_block hide_link" id="pb30"><a href="http://www.webmd.com/news/default.htm" class="nav_image" onclick="return sl(this,'','hicb5-news_2')"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_webmd_1.jpg" alt="WebMD logo"></a>
<div class="nav_block hide_link" id="pb30"><a href="http://www.webmd.com/news/default.htm" class="nav_image" onclick="return sl(this,'','hicb5-news_2')"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_webmd_1.jpg" alt="WebMD logo"/></a>
<a
href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb5-news_2')"
class="shorter">Get the Latest Drug Approvals &amp; Alerts</a>
@ -523,13 +523,13 @@
It's a safe forum where you can create or participate in support groups
and discussions about health topics that interest you.</p>
<div class="nav_block"><a href="http://www.webmd.com/blogs/default.htm" onclick="return sl(this,'','hicb5-xchng_blg')"
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_expert.png" alt=""></a>
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_expert.png" alt=""/></a>
<p
class="bold">WebMD Second Opinion</p><a href="http://www.webmd.com/blogs/default.htm"
onclick="return sl(this,'','hicb5-xchng_blg')">Read expert perspectives on popular health topics.</a>
</div>
<div class="nav_block"><a href="http://www.webmd.com/exchanges/default.htm" onclick="return sl(this,'','hicb5-xchng_cmty')"
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_community.png" alt=""></a>
class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_community.png" alt=""/></a>
<p
class="bold">WebMD Communities</p><a href="http://www.webmd.com/exchanges/default.htm"
onclick="return sl(this,'','hicb5-xchng_cmty')">Connect with people like you, and get expert guidance on living a healthy life.</a>
@ -544,7 +544,7 @@
</div>
<div id="nav_5_4">
<p>WebMD Newsletters</p><a href="https://member.webmd.com/newsletters/newsletters.aspx"
onclick="return sl(this,'','hicb5-nwsltr_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_newsletter.png" alt="closeup of newsletter"></a>
onclick="return sl(this,'','hicb5-nwsltr_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_newsletter.png" alt="closeup of newsletter"/></a>
<a
href="https://member.webmd.com/newsletters/newsletters.aspx" onclick="return sl(this,'','hicb5-nwsltr_1')">Sign up to receive WebMD's award-winning content delivered to your inbox.</a>
</div>
@ -600,10 +600,10 @@
<div id="ContentPane3">
<div id="breadcrumb_rdr"> <span class="bc_0">
<a href="/www/">WebMD Home</a>
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/divider_breadcrumb.gif" alt="next page" width="6" height="10" align="absmiddle">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/divider_breadcrumb.gif" alt="next page" width="6" height="10" align="absmiddle"/>
</span>
<span class="bc_1">
<a href="http://www.webmd.com/allergies/default.htm" onclick="return sl(this,'','brdcrmb');">Allergies Health Center</a> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/divider_breadcrumb.gif" alt="next page" width="6" height="10" align="absmiddle"> </span>
<a href="http://www.webmd.com/allergies/default.htm" onclick="return sl(this,'','brdcrmb');">Allergies Health Center</a> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/divider_breadcrumb.gif" alt="next page" width="6" height="10" align="absmiddle"/> </span>
<span
class="bc_2"> <a href="http://www.webmd.com/allergies/news/default.htm" onclick="return sl(this,'','brdcrmb');"
@ -776,7 +776,7 @@
<div id="readspeaker_area" style="display: none;">
<div id="readspeaker_button1" class="rs_skip"> <a accesskey="L" href="http://app.readspeaker.com/cgi-bin/rsent?customerid=5841&amp;lang=en_us&amp;readid=textArea"
target="_blank" onclick="readpage(this.href, 'xp1'); return false;">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/article/readspeaker/listen_en_us.gif" alt="Listen to this page using ReadSpeaker" title="Listen to this page using ReadSpeaker">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/article/readspeaker/listen_en_us.gif" alt="Listen to this page using ReadSpeaker" title="Listen to this page using ReadSpeaker"/>
</a>
</div>
@ -809,7 +809,7 @@
<div class="subhead_fmt"></div>
<div class="author_fmt">By <a rel="author" href="http://www.webmd.com/brenda-goodman" onclick="return sl(this,'','prog-lnk');">Brenda Goodman, MA</a>
<br>WebMD Health News</div>
<br/>WebMD Health News</div>
<div class="reviewedBy_fmt">Reviewed by <a onclick="return sl(this,'','prog-lnk');" href="http://www.webmd.com/hansa-bhargava">Hansa D. Bhargava, MD</a>
</div>
<div class="clearBoth_fmt clearing-div"></div>
@ -1038,7 +1038,7 @@
};
</script>
<link rel="stylesheet" type="text/css" href="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/print.css"
media="print">
media="print"/>
<style media="screen">
#url_reference {display: none};
</style>
@ -1352,7 +1352,7 @@
<div id="standardSubnav_fmt">
<div class="header_fmt">
<div class="icon_fmt"> <a href="http://www.webmd.com/allergies/guide/default.htm" onclick="return sl(this,'','gd-fullgd_1');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/icon_guide.gif" border="0" alt="Guide">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/icon_guide.gif" border="0" alt="Guide"/>
</a>
</div>
@ -1640,7 +1640,7 @@
<div class="unified_right_inner_v2_rdr">
<div class="entry_fmt" id="x52"> <a href="http://www.webmd.com/allergies/ss/slideshow-natural-relief" onclick="return sl(this,'','ed-urr_1othr');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/news/2013/01_2013/cdc_flu_update_02012013xml/110x70_cdc_flu_update_02012013xml.jpg" alt="man blowing nose">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/news/2013/01_2013/cdc_flu_update_02012013xml/110x70_cdc_flu_update_02012013xml.jpg" alt="man blowing nose"/>
</a>
<div class="link_fmt"> <a href="http://www.webmd.com/allergies/ss/slideshow-natural-relief" onclick="return sl(this,'','ed-urr_1othr');">12 Natural Ways to Defeat Allergies</a>
@ -1650,7 +1650,7 @@
</div>
<div class="entry_fmt" id="x53"> <a href="http://www.webmd.com/allergies/ss/slideshow-nasal-allergy-relief-products"
onclick="return sl(this,'','ed-urr_2othr');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/slideshows/nasal_allergy_relief/110x70_nasal_allergy_relief.jpg" alt="Allergy capsule">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/slideshows/nasal_allergy_relief/110x70_nasal_allergy_relief.jpg" alt="Allergy capsule"/>
</a>
<div class="link_fmt"> <a href="http://www.webmd.com/allergies/ss/slideshow-nasal-allergy-relief-products"
@ -1662,7 +1662,7 @@
<div class="clear_fmt">&nbsp;</div>
<div class="entry_fmt" id="x54"> <a href="http://www.webmd.com/allergies/ss/slideshow-pets-and-allergies"
onclick="return sl(this,'','ed-urr_3othr');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/health_checks/pet_health_evaluator_healthcheck/110x70_pet_health_evaluator_cat_healthcheck.jpg" alt="cat on couch">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/health_checks/pet_health_evaluator_healthcheck/110x70_pet_health_evaluator_cat_healthcheck.jpg" alt="cat on couch"/>
</a>
<div class="link_fmt"> <a href="http://www.webmd.com/allergies/ss/slideshow-pets-and-allergies"
@ -1673,7 +1673,7 @@
</div>
<div class="entry_fmt" id="x55"> <a href="http://www.webmd.com/allergies/ss/slideshow-common-allergy-triggers"
onclick="return sl(this,'','ed-urr_4othr');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/slideshows/allergy_triggers_slideshow/110x70_allergy_triggers_slideshow.jpg" alt="Woman sneezing with tissue in meadow">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/slideshows/allergy_triggers_slideshow/110x70_allergy_triggers_slideshow.jpg" alt="Woman sneezing with tissue in meadow"/>
</a>
<div class="link_fmt"> <a href="http://www.webmd.com/allergies/ss/slideshow-common-allergy-triggers"
@ -1724,7 +1724,7 @@
<div class="unified_right_inner_rdr">
<div class="entry_fmt" id="x20"> <a href="http://www.webmd.com/allergies/features/the-truth-about-mucus"
onclick="return sl(this,'','thumb-link1_1othr');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/features/_2012/04_2012/truth_about_mucus_features/69x75_truth_about_mucus_features.jpg" alt="blowing nose">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/features/_2012/04_2012/truth_about_mucus_features/69x75_truth_about_mucus_features.jpg" alt="blowing nose"/>
</a>
<div class="header_fmt">Article</div>
@ -1734,7 +1734,7 @@
</div>
</div>
<div class="entry_fmt" id="x21"> <a href="http://www.webmd.com/allergies/postnasal-drip" onclick="return sl(this,'','thumb-link1_2othr');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/news/2011/11_2011/acne_and_sore_throat/69x75_acne_and_sore_throat.jpg" alt="woman with sore throat">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/news/2011/11_2011/acne_and_sore_throat/69x75_acne_and_sore_throat.jpg" alt="woman with sore throat"/>
</a>
<div class="header_fmt">Article</div>
@ -1744,7 +1744,7 @@
</div>
<div class="clear_fmt">&nbsp;</div>
<div class="entry_fmt" id="x22"> <a href="http://www.webmd.com/allergies/ss/slideshow-bad-bugs" onclick="return sl(this,'','thumb-link1_3ss');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/news/2012/08_2012/new_tickborne_disease/69x75_new_tickborne_disease.jpg" alt="lone star tick">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/news/2012/08_2012/new_tickborne_disease/69x75_new_tickborne_disease.jpg" alt="lone star tick"/>
</a>
<div class="header_fmt">Slideshow</div>
@ -1753,7 +1753,7 @@
</div>
</div>
<div class="entry_fmt" id="x23"> <a href="http://www.webmd.com/allergies/ss/slideshow-natural-relief" onclick="return sl(this,'','thumb-link1_4ss');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/slideshows/12_natural_ways_to_defeat_allergies/69x75_12_natural_ways_to_defeat_allergies.jpg" alt="Woman blowing nose">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/slideshows/12_natural_ways_to_defeat_allergies/69x75_12_natural_ways_to_defeat_allergies.jpg" alt="Woman blowing nose"/>
</a>
<div class="header_fmt">Slideshow</div>
@ -1934,10 +1934,10 @@
<p>Send yourself a link to download the app.</p>
<div class="sender">
<input type="text" id="email" name="toAddress" value="Your email address"
class="placeholder">
class="placeholder"/>
</div>
<div class="controls">
<input type="submit" value="Submit">
<input type="submit" value="Submit"/>
</div>
</form>
</div>
@ -1968,7 +1968,7 @@
<div class="unified_right_inner_rdr">
<div class="entry_fmt" id="x24"> <a href="http://www.webmd.com/allergies/guide/cat-allergies" onclick="return sl(this,'','thumb-link2_1othr');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/features/_2011/11_2011/healthy_cat_gift_guide_features/69x75_healthy_cat_gift_guide_features.jpg" alt="cat lying on shelf">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/features/_2011/11_2011/healthy_cat_gift_guide_features/69x75_healthy_cat_gift_guide_features.jpg" alt="cat lying on shelf"/>
</a>
<div class="header_fmt">Article</div>
@ -1978,7 +1978,7 @@
</div>
<div class="entry_fmt" id="x25"> <a href="http://www.webmd.com/allergies/indoor-outdoor-relief-14/video-allergy-testing-and-shots"
onclick="return sl(this,'','thumb-link2_2othr');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/reference_guide/allergy_tests_ref_guide/69x75_allergy_tests_ref_guide.jpg" alt="Allergy prick test">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/reference_guide/allergy_tests_ref_guide/69x75_allergy_tests_ref_guide.jpg" alt="Allergy prick test"/>
</a>
<div class="header_fmt">VIDEO</div>
@ -1990,7 +1990,7 @@
<div class="clear_fmt">&nbsp;</div>
<div class="entry_fmt" id="x26"> <a href="http://www.webmd.com/allergies/allergies-assessment/default.htm"
onclick="return sl(this,'','thumb-link2_3othr');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/health_checks/allergy_sinus_symptoms_evaluator/69x75_allergy_sinus_symptoms_evaluator.jpg" alt="Man sneezing into tissue">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/health_checks/allergy_sinus_symptoms_evaluator/69x75_allergy_sinus_symptoms_evaluator.jpg" alt="Man sneezing into tissue"/>
</a>
<div class="header_fmt">Assessment</div>
@ -2000,7 +2000,7 @@
</div>
</div>
<div class="entry_fmt" id="x27"> <a href="http://www.webmd.com/allergies/rm-quiz-indoor-allergies" onclick="return sl(this,'','thumb-link2_4rmq');">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/quizzes/indoor_allergies_rmq/69x75_indoor_allergies_rmq.jpg" alt="Woman holding feather duster up to face, twitching">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/quizzes/indoor_allergies_rmq/69x75_indoor_allergies_rmq.jpg" alt="Woman holding feather duster up to face, twitching"/>
</a>
<div class="header_fmt">Quiz</div>
@ -2033,7 +2033,7 @@
module.init({
selector: "#newsletter-mapping-center",
template: {
successMsg: '<p class="success"><span>{email}</span><br />You will receive your first newsletter with our next scheduled circulation!</p>',
successMsg: '<p class="success"><span>{email}</span><br //>You will receive your first newsletter with our next scheduled circulation!</p>',
content: '' +
'<div class="newsletterFmt"></div>\n' +
'<div class="wrapper">\n' +
@ -2243,7 +2243,7 @@
<!-- div id="f733a173-6d11-4e17-ba9f-f1454ef8b32f" style="float:left"
--> <a onclick="return sl(this,'nw','f-about_23');" href="http://www.webmd.com/click?url=https://privacy.truste.com/privacy-seal/WebMD,-LLC/validation?rid=7b3bf16d-37b4-42e0-aec7-836ef1d3680d"
title="TRUSTe online privacy certification">
<img style="border: none; float:left; margin: 0px 8px 0px 0px;" src="//privacy-policy.truste.com/privacy-seal/WebMD,-LLC/seal?rid=80c33c7c-da0b-4788-8236-61a318f00f4c" alt="TRUSTe online privacy certification">
<img style="border: none; float:left; margin: 0px 8px 0px 0px;" src="//privacy-policy.truste.com/privacy-seal/WebMD,-LLC/seal?rid=80c33c7c-da0b-4788-8236-61a318f00f4c" alt="TRUSTe online privacy certification"/>
</a>
<!-- /div -->
@ -2253,7 +2253,7 @@
<span>HonCode: Health on the Net Foundation</span></a -->
<a onclick="return sl(this,'nw','f-about_24');" href="http://www.webmd.com/click?url=http://www.hon.ch/HONcode/Conduct.html%3FHONConduct298987"
title="This site complies with the HONcode standard for trustworthy health information.">
<img alt="HONcode Seal" src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/honcode14.gif" style="border: none; float:left; margin: 0px 0px 0px 5px; width: 43px; height: 60px;">
<img alt="HONcode Seal" src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/honcode14.gif" style="border: none; float:left; margin: 0px 0px 0px 5px; width: 43px; height: 60px;"/>
</a>
<a onclick="TRUSTeWidget.Tab.link();return sl(this,'f-about_27');"
class="logo_AdChoices">AdChoices</a>
@ -2408,4 +2408,4 @@
<script language="javascript1.2" type="text/javascript" src="http://img.webmd.com/bi_common/bi_consumer.js?d=3/18/2015"></script>
</body>
</html>
</html>

@ -4,7 +4,7 @@
<p>April 17, 2015 -- Imagine being sick in the hospital with a <a href="http://www.webmd.com/a-to-z-guides/bacterial-and-viral-infections" onclick="return sl(this,'','embd-lnk');" class="">bacterial infection</a> and doctors can't stop it from spreading. This so-called "superbug" scenario is not science fiction. It's an urgent, worldwide worry that is prompting swift action.</p>
<p xmlns:xalan="http://xml.apache.org/xalan">Every year, about 2 million people get sick from a superbug, according to the CDC. About 23,000 die. Earlier this year, an outbreak of CRE (carbapenem-resistant enterobacteriaceae) linked to contaminated medical tools sickened 11 people at two Los-Angeles area hospitals. Two people died, and more than 200 others may have been exposed.</p>
<p>The White House recently released a <a onclick="return sl(this,'','embd-lnk');" href="http://www.webmd.com/click?url=https://www.whitehouse.gov/sites/default/files/docs/national_action_plan_for_combating_antibotic-resistant_bacteria.pdf">comprehensive plan</a> outlining steps to combat drug-resistant bacteria. The plan identifies three "urgent" and several "serious" threats. We asked infectious disease experts to explain what some of them are and when to worry.</p>
<link type="text/css" rel="stylesheet" href="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/css/contextual_related_links.css">
<link type="text/css" rel="stylesheet" href="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/css/contextual_related_links.css"/>
<a name="1"> </a>
<h3>But First: What's a Superbug? </h3>
<p>It's a term coined by the media to describe bacteria that cannot be killed using multiple <a href="http://www.webmd.com/cold-and-flu/rm-quiz-antibiotics-myths-facts" onclick="return sl(this,'','embd-lnk');" class="">antibiotics</a>. "It resonates because it's scary," says Stephen Calderwood, MD, president of the Infectious Diseases Society of America. "But in fairness, there is no real definition."</p>

@ -3,7 +3,7 @@
<head>
<title>Superbugs: What They Are and How You Get Them</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<script type="text/javascript">
var s_topic = "4286",
s_business_reference = "News",
@ -32,24 +32,24 @@
var image_server_url = "http://img.webmd.com/dtmcms/live";
var s_uk_user = "false";
</script>
<meta name="description" content="Drug-resistant bacteria, dubbed " superbugs, "=" " pose=" " an=" " enormous=" " threat=" " to=" " our=" " health.=" " learn=" " about=" " the=" " biggest=" " threats=" " and=" " how=" " you=" " might=" " get=" " infected,=" " from=" " webmd.=" " "="">
<meta name="keywords" content="antibiotic resistance, superbugs, bacteria, CRE, multi-drug resistant, MRSA, E. coli, Kelli Miller, C. diff, ">
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://rssfeeds.webmd.com/rss/rss.aspx?RSSSource=RSS_PUBLIC">
<link rel="alternate" media="only screen and (max-width: 640px)" href="http://www.m.webmd.com/a-to-z-guides/news/20150417/superbugs-what-they-are">
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="shortcut icon" href="http://img.webmd.com/dtmcms/live/images/favicon/webmd.ico">
<link href="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/layout.css" type="text/css" rel="stylesheet">
<link rel="apple-touch-icon-precomposed" href="/favico/apple-touch-icon-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/favico/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/favico/apple-touch-icon-114x114-precomposed.png">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/Site/WebMD_091e9c5e8004a22434.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/News Catch All Template/page_News Catch All Template_091e9c5e8005d6e9_psmodules_css_1612.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Base Template/template_Base Template_091e9c5e80020366_tmodules_css_4185.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Main Catch All Template_091e9c5e80336210/template_Main Catch All Template_091e9c5e80336210_tmodules_css_1370.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/News Catch All Template_091e9c5e8034e93a/template_News Catch All Template_091e9c5e8034e93a_tmodules_css_686.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/News Catch All Template/page_News Catch All Template_091e9c5e8005d6e9_pmodules_css_3203.css">
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/Atlanta/reskin/reskin12.css">
<meta name="description" content="Drug-resistant bacteria, dubbed " superbugs, "=" " pose=" " an=" " enormous=" " threat=" " to=" " our=" " health.=" " learn=" " about=" " the=" " biggest=" " threats=" " and=" " how=" " you=" " might=" " get=" " infected,=" " from=" " webmd.=" " "=""/>
<meta name="keywords" content="antibiotic resistance, superbugs, bacteria, CRE, multi-drug resistant, MRSA, E. coli, Kelli Miller, C. diff, "/>
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://rssfeeds.webmd.com/rss/rss.aspx?RSSSource=RSS_PUBLIC"/>
<link rel="alternate" media="only screen and (max-width: 640px)" href="http://www.m.webmd.com/a-to-z-guides/news/20150417/superbugs-what-they-are"/>
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="shortcut icon" href="http://img.webmd.com/dtmcms/live/images/favicon/webmd.ico"/>
<link href="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/layout.css" type="text/css" rel="stylesheet"/>
<link rel="apple-touch-icon-precomposed" href="/favico/apple-touch-icon-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/favico/apple-touch-icon-72x72-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/favico/apple-touch-icon-114x114-precomposed.png"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/Site/WebMD_091e9c5e8004a22434.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/News Catch All Template/page_News Catch All Template_091e9c5e8005d6e9_psmodules_css_1612.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Base Template/template_Base Template_091e9c5e80020366_tmodules_css_4185.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Main Catch All Template_091e9c5e80336210/template_Main Catch All Template_091e9c5e80336210_tmodules_css_1370.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/News Catch All Template_091e9c5e8034e93a/template_News Catch All Template_091e9c5e8034e93a_tmodules_css_686.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/News Catch All Template/page_News Catch All Template_091e9c5e8005d6e9_pmodules_css_3203.css"/>
<link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/Atlanta/reskin/reskin12.css"/>
<script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/webmd.dynamicMobileThrottling.min13.js"></script>
<script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/scripts374.js"></script>
<script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/masthead36.js"></script>
@ -74,7 +74,7 @@
}
</script>
<!-- define the Facebook share thumbnail -->
<link rel="image_src" href="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/miscellaneous/webmd_FB_logo_bluebkgrd.jpg?v=1">
<link rel="image_src" href="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/miscellaneous/webmd_FB_logo_bluebkgrd.jpg?v=1"/>
<!--<ul><li>$adsystem = DFP</li><li>$pos = 101</li><li>$print = false</li></ul><ul><li>adtype = iFRAME</li><li>iframeheight = 90</li><li>iframewidth = 728</li><li>adserver = as.webmd.com</li></ul><ul><li>affiliate = 20</li><li>apg = 4286</li><li>artid = 091e9c5e8117ec19</li><li>au1 = </li><li>au2 = </li><li>bc = _cust4_k_</li><li>brand = 0</li><li>cc = 17</li><li>env = </li><li>hcent = </li><li>mcent = </li><li>micro = </li><li>pkg = &amp;leaf=</li><li>pos = 101</li><li>pug = __</li><li>scent = </li><li>sec = </li><li>segval = </li><li>site = 2</li><li>tile = 1390870376</li><li>tmg = </li><li>transactionID = 93834023</li><li>tug = </li><li>uri = %2fnews%2f20150417%2fsuperbugs-what-they-are</li></ul>-->
<script>
var priTopId = '4286',
@ -122,19 +122,19 @@
<div id="global_overlay"></div><a href="#mainContentContainer_area" class="jawsonly">Skip to content</a>
<div id="banner" role="banner">
<div id="logo">
<a onclick="sl(this,'','logo')" href="http://www.webmd.com/www/default.htm"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/usability/2012/LBi_Masthead/logo_trans.png" class="logo_rdr" alt="WebMD: Better information. Better health."></a>
<a onclick="sl(this,'','logo')" href="http://www.webmd.com/www/default.htm"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/usability/2012/LBi_Masthead/logo_trans.png" class="logo_rdr" alt="WebMD: Better information. Better health."/></a>
</div>
<div id="search_container" role="search">
<form action="http://www.webmd.com/search/search_results/default.aspx" method="get" name="searchForm">
<label class="jawsonly" for="searchQuery_fmt">Enter Search Keywords. Use the arrow keys to navigate suggestions.</label>
<input type="text" id="searchQuery_fmt" name="query" maxlength="200" value="" autocomplete="off" title="Enter Search Keywords">
<input type="submit" class="searchButton_fmt" name="searchButton_fmt" value="" title="Search" onclick="return sl(this,'','srch-bar_submit')">
<input type="text" id="searchQuery_fmt" name="query" maxlength="200" value="" autocomplete="off" title="Enter Search Keywords"/>
<input type="submit" class="searchButton_fmt" name="searchButton_fmt" value="" title="Search" onclick="return sl(this,'','srch-bar_submit')"/>
</form>
<ul id="searchTypeahead_fmt" aria-live="assertive"></ul>
</div>
<div id="lln-srchbarlnks"><a onclick="return sl(this,'','lln-srchbarlnks_schk')" class="lln-symptoms" href="http://www.webmd.com/symptoms/default.htm">Symptoms</a><span class="pipe">|</span> <a onclick="return sl(this,'','lln-srchbarlnks_phyd')" class="lln-doctors" href="http://doctor.webmd.com/home">Doctors</a><span class="pipe">|</span> <a onclick="return sl(this,'','lln-srchbarlnks_hins')" class="lln-insurance" href="http://www.webmd.com/health-insurance/default.htm">Health Care Reform</a></div>
<div id="wbmd-webby" data-metrics-module="wbmd-webby">
<a href="http://goo.gl/AtWsfO" data-metrics-link="vote"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/home_page/webby-awards-vote.png" alt="Vote for WebMD in the Webbys"> </a>
<a href="http://goo.gl/AtWsfO" data-metrics-link="vote"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/home_page/webby-awards-vote.png" alt="Vote for WebMD in the Webbys"/> </a>
</div>
</div>
<!-- / #banner -->
@ -190,7 +190,7 @@
</div>
<div id="nav_1_6">
<p>WebMD Pain Coach</p>
<a href="http://www.webmd.com/webmdpaincoachapp" onclick="return sl(this,'','hicb1-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_pain_app.jpg" alt="WebMD pain app"></a> <a href="http://www.webmd.com/webmdpaincoachapp" onclick="return sl(this,'','hicb1-app_1')">Track your pain levels, triggers, and treatments. Set goals and get tips with our app for iPhone.</a></div>
<a href="http://www.webmd.com/webmdpaincoachapp" onclick="return sl(this,'','hicb1-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_pain_app.jpg" alt="WebMD pain app"/></a> <a href="http://www.webmd.com/webmdpaincoachapp" onclick="return sl(this,'','hicb1-app_1')">Track your pain levels, triggers, and treatments. Set goals and get tips with our app for iPhone.</a></div>
</div>
</div>
</li>
@ -234,7 +234,7 @@
</div>
<div id="nav_2_4">
<p>WebMD Mobile Drug Information App</p>
<a href="http://www.webmd.com/webmdapp" onclick="return sl(this,'','hicb2-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_webmd_mobile_app.png" alt="WebMD logo"></a> <a href="http://www.webmd.com/webmdapp" onclick="return sl(this,'','hicb2-app_1')">Drug, supplement, and vitamin information on the go.</a></div>
<a href="http://www.webmd.com/webmdapp" onclick="return sl(this,'','hicb2-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_webmd_mobile_app.png" alt="WebMD logo"/></a> <a href="http://www.webmd.com/webmdapp" onclick="return sl(this,'','hicb2-app_1')">Drug, supplement, and vitamin information on the go.</a></div>
</div>
</div>
</li>
@ -243,7 +243,7 @@
<div class="nav_dropdown_col_1b">
<div id="nav_3_1">
<p>Featured Content</p>
<div id="pb11" class="hide_link"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/210x130_healthy_living_feature.jpg" alt="Women with hair wrapped in towel"> <a href="http://www.webmd.com/healthy-beauty/ss/slideshow-best-kept-hair-secrets" onclick="return sl(this,'','hicb3-ftr_1')" class="bold">Want luxurious locks?</a>
<div id="pb11" class="hide_link"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/210x130_healthy_living_feature.jpg" alt="Women with hair wrapped in towel"/> <a href="http://www.webmd.com/healthy-beauty/ss/slideshow-best-kept-hair-secrets" onclick="return sl(this,'','hicb3-ftr_1')" class="bold">Want luxurious locks?</a>
<p>WebMD cuts through the hype to reveal the best kept secrets for healthy hair.</p>
<a href="http://www.webmd.com/healthy-beauty/ss/slideshow-best-kept-hair-secrets" onclick="return sl(this,'','hicb3-ftr_1')" class="link_overlay" tabindex="-1"></a>
</div>
@ -253,7 +253,7 @@
<div id="nav_3_2">
<p>Living Healthy Centers</p><span><a href="http://www.webmd.com/a-to-z-guides/healthy-living/default.htm" onclick="return sl(this,'','hicb3-chl_more')">View All</a></span>
<div class="third right_border">
<a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-cdt_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_diet_food.png" alt="grilled salmon and vegetables"></a>
<a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-cdt_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_diet_food.png" alt="grilled salmon and vegetables"/></a>
<p class="bold more_bottom_margin">Diet, Food &amp; Fitness</p>
<ul>
<li><a href="http://www.webmd.com/diet/default.htm" onclick="return sl(this,'','hicb3-cdt_1')">Weight Loss &amp; Diet Plans</a></li>
@ -262,7 +262,7 @@
</ul>
</div>
<div class="third right_border">
<a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-cbt_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_beauty_balance.png" alt="man and woman smiling"></a>
<a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-cbt_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_beauty_balance.png" alt="man and woman smiling"/></a>
<p class="bold">Beauty, Balance &amp; Love</p>
<ul>
<li><a href="http://www.webmd.com/healthy-beauty/default.htm" onclick="return sl(this,'','hicb3-cbt_1')">Healthy Beauty</a></li>
@ -272,7 +272,7 @@
</ul>
</div>
<div class="third">
<a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-clw_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_women_men.png" alt="women doing yoga"></a>
<a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-clw_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_women_men.png" alt="women doing yoga"/></a>
<p class="bold more_bottom_margin">Living Well</p>
<ul>
<li><a href="http://www.webmd.com/women/default.htm" onclick="return sl(this,'','hicb3-clw_1')">Women's Health</a></li>
@ -298,7 +298,7 @@
</div>
<div id="nav_3_4">
<p>WebMD Allergy App for iPhone</p>
<a href="http://www.webmd.com/allergy-app" onclick="return sl(this,'','hicb3-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/other/allergy_app_other/50x50_allergy_app_other.jpg" alt="WebMD Allergy App logo"></a> <a href="http://www.webmd.com/allergy-app" onclick="return sl(this,'','hicb3-app_1')">Fight allergies with daily forecasts, local alerts, and personalized tips.</a></div>
<a href="http://www.webmd.com/allergy-app" onclick="return sl(this,'','hicb3-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/other/allergy_app_other/50x50_allergy_app_other.jpg" alt="WebMD Allergy App logo"/></a> <a href="http://www.webmd.com/allergy-app" onclick="return sl(this,'','hicb3-app_1')">Fight allergies with daily forecasts, local alerts, and personalized tips.</a></div>
</div>
</div>
</li>
@ -307,7 +307,7 @@
<div class="nav_dropdown_col_1b">
<div id="nav_4_1">
<p>Featured Content</p>
<div id="pb20" class="hide_link"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/210x130_family_feature.jpg" alt="Family at airport"> <a href="http://www.webmd.com/vaccines/ss/slideshow-travel-health" onclick="return sl(this,'','hicb4-ftr_1')" class="bold">Traveling abroad?</a>
<div id="pb20" class="hide_link"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/210x130_family_feature.jpg" alt="Family at airport"/> <a href="http://www.webmd.com/vaccines/ss/slideshow-travel-health" onclick="return sl(this,'','hicb4-ftr_1')" class="bold">Traveling abroad?</a>
<p>Protect yourself and your family by learning which health precautions and vaccines are advised for your destination.</p>
<a href="http://www.webmd.com/vaccines/ss/slideshow-travel-health" onclick="return sl(this,'','hicb4-ftr_1')" class="link_overlay" tabindex="-1"></a>
</div>
@ -317,7 +317,7 @@
<div id="nav_4_2">
<p>Family and Pregnancy Centers</p>
<div class="third right_border">
<a href="http://www.webmd.com/baby" onclick="return sl(this,'','hicb4-cpg_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_pregnancy.png" alt="pregnant woman"></a> <a href="http://www.webmd.com/baby" onclick="return sl(this,'','hicb4-cpg_1')" class="heading">Pregnancy</a>
<a href="http://www.webmd.com/baby" onclick="return sl(this,'','hicb4-cpg_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_pregnancy.png" alt="pregnant woman"/></a> <a href="http://www.webmd.com/baby" onclick="return sl(this,'','hicb4-cpg_1')" class="heading">Pregnancy</a>
<ul>
<li><a href="http://www.webmd.com/baby/guide/getting-pregnant" onclick="return sl(this,'','hicb4-cpg_2')">Trying to Conceive</a></li>
<li><a href="http://www.webmd.com/baby/guide/first-trimester" onclick="return sl(this,'','hicb4-cpg_3')">First Trimester</a></li>
@ -326,7 +326,7 @@
</ul>
</div>
<div class="third right_border">
<a href="http://www.webmd.com/parenting/default.htm" onclick="return sl(this,'','hicb4-cpt_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_parenting.png" alt="mom, dad, and baby"></a> <a href="http://www.webmd.com/parenting/default.htm" onclick="return sl(this,'','hicb4-cpt_1')" class="heading">Parenting</a>
<a href="http://www.webmd.com/parenting/default.htm" onclick="return sl(this,'','hicb4-cpt_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_parenting.png" alt="mom, dad, and baby"/></a> <a href="http://www.webmd.com/parenting/default.htm" onclick="return sl(this,'','hicb4-cpt_1')" class="heading">Parenting</a>
<ul>
<li><a href="http://www.webmd.com/parenting/baby/default.htm" onclick="return sl(this,'','hicb4-cpt_2')">Newborn &amp; Baby</a></li>
<li><a href="http://www.webmd.com/children/default.htm" onclick="return sl(this,'','hicb4-cpt_3')">Children's Health</a></li>
@ -335,7 +335,7 @@
</ul>
</div>
<div class="third">
<a href="http://www.webmd.com/pets/default.htm" onclick="return sl(this,'','hicb4-cpet_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_pets.png" alt="Cat and dog on grass"></a> <a href="http://www.webmd.com/pets/default.htm" onclick="return sl(this,'','hicb4-cpet_1')" class="heading">Pets</a>
<a href="http://www.webmd.com/pets/default.htm" onclick="return sl(this,'','hicb4-cpet_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_pets.png" alt="Cat and dog on grass"/></a> <a href="http://www.webmd.com/pets/default.htm" onclick="return sl(this,'','hicb4-cpet_1')" class="heading">Pets</a>
<ul>
<li><a href="http://www.webmd.com/pets/cats/default.htm" onclick="return sl(this,'','hicb4-cpet_2')">Healthy Cats</a></li>
<li><a href="http://www.webmd.com/pets/dogs/default.htm" onclick="return sl(this,'','hicb4-cpet_3')">Healthy Dogs</a></li>
@ -357,7 +357,7 @@
</div>
<div id="nav_4_4">
<p>WebMD Pregnancy App for iPhone</p>
<a href="http://www.webmd.com/pregnancyapp" onclick="return sl(this,'','hicb4-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/other/pregnancy_app_other/50x50_pregnancy_app_other.jpg" alt="WebMD Pregnancy App logo"></a> <a href="http://www.webmd.com/pregnancyapp" onclick="return sl(this,'','hicb4-app_1')">The big day is coming! Get organized and track baby's weekly development.</a></div>
<a href="http://www.webmd.com/pregnancyapp" onclick="return sl(this,'','hicb4-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/other/pregnancy_app_other/50x50_pregnancy_app_other.jpg" alt="WebMD Pregnancy App logo"/></a> <a href="http://www.webmd.com/pregnancyapp" onclick="return sl(this,'','hicb4-app_1')">The big day is coming! Get organized and track baby's weekly development.</a></div>
</div>
</div>
</li>
@ -367,9 +367,9 @@
<div id="nav_5_1">
<p>News</p><span><a href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb5-news_more')">View All</a></span>
<div class="nav_block hide_link" id="pb29">
<a href="http://www.webmd.com/news/default.htm" class="nav_image" onclick="return sl(this,'','hicb5-news_1')"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_webmd_1.jpg" alt="WebMD logo"></a> <a href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb5-news_1')" class="shorter">Today's Top Health Headlines</a></div>
<a href="http://www.webmd.com/news/default.htm" class="nav_image" onclick="return sl(this,'','hicb5-news_1')"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_webmd_1.jpg" alt="WebMD logo"/></a> <a href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb5-news_1')" class="shorter">Today's Top Health Headlines</a></div>
<div class="nav_block hide_link" id="pb30">
<a href="http://www.webmd.com/news/default.htm" class="nav_image" onclick="return sl(this,'','hicb5-news_2')"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_webmd_1.jpg" alt="WebMD logo"></a> <a href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb5-news_2')" class="shorter">Get the Latest Drug Approvals &amp; Alerts</a></div>
<a href="http://www.webmd.com/news/default.htm" class="nav_image" onclick="return sl(this,'','hicb5-news_2')"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_webmd_1.jpg" alt="WebMD logo"/></a> <a href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb5-news_2')" class="shorter">Get the Latest Drug Approvals &amp; Alerts</a></div>
<ul>
<li id="pb31" class="hide_link"><a href="http://www.webmd.com/fda/default.htm" onclick="return sl(this,'','hicb5-news_3')">Find FDA Consumer Updates</a></li>
<li id="pb32" class="hide_link"><a href="http://www.webmd.com/fda/slideshow-fda-mobile-laboratories" class="type_ss" onclick="return sl(this,'','hicb5-news_4')">On The Road Again: FDA Mobile Laboratories <i></i></a></li>
@ -384,10 +384,10 @@
<div id="nav_5_2">
<p>Talk to health experts and other people like you in WebMD's Communities. It's a safe forum where you can create or participate in support groups and discussions about health topics that interest you.</p>
<div class="nav_block">
<a href="http://www.webmd.com/blogs/default.htm" onclick="return sl(this,'','hicb5-xchng_blg')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_expert.png" alt=""></a>
<a href="http://www.webmd.com/blogs/default.htm" onclick="return sl(this,'','hicb5-xchng_blg')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_expert.png" alt=""/></a>
<p class="bold">WebMD Second Opinion</p><a href="http://www.webmd.com/blogs/default.htm" onclick="return sl(this,'','hicb5-xchng_blg')">Read expert perspectives on popular health topics.</a></div>
<div class="nav_block">
<a href="http://www.webmd.com/exchanges/default.htm" onclick="return sl(this,'','hicb5-xchng_cmty')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_community.png" alt=""></a>
<a href="http://www.webmd.com/exchanges/default.htm" onclick="return sl(this,'','hicb5-xchng_cmty')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_community.png" alt=""/></a>
<p class="bold">WebMD Communities</p><a href="http://www.webmd.com/exchanges/default.htm" onclick="return sl(this,'','hicb5-xchng_cmty')">Connect with people like you, and get expert guidance on living a healthy life.</a></div>
</div>
</div>
@ -396,7 +396,7 @@
<p>Got a health question? Get answers provided by leading organizations, doctors, and experts.</p><a href="http://answers.webmd.com/" class="webmd-btn webmd-btn-pr webmd-btn-m" onclick="return sl(this,'','hicb5-ans_sub')">Get Answers</a></div>
<div id="nav_5_4">
<p>WebMD Newsletters</p>
<a href="https://member.webmd.com/newsletters/newsletters.aspx" onclick="return sl(this,'','hicb5-nwsltr_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_newsletter.png" alt="closeup of newsletter"></a> <a href="https://member.webmd.com/newsletters/newsletters.aspx" onclick="return sl(this,'','hicb5-nwsltr_1')">Sign up to receive WebMD's award-winning content delivered to your inbox.</a></div>
<a href="https://member.webmd.com/newsletters/newsletters.aspx" onclick="return sl(this,'','hicb5-nwsltr_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_newsletter.png" alt="closeup of newsletter"/></a> <a href="https://member.webmd.com/newsletters/newsletters.aspx" onclick="return sl(this,'','hicb5-nwsltr_1')">Sign up to receive WebMD's award-winning content delivered to your inbox.</a></div>
</div>
</div>
</li>
@ -433,7 +433,7 @@
<div id="ContentPane3">
<div id="breadcrumb_rdr"> <span class="bc_0">
<a href="/www/">WebMD Home</a>
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/divider_breadcrumb.gif" alt="next page" width="6" height="10" align="absmiddle">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/divider_breadcrumb.gif" alt="next page" width="6" height="10" align="absmiddle"/>
</span> <span class="bc_1">
<a href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','brdcrmb');" class="breadcrumbActive">Health News</a> </span> </div>
<div id="headerLinks_email" class="headerLinks_fmt"> <a href="#" title="Email this page to a friend" class="triggerEmailOverlay" onclick="wmdPageLink('email-friend_link');return false;">Email a Friend</a> </div>
@ -498,7 +498,7 @@
</script>
<div id="readspeaker_area" style="display: none;">
<div id="readspeaker_button1" class="rs_skip">
<a accesskey="L" href="http://app.readspeaker.com/cgi-bin/rsent?customerid=5841&amp;lang=en_us&amp;readid=textArea" target="_blank" onclick="readpage(this.href, 'xp1'); return false;"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/article/readspeaker/listen_en_us.gif" alt="Listen to this page using ReadSpeaker" title="Listen to this page using ReadSpeaker"> </a>
<a accesskey="L" href="http://app.readspeaker.com/cgi-bin/rsent?customerid=5841&amp;lang=en_us&amp;readid=textArea" target="_blank" onclick="readpage(this.href, 'xp1'); return false;"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/article/readspeaker/listen_en_us.gif" alt="Listen to this page using ReadSpeaker" title="Listen to this page using ReadSpeaker"/> </a>
</div>
<script src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/javascript/readspeaker/en.js" type="text/javascript">
</script>
@ -529,7 +529,7 @@
<h2>Superbugs: What They Are and How You Get Them</h2>
<div class="subhead_fmt"></div>
<div class="author_fmt"> By <a rel="author" href="http://www.webmd.com/kelli-miller" onclick="return sl(this,'','prog-lnk');">Kelli Miller</a>
<br>WebMD Health News</div>
<br/>WebMD Health News</div>
<div class="reviewedBy_fmt"> Reviewed by <a onclick="return sl(this,'','prog-lnk');" href="http://www.webmd.com/hansa-bhargava">Hansa D. Bhargava, MD</a></div>
<div class="clearBoth_fmt clearing-div"> </div>
<h3></h3>
@ -538,7 +538,7 @@
<p xmlns:xalan="http://xml.apache.org/xalan">Every year, about 2 million people get sick from a superbug, according to the CDC. About 23,000 die. Earlier this year, an outbreak of CRE (carbapenem-resistant enterobacteriaceae) linked to contaminated medical tools sickened 11 people at two Los-Angeles area hospitals. Two people died, and more than 200 others may have been exposed.</p>
<p>The White House recently released a <a onclick="return sl(this,'','embd-lnk');" href="http://www.webmd.com/click?url=https://www.whitehouse.gov/sites/default/files/docs/national_action_plan_for_combating_antibotic-resistant_bacteria.pdf">comprehensive plan</a> outlining steps to combat drug-resistant bacteria. The plan identifies three "urgent" and several "serious" threats. We asked infectious disease experts to explain what some of them are and when to worry.</p>
<p></p>
<link type="text/css" rel="stylesheet" href="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/css/contextual_related_links.css">
<link type="text/css" rel="stylesheet" href="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/css/contextual_related_links.css"/>
<div class="slideshow_links_rdr contextual_links_fmt">
<h4></h4>
<p> <a href="http://www.webmd.com/skin-problems-and-treatments/ss/slideshow-closer-look-at-mrsa" onclick="return sl(this,'','embd-app-ssh');">A Closer Look at MRSA</a> </p>
@ -645,7 +645,7 @@
setClass('headerLinks_print', 'headerLinks_fmt_on');
};
</script>
<link rel="stylesheet" type="text/css" href="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/print.css" media="print">
<link rel="stylesheet" type="text/css" href="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/print.css" media="print"/>
<style media="screen">
#url_reference {
display: none
@ -701,7 +701,7 @@
<div id="ContentPane22">
<div class="top12_rdr">
<div class="top12_header_fmt">
<a onclick="window.open(this.href, 'popup','width=512,height=240,scrollbars=no,resizeable=no,status=yes');return false;" href="/www/topics-placements-lists"> <img border="0" alt="" title="WebMD Editors determine the topics and placement on our lists..." src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/top12QuestionMark.gif" class="top12_questionMark" style="margin: 1px 5px 0px 0px; float: right;"> </a>Top 12 News Topics</div>
<a onclick="window.open(this.href, 'popup','width=512,height=240,scrollbars=no,resizeable=no,status=yes');return false;" href="/www/topics-placements-lists"> <img border="0" alt="" title="WebMD Editors determine the topics and placement on our lists..." src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/top12QuestionMark.gif" class="top12_questionMark" style="margin: 1px 5px 0px 0px; float: right;"/> </a>Top 12 News Topics</div>
<ul class="top12List_fmt">
<li>
<div class="top12_number_fmt">1<span>.</span></div>
@ -758,7 +758,7 @@
<div class="moduleSpacer_rdr"> </div>
<div class="top12_rdr">
<div class="top12_header_fmt">
<a onclick="window.open(this.href, 'popup','width=512,height=240,scrollbars=no,resizeable=no,status=yes');return false;" href="/www/topics-placements-lists"> <img border="0" alt="" title="WebMD Editors determine the topics and placement on our lists..." src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/top12QuestionMark.gif" class="top12_questionMark" style="margin: 1px 5px 0px 0px; float: right;"> </a>Top 12 Topics</div>
<a onclick="window.open(this.href, 'popup','width=512,height=240,scrollbars=no,resizeable=no,status=yes');return false;" href="/www/topics-placements-lists"> <img border="0" alt="" title="WebMD Editors determine the topics and placement on our lists..." src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/top12QuestionMark.gif" class="top12_questionMark" style="margin: 1px 5px 0px 0px; float: right;"/> </a>Top 12 Topics</div>
<ul class="top12List_fmt">
<li>
<div class="top12_number_fmt">1<span>.</span></div>
@ -875,7 +875,7 @@
<div class="expander" style="display:none;">
<div class="vidheader"> <span class="toggle">
<a href="">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_plus.jpg" alt="click to expand section" height="14" width="14">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_plus.jpg" alt="click to expand section" height="14" width="14"/>
</a>
</span> <a href="http://www.webmd.com/men/video/dirty-truth-handwashing" onclick="return sl(this,'','lnch-mvid_1_txt');">Dirty Truth About Hand Washing</a> </div>
</div>
@ -883,14 +883,14 @@
<div class="video" style="display:block;">
<div class="vidwidth">
<div class="vidheader"> <span class="toggle">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_minus.jpg" alt="click to hide section" height="14" width="14">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_minus.jpg" alt="click to hide section" height="14" width="14"/>
</span> <a href="http://www.webmd.com/men/video/dirty-truth-handwashing" onclick="return sl(this,'','lnch-mvid_1_txt');">Dirty Truth About Hand Washing</a> </div>
<p class="thumb">
<a href="http://www.webmd.com/men/video/dirty-truth-handwashing" onclick="return sl(this,'','lnch-mvid_1_img');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/dam/editorial/infectious-disease/cold-and-flu/dirty-truth-handwashing/graphics/thumbnails/final/dirty-truth-handwashing-48x48.jpg" alt="Click here to wach video: Dirty Truth About Hand Washing"> </a>
<a href="http://www.webmd.com/men/video/dirty-truth-handwashing" onclick="return sl(this,'','lnch-mvid_1_img');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/dam/editorial/infectious-disease/cold-and-flu/dirty-truth-handwashing/graphics/thumbnails/final/dirty-truth-handwashing-48x48.jpg" alt="Click here to wach video: Dirty Truth About Hand Washing"/> </a>
</p>
<p class="text">Which sex is the worst about washing up? Why is it so important? Weve got the dirty truth on how and when to wash your hands.</p>
<p class="watchbutton">
<a href="http://www.webmd.com/men/video/dirty-truth-handwashing" onclick="return sl(this,'','lnch-mvid_1_watch');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/multi_watch.jpg" alt="Click here to watch video: Dirty Truth About Hand Washing" height="23" width="100"> </a>
<a href="http://www.webmd.com/men/video/dirty-truth-handwashing" onclick="return sl(this,'','lnch-mvid_1_watch');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/multi_watch.jpg" alt="Click here to watch video: Dirty Truth About Hand Washing" height="23" width="100"/> </a>
</p>
</div>
</div>
@ -898,7 +898,7 @@
<div class="expander">
<div class="vidheader"> <span class="toggle">
<a href="">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_plus.jpg" alt="click to expand section" height="14" width="14">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_plus.jpg" alt="click to expand section" height="14" width="14"/>
</a>
</span> <a href="http://www.webmd.com/video/causes-cures-bad-breath" onclick="return sl(this,'','lnch-mvid_2_txt');">Truth About Bad Breath</a> </div>
</div>
@ -906,14 +906,14 @@
<div class="video" style="display:none;">
<div class="vidwidth">
<div class="vidheader"> <span class="toggle">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_minus.jpg" alt="click to hide section" height="14" width="14">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_minus.jpg" alt="click to hide section" height="14" width="14"/>
</span> <a href="http://www.webmd.com/video/causes-cures-bad-breath" onclick="return sl(this,'','lnch-mvid_2_txt');">Truth About Bad Breath</a> </div>
<p class="thumb">
<a href="http://www.webmd.com/video/causes-cures-bad-breath" onclick="return sl(this,'','lnch-mvid_2_img');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/dam/editorial/dental-health/miscellaneous/causes-cures-bad-breath/graphics/thumbnails/final/causes-cures-bad-breath-48x48.jpg" alt="Click here to wach video: Truth About Bad Breath"> </a>
<a href="http://www.webmd.com/video/causes-cures-bad-breath" onclick="return sl(this,'','lnch-mvid_2_img');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/dam/editorial/dental-health/miscellaneous/causes-cures-bad-breath/graphics/thumbnails/final/causes-cures-bad-breath-48x48.jpg" alt="Click here to wach video: Truth About Bad Breath"/> </a>
</p>
<p class="text">Suffer from chronic halitosis? Get the truth on the causes and cures for your stinky breath.</p>
<p class="watchbutton">
<a href="http://www.webmd.com/video/causes-cures-bad-breath" onclick="return sl(this,'','lnch-mvid_2_watch');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/multi_watch.jpg" alt="Click here to watch video: Truth About Bad Breath" height="23" width="100"> </a>
<a href="http://www.webmd.com/video/causes-cures-bad-breath" onclick="return sl(this,'','lnch-mvid_2_watch');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/multi_watch.jpg" alt="Click here to watch video: Truth About Bad Breath" height="23" width="100"/> </a>
</p>
</div>
</div>
@ -921,7 +921,7 @@
<div class="expander">
<div class="vidheader"> <span class="toggle">
<a href="">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_plus.jpg" alt="click to expand section" height="14" width="14">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_plus.jpg" alt="click to expand section" height="14" width="14"/>
</a>
</span> <a href="http://www.webmd.com/video/dangers-gum-disease" onclick="return sl(this,'','lnch-mvid_3_txt');">Dangers of Gum Disease</a> </div>
</div>
@ -929,14 +929,14 @@
<div class="video" style="display:none;">
<div class="vidwidth">
<div class="vidheader"> <span class="toggle">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_minus.jpg" alt="click to hide section" height="14" width="14">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_minus.jpg" alt="click to hide section" height="14" width="14"/>
</span> <a href="http://www.webmd.com/video/dangers-gum-disease" onclick="return sl(this,'','lnch-mvid_3_txt');">Dangers of Gum Disease</a> </div>
<p class="thumb">
<a href="http://www.webmd.com/video/dangers-gum-disease" onclick="return sl(this,'','lnch-mvid_3_img');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/dam/editorial/dental-health/miscellaneous/dangers-gum-disease/graphics/thumbnails/final/dangers-gum-disease-48x48.jpg" alt="Click here to wach video: Dangers of Gum Disease"> </a>
<a href="http://www.webmd.com/video/dangers-gum-disease" onclick="return sl(this,'','lnch-mvid_3_img');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/dam/editorial/dental-health/miscellaneous/dangers-gum-disease/graphics/thumbnails/final/dangers-gum-disease-48x48.jpg" alt="Click here to wach video: Dangers of Gum Disease"/> </a>
</p>
<p class="text">If you're not brushing and flossing regularly, you are at risk for gum disease and potential health problems.</p>
<p class="watchbutton">
<a href="http://www.webmd.com/video/dangers-gum-disease" onclick="return sl(this,'','lnch-mvid_3_watch');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/multi_watch.jpg" alt="Click here to watch video: Dangers of Gum Disease" height="23" width="100"> </a>
<a href="http://www.webmd.com/video/dangers-gum-disease" onclick="return sl(this,'','lnch-mvid_3_watch');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/multi_watch.jpg" alt="Click here to watch video: Dangers of Gum Disease" height="23" width="100"/> </a>
</p>
</div>
</div>
@ -944,7 +944,7 @@
<div class="expander">
<div class="vidheader"> <span class="toggle">
<a href="">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_plus.jpg" alt="click to expand section" height="14" width="14">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_plus.jpg" alt="click to expand section" height="14" width="14"/>
</a>
</span> <a href="http://www.webmd.com/beauty/video/hair-care-shampoo" onclick="return sl(this,'','lnch-mvid_4_txt');">Truth About Shampoo and Conditioner</a> </div>
</div>
@ -952,14 +952,14 @@
<div class="video" style="display:none;">
<div class="vidwidth">
<div class="vidheader"> <span class="toggle">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_minus.jpg" alt="click to hide section" height="14" width="14">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_minus.jpg" alt="click to hide section" height="14" width="14"/>
</span> <a href="http://www.webmd.com/beauty/video/hair-care-shampoo" onclick="return sl(this,'','lnch-mvid_4_txt');">Truth About Shampoo and Conditioner</a> </div>
<p class="thumb">
<a href="http://www.webmd.com/beauty/video/hair-care-shampoo" onclick="return sl(this,'','lnch-mvid_4_img');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/dam/editorial/skin-and-beauty/beauty/hair-care-shampoo/graphics/thumbnails/final/hair-care-shampoo-48x48.jpg" alt="Click here to wach video: Truth About Shampoo and Conditioner"> </a>
<a href="http://www.webmd.com/beauty/video/hair-care-shampoo" onclick="return sl(this,'','lnch-mvid_4_img');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/dam/editorial/skin-and-beauty/beauty/hair-care-shampoo/graphics/thumbnails/final/hair-care-shampoo-48x48.jpg" alt="Click here to wach video: Truth About Shampoo and Conditioner"/> </a>
</p>
<p class="text">Get the facts you need to get the most out of your shampoo and conditioner.</p>
<p class="watchbutton">
<a href="http://www.webmd.com/beauty/video/hair-care-shampoo" onclick="return sl(this,'','lnch-mvid_4_watch');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/multi_watch.jpg" alt="Click here to watch video: Truth About Shampoo and Conditioner" height="23" width="100"> </a>
<a href="http://www.webmd.com/beauty/video/hair-care-shampoo" onclick="return sl(this,'','lnch-mvid_4_watch');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/multi_watch.jpg" alt="Click here to watch video: Truth About Shampoo and Conditioner" height="23" width="100"/> </a>
</p>
</div>
</div>
@ -967,7 +967,7 @@
<div class="expander">
<div class="vidheader"> <span class="toggle">
<a href="">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_plus.jpg" alt="click to expand section" height="14" width="14">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_plus.jpg" alt="click to expand section" height="14" width="14"/>
</a>
</span> <a href="http://www.webmd.com/oral-health/video/laugh-therapy-1" onclick="return sl(this,'','lnch-mvid_5_txt');">Laugh Therapy: Does it Work?</a> </div>
</div>
@ -975,14 +975,14 @@
<div class="video" style="display:none;">
<div class="vidwidth">
<div class="vidheader"> <span class="toggle">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_minus.jpg" alt="click to hide section" height="14" width="14">
<img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/vid_minus.jpg" alt="click to hide section" height="14" width="14"/>
</span> <a href="http://www.webmd.com/oral-health/video/laugh-therapy-1" onclick="return sl(this,'','lnch-mvid_5_txt');">Laugh Therapy: Does it Work?</a> </div>
<p class="thumb">
<a href="http://www.webmd.com/oral-health/video/laugh-therapy-1" onclick="return sl(this,'','lnch-mvid_5_img');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/dam/editorial/dental-health/healthy-teeth/graphics/thumbnails/final/vd-2125-wrld-3001-48x48.jpg" alt="Click here to wach video: Laugh Therapy: Does it Work?"> </a>
<a href="http://www.webmd.com/oral-health/video/laugh-therapy-1" onclick="return sl(this,'','lnch-mvid_5_img');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/dam/editorial/dental-health/healthy-teeth/graphics/thumbnails/final/vd-2125-wrld-3001-48x48.jpg" alt="Click here to wach video: Laugh Therapy: Does it Work?"/> </a>
</p>
<p class="text">Therapist Steven Sultanoff explains the utility of humor in counseling, and Jeffrey Briar leads a session of Laughter Yoga on Laguna Beach.</p>
<p class="watchbutton">
<a href="http://www.webmd.com/oral-health/video/laugh-therapy-1" onclick="return sl(this,'','lnch-mvid_5_watch');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/multi_watch.jpg" alt="Click here to watch video: Laugh Therapy: Does it Work?" height="23" width="100"> </a>
<a href="http://www.webmd.com/oral-health/video/laugh-therapy-1" onclick="return sl(this,'','lnch-mvid_5_watch');"> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/multi_watch.jpg" alt="Click here to watch video: Laugh Therapy: Does it Work?" height="23" width="100"/> </a>
</p>
</div>
</div>
@ -1074,7 +1074,7 @@
module.init({
selector: "#newsletter-mapping-center",
template: {
successMsg: '<p class="success"><span>{email}</span><br />You will receive your first newsletter with our next scheduled circulation!</p>',
successMsg: '<p class="success"><span>{email}</span><br //>You will receive your first newsletter with our next scheduled circulation!</p>',
content: '' + '<div class="newsletterFmt"></div>\n' + '<div class="wrapper">\n' + '<div class="nls-header">{header}</div>\n' + '{preContent}' + '<div class="nls-content">\n' + '{preForm}' + '<form class="nls-form" action="#" novalidate="novalidate">\n' + '<div class="validationWrapper"><div class="checkbox-container clearfix">{inputs}</div></div>\n' + '<div class="privacy-disclaimer">' + "<em>By clicking submit I agree to WebMD's <a href='http://www.webmd.com/about-webmd-policies/about-privacy-policy' target='_blank'>Privacy Policy</a></em>" + '</div>' + '<div class="input-container">\n' + '<div class="email-container validationWrapper">\n' + '<input type="email" class="nls-email" name="email" autocapitalize="off" autocorrect="off" placeholder="Enter email address" /> ' + '<button name="nl-submit" formnovalidate class="off {submitClass}" type="submit"><span>Submit</span></button>\n' + '<div class="clearfix"></div>' + '</div>\n' + // .email-container
'</div>\n' + // .input-container
'</form>\n' + '<a class="nl-link" href="https://member.webmd.com/newsletters/newsletters.aspx" onclick="return sl(this,"nw","nl-multie_s")">Sign up for more topics!</a>' + '{postForm}' + '</div>\n' + // .nls-content
@ -1166,11 +1166,11 @@
<div class="ft_logos newSize">
<a onclick="return sl(this,'nw','f-about_22');" href="http://www.webmd.com/click?url=https://www.urac.org/directory/CompanyView.aspx?cid=C8700000F48&amp;aid=1951&amp;Type=Accreditnet" class="logo_urac"> <span>URAC: Accredited Health Web Site</span> </a>
<!-- div id="f733a173-6d11-4e17-ba9f-f1454ef8b32f" style="float:left" -->
<a onclick="return sl(this,'nw','f-about_23');" href="http://www.webmd.com/click?url=https://privacy.truste.com/privacy-seal/WebMD,-LLC/validation?rid=7b3bf16d-37b4-42e0-aec7-836ef1d3680d" title="TRUSTe online privacy certification"> <img style="border: none; float:left; margin: 0px 8px 0px 0px;" src="//privacy-policy.truste.com/privacy-seal/WebMD,-LLC/seal?rid=80c33c7c-da0b-4788-8236-61a318f00f4c" alt="TRUSTe online privacy certification"> </a>
<a onclick="return sl(this,'nw','f-about_23');" href="http://www.webmd.com/click?url=https://privacy.truste.com/privacy-seal/WebMD,-LLC/validation?rid=7b3bf16d-37b4-42e0-aec7-836ef1d3680d" title="TRUSTe online privacy certification"> <img style="border: none; float:left; margin: 0px 8px 0px 0px;" src="//privacy-policy.truste.com/privacy-seal/WebMD,-LLC/seal?rid=80c33c7c-da0b-4788-8236-61a318f00f4c" alt="TRUSTe online privacy certification"/> </a>
<!-- /div -->
<!-- a onclick="return sl(this,'nw','f-about_24');" href="http://www.webmd.com/click?url=http://www.hon.ch/HONcode/Conduct.html%3FHONConduct298987" class="logo_honcode" title="This site complies with the HONcode standard for trustworthy health information.">
<span>HonCode: Health on the Net Foundation</span></a -->
<a onclick="return sl(this,'nw','f-about_24');" href="http://www.webmd.com/click?url=http://www.hon.ch/HONcode/Conduct.html%3FHONConduct298987" title="This site complies with the HONcode standard for trustworthy health information."> <img alt="HONcode Seal" src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/honcode14.gif" style="border: none; float:left; margin: 0px 0px 0px 5px; width: 43px; height: 60px;"> </a> <a onclick="TRUSTeWidget.Tab.link();return sl(this,'f-about_27');" class="logo_AdChoices">AdChoices</a>
<a onclick="return sl(this,'nw','f-about_24');" href="http://www.webmd.com/click?url=http://www.hon.ch/HONcode/Conduct.html%3FHONConduct298987" title="This site complies with the HONcode standard for trustworthy health information."> <img alt="HONcode Seal" src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/honcode14.gif" style="border: none; float:left; margin: 0px 0px 0px 5px; width: 43px; height: 60px;"/> </a> <a onclick="TRUSTeWidget.Tab.link();return sl(this,'f-about_27');" class="logo_AdChoices">AdChoices</a>
<script type="text/javascript">
$(function() {
var fileNameToLoad = '//preferences.truste.com/webservices/js?type=webmd&domain=webmd';

@ -16,7 +16,41 @@ function reformatError(err) {
return formattedError;
}
function runTestsWithItems(label, beforeFn, expectedContent, expectedMetadata) {
function inOrderTraverse(fromNode) {
if (fromNode.firstChild) {
return fromNode.firstChild;
}
while (fromNode && !fromNode.nextSibling) {
fromNode = fromNode.parentNode;
}
return fromNode ? fromNode.nextSibling : null;
}
function inOrderIgnoreEmptyTextNodes(fromNode) {
do {
fromNode = inOrderTraverse(fromNode);
} while (fromNode && fromNode.nodeType == 3 && !fromNode.textContent.trim());
return fromNode;
}
function traverseDOM(callback, expectedDOM, actualDOM) {
var actualNode = actualDOM.documentElement || actualDOM.childNodes[0];
var expectedNode = expectedDOM.documentElement || expectedDOM.childNodes[0];
while (actualNode) {
if (!callback(actualNode, expectedNode)) {
break;
}
actualNode = inOrderIgnoreEmptyTextNodes(actualNode);
expectedNode = inOrderIgnoreEmptyTextNodes(expectedNode);
}
}
// Collapse subsequent whitespace like HTML:
function htmlTransform(str) {
return str.replace(/\s+/g, " ");
}
function runTestsWithItems(label, domGenerationFn, uri, source, expectedContent, expectedMetadata) {
describe(label, function() {
this.timeout(5000);
@ -24,7 +58,11 @@ function runTestsWithItems(label, beforeFn, expectedContent, expectedMetadata) {
before(function() {
try {
result = beforeFn();
var doc = domGenerationFn(source);
var readability = new Readability(uri, doc);
var readerable = readability.isProbablyReaderable();
result = readability.parse();
result.readerable = readerable;
} catch(err) {
throw reformatError(err);
}
@ -35,7 +73,37 @@ function runTestsWithItems(label, beforeFn, expectedContent, expectedMetadata) {
});
it("should extract expected content", function() {
expect(expectedContent.split("\n")).eql(prettyPrint(result.content).split("\n"));
function nodeStr(n) {
if (n.nodeType == 3) {
return "#text(" + htmlTransform(n.textContent) + ")";
}
return n.localName + "#" + n.id + ".(" + n.className + ")";
}
var actualDOM = domGenerationFn(result.content);
var expectedDOM = domGenerationFn(expectedContent);
traverseDOM(function(actualNode, expectedNode) {
expect(!!actualNode).eql(!!expectedNode);
if (actualNode && expectedNode) {
var actualDesc = nodeStr(actualNode);
var expectedDesc = nodeStr(expectedNode);
if (actualDesc != expectedDesc) {
expect(actualDesc).eql(expectedDesc);
return false;
}
// Compare text for text nodes:
if (actualNode.nodeType == 3) {
var actualText = htmlTransform(actualNode.textContent);
var expectedText = htmlTransform(expectedNode.textContent);
expect(actualText).eql(expectedText);
if (actualText != expectedText) {
return false;
}
}
} else {
return false;
}
return true;
}, actualDOM, expectedDOM);
});
it("should extract expected title", function() {
@ -110,29 +178,26 @@ describe("Test pages", function() {
pathBase: "http://fakehost/test/"
};
runTestsWithItems("jsdom", function() {
var doc = jsdom(testPage.source, {
runTestsWithItems("jsdom", function(source) {
var doc = jsdom(source, {
features: {
FetchExternalResources: false,
ProcessExternalResources: false
}
});
removeCommentNodesRecursively(doc);
var readability = new Readability(uri, doc);
var readerable = readability.isProbablyReaderable();
var result = readability.parse();
result.readerable = readerable;
return result;
}, testPage.expectedContent, testPage.expectedMetadata);
runTestsWithItems("JSDOMParser", function() {
var doc = new JSDOMParser().parse(testPage.source);
var readability = new Readability(uri, doc);
var readerable = readability.isProbablyReaderable();
var result = readability.parse();
result.readerable = readerable;
return result;
}, testPage.expectedContent, testPage.expectedMetadata);
return doc;
}, uri, testPage.source, testPage.expectedContent, testPage.expectedMetadata);
runTestsWithItems("JSDOMParser", function(source) {
var parser = new JSDOMParser();
var doc = parser.parse(source);
if (parser.errorState) {
console.error("Parsing this DOM caused errors:", parser.errorState);
return null;
}
return doc;
}, uri, testPage.source, testPage.expectedContent, testPage.expectedMetadata);
});
});
});

Loading…
Cancel
Save